274 lines
8.5 KiB
Vue
274 lines
8.5 KiB
Vue
<template lang="html">
|
|
<dialog-base>
|
|
<template #replace-toolbar="{flat}">
|
|
<property-toolbar
|
|
:model="model"
|
|
:editing="editing"
|
|
:flat="flat"
|
|
:embedded="embedded"
|
|
style="flex-grow: 0;"
|
|
@duplicate="duplicate"
|
|
@remove="remove"
|
|
@toggle-editing="editing = !editing"
|
|
@color-changed="value => change({path: ['color'], value})"
|
|
/>
|
|
</template>
|
|
<template v-if="model">
|
|
<template v-if="!editing && !embedded">
|
|
<breadcrumbs :model="model" />
|
|
</template>
|
|
<v-fade-transition
|
|
mode="out-in"
|
|
>
|
|
<component
|
|
:is="model.type + 'Form'"
|
|
v-if="editing"
|
|
:key="_id"
|
|
class="creature-property-form"
|
|
:model="model"
|
|
@change="change"
|
|
@push="push"
|
|
@pull="pull"
|
|
/>
|
|
<component
|
|
:is="model.type + 'Viewer'"
|
|
v-else-if="!editing && $options.components[model.type + 'Viewer']"
|
|
:key="_id"
|
|
class="creature-property-viewer"
|
|
:model="model"
|
|
/>
|
|
<p v-else>
|
|
This property can't be viewed yet.
|
|
</p>
|
|
</v-fade-transition>
|
|
<template v-if="!editing && !embedded">
|
|
<v-divider class="my-2" />
|
|
<creature-properties-tree
|
|
v-if="!editing"
|
|
:root="{collection: 'creatureProperties', id: model._id}"
|
|
@selected="selectSubProperty"
|
|
/>
|
|
<v-btn
|
|
text
|
|
data-id="insert-creature-property-btn"
|
|
@click="addProperty"
|
|
>
|
|
<v-icon>add</v-icon>
|
|
Property
|
|
</v-btn>
|
|
</template>
|
|
</template>
|
|
<div
|
|
v-if="!embedded"
|
|
slot="actions"
|
|
class="layout justify-end"
|
|
>
|
|
<v-btn
|
|
text
|
|
@click="$store.dispatch('popDialogStack')"
|
|
>
|
|
Done
|
|
</v-btn>
|
|
</div>
|
|
</dialog-base>
|
|
</template>
|
|
|
|
<script lang="js">
|
|
import CreatureProperties from '/imports/api/creature/creatureProperties/CreatureProperties.js';
|
|
import damageProperty from '/imports/api/creature/creatureProperties/methods/damageProperty.js';
|
|
import pushToProperty from '/imports/api/creature/creatureProperties/methods/pushToProperty.js';
|
|
import pullFromProperty from '/imports/api/creature/creatureProperties/methods/pullFromProperty.js';
|
|
import softRemoveProperty from '/imports/api/creature/creatureProperties/methods/softRemoveProperty.js';
|
|
import restoreProperty from '/imports/api/creature/creatureProperties/methods/restoreProperty.js';
|
|
import updateCreatureProperty from '/imports/api/creature/creatureProperties/methods/updateCreatureProperty.js';
|
|
import duplicateProperty from '/imports/api/creature/creatureProperties/methods/duplicateProperty.js';
|
|
import Creatures from '/imports/api/creature/Creatures.js';
|
|
import PropertyToolbar from '/imports/ui/components/propertyToolbar.vue';
|
|
import DialogBase from '/imports/ui/dialogStack/DialogBase.vue';
|
|
import { getPropertyName } from '/imports/constants/PROPERTIES.js';
|
|
import PropertyIcon from '/imports/ui/properties/shared/PropertyIcon.vue';
|
|
import propertyFormIndex from '/imports/ui/properties/forms/shared/propertyFormIndex.js';
|
|
import propertyViewerIndex from '/imports/ui/properties/viewers/shared/propertyViewerIndex.js';
|
|
import CreaturePropertiesTree from '/imports/ui/creature/creatureProperties/CreaturePropertiesTree.vue';
|
|
import getPropertyTitle from '/imports/ui/properties/shared/getPropertyTitle.js';
|
|
import { assertEditPermission } from '/imports/api/creature/creaturePermissions.js';
|
|
import { get, findLast } from 'lodash';
|
|
import equipItem from '/imports/api/creature/creatureProperties/methods/equipItem.js';
|
|
import { snackbar } from '/imports/ui/components/snackbars/SnackbarQueue.js';
|
|
import { getHighestOrder } from '/imports/api/parenting/order.js';
|
|
import insertProperty from '/imports/api/creature/creatureProperties/methods/insertProperty.js';
|
|
import Breadcrumbs from '/imports/ui/creature/creatureProperties/Breadcrumbs.vue';
|
|
|
|
let formIndex = {};
|
|
for (let key in propertyFormIndex){
|
|
formIndex[key + 'Form'] = propertyFormIndex[key];
|
|
}
|
|
|
|
let viewerIndex = {};
|
|
for (let key in propertyViewerIndex){
|
|
formIndex[key + 'Viewer'] = propertyViewerIndex[key];
|
|
}
|
|
|
|
export default {
|
|
components: {
|
|
...formIndex,
|
|
...viewerIndex,
|
|
PropertyIcon,
|
|
DialogBase,
|
|
PropertyToolbar,
|
|
CreaturePropertiesTree,
|
|
Breadcrumbs,
|
|
},
|
|
props: {
|
|
_id: String,
|
|
embedded: Boolean, // This dialog is embedded in a page
|
|
startInEditTab: Boolean,
|
|
},
|
|
data(){ return {
|
|
editing: !!this.startInEditTab,
|
|
// CurrentId lags behind Id by one tick so that events fired by destroying
|
|
// forms keyed to the old ID are applied before the new ID overwrites it
|
|
currentId: undefined,
|
|
}},
|
|
meteor: {
|
|
model(){
|
|
return CreatureProperties.findOne(this.currentId);
|
|
},
|
|
editPermission(){
|
|
try {
|
|
assertEditPermission(this.creature, Meteor.userId());
|
|
return true;
|
|
} catch (e) {
|
|
return false;
|
|
}
|
|
},
|
|
},
|
|
computed: {
|
|
creature(){
|
|
if (!this.model) return;
|
|
let nearestCreatureAncestor = findLast(
|
|
this.model.ancestors,
|
|
ref => ref.collection === 'creatures'
|
|
);
|
|
if (!nearestCreatureAncestor) return;
|
|
return Creatures.findOne(nearestCreatureAncestor.id);
|
|
},
|
|
creatureId(){
|
|
return this.creature && this.creature._id;
|
|
},
|
|
},
|
|
watch: {
|
|
_id: {
|
|
immediate: true,
|
|
handler(newId){
|
|
this.$nextTick(() => {
|
|
this.currentId = newId;
|
|
});
|
|
}
|
|
},
|
|
},
|
|
reactiveProvide: {
|
|
name: 'context',
|
|
include: ['creatureId', 'editPermission'],
|
|
},
|
|
methods: {
|
|
getPropertyName,
|
|
duplicate(){
|
|
duplicateProperty.call({_id: this.currentId}, (error, id) => {
|
|
if (error) {
|
|
console.error(error);
|
|
}
|
|
if (this.embedded){
|
|
this.$emit('duplicated', id);
|
|
} else {
|
|
this.$store.dispatch('popDialogStack');
|
|
}
|
|
});
|
|
},
|
|
change({path, value, ack}){
|
|
if (path && path[0] === 'equipped'){
|
|
equipItem.call({_id: this.currentId, equipped: value}, (error) =>{
|
|
if (error) console.warn(error);
|
|
ack && ack(error && error.reason || error);
|
|
});
|
|
return;
|
|
}
|
|
updateCreatureProperty.call({_id: this.currentId, path, value}, (error) =>{
|
|
if (error) console.warn(error);
|
|
ack && ack(error && error.reason || error);
|
|
});
|
|
},
|
|
damage({operation, value, ack}){
|
|
damageProperty.call({_id: this.currentId, operation, value}, (error) =>{
|
|
if (error) console.warn(error);
|
|
ack && ack(error && error.reason || error);
|
|
});
|
|
},
|
|
push({path, value, ack}){
|
|
pushToProperty.call({_id: this.currentId, path, value}, (error) =>{
|
|
if (error) console.warn(error);
|
|
ack && ack(error && error.reason || error);
|
|
});
|
|
},
|
|
pull({path, ack}){
|
|
let itemId = get(this.model, path)._id;
|
|
path.pop();
|
|
pullFromProperty.call({_id: this.currentId, path, itemId}, (error) =>{
|
|
if (error) console.warn(error);
|
|
ack && ack(error && error.reason || error);
|
|
});
|
|
},
|
|
remove(){
|
|
const _id = this.currentId;
|
|
softRemoveProperty.call({_id});
|
|
if (this.embedded){
|
|
this.$emit('removed');
|
|
} else {
|
|
this.$store.dispatch('popDialogStack');
|
|
}
|
|
snackbar({
|
|
text: `Deleted ${getPropertyTitle(this.model)}`,
|
|
callbackName: 'undo',
|
|
callback(){
|
|
restoreProperty.call({_id});
|
|
},
|
|
});
|
|
},
|
|
selectSubProperty(_id){
|
|
this.$store.commit('pushDialogStack', {
|
|
component: 'creature-property-dialog',
|
|
elementId: `tree-node-${_id}`,
|
|
data: {_id},
|
|
});
|
|
},
|
|
addProperty(){
|
|
let parentPropertyId = this.model._id;
|
|
// Open the dialog to insert the property
|
|
this.$store.commit('pushDialogStack', {
|
|
component: 'creature-property-creation-dialog',
|
|
elementId: 'insert-creature-property-btn',
|
|
callback(creatureProperty){
|
|
if (!creatureProperty) return;
|
|
// Get order and parent
|
|
let parentRef = {
|
|
id: parentPropertyId,
|
|
collection: 'creatureProperties',
|
|
};
|
|
creatureProperty.order = getHighestOrder({
|
|
collection: CreatureProperties,
|
|
ancestorId: parentRef.id,
|
|
}) + 0.5;
|
|
|
|
// Insert the property
|
|
let id = insertProperty.call({creatureProperty, parentRef});
|
|
return `tree-node-${id}`;
|
|
}
|
|
});
|
|
}
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<style lang="css" scoped>
|
|
</style>
|