Files
DiceCloud/app/imports/ui/creature/slots/SlotFillDialog.vue
2020-10-15 15:57:19 +02:00

207 lines
5.6 KiB
Vue

<template lang="html">
<dialog-base :color="model.color">
<template slot="toolbar">
<v-toolbar-title>
{{ model.name }}
</v-toolbar-title>
</template>
<div class="library-nodes">
<v-fade-transition mode="out-in">
<column-layout
v-if="$subReady.slotFillers && libraryNodes.length"
wide-columns
>
<div
v-for="node in libraryNodes"
:key="node._id"
>
<v-card
style="max-width: 500px;"
hover
ripple
:class="{'primary theme--dark': node._id === (selectedNode && selectedNode._id)}"
@click="selectedNode = node"
>
<v-img
v-if="node.picture"
:src="node.picture"
:max-height="200"
position="top center"
/>
<v-card-title primary-title>
<div>
<h3 class="title mb-0">
<property-icon
v-if="!node.picture"
class="mr-2"
:class="{'theme--dark': node._id === (selectedNode && selectedNode._id)}"
:model="node"
:color="node.color"
/>
{{ getTitle(node) }}
</h3>
<div v-if="node.description">
{{ node.description }}
</div>
</div>
</v-card-title>
</v-card>
</div>
</column-layout>
<div
v-else-if="$subReady.slotFillers"
class="ma-4"
>
<h4>
Nothing suitable was found in your libraries
</h4>
<p>
This slot requires a {{ slotPropertyTypeName }}
<template v-if="model.slotTags.length">
with the following tags:
<span
v-for="(tag, index) in model.slotTags"
:key="index"
>
<code>{{ tag }}</code>,
</span>
</template>
</p>
</div>
<div
v-else
key="character-loading"
class="fill-height layout justify-center align-center"
>
<v-progress-circular
indeterminate
color="primary"
size="64"
/>
</div>
</v-fade-transition>
</div>
<template slot="actions">
<v-spacer />
<v-btn
flat
@click="$store.dispatch('popDialogStack')"
>
Cancel
</v-btn>
<v-btn
flat
:disabled="!selectedNode"
@click="$store.dispatch('popDialogStack', selectedNode)"
>
Insert
</v-btn>
</template>
</dialog-base>
</template>
<script>
import Creatures from '/imports/api/creature/Creatures.js';
import CreatureProperties from '/imports/api/creature/CreatureProperties.js';
import LibraryNodes from '/imports/api/library/LibraryNodes.js';
import DialogBase from '/imports/ui/dialogStack/DialogBase.vue';
import { getPropertyName } from '/imports/constants/PROPERTIES.js';
import { parse, CompilationContext } from '/imports/parser/parser.js';
import PROPERTIES from '/imports/constants/PROPERTIES.js';
import PropertyIcon from '/imports/ui/properties/shared/PropertyIcon.vue';
import ColumnLayout from '/imports/ui/components/ColumnLayout.vue';
export default {
components: {
DialogBase,
ColumnLayout,
PropertyIcon,
},
props:{
slotId: {
type: String,
required: true,
},
creatureId: {
type: String,
required: true,
},
numToFill: {
type: Number,
required: true,
},
},
data(){return {
selectedNode: undefined,
}},
computed: {
slotPropertyTypeName(){
if (!this.model) return;
if (!this.model.slotType) return 'property';
let propName = getPropertyName(this.model.slotType);
return propName && propName.toLowerCase();
},
},
methods:{
getTitle(model){
if (!model) return;
if (model.name) return model.name;
let prop = PROPERTIES[model.type]
return prop && prop.name;
},
},
meteor: {
$subscribe: {
'slotFillers'(){
return [this.slotId]
},
},
model(){
return CreatureProperties.findOne(this.slotId);
},
creature(){
return Creatures.findOne(this.creatureId);
},
libraryNodes(){
let filter = {};
if (this.model.tags.length){
filter.tags = {$all: this.model.slotTags};
}
if (this.model.slotType){
filter.$or = [{
type: this.model.slotType
},{
type: 'slotFiller',
slotFillerType: this.model.slotType,
}];
}
let nodes = LibraryNodes.find(filter).fetch();
// Filter out slotFillers whose condition isn't met or are too big to fit
// the quantity to fill
nodes = nodes.filter(node => {
if (node.slotFillerCondition){
let context = new CompilationContext();
let conditionResult = parse(node.slotFillerCondition)
.reduce(this.creature.variables, context);
if (conditionResult && !conditionResult.value) return false;
}
if (
node.type === 'slotFiller' &&
this.numToFill > 0 &&
node.slotQuantityFilled > this.numToFill
){
return false;
}
return true;
});
// Filter out slotFillers whose
if (nodes.length === 1) this.selectedNode = nodes[0];
return nodes;
},
}
}
</script>
<style lang="css" scoped>
</style>