Files
DiceCloud/app/imports/ui/creature/CreatureForm.vue
2022-08-15 10:32:27 +02:00

270 lines
8.2 KiB
Vue

<template lang="html">
<div class="creature-form">
<text-field
label="Name"
:value="model.name"
:error-messages="errors.name"
@change="(value, ack) => $emit('change', {path: ['name'], value, ack})"
/>
<text-field
label="Alignment"
:value="model.alignment"
:error-messages="errors.alignment"
@change="(value, ack) => $emit('change', {path: ['alignment'], value, ack})"
/>
<text-field
label="Gender"
:value="model.gender"
:error-messages="errors.gender"
@change="(value, ack) => $emit('change', {path: ['gender'], value, ack})"
/>
<text-field
label="Picture URL"
hint="A link to a high resolution image"
:value="model.picture"
:error-messages="errors.picture"
@change="(value, ack) => $emit('change', {path: ['picture'], value, ack})"
/>
<text-field
label="Avatar picture URL"
hint="A link to a smaller, square image to use as an avatar"
:value="model.avatarPicture"
:error-messages="errors.avatarPicture"
@change="(value, ack) => $emit('change', {path: ['avatarPicture'], value, ack})"
/>
<form-sections>
<form-section name="Settings">
<v-switch
label="Hide redundant stats"
:input-value="model.settings.hideUnusedStats"
@change="value => $emit('change', {path: ['settings','hideUnusedStats'], value: !!value})"
/>
<v-switch
label="Show spells tab"
:input-value="!model.settings.hideSpellsTab"
@change="changeHideSpellsTab"
/>
<v-switch
label="Show tree tab"
:input-value="model.settings.showTreeTab"
@change="changeShowTreeTab"
/>
<text-field
label="Hit Dice reset multiplier"
hint="What fraction of your hit dice are reset every long rest"
placeholder="0.5"
type="number"
min="0"
max="1"
step="0.1"
:value="model.settings.hitDiceResetMultiplier"
@change="(value, ack) => $emit('change', {path: ['settings','hitDiceResetMultiplier'], value, ack})"
/>
<text-field
label="Discord Webhook URL"
hint="This creature's logs will be posted to the discord channel"
placeholder="https://discordapp.com/api/webhooks/<id>/<token>"
:value="model.settings.discordWebhook"
@change="(value, ack) => $emit('change', {path: ['settings','discordWebhook'], value, ack})"
/>
<!--
<v-switch
label="Use variant encumbrance"
:input-value="model.settings.useVariantEncumbrance"
:error-messages="errors.useVariantEncumbrance"
@change="value => $emit('change', {path: ['settings','useVariantEncumbrance'], value})"
/>
<v-switch
label="Hide spells tab"
:input-value="model.settings.hideSpellcasting"
:error-messages="errors.hideSpellcasting"
@change="value => $emit('change', {path: ['settings','hideSpellcasting'], value})"
/>
<v-switch
label="Swap ability scores and modifiers"
:input-value="model.settings.swapStatAndModifier"
:error-messages="errors.swapStatAndModifier"
@change="value => $emit('change', {path: ['settings','swapStatAndModifier'], value})"
/>
-->
</form-section>
<form-section name="Libraries">
<smart-switch
label="All user libraries"
:value="allUserLibraries"
@change="allUserLibrariesChange"
/>
<library-list
selection
:disabled="!model.allowedLibraries && !model.allowedLibraryCollections"
:libraries-selected="model.allowedLibraries"
:library-collections-selected="model.allowedLibraryCollections"
:libraries-selected-by-collections="librariesSelectedByCollections"
@select-library="selectLibrary"
@select-library-collection="selectLibraryCollection"
/>
<v-progress-linear
v-if="libraryWriteLoading"
style="margin: 12px -24px -16px -24px; width: calc(100% + 48px);"
indeterminate
/>
<p
v-if="libraryWriteError"
class="text--error"
>
{{ libraryWriteError }}
</p>
</form-section>
</form-sections>
</div>
</template>
<script lang="js">
import { union, without, debounce } from 'lodash';
import FormSection, {FormSections} from '/imports/ui/properties/forms/shared/FormSection.vue';
import LibraryList from '/imports/ui/library/LibraryList.vue';
import LibraryCollections from '/imports/api/library/LibraryCollections.js';
import {changeAllowedLibraries, toggleAllUserLibraries} from '/imports/api/creature/creatures/methods/changeAllowedLibraries.js';
export default {
components: {
FormSection,
FormSections,
LibraryList,
},
props: {
stored: {
type: Boolean,
},
model: {
type: Object,
default: () => ({}),
},
errors: {
type: Object,
default: () => ({}),
},
attackForm: {
type: Boolean,
},
disabled: Boolean,
},
data() { return {
libraryCollections: this.model.allowedLibraryCollections,
libraries: this.model.allowedLibraries,
libraryWriteLoading: false,
libraryWriteError: undefined,
dirty: false, // If there are pending changes
}
},
computed: {
allUserLibraries() {
return !this.model.allowedLibraries && !this.model.allowedLibraryCollections
},
},
watch: {
'model.allowedLibraryCollections': function (newVal) {
if (!this.dirty) this.libraryCollections = newVal;
},
'model.allowedLibraries': function (newVal) {
if (!this.dirty) this.libraries = newVal;
},
},
mounted() {
this.updateAllowedLibraryCollections = debounce(() => {
this.libraryWriteLoading = true;
this.dirty = false;
changeAllowedLibraries.call({
_id: this.model._id,
allowedLibraryCollections: this.libraryCollections,
}, error => {
this.libraryWriteLoading = false;
this.libraryWriteError = error;
});
}, 500);
this.updateAllowedLibraries = debounce(() => {
this.libraryWriteLoading = true;
this.dirty = false;
changeAllowedLibraries.call({
_id: this.model._id,
allowedLibraries: this.libraries,
}, error => {
this.libraryWriteLoading = false;
this.libraryWriteError = error;
});
}, 500);
},
meteor: {
$subscribe: {
'libraries': [],
},
librariesSelectedByCollections() {
let ids = [];
if (!this.model.allowedLibraryCollections) return ids;
LibraryCollections.find({
_id: { $in: this.model.allowedLibraryCollections }
}).forEach(collection => {
ids = union(ids, collection.libraries);
});
return ids;
},
},
methods: {
changeShowTreeTab(value){
this.$emit('change', {
path: ['settings','showTreeTab'],
value: !!value
});
let currentTab = this.$store.getters.tabById(this.model._id);
if (!value && currentTab === 5){
this.$store.commit(
'setTabForCharacterSheet',
{id: this.model._id, tab: 4}
);
}
},
changeHideSpellsTab(value){
this.$emit('change', {
path: ['settings','hideSpellsTab'],
value: !value
});
let currentTab = this.$store.getters.tabById(this.model._id);
if (!value && currentTab === 3){
this.$store.commit(
'setTabForCharacterSheet',
{id: this.model._id, tab: 4}
);
}
},
allUserLibrariesChange(value, ack) {
toggleAllUserLibraries.call({
_id: this.model._id,
value,
}, error => ack(error));
},
selectLibrary(id, val) {
if (val) {
this.libraries = union(this.libraries, [id]);
} else {
this.libraries = without(this.libraries, id);
}
this.dirty = true;
this.updateAllowedLibraries();
},
selectLibraryCollection(id, val) {
if (val) {
this.libraryCollections = union(this.libraryCollections, [id]);
} else {
this.libraryCollections = without(this.libraryCollections, id);
}
this.dirty = true;
this.updateAllowedLibraryCollections();
},
},
};
</script>
<style lang="css" scoped>
</style>