Compare commits

...

11 Commits

Author SHA1 Message Date
Thaum Rystra
afa641a290 made ids optional in users publication 2020-05-21 16:52:36 +02:00
Thaum Rystra
81131ddb9f Allowed non-patreons to view, but not edit, sheets and libraries 2020-05-21 16:50:06 +02:00
Thaum Rystra
7a442d8fb9 Improved publications to be reactive to permission changes 2020-05-21 15:13:30 +02:00
Thaum Rystra
26d836767b Fixed some broken forms 2020-05-21 14:57:35 +02:00
Thaum Rystra
c4a52ca744 Display an error if the character can't be found or viewed 2020-05-21 13:36:59 +02:00
Thaum Rystra
b640ce457f Removed unused story files 2020-05-21 12:49:40 +02:00
Thaum Rystra
13a0d66433 Disabled various buttons when the user doesn't have edit permission 2020-05-21 12:47:02 +02:00
Thaum Rystra
47aad6d186 Added UI to unshare a view-only character with yourself 2020-05-20 16:52:05 +02:00
Thaum Rystra
32eb85a099 Refactored all forms to disable all fields without edit permission 2020-05-20 16:40:47 +02:00
Thaum Rystra
048b150c88 Significantly improved performance of interacting with large library trees 2020-05-19 01:28:29 +02:00
Thaum Rystra
65d367942e Got cards to behave themselves in columns and not overflow width 2020-05-19 01:03:18 +02:00
89 changed files with 1303 additions and 1962 deletions

View File

@@ -49,3 +49,4 @@ aldeed:schema-index
akryum:vue-component akryum:vue-component
accounts-patreon accounts-patreon
bozhao:link-accounts bozhao:link-accounts
peerlibrary:reactive-publish

View File

@@ -27,6 +27,8 @@ caching-html-compiler@1.1.3
callback-hook@1.3.0 callback-hook@1.3.0
check@1.3.1 check@1.3.1
chuangbo:marked@0.3.5_1 chuangbo:marked@0.3.5_1
coffeescript@2.4.1
coffeescript-compiler@2.4.1
dburles:collection-helpers@1.1.0 dburles:collection-helpers@1.1.0
dburles:mongo-collection-instances@0.3.5 dburles:mongo-collection-instances@0.3.5
ddp@1.4.0 ddp@1.4.0
@@ -91,6 +93,12 @@ observe-sequence@1.0.16
ongoworks:speakingurl@9.0.0 ongoworks:speakingurl@9.0.0
ordered-dict@1.1.0 ordered-dict@1.1.0
patreon-oauth@0.1.0 patreon-oauth@0.1.0
peerlibrary:assert@0.3.0
peerlibrary:extend-publish@0.6.0
peerlibrary:fiber-utils@0.10.0
peerlibrary:reactive-mongo@0.4.0
peerlibrary:reactive-publish@0.10.0
peerlibrary:server-autorun@0.8.0
percolate:migrations@0.9.8 percolate:migrations@0.9.8
percolate:synced-cron@1.3.2 percolate:synced-cron@1.3.2
promise@0.11.2 promise@0.11.2

View File

@@ -4,6 +4,7 @@ import deathSaveSchema from '/imports/api/properties/subSchemas/DeathSavesSchema
import ColorSchema from '/imports/api/properties/subSchemas/ColorSchema.js'; import ColorSchema from '/imports/api/properties/subSchemas/ColorSchema.js';
import SharingSchema from '/imports/api/sharing/SharingSchema.js'; import SharingSchema from '/imports/api/sharing/SharingSchema.js';
import {assertEditPermission} from '/imports/api/sharing/sharingPermissions.js'; import {assertEditPermission} from '/imports/api/sharing/sharingPermissions.js';
import { getUserTier } from '/imports/api/users/patreon/tiers.js';
import '/imports/api/creature/removeCreature.js'; import '/imports/api/creature/removeCreature.js';
@@ -108,6 +109,11 @@ const insertCreature = new ValidatedMethod({
throw new Meteor.Error('Creatures.methods.insert.denied', throw new Meteor.Error('Creatures.methods.insert.denied',
'You need to be logged in to insert a creature'); 'You need to be logged in to insert a creature');
} }
let tier = getUserTier(this.userId);
if (!tier.paidBenefits){
throw new Meteor.Error('Creatures.methods.insert.denied',
`The ${tier.name} tier does not allow you to insert a creature`);
}
// Create the creature document // Create the creature document
let charId = Creatures.insert({ let charId = Creatures.insert({

View File

@@ -1,8 +1,10 @@
import { ValidatedMethod } from 'meteor/mdg:validated-method';
import SimpleSchema from 'simpl-schema'; import SimpleSchema from 'simpl-schema';
import SharingSchema from '/imports/api/sharing/SharingSchema.js'; import SharingSchema from '/imports/api/sharing/SharingSchema.js';
import simpleSchemaMixin from '/imports/api/creature/mixins/simpleSchemaMixin.js'; import simpleSchemaMixin from '/imports/api/creature/mixins/simpleSchemaMixin.js';
import { assertEditPermission, assertOwnership } from '/imports/api/sharing/sharingPermissions.js'; import { assertEditPermission, assertOwnership } from '/imports/api/sharing/sharingPermissions.js';
import LibraryNodes from '/imports/api/library/LibraryNodes.js'; import LibraryNodes from '/imports/api/library/LibraryNodes.js';
import { getUserTier } from '/imports/api/users/patreon/tiers.js'
/** /**
* Libraries are trees of library nodes where each node represents a character * Libraries are trees of library nodes where each node represents a character
@@ -38,6 +40,15 @@ const insertLibrary = new ValidatedMethod({
], ],
schema: LibrarySchema.omit('owner', 'isDefault'), schema: LibrarySchema.omit('owner', 'isDefault'),
run(library) { run(library) {
if (!this.userId) {
throw new Meteor.Error('Libraries.methods.insert.denied',
'You need to be logged in to insert a library');
}
let tier = getUserTier(this.userId);
if (!tier.paidBenefits){
throw new Meteor.Error('Libraries.methods.insert.denied',
`The ${tier.name} tier does not allow you to insert a library`);
}
library.owner = this.userId; library.owner = this.userId;
return Libraries.insert(library); return Libraries.insert(library);
}, },

View File

@@ -1,17 +1,18 @@
import { _ } from 'meteor/underscore'; import { _ } from 'meteor/underscore';
import fetchDocByRef from '/imports/api/parenting/fetchDocByRef.js'; import fetchDocByRef from '/imports/api/parenting/fetchDocByRef.js';
import { getUserTier } from '/imports/api/users/patreon/tiers.js';
function assertIdValid(userId){ function assertIdValid(userId){
if (!userId || typeof userId !== 'string'){ if (!userId || typeof userId !== 'string'){
throw new Meteor.Error("Permission denied", throw new Meteor.Error('Permission denied',
"No user ID given for edit permission check"); 'No user ID given for edit permission check');
} }
} }
function assertdocExists(doc){ function assertdocExists(doc){
if (!doc){ if (!doc){
throw new Meteor.Error("Permission denied", throw new Meteor.Error('Permission denied',
`No such document exists`); 'No such document exists');
} }
} }
@@ -21,8 +22,8 @@ export function assertOwnership(doc, userId){
if (doc.owner === userId ){ if (doc.owner === userId ){
return true; return true;
} else { } else {
throw new Meteor.Error("Permission denied", throw new Meteor.Error('Permission denied',
`You are not the owner of this document`); 'You are not the owner of this document');
} }
} }
@@ -35,11 +36,34 @@ export function assertOwnership(doc, userId){
export function assertEditPermission(doc, userId) { export function assertEditPermission(doc, userId) {
assertIdValid(userId); assertIdValid(userId);
assertdocExists(doc); assertdocExists(doc);
if (doc.owner === userId || _.contains(doc.writers, userId)){ let user = Meteor.users.findOne(userId, {
fields: {
'services.patreon': 1,
'roles': 1,
}
});
// Admin override
if (user.roles && user.roles.includes('admin')){
return true;
}
// Ensure the user is of a tier with paid benefits
let tier = getUserTier(user);
if (!tier.paidBenefits){
throw new Meteor.Error('Edit permission denied',
`The ${tier.name} tier does not allow you to edit this document`);
}
// Ensure the user is authorized for this specific document
if (
doc.owner === userId ||
_.contains(doc.writers, userId)
){
return true; return true;
} else { } else {
throw new Meteor.Error("Edit permission denied", throw new Meteor.Error('Edit permission denied',
`You do not have permission to edit this document`); 'You do not have permission to edit this document');
} }
} }
@@ -74,8 +98,8 @@ export function assertViewPermission(doc, userId) {
){ ){
return true; return true;
} else { } else {
throw new Meteor.Error("View permission denied", throw new Meteor.Error('View permission denied',
`You do not have permission to view this character`); 'You do not have permission to view this character');
} }
} }

View File

@@ -59,7 +59,11 @@ export function getTierByEntitledCents(entitledCents = 0){
export function getUserTier(user){ export function getUserTier(user){
if (!user) throw 'user must be provided'; if (!user) throw 'user must be provided';
if (typeof user === 'string'){ if (typeof user === 'string'){
user = Meteor.users.findOne(user); user = Meteor.users.findOne(user, {
fields: {
'services.patreon': 1,
}
});
if (!user) throw 'User not found'; if (!user) throw 'User not found';
} }
const entitledCents = getEntitledCents(user); const entitledCents = getEntitledCents(user);

View File

@@ -2,11 +2,14 @@ import Creatures from '/imports/api/creature/Creatures.js';
import Parties from '/imports/api/campaign/Parties.js'; import Parties from '/imports/api/campaign/Parties.js';
Meteor.publish('characterList', function(){ Meteor.publish('characterList', function(){
this.autorun(function (){
var userId = this.userId; var userId = this.userId;
if (!userId) { if (!userId) {
return []; return this.ready();
} }
const user = Meteor.user(); const user = Meteor.users.findOne(this.userId, {
fields: {subscribedCharacters: 1}
});
const subs = user && user.subscribedCharacters || []; const subs = user && user.subscribedCharacters || [];
return [ return [
Creatures.find({ Creatures.find({
@@ -35,4 +38,5 @@ Meteor.publish('characterList', function(){
), ),
Parties.find({owner: userId}), Parties.find({owner: userId}),
]; ];
});
}); });

View File

@@ -1,3 +1,4 @@
import SimpleSchema from 'simpl-schema';
import Libraries from '/imports/api/library/Libraries.js'; import Libraries from '/imports/api/library/Libraries.js';
import LibraryNodes from '/imports/api/library/LibraryNodes.js'; import LibraryNodes from '/imports/api/library/LibraryNodes.js';
@@ -10,8 +11,13 @@ Meteor.publish('standardLibraries', function(){
}); });
Meteor.publish('libraries', function(){ Meteor.publish('libraries', function(){
if (!this.userId) return []; this.autorun(function (){
const user = Meteor.user(); if (!this.userId) {
return this.ready();
}
const user = Meteor.users.findOne(this.userId, {
fields: {subscribedLibraries: 1}
});
const subs = user && user.subscribedLibraries || []; const subs = user && user.subscribedLibraries || [];
return Libraries.find({ return Libraries.find({
$or: [ $or: [
@@ -21,9 +27,19 @@ Meteor.publish('libraries', function(){
{_id: {$in: subs}}, {_id: {$in: subs}},
] ]
}); });
});
});
let libraryIdSchema = new SimpleSchema({
libraryId: {
type: String,
regEx: SimpleSchema.RegEx.Id,
},
}); });
Meteor.publish('library', function(libraryId){ Meteor.publish('library', function(libraryId){
libraryIdSchema.validate({libraryId});
this.autorun(function (){
if (!this.userId) return []; if (!this.userId) return [];
let libraryCursor = Libraries.find({ let libraryCursor = Libraries.find({
_id: libraryId, _id: libraryId,
@@ -34,11 +50,12 @@ Meteor.publish('library', function(libraryId){
{public: true}, {public: true},
], ],
}); });
if (!libraryCursor.count()) return []; if (!libraryCursor.count()) return this.ready();
return [ return [
libraryCursor, libraryCursor,
LibraryNodes.find({ LibraryNodes.find({
'ancestors.id': libraryId, 'ancestors.id': libraryId,
}), }),
]; ];
});
}); });

View File

@@ -1,10 +1,20 @@
import SimpleSchema from 'simpl-schema';
import Creatures from '/imports/api/creature/Creatures.js'; import Creatures from '/imports/api/creature/Creatures.js';
import CreatureProperties from '/imports/api/creature/CreatureProperties.js'; import CreatureProperties from '/imports/api/creature/CreatureProperties.js';
Meteor.publish('singleCharacter', function(charId){ let schema = new SimpleSchema({
creatureId: {
type: String,
regEx: SimpleSchema.RegEx.Id,
},
});
Meteor.publish('singleCharacter', function(creatureId){
schema.validate({ creatureId });
this.autorun(function (){
let userId = this.userId; let userId = this.userId;
var char = Creatures.findOne({ let creatureCursor = Creatures.find({
_id: charId, _id: creatureId,
$or: [ $or: [
{readers: userId}, {readers: userId},
{writers: userId}, {writers: userId},
@@ -12,14 +22,12 @@ Meteor.publish('singleCharacter', function(charId){
{public: true}, {public: true},
], ],
}); });
if (char){ if (!creatureCursor.count()) return this.ready();
return [ return [
Creatures.find({_id: charId}), creatureCursor,
CreatureProperties.find({ CreatureProperties.find({
'ancestors.id': charId, 'ancestors.id': creatureId,
}), }),
]; ];
} else { });
return [];
}
}); });

View File

@@ -1,3 +1,4 @@
import SimpleSchema from 'simpl-schema';
import '/imports/api/users/Users.js'; import '/imports/api/users/Users.js';
import Invites from '/imports/api/users/Invites.js'; import Invites from '/imports/api/users/Invites.js';
@@ -32,8 +33,20 @@ Meteor.publish('user', function(){
]; ];
}); });
let userIdsSchema = new SimpleSchema({
ids: {
type: Array,
optional: true,
},
'ids.$':{
type: String,
regEx: SimpleSchema.RegEx.Id,
}
})
Meteor.publish('userPublicProfiles', function(ids){ Meteor.publish('userPublicProfiles', function(ids){
if (!this.userId || !Array.isArray(ids)) return []; userIdsSchema.validate({ids});
if (!this.userId || !ids) return this.ready();
return Meteor.users.find({ return Meteor.users.find({
_id: {$in: ids} _id: {$in: ids}
},{ },{

View File

@@ -1,26 +0,0 @@
<template lang="html">
<v-layout justify-center>
<color-picker v-model="color"/>
</v-layout>
</template>
<script>
import ColorPicker from '/imports/ui/components/ColorPicker.vue';
export default {
data(){ return {
color: '#CE93D8',
}},
components: {
ColorPicker,
},
watch: {
color(newColor){
console.log(`%c${newColor}`, `background: ${newColor};`);
},
},
};
</script>
<style lang="css" scoped>
</style>

View File

@@ -1,24 +0,0 @@
<template lang="html">
<column-layout>
<div v-for="(height, n) in cardHeights" :key="n">
<v-card :height="height"/>
</div >
</column-layout>
</template>
<script>
import ColumnLayout from "/imports/ui/components/ColumnLayout.vue";
import { _ } from "meteor/underscore";
export default {
dontWrap: true,
data(){return{
cardHeights: _.times(12, n => `${_.random(100, 500)}px`),
}},
components: {
ColumnLayout,
},
};
</script>
<style lang="css" scoped>
</style>

View File

@@ -40,6 +40,7 @@ export default {
Table and width set because firefox does not support break-inside: avoid Table and width set because firefox does not support break-inside: avoid
*/ */
display: table; display: table;
table-layout: fixed;
width: 100%; width: 100%;
-webkit-backface-visibility: hidden; -webkit-backface-visibility: hidden;
-webkit-transform: translateX(0); -webkit-transform: translateX(0);

View File

@@ -1,16 +0,0 @@
<template lang="html">
<icon-search/>
</template>
<script>
import IconSearch from '/imports/ui/components/IconSearch.vue';
export default {
components: {
IconSearch,
},
};
</script>
<style lang="css" scoped>
</style>

View File

@@ -11,7 +11,7 @@ import Computed from '/imports/ui/components/computation/Computed.vue';
export default { export default {
inject: { inject: {
computationContext: { default: {} } context: { default: {} }
}, },
components: { components: {
Computed, Computed,
@@ -24,8 +24,8 @@ export default {
}, },
computed: { computed: {
scope(){ scope(){
return this.computationContext.creature && return this.context.creature &&
this.computationContext.creature.variables; this.context.creature.variables;
} }
} }
} }

View File

@@ -7,21 +7,25 @@
full-width full-width
min-width="290px" min-width="290px"
> >
<template v-slot:activator="{ on }"> <template #activator="{ on }">
<v-text-field <v-text-field
:value="formattedSafeValue" :value="formattedSafeValue"
v-bind="$attrs" v-bind="$attrs"
prepend-icon="event" prepend-icon="event"
readonly readonly
v-on="on"
:loading="loading" :loading="loading"
:error-messages="errors" :error-messages="errors"
:disabled="isDisabled"
box
v-on="on"
@focus="focused = true" @focus="focused = true"
@blur="focused = false" @blur="focused = false"
box />
></v-text-field>
</template> </template>
<v-date-picker :value="formattedSafeValue" @input="dateInput"></v-date-picker> <v-date-picker
:value="formattedSafeValue"
@input="dateInput"
/>
</v-menu> </v-menu>
</template> </template>
@@ -34,17 +38,17 @@ export default {
data(){return { data(){return {
menu: false, menu: false,
};}, };},
computed: {
formattedSafeValue(){
return format(this.safeValue, 'YYYY-MM-DD')
},
},
methods: { methods: {
dateInput(e){ dateInput(e){
this.menu = false; this.menu = false;
this.input(e); this.input(e);
}, },
}, },
computed: {
formattedSafeValue(){
return format(this.safeValue, 'YYYY-MM-DD')
},
},
} }
</script> </script>

View File

@@ -0,0 +1,18 @@
<template lang="html">
<v-checkbox
v-bind="$attrs"
:loading="loading"
:error-messages="errors"
:input-value="safeValue"
:disabled="isDisabled"
@change="change"
/>
</template>
<script>
import SmartInput from '/imports/ui/components/global/SmartInputMixin.js';
export default {
mixins: [SmartInput],
};
</script>

View File

@@ -6,6 +6,7 @@
:value="safeValue" :value="safeValue"
:menu-props="{auto: true, lazy: true}" :menu-props="{auto: true, lazy: true}"
:search-input.sync="searchInput" :search-input.sync="searchInput"
:disabled="isDisabled"
box box
@change="customChange" @change="customChange"
@focus="focused = true" @focus="focused = true"

View File

@@ -1,92 +0,0 @@
<template lang="html">
<v-container grid-list-lg>
<v-layout row wrap align-center>
<v-flex xs6>
<text-field
:value="value1"
@change="value1Change"
/>
</v-flex>
<v-flex xs6>
<div class="flex">
{{value1}}
</div>
</v-flex>
<v-flex xs6>
<text-field
:value="changingValue"
@change="(val, ack) => {changingValue = val; ack()}"
/>
</v-flex>
<v-flex xs6>
{{changingValue}}
</v-flex>
<v-flex xs6>
<text-area
:value="value2"
@change="value2Change"
label="text-area"
/>
</v-flex>
<v-flex xs6>
{{value2}}
</v-flex>
<v-flex xs6>
<smart-select
:value="value3"
:items="['meep', 'moop', 'maap']"
label="select"
@change="(val, ack) => {setTimeout(() => {value3 = val; ack()}, 700)}"
/>
</v-flex>
<v-flex xs6>
{{value3}}
</v-flex>
</v-layout>
</v-container>
</template>
<script>
export default {
data(){ return {
value1: 'Five letters minimum, always trimmed',
value2: 'Takes 2s to write',
value3: 'meep',
changingValue: `Changes every 3s ${Math.random().toFixed(4)}`,
}},
methods: {
value1Change(val, ack){
let error;
val = val.trim();
if (!val || val.length < 5){
error = "Too short";
} else {
this.value1 = val;
}
ack(error);
},
value2Change(val, ack){
setTimeout(() => {
this.value2 = val;
ack();
}, 2000);
},
},
mounted() {
setInterval(() => {
this.changingValue = `Changes every 3s ${Math.random().toFixed(4)}`;
}, 3000);
},
};
</script>
<style lang="css" scoped>
.layout {
margin: 20px 0;
}
</style>

View File

@@ -9,6 +9,9 @@
import { debounce } from 'lodash'; import { debounce } from 'lodash';
export default { export default {
inject: {
context: { default: {} }
},
inheritAttrs: false, inheritAttrs: false,
data(){ return { data(){ return {
error: false, error: false,
@@ -20,12 +23,9 @@ export default {
inputValue: this.value, inputValue: this.value,
};}, };},
props: { props: {
value: [String, Number, Date, Array], value: [String, Number, Date, Array, Boolean],
debounceTime: {
type: Number,
default: 750,
},
errorMessages: [String, Array], errorMessages: [String, Array],
disabled: Boolean,
}, },
watch: { watch: {
focused(newFocus){ focused(newFocus){
@@ -54,7 +54,7 @@ export default {
this.safeValue = newValue; this.safeValue = newValue;
} }
}, },
safeValue(newSafeValue){ safeValue(){
// The safe value only gets updated from the parent, so it must be valid // The safe value only gets updated from the parent, so it must be valid
this.error = false; this.error = false;
this.ackErrors = null; this.ackErrors = null;
@@ -104,6 +104,16 @@ export default {
} }
return errors; return errors;
}, },
isDisabled(){
return this.context.editPermission === false || this.disabled;
},
debounceTime() {
if (Number.isFinite(this.context.debounceTime)){
return this.context.debounceTime;
} else {
return 750;
}
},
}, },
created(){ created(){
this.debouncedChange = debounce(this.change, this.debounceTime); this.debouncedChange = debounce(this.change, this.debounceTime);

View File

@@ -5,12 +5,16 @@
:error-messages="errors" :error-messages="errors"
:value="safeValue" :value="safeValue"
:menu-props="{auto: true, lazy: true}" :menu-props="{auto: true, lazy: true}"
:disabled="isDisabled"
box
@change="change" @change="change"
@focus="focused = true" @focus="focused = true"
@blur="focused = false" @blur="focused = false"
box
> >
<slot name="prepend" slot="prepend"/> <slot
slot="prepend"
name="prepend"
/>
</v-select> </v-select>
</template> </template>

View File

@@ -0,0 +1,18 @@
<template lang="html">
<v-switch
v-bind="$attrs"
:loading="loading"
:error-messages="errors"
:input-value="safeValue"
:disabled="isDisabled"
@change="change"
/>
</template>
<script>
import SmartInput from '/imports/ui/components/global/SmartInputMixin.js';
export default {
mixins: [SmartInput],
};
</script>

View File

@@ -4,11 +4,12 @@
:loading="loading" :loading="loading"
:error-messages="errors" :error-messages="errors"
:value="safeValue" :value="safeValue"
:disabled="isDisabled"
:auto-grow="autoGrow" :auto-grow="autoGrow"
box
@input="input" @input="input"
@focus="focused = true" @focus="focused = true"
@blur="focused = false" @blur="focused = false"
box
/> />
</template> </template>

View File

@@ -4,10 +4,11 @@
:loading="loading" :loading="loading"
:error-messages="errors" :error-messages="errors"
:value="safeValue" :value="safeValue"
:disabled="isDisabled"
box
@input="input" @input="input"
@focus="focused = true" @focus="focused = true"
@blur="focused = false" @blur="focused = false"
box
/> />
</template> </template>

View File

@@ -5,9 +5,13 @@ import TextField from '/imports/ui/components/global/TextField.vue';
import TextArea from '/imports/ui/components/global/TextArea.vue'; import TextArea from '/imports/ui/components/global/TextArea.vue';
import SmartSelect from '/imports/ui/components/global/SmartSelect.vue'; import SmartSelect from '/imports/ui/components/global/SmartSelect.vue';
import SmartCombobox from '/imports/ui/components/global/SmartCombobox.vue'; import SmartCombobox from '/imports/ui/components/global/SmartCombobox.vue';
import SmartCheckbox from '/imports/ui/components/global/SmartCheckbox.vue';
import SmartSwitch from '/imports/ui/components/global/SmartSwitch.vue';
Vue.component('DatePicker', DatePicker); Vue.component('DatePicker', DatePicker);
Vue.component('TextField', TextField); Vue.component('TextField', TextField);
Vue.component('TextArea', TextArea); Vue.component('TextArea', TextArea);
Vue.component('SmartSelect', SmartSelect); Vue.component('SmartSelect', SmartSelect);
Vue.component('SmartCombobox', SmartCombobox); Vue.component('SmartCombobox', SmartCombobox);
Vue.component('SmartCheckbox', SmartCheckbox);
Vue.component('SmartSwitch', SmartSwitch);

View File

@@ -46,7 +46,9 @@
v-show="showExpanded" v-show="showExpanded"
class="pl-3" class="pl-3"
> >
<v-fade-transition leave-absolute>
<tree-node-list <tree-node-list
v-if="showExpanded"
:node="node" :node="node"
:children="computedChildren" :children="computedChildren"
:group="group" :group="group"
@@ -56,6 +58,14 @@
@reorganized="e => $emit('reorganized', e)" @reorganized="e => $emit('reorganized', e)"
@selected="e => $emit('selected', e)" @selected="e => $emit('selected', e)"
/> />
<div v-else>
<div
v-for="i in children.length"
:key="i"
class="dummy-node"
/>
</div>
</v-fade-transition>
</div> </div>
</v-expand-transition> </v-expand-transition>
</v-sheet> </v-sheet>
@@ -156,4 +166,7 @@
.theme--light .tree-node-title:hover { .theme--light .tree-node-title:hover {
background: rgba(0,0,0,.04); background: rgba(0,0,0,.04);
} }
.dummy-node {
height: 40px;
}
</style> </style>

View File

@@ -1,60 +0,0 @@
<template lang="html">
<v-card-text>
<tree-node-list :children="children" group="example-group" :show-empty="false"/>
</v-card-text>
</template>
<script>
import TreeNodeList from '/imports/ui/components/tree/TreeNodeList.vue';
export default {
components: {
TreeNodeList,
},
data(){ return {
children: [
{name: 'Point buy', children:[
{name: 'Strength 14', children:[]},
{name: 'Dexterity 8', children:[]},
{name: 'Constitution 14', children:[]},
{name: 'Intelligence 8', children:[]},
{name: 'Wisdom 15', children:[]},
{name: 'Charisma 12', children:[]},
]},
{name: 'Hermit', children:[
{name: 'Discovery', children:[]},
]},
{name: 'Hill Dwarf', children: [
{name: 'Dwarven combat training', children:[]},
{name: 'Dwarven resilience', children:[]},
{name: 'Dwarven toughness', children:[]},
{name: 'Stone cutting', children:[]},
]},
{name: 'Cleric', children:[
{name: 'Level 1', children:[
{name: 'Spellcasting', children:[
{name: 'Light', children:[]},
{name: 'Sacred Flame', children:[]},
{name: 'Thaumaturgy', children:[]},
]},
{name: 'Divine domain: Tempest', children:[]},
]},
{name: 'Level 2', children:[]},
{name: 'Level 3', children:[]},
{name: 'Level 4', children:[]},
{name: 'Level 5', children:[]},
]},
],
otherChildren: [],
drag: false,
}},
computed: {
dataString(){
return JSON.stringify(this.children, null, 2);
}
},
};
</script>
<style lang="css" scoped>
</style>

View File

@@ -5,6 +5,7 @@
:value="model.name" :value="model.name"
:error-messages="errors.name" :error-messages="errors.name"
:debounce-time="debounceTime" :debounce-time="debounceTime"
:disabled="disabled"
@change="(value, ack) => $emit('change', {path: ['name'], value, ack})" @change="(value, ack) => $emit('change', {path: ['name'], value, ack})"
/> />
<text-field <text-field
@@ -12,6 +13,7 @@
:value="model.alignment" :value="model.alignment"
:error-messages="errors.alignment" :error-messages="errors.alignment"
:debounce-time="debounceTime" :debounce-time="debounceTime"
:disabled="disabled"
@change="(value, ack) => $emit('change', {path: ['alignment'], value, ack})" @change="(value, ack) => $emit('change', {path: ['alignment'], value, ack})"
/> />
<text-field <text-field
@@ -19,6 +21,7 @@
:value="model.gender" :value="model.gender"
:error-messages="errors.gender" :error-messages="errors.gender"
:debounce-time="debounceTime" :debounce-time="debounceTime"
:disabled="disabled"
@change="(value, ack) => $emit('change', {path: ['gender'], value, ack})" @change="(value, ack) => $emit('change', {path: ['gender'], value, ack})"
/> />
<text-field <text-field
@@ -27,6 +30,7 @@
:value="model.picture" :value="model.picture"
:error-messages="errors.picture" :error-messages="errors.picture"
:debounce-time="debounceTime" :debounce-time="debounceTime"
:disabled="disabled"
@change="(value, ack) => $emit('change', {path: ['picture'], value, ack})" @change="(value, ack) => $emit('change', {path: ['picture'], value, ack})"
/> />
<text-field <text-field
@@ -35,6 +39,7 @@
:value="model.avatarPicture" :value="model.avatarPicture"
:error-messages="errors.avatarPicture" :error-messages="errors.avatarPicture"
:debounce-time="debounceTime" :debounce-time="debounceTime"
:disabled="disabled"
@change="(value, ack) => $emit('change', {path: ['avatarPicture'], value, ack})" @change="(value, ack) => $emit('change', {path: ['avatarPicture'], value, ack})"
/> />
<!-- <!--
@@ -44,18 +49,21 @@
label="Use variant encumbrance" label="Use variant encumbrance"
:input-value="model.settings.useVariantEncumbrance" :input-value="model.settings.useVariantEncumbrance"
:error-messages="errors.useVariantEncumbrance" :error-messages="errors.useVariantEncumbrance"
:disabled="disabled"
@change="value => $emit('change', {path: ['settings','useVariantEncumbrance'], value})" @change="value => $emit('change', {path: ['settings','useVariantEncumbrance'], value})"
/> />
<v-switch <v-switch
label="Hide spells tab" label="Hide spells tab"
:input-value="model.settings.hideSpellcasting" :input-value="model.settings.hideSpellcasting"
:error-messages="errors.hideSpellcasting" :error-messages="errors.hideSpellcasting"
:disabled="disabled"
@change="value => $emit('change', {path: ['settings','hideSpellcasting'], value})" @change="value => $emit('change', {path: ['settings','hideSpellcasting'], value})"
/> />
<v-switch <v-switch
label="Swap ability scores and modifiers" label="Swap ability scores and modifiers"
:input-value="model.settings.swapStatAndModifier" :input-value="model.settings.swapStatAndModifier"
:error-messages="errors.swapStatAndModifier" :error-messages="errors.swapStatAndModifier"
:disabled="disabled"
@change="value => $emit('change', {path: ['settings','swapStatAndModifier'], value})" @change="value => $emit('change', {path: ['settings','swapStatAndModifier'], value})"
/> />
</form-section> </form-section>
@@ -88,6 +96,7 @@ export default {
type: Boolean, type: Boolean,
}, },
debounceTime: Number, debounceTime: Number,
disabled: Boolean,
}, },
}; };
</script> </script>

View File

@@ -6,6 +6,7 @@
<div> <div>
<creature-form <creature-form
:model="model" :model="model"
:disabled="editPermission === false"
@change="change" @change="change"
/> />
</div> </div>
@@ -25,6 +26,7 @@ import Creatures from '/imports/api/creature/Creatures.js';
import {updateCreature} from '/imports/api/creature/Creatures.js'; import {updateCreature} from '/imports/api/creature/Creatures.js';
import DialogBase from '/imports/ui/dialogStack/DialogBase.vue'; import DialogBase from '/imports/ui/dialogStack/DialogBase.vue';
import CreatureForm from '/imports/ui/creature/CreatureForm.vue' import CreatureForm from '/imports/ui/creature/CreatureForm.vue'
import { assertEditPermission } from '/imports/api/creature/creaturePermissions.js';
export default { export default {
components: { components: {
@@ -39,6 +41,14 @@ export default {
model(){ model(){
return Creatures.findOne(this._id); return Creatures.findOne(this._id);
}, },
editPermission(){
try {
assertEditPermission(this.model, Meteor.userId());
return true;
} catch (e) {
return false;
}
},
}, },
methods: { methods: {
change({path, value, ack}){ change({path, value, ack}){

View File

@@ -2,7 +2,35 @@
<div class="character-sheet fill-height"> <div class="character-sheet fill-height">
<v-fade-transition mode="out-in"> <v-fade-transition mode="out-in">
<div <div
v-if="$subReady.singleCharacter" v-if="!$subReady.singleCharacter"
key="character-loading"
class="fill-height layout justify-center align-center"
>
<v-progress-circular
indeterminate
color="primary"
size="64"
/>
</div>
<div
v-else-if="!creature"
>
<v-layout
column
align-center
justify-center
>
<h2 style="margin: 48px 28px 16px">
Character not found
</h2>
<h3>
Either this character does not exist, or you don't have permission
to view it.
</h3>
</v-layout>
</div>
<div
v-else
key="character-tabs" key="character-tabs"
class="fill-height" class="fill-height"
> >
@@ -29,17 +57,6 @@
</v-tab-item> </v-tab-item>
</v-tabs-items> </v-tabs-items>
</div> </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> </v-fade-transition>
</div> </div>
</template> </template>
@@ -48,17 +65,13 @@
//TODO add a "no character found" screen if shown on a false address //TODO add a "no character found" screen if shown on a false address
// or on a character the user does not have permission to view // or on a character the user does not have permission to view
import Creatures from '/imports/api/creature/Creatures.js'; import Creatures from '/imports/api/creature/Creatures.js';
import removeCreature from '/imports/api/creature/removeCreature.js';
import isDarkColor from '/imports/ui/utility/isDarkColor.js';
import { mapMutations } from 'vuex';
import { theme } from '/imports/ui/theme.js';
import StatsTab from '/imports/ui/creature/character/characterSheetTabs/StatsTab.vue'; import StatsTab from '/imports/ui/creature/character/characterSheetTabs/StatsTab.vue';
import FeaturesTab from '/imports/ui/creature/character/characterSheetTabs/FeaturesTab.vue'; import FeaturesTab from '/imports/ui/creature/character/characterSheetTabs/FeaturesTab.vue';
import InventoryTab from '/imports/ui/creature/character/characterSheetTabs/InventoryTab.vue'; import InventoryTab from '/imports/ui/creature/character/characterSheetTabs/InventoryTab.vue';
import SpellsTab from '/imports/ui/creature/character/characterSheetTabs/SpellsTab.vue'; import SpellsTab from '/imports/ui/creature/character/characterSheetTabs/SpellsTab.vue';
import PersonaTab from '/imports/ui/creature/character/characterSheetTabs/PersonaTab.vue'; import PersonaTab from '/imports/ui/creature/character/characterSheetTabs/PersonaTab.vue';
import TreeTab from '/imports/ui/creature/character/characterSheetTabs/TreeTab.vue'; import TreeTab from '/imports/ui/creature/character/characterSheetTabs/TreeTab.vue';
import { recomputeCreature } from '/imports/api/creature/computation/recomputeCreature.js'; import { assertEditPermission } from '/imports/api/creature/creaturePermissions.js';
export default { export default {
components: { components: {
@@ -80,8 +93,8 @@
}, },
}, },
reactiveProvide: { reactiveProvide: {
name: 'computationContext', name: 'context',
include: ['creature'], include: ['creature', 'editPermission'],
}, },
onMounted(){ onMounted(){
this.$store.commit('setPageTitle', this.creature && this.creature.name || 'Character Sheet'); this.$store.commit('setPageTitle', this.creature && this.creature.name || 'Character Sheet');
@@ -98,7 +111,15 @@
}, },
}, },
creature(){ creature(){
return Creatures.findOne(this.creatureId) || {}; return Creatures.findOne(this.creatureId);
},
editPermission(){
try {
assertEditPermission(this.creature, Meteor.userId());
return true;
} catch (e) {
return false;
}
}, },
}, },
} }

View File

@@ -1,5 +1,6 @@
<template lang="html"> <template lang="html">
<v-tabs <v-tabs
v-if="creature"
slot="extension" slot="extension"
:value="value" :value="value"
centered centered
@@ -29,13 +30,20 @@
</template> </template>
<script> <script>
import Creatures from '/imports/api/creature/Creatures.js';
export default { export default {
props: { props: {
value: { value: {
type: Number, type: Number,
required: true, required: true,
}, },
} },
meteor: {
creature(){
return Creatures.findOne(this.$route.params.id);
},
},
} }
</script> </script>

View File

@@ -1,6 +1,7 @@
<template lang="html"> <template lang="html">
<v-toolbar-items> <v-toolbar-items v-if="creature">
<v-btn <v-btn
v-if="editPermission"
flat flat
icon icon
@click="recompute(creature._id)" @click="recompute(creature._id)"
@@ -21,7 +22,7 @@
<v-icon>more_vert</v-icon> <v-icon>more_vert</v-icon>
</v-btn> </v-btn>
</template> </template>
<v-list> <v-list v-if="editPermission">
<v-list-tile @click="deleteCharacter"> <v-list-tile @click="deleteCharacter">
<v-list-tile-title> <v-list-tile-title>
<v-icon>delete</v-icon> Delete <v-icon>delete</v-icon> Delete
@@ -38,6 +39,13 @@
</v-list-tile-title> </v-list-tile-title>
</v-list-tile> </v-list-tile>
</v-list> </v-list>
<v-list v-else>
<v-list-tile @click="unshareWithMe">
<v-list-tile-title>
<v-icon>delete</v-icon> Unshare with me
</v-list-tile-title>
</v-list-tile>
</v-list>
</v-menu> </v-menu>
</v-toolbar-items> </v-toolbar-items>
</template> </template>
@@ -49,11 +57,18 @@ import isDarkColor from '/imports/ui/utility/isDarkColor.js';
import { mapMutations } from 'vuex'; import { mapMutations } from 'vuex';
import { theme } from '/imports/ui/theme.js'; import { theme } from '/imports/ui/theme.js';
import { recomputeCreature } from '/imports/api/creature/computation/recomputeCreature.js'; import { recomputeCreature } from '/imports/api/creature/computation/recomputeCreature.js';
import { assertEditPermission } from '/imports/api/creature/creaturePermissions.js';
import { updateUserSharePermissions } from '/imports/api/sharing/sharing.js';
export default { export default {
data(){return { data(){return {
theme, theme,
}}, }},
computed: {
creatureId(){
return this.$route.params.id;
},
},
methods: { methods: {
...mapMutations([ ...mapMutations([
'toggleDrawer', 'toggleDrawer',
@@ -103,13 +118,24 @@ export default {
} }
}); });
}, },
unshareWithMe(){
updateUserSharePermissions.call({
docRef: {
collection: 'creatures',
id: this.creatureId,
},
userId: Meteor.userId(),
role: 'none',
}, (error) => {
if (error) {
console.error(error);
} else {
this.$router.push('/characterList');
}
});
},
isDarkColor, isDarkColor,
}, },
computed: {
creatureId(){
return this.$route.params.id;
},
},
meteor: { meteor: {
$subscribe: { $subscribe: {
'singleCharacter'(){ 'singleCharacter'(){
@@ -117,7 +143,15 @@ export default {
}, },
}, },
creature(){ creature(){
return Creatures.findOne(this.creatureId) || {}; return Creatures.findOne(this.creatureId);
},
editPermission(){
try {
assertEditPermission(this.creature, Meteor.userId());
return true;
} catch (e) {
return false;
}
}, },
}, },
} }

View File

@@ -5,6 +5,7 @@
<toolbar-card color=""> <toolbar-card color="">
<v-spacer slot="toolbar" /> <v-spacer slot="toolbar" />
<v-switch <v-switch
v-if="context.editPermission !== false"
slot="toolbar" slot="toolbar"
v-model="organize" v-model="organize"
label="Organize" label="Organize"
@@ -53,6 +54,9 @@ export default {
ContainerCard, ContainerCard,
ToolbarCard, ToolbarCard,
}, },
inject: {
context: { default: {} }
},
props: { props: {
creatureId: String, creatureId: String,
}, },

View File

@@ -5,6 +5,7 @@
<v-card> <v-card>
<v-card-text> <v-card-text>
<v-switch <v-switch
v-if="context.editPermission !== false"
v-model="organize" v-model="organize"
label="Organize" label="Organize"
class="justify-end" class="justify-end"
@@ -48,6 +49,9 @@ export default {
CreaturePropertiesTree, CreaturePropertiesTree,
SpellListCard, SpellListCard,
}, },
inject: {
context: { default: {} }
},
props: { props: {
creatureId: { creatureId: {
type: String, type: String,

View File

@@ -21,6 +21,7 @@
> >
<v-spacer /> <v-spacer />
<v-switch <v-switch
v-if="context.editPermission !== false"
v-model="organize" v-model="organize"
label="Organize" label="Organize"
class="mx-3" class="mx-3"
@@ -153,6 +154,9 @@
PropertyIcon, PropertyIcon,
LabeledFab, LabeledFab,
}, },
inject: {
context: { default: {} }
},
props: { props: {
creatureId: { creatureId: {
type: String, type: String,

View File

@@ -111,6 +111,7 @@ import PropertyIcon from '/imports/ui/properties/shared/PropertyIcon.vue';
import propertyFormIndex from '/imports/ui/properties/forms/shared/propertyFormIndex.js'; import propertyFormIndex from '/imports/ui/properties/forms/shared/propertyFormIndex.js';
import propertyViewerIndex from '/imports/ui/properties/viewers/shared/propertyViewerIndex.js'; import propertyViewerIndex from '/imports/ui/properties/viewers/shared/propertyViewerIndex.js';
import CreaturePropertiesTree from '/imports/ui/creature/creatureProperties/CreaturePropertiesTree.vue'; import CreaturePropertiesTree from '/imports/ui/creature/creatureProperties/CreaturePropertiesTree.vue';
import { assertEditPermission } from '/imports/api/creature/creaturePermissions.js';
import { get, findLast } from 'lodash'; import { get, findLast } from 'lodash';
let formIndex = {}; let formIndex = {};
@@ -142,6 +143,14 @@ export default {
model(){ model(){
return CreatureProperties.findOne(this._id); return CreatureProperties.findOne(this._id);
}, },
editPermission(){
try {
assertEditPermission(this.creature, Meteor.userId());
return true;
} catch (e) {
return false;
}
},
}, },
computed: { computed: {
creature(){ creature(){
@@ -155,19 +164,19 @@ export default {
} }
}, },
reactiveProvide: { reactiveProvide: {
name: 'computationContext', name: 'context',
include: ['creature'], include: ['creature', 'editPermission'],
}, },
methods: { methods: {
getPropertyName, getPropertyName,
change({path, value, ack}){ change({path, value, ack}){
updateProperty.call({_id: this._id, path, value}, (error, result) =>{ updateProperty.call({_id: this._id, path, value}, (error) =>{
if (error) console.warn(error); if (error) console.warn(error);
ack && ack(error && error.reason || error); ack && ack(error && error.reason || error);
}); });
}, },
push({path, value, ack}){ push({path, value, ack}){
pushToProperty.call({_id: this._id, path, value}, (error, result) =>{ pushToProperty.call({_id: this._id, path, value}, (error) =>{
if (error) console.warn(error); if (error) console.warn(error);
ack && ack(error && error.reason || error); ack && ack(error && error.reason || error);
}); });
@@ -175,7 +184,7 @@ export default {
pull({path, ack}){ pull({path, ack}){
let itemId = get(this.model, path)._id; let itemId = get(this.model, path)._id;
path.pop(); path.pop();
pullFromProperty.call({_id: this._id, path, itemId}, (error, result) =>{ pullFromProperty.call({_id: this._id, path, itemId}, (error) =>{
if (error) console.warn(error); if (error) console.warn(error);
ack && ack(error && error.reason || error); ack && ack(error && error.reason || error);
}); });

View File

@@ -43,12 +43,17 @@ export default {
propertyName: String, propertyName: String,
type: String, type: String,
}, },
reactiveProvide: {
name: 'context',
include: ['debounceTime'],
},
data(){return { data(){return {
model: { model: {
type: this.type, type: this.type,
}, },
schema: undefined, schema: undefined,
validationContext: undefined, validationContext: undefined,
debounceTime: 0,
};}, };},
watch: { watch: {
type(newType){ type(newType){

View File

@@ -1,42 +0,0 @@
<template>
<dialog-base>
<v-toolbar-title slot="toolbar">
Test Dialog
</v-toolbar-title>
<div>
<v-btn
data-id="btn"
@click="openDialog('btn')"
>
Open Dialog
</v-btn>
<v-btn
fab
data-id="fab"
color="green"
@click="openDialog('fab')"
>
Open Dialog
</v-btn>
</div>
</dialog-base>
</template>
<script>
import store from '/imports/ui/vuexStore.js';
import DialogBase from '/imports/ui/dialogStack/DialogBase.vue';
const component = {
methods: {
openDialog(elementId){
store.commit('pushDialogStack', {
component,
elementId,
});
}
},
components: {
DialogBase,
},
};
export default component;
</script>

View File

@@ -9,8 +9,10 @@ import LibraryEditDialog from '/imports/ui/library/LibraryEditDialog.vue';
import LibraryNodeCreationDialog from '/imports/ui/library/LibraryNodeCreationDialog.vue'; import LibraryNodeCreationDialog from '/imports/ui/library/LibraryNodeCreationDialog.vue';
import LibraryNodeEditDialog from '/imports/ui/library/LibraryNodeEditDialog.vue'; import LibraryNodeEditDialog from '/imports/ui/library/LibraryNodeEditDialog.vue';
import ShareDialog from '/imports/ui/sharing/ShareDialog.vue'; import ShareDialog from '/imports/ui/sharing/ShareDialog.vue';
import TierTooLowDialog from '/imports/ui/user/TierTooLowDialog.vue';
import UsernameDialog from '/imports/ui/user/UsernameDialog.vue'; import UsernameDialog from '/imports/ui/user/UsernameDialog.vue';
export default { export default {
CreatureFormDialog, CreatureFormDialog,
CreaturePropertyCreationDialog, CreaturePropertyCreationDialog,
@@ -23,5 +25,6 @@ export default {
LibraryNodeCreationDialog, LibraryNodeCreationDialog,
LibraryNodeEditDialog, LibraryNodeEditDialog,
ShareDialog, ShareDialog,
TierTooLowDialog,
UsernameDialog, UsernameDialog,
}; };

View File

@@ -1,26 +0,0 @@
<template lang="html">
<v-card-text>
<v-layout align-center justify-center>
<v-btn @click="openDialog('btn')" data-id="btn">
Open Dialog
</v-btn>
</v-layout>
</v-card-text>
</template>
<script>
import DialogBaseStory from '/imports/ui/dialogStack/DialogBase.Story.vue';
export default {
methods: {
openDialog(elementId){
this.$store.commit("pushDialogStack", {
// DO NOT store your component in the store like this outside the storybook
// You should register the dialog component in DialogComponentIndex.js
// and commit it to the store as a string: "dialog-base-story"
component: DialogBaseStory,
elementId,
});
}
},
}
</script>

View File

@@ -6,38 +6,46 @@
" "
> >
<v-expansion-panel <v-expansion-panel
style="box-shadow: none;"
v-model="expandedLibrary" v-model="expandedLibrary"
style="box-shadow: none;"
> >
<v-expansion-panel-content <v-expansion-panel-content
lazy
v-for="library in libraries" v-for="library in libraries"
:key="library._id" :key="library._id"
lazy
:data-id="library._id" :data-id="library._id"
> >
<template v-slot:header> <template #header>
<div class="title">{{library.name}}</div> <div class="title">
{{ library.name }}
</div>
</template> </template>
<v-card flat> <v-card flat>
<library-contents-container <library-contents-container
:library-id="library._id" :library-id="library._id"
:organize-mode="organizeMode" :organize-mode="organizeMode"
:edit-mode="editMode" :edit-mode="editMode"
@selected="e => $emit('selected', e)"
:selected-node-id="selectedNodeId" :selected-node-id="selectedNodeId"
@selected="e => $emit('selected', e)"
/> />
<v-card-actions> <v-card-actions>
<v-btn <v-btn
flat small flat
small
style="background-color: inherit; margin-top: 0;" style="background-color: inherit; margin-top: 0;"
@click="insertLibraryNode(library._id)" :disabled="!editPermission(library)"
:data-id="`insert-node-${library._id}`" :data-id="`insert-node-${library._id}`"
@click="insertLibraryNode(library._id)"
> >
<v-icon>add</v-icon> <v-icon>add</v-icon>
New property New property
</v-btn> </v-btn>
<v-spacer/> <v-spacer />
<v-btn flat small icon <v-btn
flat
small
icon
:disabled="!editPermission(library)"
@click="editLibrary(library._id)" @click="editLibrary(library._id)"
> >
<v-icon>create</v-icon> <v-icon>create</v-icon>
@@ -52,8 +60,8 @@
flat flat
color="primary" color="primary"
style="background-color: inherit;" style="background-color: inherit;"
@click="insertLibrary"
data-id="insert-library-button" data-id="insert-library-button"
@click="insertLibrary"
> >
<v-icon>add</v-icon> <v-icon>add</v-icon>
New library New library
@@ -66,6 +74,8 @@ import LibraryContentsContainer from '/imports/ui/library/LibraryContentsContain
import { setDocToLastOrder } from '/imports/api/parenting/order.js'; import { setDocToLastOrder } from '/imports/api/parenting/order.js';
import LibraryNodes, { insertNode } from '/imports/api/library/LibraryNodes.js'; import LibraryNodes, { insertNode } from '/imports/api/library/LibraryNodes.js';
import Libraries, { insertLibrary } from '/imports/api/library/Libraries.js'; import Libraries, { insertLibrary } from '/imports/api/library/Libraries.js';
import { getUserTier } from '/imports/api/users/patreon/tiers.js';
import { assertEditPermission } from '/imports/api/sharing/sharingPermissions.js';
export default { export default {
components: { components: {
@@ -88,9 +98,14 @@ export default {
sort: {name: 1} sort: {name: 1}
}).fetch(); }).fetch();
}, },
paidBenefits(){
let tier = getUserTier(Meteor.userId());
return tier && tier.paidBenefits;
},
}, },
methods: { methods: {
insertLibrary(){ insertLibrary(){
if (this.paidBenefits){
this.$store.commit('pushDialogStack', { this.$store.commit('pushDialogStack', {
component: 'library-creation-dialog', component: 'library-creation-dialog',
elementId: 'insert-library-button', elementId: 'insert-library-button',
@@ -100,6 +115,20 @@ export default {
return libraryId; return libraryId;
} }
}); });
} else {
this.$store.commit('pushDialogStack', {
component: 'tier-too-low-dialog',
elementId: 'insert-library-button',
});
}
},
editPermission(library){
try {
assertEditPermission(library, Meteor.userId());
return true;
} catch (e) {
return false;
}
}, },
editLibrary(_id){ editLibrary(_id){
this.$store.commit('pushDialogStack', { this.$store.commit('pushDialogStack', {
@@ -109,18 +138,25 @@ export default {
}); });
}, },
insertLibraryNode(libraryId){ insertLibraryNode(libraryId){
if (this.paidBenefits){
this.$store.commit('pushDialogStack', { this.$store.commit('pushDialogStack', {
component: 'library-node-creation-dialog', component: 'library-node-creation-dialog',
elementId: `insert-node-${libraryId}`, elementId: `insert-node-${libraryId}`,
callback(libraryNode){ callback(libraryNode){
if (!libraryNode) return; if (!libraryNode) return;
libraryNode.parent = {collection: "libraries", id: libraryId}; libraryNode.parent = {collection: 'libraries', id: libraryId};
libraryNode.ancestors = [ {collection: "libraries", id: libraryId}]; libraryNode.ancestors = [ {collection: 'libraries', id: libraryId}];
setDocToLastOrder({collection: LibraryNodes, doc: libraryNode}); setDocToLastOrder({collection: LibraryNodes, doc: libraryNode});
let libraryNodeId = insertNode.call(libraryNode); let libraryNodeId = insertNode.call(libraryNode);
return `tree-node-${libraryNodeId}`; return `tree-node-${libraryNodeId}`;
} }
}); });
} else {
this.$store.commit('pushDialogStack', {
component: 'tier-too-low-dialog',
elementId: `insert-node-${libraryId}`,
});
}
}, },
}, },
} }

View File

@@ -52,6 +52,7 @@
import PropertyIcon from '/imports/ui/properties/shared/PropertyIcon.vue'; import PropertyIcon from '/imports/ui/properties/shared/PropertyIcon.vue';
import propertyFormIndex from '/imports/ui/properties/forms/shared/propertyFormIndex.js'; import propertyFormIndex from '/imports/ui/properties/forms/shared/propertyFormIndex.js';
import { get } from 'lodash'; import { get } from 'lodash';
import { assertDocEditPermission } from '/imports/api/sharing/sharingPermissions.js';
export default { export default {
components: { components: {
@@ -62,27 +63,42 @@
props: { props: {
_id: String, _id: String,
}, },
reactiveProvide: {
name: 'context',
include: ['debounceTime', 'editPermission'],
},
data(){return {
debounceTime: 0,
}},
meteor: { meteor: {
model(){ model(){
return LibraryNodes.findOne(this._id); return LibraryNodes.findOne(this._id);
}, },
editPermission(){
try {
assertDocEditPermission(this.model, Meteor.userId());
return true;
} catch (e) {
return false;
}
},
}, },
methods: { methods: {
getPropertyName, getPropertyName,
change({path, value, ack}){ change({path, value, ack}){
updateLibraryNode.call({_id: this._id, path, value}, (error, result) =>{ updateLibraryNode.call({_id: this._id, path, value}, (error) =>{
ack && ack(error && error.reason || error); ack && ack(error && error.reason || error);
}); });
}, },
push({path, value, ack}){ push({path, value, ack}){
pushToLibraryNode.call({_id: this._id, path, value}, (error, result) =>{ pushToLibraryNode.call({_id: this._id, path, value}, (error) =>{
ack && ack(error && error.reason || error); ack && ack(error && error.reason || error);
}); });
}, },
pull({path, ack}){ pull({path, ack}){
let itemId = get(this.model, path)._id; let itemId = get(this.model, path)._id;
path.pop(); path.pop();
pullFromLibraryNode.call({_id: this._id, path, itemId}, (error, result) =>{ pullFromLibraryNode.call({_id: this._id, path, itemId}, (error) =>{
ack && ack(error && error.reason || error); ack && ack(error && error.reason || error);
}); });
}, },

View File

@@ -44,12 +44,17 @@ export default {
propertyName: String, propertyName: String,
type: String, type: String,
}, },
reactiveProvide: {
name: 'context',
include: ['debounceTime'],
},
data(){return { data(){return {
model: { model: {
type: this.type, type: this.type,
}, },
schema: undefined, schema: undefined,
validationContext: undefined, validationContext: undefined,
debounceTime: 0,
};}, };},
watch: { watch: {
type(newType){ type(newType){

View File

@@ -53,6 +53,18 @@
</v-expansion-panel-content> </v-expansion-panel-content>
</v-expansion-panel> </v-expansion-panel>
</v-card> </v-card>
<v-btn
color="accent"
fab
fixed
bottom
right
data-id="new-character-button"
@click="insertCharacter"
>
<v-icon>add</v-icon>
</v-btn>
<!--
<v-speed-dial <v-speed-dial
v-model="fab" v-model="fab"
fixed fixed
@@ -72,6 +84,7 @@
<labeled-fab <labeled-fab
icon="face" icon="face"
label="New Character" label="New Character"
data-id="new-character-button"
@click="insertCharacter" @click="insertCharacter"
/> />
<labeled-fab <labeled-fab
@@ -79,6 +92,7 @@
label="New Party" label="New Party"
/> />
</v-speed-dial> </v-speed-dial>
-->
</div> </div>
</template> </template>
@@ -86,6 +100,7 @@
import Creatures, {insertCreature} from '/imports/api/creature/Creatures.js'; import Creatures, {insertCreature} from '/imports/api/creature/Creatures.js';
import Parties from '/imports/api/campaign/Parties.js'; import Parties from '/imports/api/campaign/Parties.js';
import LabeledFab from '/imports/ui/components/LabeledFab.vue'; import LabeledFab from '/imports/ui/components/LabeledFab.vue';
import { getUserTier } from '/imports/api/users/patreon/tiers.js';
const characterTransform = function(char){ const characterTransform = function(char){
char.url = `/character/${char._id}/${char.urlName || '-'}`; char.url = `/character/${char._id}/${char.urlName || '-'}`;
@@ -136,6 +151,8 @@
}, },
methods: { methods: {
insertCharacter(){ insertCharacter(){
let tier = getUserTier(Meteor.userId());
if (tier.paidBenefits){
insertCreature.call((error, result) => { insertCreature.call((error, result) => {
if (error){ if (error){
console.error(error); console.error(error);
@@ -143,19 +160,12 @@
this.$router.push({ path: `/character/${result}`}) this.$router.push({ path: `/character/${result}`})
} }
}); });
} else {
/* this.$store.commit('pushDialogStack', {
store.commit("pushDialogStack", { component: 'tier-too-low-dialog',
component: CharacterCreationDialog, elementId: 'new-character-button',
data: {},
element: undefined,
returnElement: undefined,
callback(result){
if (!result) return;
insertCreature.call(result);
},
}); });
*/ }
}, },
} }
}; };

View File

@@ -12,6 +12,12 @@
You need to be at least Adventurer tier (or be invited by a Patron of You need to be at least Adventurer tier (or be invited by a Patron of
a higher tier) to access this beta a higher tier) to access this beta
</h3> </h3>
<v-btn
href="https://www.patreon.com/join/dicecloud/checkout?rid=3002853"
color="accent"
>
Join now
</v-btn>
</v-layout> </v-layout>
</div> </div>
</template> </template>

View File

@@ -1,116 +0,0 @@
<template lang="html">
<v-list>
<template v-for="(ability, index) in abilities">
<v-divider v-if="index !== 0"/>
<ability-list-tile
:key="ability.name"
:data-id="`${_uid}-${ability.name}`"
v-bind="ability"
@click="click({ability, elementId: `${_uid}-${ability.name}`})"
/>
</template>
</v-list>
</template>
<script>
import AbilityListTile from '/imports/ui/properties/components/attributes/AbilityListTile.vue';
import store from "/imports/ui/vuexStore.js";
export default {
data(){ return{
abilities: [
{
name: "Strength",
value: 8,
mod: -1,
effects: [
{
name: "Ghost Touch",
operation: "add",
result: -2,
enabled: true,
_id: Random.id(),
},{
name: "Some Base",
operation: "base",
result: 15,
enabled: true,
_id: Random.id(),
},{
name: "Some Multiply",
operation: "mul",
result: 1.5,
enabled: true,
_id: Random.id(),
},{
name: "Some Min",
operation: "min",
result: 8,
enabled: true,
_id: Random.id(),
},{
name: "Some Advantage",
operation: "advantage",
result: 1,
enabled: true,
_id: Random.id(),
},{
name: "Some Disadvantage",
operation: "disadvantage",
result: 1,
enabled: true,
_id: Random.id(),
},{
name: "Some Passive",
operation: "passiveAdd",
result: -2,
calculation: "3-5",
_id: Random.id(),
},{
name: "Some Conditional",
operation: "conditional",
calculation: "+8 Only when asleep",
enabled: true,
_id: Random.id(),
},
]
}, {
name: "Dexterity",
value: 18,
mod: 4,
}, {
name: "Constitution",
value: 12,
mod: 1,
}, {
name: "Intelligence",
value: 20,
mod: 5,
}, {
name: "Wisdom",
value: 6,
mod: -2,
}, {
name: "Charisma",
value: 28,
mod: 9,
},
]
}},
components: {
AbilityListTile,
},
methods: {
click({ability, elementId}){
store.commit("pushDialogStack", {
component: "attribute-dialog",
elementId,
data: ability,
});
},
},
};
</script>
<style lang="css" scoped>
</style>

View File

@@ -1,43 +0,0 @@
<template lang="html">
<v-container grid-list-md>
<v-layout row wrap>
<v-flex xs12 v-for="attribute in attributes" :key="attribute.name">
<attribute-card v-bind="attribute" @click="click"/>
</v-flex>
</v-layout>
</v-container>
</template>
<script>
import AttributeCard from '/imports/ui/properties/components/attributes/AttributeCard.vue';
export default {
components: {
AttributeCard
},
dontWrap: true,
data(){ return {
attributes: [
{
name: 'Speed',
value: 30,
}, {
name: 'Initiative',
value: 2,
modifier: true,
},{
name: 'Proficiency Bonus',
value: -2,
modifier: true,
},
],
}},
methods: {
click() {
console.log(...arguments)
},
},
};
</script>
<style lang="css" scoped>
</style>

View File

@@ -1,60 +0,0 @@
<template lang="html">
<div class="pa-1" style="background: inherit;">
<health-bar
:value="value"
:max-value="maxValue"
name="Hit Points"
@change="healthBarChanged"
/>
<health-bar
:value="50"
:max-value="100"
name="Temporary Hit Points"
/>
<health-bar
:value="70"
:max-value="100"
name="Some other bar"
@change="healthBarChanged"
/>
<health-bar
:value="90"
:max-value="100"
name="Cow"
/>
</div>
</template>
<script>
import HealthBar from '/imports/ui/properties/components/attributes/HealthBar.vue';
export default {
data(){return{
value: 100,
maxValue: 100,
}},
components: {
HealthBar,
},
methods: {
healthBarChanged(e){
let val = e.value;
// Apply the change
if (e.type === 'set'){
this.value = val;
} else if (e.type === 'increment') {
this.value += val;
}
// Clamp the value
if (this.value < 0){
this.value = 0;
}
if (this.value > this.maxValue){
this.value = this.maxValue;
}
},
},
}
</script>
<style lang="css" scoped>
</style>

View File

@@ -21,17 +21,16 @@
<v-layout <v-layout
column column
align-center align-center
@click="edit"
style="cursor: pointer;" style="cursor: pointer;"
class="bar" class="bar"
@click="edit"
> >
<v-progress-linear <v-progress-linear
:value="(value / maxValue) * 100" :value="(value / maxValue) * 100"
height="20" height="20"
color="green lighten-1" color="green lighten-1"
class="ma-0" class="ma-0"
> />
</v-progress-linear>
<span <span
class="value" class="value"
style="margin-top: -20px; z-index: 1; font-size: 15px; font-weight: 600; height: 20px;" style="margin-top: -20px; z-index: 1; font-size: 15px; font-weight: 600; height: 20px;"
@@ -50,40 +49,53 @@
<v-spacer /> <v-spacer />
<v-btn-toggle <v-btn-toggle
:value="operation === 'add' ? 0: operation === 'subtract' ? 1 : null" :value="operation === 'add' ? 0: operation === 'subtract' ? 1 : null"
@click="$refs.editInput.focus()"
class="mr-2" class="mr-2"
@click="$refs.editInput.focus()"
> >
<v-btn <v-btn
@click="toggleAdd(); $nextTick(() => $refs.editInput.focus())" :disabled="context.editPermission === false"
class="filled" class="filled"
@click="toggleAdd(); $nextTick(() => $refs.editInput.focus())"
> >
<v-icon>add</v-icon> <v-icon>add</v-icon>
</v-btn> </v-btn>
<v-btn <v-btn
@click="toggleSubtract(); $nextTick(() => $refs.editInput.focus())" :disabled="context.editPermission === false"
class="filled" class="filled"
@click="toggleSubtract(); $nextTick(() => $refs.editInput.focus())"
> >
<v-icon>remove</v-icon> <v-icon>remove</v-icon>
</v-btn> </v-btn>
</v-btn-toggle> </v-btn-toggle>
<v-text-field <v-text-field
v-if="editing"
ref="editInput"
solo solo
hide-details hide-details
type="number" type="number"
v-if="editing"
ref="editInput"
style="max-width: 120px;" style="max-width: 120px;"
min="0" min="0"
:value="editValue" :value="editValue"
:prepend-inner-icon="operationIcon(operation)" :prepend-inner-icon="operationIcon(operation)"
:disabled="context.editPermission === false"
@focus="$event.target.select()" @focus="$event.target.select()"
@keypress="keypress" @keypress="keypress"
/>
<v-btn
small
fab
class="filled"
color="red"
@click="commitEdit"
> >
</v-text-field>
<v-btn small fab @click="commitEdit" class="filled" color="red">
<v-icon>done</v-icon> <v-icon>done</v-icon>
</v-btn> </v-btn>
<v-btn small fab @click="cancelEdit" class="mx-0 filled"> <v-btn
small
fab
class="mx-0 filled"
@click="cancelEdit"
>
<v-icon>close</v-icon> <v-icon>close</v-icon>
</v-btn> </v-btn>
<v-spacer /> <v-spacer />
@@ -91,13 +103,26 @@
</transition> </transition>
</v-flex> </v-flex>
<transition name="background-transition"> <transition name="background-transition">
<div v-if="editing" class="page-tint" @click="cancelEdit" /> <div
v-if="editing"
class="page-tint"
@click="cancelEdit"
/>
</transition> </transition>
</v-layout> </v-layout>
</template> </template>
<script> <script>
export default { export default {
inject: {
context: { default: {} }
},
props: {
value: Number,
maxValue: Number,
name: String,
_id: String,
},
data() { data() {
return { return {
editing: false, editing: false,
@@ -106,12 +131,6 @@
hover: false, hover: false,
}; };
}, },
props: {
value: Number,
maxValue: Number,
name: String,
_id: String,
},
methods: { methods: {
edit() { edit() {
this.editing = true; this.editing = true;

View File

@@ -1,66 +0,0 @@
<template lang="html">
<v-list>
<v-subheader>Hit Dice</v-subheader>
<template v-for="(hitDie, index) in hitDice">
<v-divider v-if="index !== 0"/>
<hit-dice-list-tile
:key="hitDie.dice"
v-bind="hitDie"
@click="click"
@change="e => change(hitDie, e)"
/>
</template>
</v-list>
</template>
<script>
import HitDiceListTile from '/imports/ui/properties/components/attributes/HitDiceListTile.vue';
export default {
data(){ return{
hitDice: [
{
dice: 6,
value: 20,
maxValue: 20,
conMod: 4,
}, {
dice: 8,
value: 3,
maxValue: 3,
conMod: 4,
}, {
dice: 10,
value: 3,
maxValue: 3,
conMod: 4,
}, {
dice: 12,
value: 1,
maxValue: 1,
conMod: 4,
},
]
}},
components: {
HitDiceListTile,
},
methods: {
click(e){
console.log(e);
},
change(hitDie, e){
if (e.type === 'increment'){
hitDie.value += e.value;
if (hitDie.value > hitDie.maxValue){
hitDie.value = hitDie.maxValue;
} else if (hitDie.value < 0){
hitDie.value = 0;
}
}
},
},
};
</script>
<style lang="css" scoped>
</style>

View File

@@ -17,7 +17,7 @@
<v-btn <v-btn
icon icon
small small
:disabled="currentValue >= model.value" :disabled="currentValue >= model.value || context.editPermission === false"
@click="increment(1)" @click="increment(1)"
> >
<v-icon>arrow_drop_up</v-icon> <v-icon>arrow_drop_up</v-icon>
@@ -25,7 +25,7 @@
<v-btn <v-btn
icon icon
small small
:disabled="currentValue <= 0" :disabled="currentValue <= 0 || context.editPermission === false"
@click="increment(-1)" @click="increment(-1)"
> >
<v-icon>arrow_drop_down</v-icon> <v-icon>arrow_drop_down</v-icon>
@@ -68,6 +68,9 @@ import ComputedForCreature from '/imports/ui/components/computation/ComputedForC
export default { export default {
components: { components: {
Computed: ComputedForCreature, Computed: ComputedForCreature,
},
inject: {
context: { default: {} }
}, },
props: { props: {
model: { model: {

View File

@@ -1,47 +0,0 @@
<template lang="html">
<column-layout>
<div>
<resource-card
data-id="abc123"
name="Sorcery points"
color="#f44336"
:value="8"
:adjustment="-2"
/>
</div>
<div>
<resource-card
data-id="abc123"
name="Psionic point like things"
color="#f44336"
:value="34"
:adjustment="-12"
/>
</div>
<div>
<resource-card
data-id="abc123"
name="Rages"
color="#f44336"
:value="1"
:adjustment="0"
/>
</div>
</column-layout>
</template>
<script>
import ResourceCard from '/imports/ui/properties/components/attributes/ResourceCard.vue';
import ColumnLayout from '/imports/ui/components/ColumnLayout.vue';
export default {
dontWrap: true,
components: {
ColumnLayout,
ResourceCard,
},
};
</script>
<style lang="css" scoped>
</style>

View File

@@ -1,18 +1,35 @@
<template lang="html"> <template lang="html">
<v-card class="resource-card layout row" :class="hover ? 'elevation-8': ''"> <v-card
class="resource-card layout row"
:class="hover ? 'elevation-8': ''"
>
<div class="buttons layout column justify-center pl-3"> <div class="buttons layout column justify-center pl-3">
<v-btn icon small :disabled="currentValue >= value" @click="increment(1)"> <v-btn
icon
small
:disabled="currentValue >= value || context.editPermission === false"
@click="increment(1)"
>
<v-icon>arrow_drop_up</v-icon> <v-icon>arrow_drop_up</v-icon>
</v-btn> </v-btn>
<v-btn icon small :disabled="currentValue <= 0" @click="increment(-1)"> <v-btn
icon
small
:disabled="currentValue <= 0 || context.editPermission === false"
@click="increment(-1)"
>
<v-icon>arrow_drop_down</v-icon> <v-icon>arrow_drop_down</v-icon>
</v-btn> </v-btn>
</div> </div>
<div <div
class="layout row align-center value pl-2 pr-3" class="layout row align-center value pl-2 pr-3"
> >
<div class="display-1">{{currentValue}}</div> <div class="display-1">
<div class="title ml-2 max-value">/{{value}}</div> {{ currentValue }}
</div>
<div class="title ml-2 max-value">
/{{ value }}
</div>
</div> </div>
<div <div
class="content layout row align-center pr-3" class="content layout row align-center pr-3"
@@ -21,7 +38,7 @@
@mouseleave="hover = false" @mouseleave="hover = false"
> >
<div class="text-truncate "> <div class="text-truncate ">
{{name}} {{ name }}
</div> </div>
</div> </div>
</v-card> </v-card>
@@ -29,15 +46,18 @@
<script> <script>
export default { export default {
data(){ return{
hover: false,
}},
props: { props: {
_id: String, _id: String,
name: String, name: String,
color: String, color: String,
value: Number, value: Number,
damage: Number, damage: Number,
},
data(){ return{
hover: false,
}},
inject: {
context: { default: {} }
}, },
computed: { computed: {
currentValue(){ currentValue(){

View File

@@ -1,44 +0,0 @@
<template lang="html">
<v-list>
<spell-slot-list-tile
v-for="(slot, index) in spellSlots"
:key="'tile ' + index"
v-bind="slot"
@change="e => spellSlots[index].adjustment += e.value"
/>
</v-list>
</template>
<script>
import SpellSlotListTile from '/imports/ui/properties/components/attributes/SpellSlotListTile.vue';
export default {
components: {
SpellSlotListTile,
},
data(){return {
spellSlots: [
{
name: "Level 1",
value: 4,
adjustment: -2,
}, {
name: "Level 1",
value: 1,
adjustment: 0,
}, {
name: "Level 2",
value: 12,
adjustment: -8,
}, {
name: "Level 3",
value: 10,
adjustment: -5,
},
],
}}
};
</script>
<style lang="css" scoped>
</style>

View File

@@ -1,40 +1,74 @@
<template lang="html"> <template lang="html">
<v-list-tile class="spell-slot-list-tile" :class="{hover}"> <v-list-tile
class="spell-slot-list-tile"
:class="{hover}"
>
<v-list-tile-action> <v-list-tile-action>
<div
<div class="layout row align-center" v-if="value > 4"> v-if="value > 4"
class="layout row align-center"
>
<div class="buttons layout column justify-center"> <div class="buttons layout column justify-center">
<v-btn icon small :disabled="currentValue >= value" @click="increment(1)">
<v-icon>arrow_drop_up</v-icon>
</v-btn>
<v-btn icon small :disabled="currentValue <= 0" @click="increment(-1)">
<v-icon>arrow_drop_down</v-icon>
</v-btn>
</div>
<div class="layout row value" style="align-items: baseline;">
<div class="display-1">{{currentValue}}</div>
<div class="title ml-2 max-value">/{{value}}</div>
</div>
</div>
<div class="layout row align-center justify-end slot-buttons" v-else>
<v-btn <v-btn
icon icon
small small
:disabled="
currentValue >= value ||
context.editPermission === false
"
@click="increment(1)"
>
<v-icon>arrow_drop_up</v-icon>
</v-btn>
<v-btn
icon
small
:disabled="
currentValue <= 0 ||
context.editPermission === false
"
@click="increment(-1)"
>
<v-icon>arrow_drop_down</v-icon>
</v-btn>
</div>
<div
class="layout row value"
style="align-items: baseline;"
>
<div class="display-1">
{{ currentValue }}
</div>
<div class="title ml-2 max-value">
/{{ value }}
</div>
</div>
</div>
<div
v-else
class="layout row align-center justify-end slot-buttons"
>
<v-btn
v-for="i in value" v-for="i in value"
:disabled="!(i === currentValue || i === currentValue + 1)"
:key="i" :key="i"
icon
small
:disabled="
!(i === currentValue || i === currentValue + 1) ||
context.editPermission === false
"
@click="increment(i > currentValue ? 1 : -1)" @click="increment(i > currentValue ? 1 : -1)"
> >
<v-icon>{{ <v-icon>
{{
i > currentValue ? i > currentValue ?
'radio_button_unchecked' : 'radio_button_unchecked' :
'radio_button_checked' 'radio_button_checked'
}}</v-icon> }}
</v-icon>
</v-btn> </v-btn>
</div> </div>
</v-list-tile-action> </v-list-tile-action>
<v-list-tile-content <v-list-tile-content
@@ -44,7 +78,7 @@
@mouseleave="hover = false" @mouseleave="hover = false"
> >
<v-list-tile-title> <v-list-tile-title>
{{name}} {{ name }}
</v-list-tile-title> </v-list-tile-title>
</v-list-tile-content> </v-list-tile-content>
</v-list-tile> </v-list-tile>
@@ -53,9 +87,6 @@
<script> <script>
import numberToSignedString from '/imports/ui/utility/numberToSignedString.js'; import numberToSignedString from '/imports/ui/utility/numberToSignedString.js';
export default { export default {
data(){ return{
hover: false,
}},
props: { props: {
_id: String, _id: String,
name: String, name: String,
@@ -65,6 +96,12 @@ export default {
type: Number, type: Number,
default: 0, default: 0,
}, },
},
data(){ return{
hover: false,
}},
inject: {
context: { default: {} }
}, },
computed: { computed: {
currentValue(){ currentValue(){

View File

@@ -1,51 +0,0 @@
<template lang="html">
<column-layout>
<div
v-for="(feature, index) in features"
:key="index"
>
<feature-card
v-bind="feature"
/>
</div>
</column-layout>
</template>
<script>
import ColumnLayout from '/imports/ui/components/ColumnLayout.vue';
import FeatureCard from '/imports/ui/properties/components/features/FeatureCard.vue';
export default {
dontWrap: true,
components: {
ColumnLayout,
FeatureCard,
},
data(){return {
features: [
{
name: 'Feature 1',
enabled: true,
alwaysEnabled: true,
description: `
blah blah, with
spacing
`,
color: '#f44336',
}, {
name: 'Feature 2',
enabled: false,
alwaysEnabled: false,
description: `Short Description`,
uses: 5,
used: 2,
},
],
}},
}
</script>
<style lang="css' scoped>
</style>

View File

@@ -1,50 +0,0 @@
<template lang="html">
<v-list>
<skill-list-tile
v-for="skill in skills"
:key="skill.name"
v-bind="skill"
/>
</v-list>
</template>
<script>
import SkillListTile from '/imports/ui/properties/components/skills/SkillListTile.vue';
export default {
data(){return {
skills: [
{
name: 'Animal Handling',
proficiency: 1,
value: 4,
}, {
name: 'Deception',
proficiency: 0,
value: -0,
advantage: 0,
}, {
name: 'Intimidation',
proficiency: 2,
value: 6,
advantage: 1,
}, {
name: 'Insight',
proficiency: 0.5,
value: -2,
advantage: -1,
}, {
name: 'History',
conditionalBenefits: 1,
fail: 1,
advantage: -1,
}
]
}},
components: {
SkillListTile,
},
}
</script>
<style lang="css" scoped>
</style>

View File

@@ -3,9 +3,8 @@
<text-field <text-field
label="Name" label="Name"
:value="model.name" :value="model.name"
:debounce-time="debounceTime"
:error-messages="errors.name" :error-messages="errors.name"
@change="(value, ack) => $emit('change', {path: ['name'], value, ack})" @change="change('name', ...arguments)"
/> />
<smart-select <smart-select
label="Action type" label="Action type"
@@ -14,23 +13,20 @@
:error-messages="errors.actionType" :error-messages="errors.actionType"
:menu-props="{auto: true, lazy: true}" :menu-props="{auto: true, lazy: true}"
:hint="actionTypeHints[model.actionType]" :hint="actionTypeHints[model.actionType]"
:debounce-time="debounceTime" @change="change('actionType', ...arguments)"
@change="(value, ack) => $emit('change', {path: ['actionType'], value, ack})"
/> />
<text-field <text-field
v-if="attackForm" v-if="attackForm"
label="Roll bonus" label="Roll bonus"
:value="model.rollBonus" :value="model.rollBonus"
:error-messages="errors.rollBonus" :error-messages="errors.rollBonus"
:debounce-time="debounceTime" @change="change('rollBonus', ...arguments)"
@change="(value, ack) => $emit('change', {path: ['rollBonus'], value, ack})"
/> />
<text-area <text-area
label="Description" label="Description"
:value="model.description" :value="model.description"
:error-messages="errors.description" :error-messages="errors.description"
:debounce-time="debounceTime" @change="change('description', ...arguments)"
@change="(value, ack) => $emit('change', {path: ['description'], value, ack})"
/> />
<form-sections> <form-sections>
<form-section name="Resources"> <form-section name="Resources">
@@ -42,14 +38,13 @@
/> />
</form-section> </form-section>
<form-section name="Advanced"> <form-section name="Advanced">
<v-combobox <smart-combobox
label="Tags" label="Tags"
multiple multiple
chips chips
deletable-chips deletable-chips
box
:value="model.tags" :value="model.tags"
@change="(value) => $emit('change', {path: ['tags'], value})" @change="change('tags', ...arguments)"
/> />
<smart-select <smart-select
label="Target" label="Target"
@@ -58,8 +53,7 @@
:value="model.target" :value="model.target"
:error-messages="errors.target" :error-messages="errors.target"
:menu-props="{auto: true, lazy: true}" :menu-props="{auto: true, lazy: true}"
:debounce-time="debounceTime" @change="change('target', ...arguments)"
@change="(value, ack) => $emit('change', {path: ['target'], value, ack})"
/> />
<div class="layout row wrap"> <div class="layout row wrap">
<text-field <text-field
@@ -68,8 +62,7 @@
style="flex-basis: 300px;" style="flex-basis: 300px;"
:value="model.uses" :value="model.uses"
:error-messages="errors.uses" :error-messages="errors.uses"
:debounce-time="debounceTime" @change="change('uses', ...arguments)"
@change="(value, ack) => $emit('change', {path: ['uses'], value, ack})"
/> />
<text-field <text-field
label="Uses used" label="Uses used"
@@ -78,8 +71,7 @@
style="flex-basis: 300px;" style="flex-basis: 300px;"
:value="model.usesUsed" :value="model.usesUsed"
:error-messages="errors.uses" :error-messages="errors.uses"
:debounce-time="debounceTime" @change="change('usesUsed', ...arguments)"
@change="(value, ack) => $emit('change', {path: ['usesUsed'], value, ack})"
/> />
</div> </div>
<smart-select <smart-select
@@ -90,8 +82,7 @@
:value="model.reset" :value="model.reset"
:error-messages="errors.reset" :error-messages="errors.reset"
:menu-props="{auto: true, lazy: true}" :menu-props="{auto: true, lazy: true}"
:debounce-time="debounceTime" @change="change('reset', ...arguments)"
@change="(value, ack) => $emit('change', {path: ['reset'], value, ack})"
/> />
</form-section> </form-section>
</form-sections> </form-sections>
@@ -101,6 +92,7 @@
<script> <script>
import FormSection, {FormSections} from '/imports/ui/properties/forms/shared/FormSection.vue'; import FormSection, {FormSections} from '/imports/ui/properties/forms/shared/FormSection.vue';
import ResourcesForm from '/imports/ui/properties/forms/ResourcesForm.vue'; import ResourcesForm from '/imports/ui/properties/forms/ResourcesForm.vue';
import propertyFormMixin from '/imports/ui/properties/forms/shared/propertyFormMixin.js';
export default { export default {
components: { components: {
@@ -108,25 +100,11 @@
FormSections, FormSections,
ResourcesForm, ResourcesForm,
}, },
mixins: [propertyFormMixin],
props: { props: {
stored: {
type: Boolean,
},
model: {
type: Object,
default: () => ({}),
},
errors: {
type: Object,
default: () => ({}),
},
attackForm: { attackForm: {
type: Boolean, type: Boolean,
}, },
debounceTime: {
type: Number,
default: undefined,
},
}, },
data(){ data(){
let data = { let data = {

View File

@@ -8,8 +8,7 @@
:items="attributeList" :items="attributeList"
:value="model.stat" :value="model.stat"
:error-messages="errors.stat" :error-messages="errors.stat"
:debounce-time="debounceTime" @change="change('stat', ...arguments)"
@change="(value, ack) => $emit('change', {path: ['stat'], value, ack})"
/> />
<text-field <text-field
label="Damage" label="Damage"
@@ -17,8 +16,7 @@
style="flex-basis: 300px;" style="flex-basis: 300px;"
:value="model.amount" :value="model.amount"
:error-messages="errors.amount" :error-messages="errors.amount"
:debounce-time="debounceTime" @change="change('amount', ...arguments)"
@change="(value, ack) => $emit('change', {path: ['amount'], value, ack})"
/> />
</div> </div>
<smart-select <smart-select
@@ -29,34 +27,22 @@
:value="model.target" :value="model.target"
:error-messages="errors.target" :error-messages="errors.target"
:menu-props="{auto: true, lazy: true}" :menu-props="{auto: true, lazy: true}"
:debounce-time="debounceTime" @change="change('target', ...arguments)"
@change="(value, ack) => $emit('change', {path: ['target'], value, ack})"
/> />
</div> </div>
</template> </template>
<script> <script>
import attributeListMixin from '/imports/ui/properties/forms/shared/lists/attributeListMixin.js'; import attributeListMixin from '/imports/ui/properties/forms/shared/lists/attributeListMixin.js';
import propertyFormMixin from '/imports/ui/properties/forms/shared/propertyFormMixin.js';
export default { export default {
mixins: [attributeListMixin], mixins: [propertyFormMixin, attributeListMixin],
props: { props: {
model: {
type: Object,
default: () => ({}),
},
errors: {
type: Object,
default: () => ({}),
},
parentTarget: { parentTarget: {
type: String, type: String,
default: undefined, default: undefined,
}, },
debounceTime: {
type: Number,
default: undefined,
},
}, },
computed: { computed: {
targetOptions(){ targetOptions(){

View File

@@ -7,8 +7,7 @@
:items="attributeList" :items="attributeList"
:value="model.variableName" :value="model.variableName"
:error-messages="errors.variableName" :error-messages="errors.variableName"
:debounce-time="debounceTime" @change="change('variableName', ...arguments)"
@change="(value, ack) => $emit('change', {path: ['variableName'], value, ack})"
/> />
<text-field <text-field
label="Quantity" label="Quantity"
@@ -16,30 +15,16 @@
style="flex-basis: 300px;" style="flex-basis: 300px;"
:value="model.quantity" :value="model.quantity"
:error-messages="errors.quantity" :error-messages="errors.quantity"
:debounce-time="debounceTime" @change="change('quantity', ...arguments)"
@change="(value, ack) => $emit('change', {path: ['quantity'], value, ack})"
/> />
</div> </div>
</template> </template>
<script> <script>
import propertyFormMixin from '/imports/ui/properties/forms/shared/propertyFormMixin.js';
import attributeListMixin from '/imports/ui/properties/forms/shared/lists/attributeListMixin.js'; import attributeListMixin from '/imports/ui/properties/forms/shared/lists/attributeListMixin.js';
export default { export default {
mixins: [attributeListMixin], mixins: [propertyFormMixin, attributeListMixin],
props: {
model: {
type: Object,
default: () => ({}),
},
errors: {
type: Object,
default: () => ({}),
},
debounceTime: {
type: Number,
default: undefined,
},
},
} }
</script> </script>

View File

@@ -8,8 +8,7 @@
style="width: 332px;" style="width: 332px;"
:value="model.baseValueCalculation" :value="model.baseValueCalculation"
:error-messages="errors.baseValueCalculation" :error-messages="errors.baseValueCalculation"
:debounce-time="debounceTime" @change="change('baseValueCalculation', ...arguments)"
@change="(value, ack) => $emit('change', {path: ['baseValueCalculation'], value, ack})"
/> />
</div> </div>
<div class="layout row wrap"> <div class="layout row wrap">
@@ -17,8 +16,7 @@
label="Name" label="Name"
:value="model.name" :value="model.name"
:error-messages="errors.name" :error-messages="errors.name"
:debounce-time="debounceTime" @change="change('name', ...arguments)"
@change="(value, ack) => $emit('change', {path: ['name'], value, ack})"
/> />
<text-field <text-field
label="Variable name" label="Variable name"
@@ -26,8 +24,7 @@
style="flex-basis: 300px;" style="flex-basis: 300px;"
hint="Use this name in formulae to reference this attribute" hint="Use this name in formulae to reference this attribute"
:error-messages="errors.variableName" :error-messages="errors.variableName"
:debounce-time="debounceTime" @change="change('variableName', ...arguments)"
@change="(value, ack) => $emit('change', {path: ['variableName'], value, ack})"
/> />
</div> </div>
<smart-select <smart-select
@@ -37,8 +34,7 @@
:error-messages="errors.attributeType" :error-messages="errors.attributeType"
:menu-props="{auto: true, lazy: true}" :menu-props="{auto: true, lazy: true}"
:hint="attributeTypeHints[model.attributeType]" :hint="attributeTypeHints[model.attributeType]"
:debounce-time="debounceTime" @change="change('attributeType', ...arguments)"
@change="(value, ack) => $emit('change', {path: ['attributeType'], value, ack})"
/> />
<smart-select <smart-select
v-if="model.attributeType === 'hitDice'" v-if="model.attributeType === 'hitDice'"
@@ -47,28 +43,26 @@
:value="model.hitDiceSize" :value="model.hitDiceSize"
:error-messages="errors.hitDiceSize" :error-messages="errors.hitDiceSize"
:menu-props="{auto: true, lazy: true}" :menu-props="{auto: true, lazy: true}"
:debounce-time="debounceTime" @change="change('hitDiceSize', ...arguments)"
@change="(value, ack) => $emit('change', {path: ['hitDiceSize'], value, ack})"
/> />
<text-area <text-area
label="Description" label="Description"
:value="model.description" :value="model.description"
:error-messages="errors.description" :error-messages="errors.description"
:debounce-time="debounceTime" @change="change('description', ...arguments)"
@change="(value, ack) => $emit('change', {path: ['description'], value, ack})"
/> />
<form-section <form-section
name="Advanced" name="Advanced"
standalone standalone
> >
<div class="layout column align-center"> <div class="layout column align-center">
<v-switch <smart-switch
v-if="model.attributeType !== 'hitDice'" v-if="model.attributeType !== 'hitDice'"
label="Allow decimal values" label="Allow decimal values"
class="no-flex" class="no-flex"
:input-value="model.decimal" :value="model.decimal"
:error-messages="errors.decimal" :error-messages="errors.decimal"
@change="e => $emit('change', {path: ['decimal'], value: !!e})" @change="change('decimal', ...arguments)"
/> />
<div <div
class="layout row justify-center" class="layout row justify-center"
@@ -82,8 +76,7 @@
hint="The attribute's final value is reduced by this amount" hint="The attribute's final value is reduced by this amount"
:value="model.damage" :value="model.damage"
:error-messages="errors.damage" :error-messages="errors.damage"
:debounce-time="debounceTime" @change="change('damage', ...arguments)"
@change="(value, ack) => $emit('change', {path: ['damage'], value, ack})"
/> />
</div> </div>
</div> </div>
@@ -97,8 +90,7 @@
:value="model.reset" :value="model.reset"
:error-messages="errors.reset" :error-messages="errors.reset"
:menu-props="{auto: true, lazy: true}" :menu-props="{auto: true, lazy: true}"
:debounce-time="debounceTime" @change="change('reset', ...arguments)"
@change="(value, ack) => $emit('change', {path: ['reset'], value: value, ack})"
/> />
</div> </div>
</form-section> </form-section>
@@ -107,25 +99,13 @@
<script> <script>
import FormSection from '/imports/ui/properties/forms/shared/FormSection.vue'; import FormSection from '/imports/ui/properties/forms/shared/FormSection.vue';
import propertyFormMixin from '/imports/ui/properties/forms/shared/propertyFormMixin.js';
export default { export default {
components: { components: {
FormSection, FormSection,
}, },
props: { mixins: [propertyFormMixin],
model: {
type: Object,
default: () => ({}),
},
errors: {
type: Object,
default: () => ({}),
},
debounceTime: {
type: Number,
default: undefined,
},
},
data(){ data(){
let data = { let data = {
attributeTypes: [ attributeTypes: [

View File

@@ -9,7 +9,7 @@
<div style="flex-grow: 1;"> <div style="flex-grow: 1;">
<attribute-consumed-form <attribute-consumed-form
:model="attribute" :model="attribute"
@change="({path, value, ack}) => $emit('change', {path: [i, ...path], value, ack})" @change="({path, value, ack}) => change([i, ...path], value, ack)"
/> />
</div> </div>
<v-btn <v-btn
@@ -29,23 +29,12 @@
<script> <script>
import AttributeConsumedForm from '/imports/ui/properties/forms/AttributeConsumedForm.vue'; import AttributeConsumedForm from '/imports/ui/properties/forms/AttributeConsumedForm.vue';
import propertyFormMixin from '/imports/ui/properties/forms/shared/propertyFormMixin.js';
export default { export default {
components: { components: {
AttributeConsumedForm, AttributeConsumedForm,
}, },
props: { mixins: [propertyFormMixin],
model: {
type: Array,
default: () => ([]),
},
debounceTime: {
type: Number,
default: undefined,
},
},
} }
</script> </script>
<style lang="css" scoped>
</style>

View File

@@ -4,45 +4,32 @@
label="Name" label="Name"
:value="model.name" :value="model.name"
:error-messages="errors.name" :error-messages="errors.name"
:debounce-time="debounceTime" @change="change('name', ...arguments)"
@change="(value, ack) => $emit('change', {path: ['name'], value, ack})"
/> />
<text-area <text-area
label="Description" label="Description"
:value="model.description" :value="model.description"
:error-messages="errors.description" :error-messages="errors.description"
:debounce-time="debounceTime" @change="change('description', ...arguments)"
@change="(value, ack) => $emit('change', {path: ['description'], value, ack})"
/> />
<text-field <text-field
label="Duration" label="Duration"
hint="How long the buff lasts" hint="How long the buff lasts"
:value="model.duration" :value="model.duration"
:error-messages="errors.duration" :error-messages="errors.duration"
:debounce-time="debounceTime" @change="change('duration', ...arguments)"
@change="(value, ack) => $emit('change', {path: ['duration'], value, ack})"
/> />
</div> </div>
</template> </template>
<script> <script>
import propertyFormMixin from '/imports/ui/properties/forms/shared/propertyFormMixin.js';
export default { export default {
mixins: [propertyFormMixin],
props: { props: {
stored: Boolean,
model: {
type: Object,
default: () => ({}),
},
errors: {
type: Object,
default: () => ({}),
},
parentTarget: { parentTarget: {
type: String, type: String,
default: undefined,
},
debounceTime: {
type: Number,
default: undefined, default: undefined,
}, },
}, },

View File

@@ -7,8 +7,7 @@
class="base-value-field text-xs-center large-format no-flex" class="base-value-field text-xs-center large-format no-flex"
:value="model.level" :value="model.level"
:error-messages="errors.level" :error-messages="errors.level"
:debounce-time="debounceTime" @change="change('level', ...arguments)"
@change="(value, ack) => $emit('change', {path: ['level'], value, ack})"
/> />
</div> </div>
<div class="layout row wrap"> <div class="layout row wrap">
@@ -16,8 +15,7 @@
label="Name" label="Name"
:value="model.name" :value="model.name"
:error-messages="errors.name" :error-messages="errors.name"
:debounce-time="debounceTime" @change="change('name', ...arguments)"
@change="(value, ack) => $emit('change', {path: ['name'], value, ack})"
/> />
<text-field <text-field
label="Class variable name" label="Class variable name"
@@ -25,30 +23,17 @@
style="flex-basis: 300px;" style="flex-basis: 300px;"
hint="This should be the same for each level in a class" hint="This should be the same for each level in a class"
:error-messages="errors.variableName" :error-messages="errors.variableName"
:debounce-time="debounceTime" @change="change('variableName', ...arguments)"
@change="(value, ack) => $emit('change', {path: ['variableName'], value, ack})"
/> />
</div> </div>
</div> </div>
</template> </template>
<script> <script>
import propertyFormMixin from '/imports/ui/properties/forms/shared/propertyFormMixin.js';
export default { export default {
props: { mixins: [propertyFormMixin],
model: {
type: Object,
default: () => ({}),
},
errors: {
type: Object,
default: () => ({}),
},
debounceTime: {
type: Number,
default: undefined,
},
},
}; };
</script> </script>

View File

@@ -4,8 +4,7 @@
label="Name" label="Name"
:value="model.name" :value="model.name"
:error-messages="errors.name" :error-messages="errors.name"
:debounce-time="debounceTime" @change="change('name', ...arguments)"
@change="(value, ack) => $emit('change', {path: ['name'], value, ack})"
/> />
<div class="layout row wrap"> <div class="layout row wrap">
<text-field <text-field
@@ -18,8 +17,7 @@
style="flex-basis: 300px;" style="flex-basis: 300px;"
:value="model.value" :value="model.value"
:error-messages="errors.value" :error-messages="errors.value"
:debounce-time="debounceTime" @change="change('value', ...arguments)"
@change="(value, ack) => $emit('change', {path: ['value'], value, ack})"
/> />
<text-field <text-field
label="Weight" label="Weight"
@@ -30,32 +28,30 @@
style="flex-basis: 300px;" style="flex-basis: 300px;"
:value="model.weight" :value="model.weight"
:error-messages="errors.weight" :error-messages="errors.weight"
:debounce-time="debounceTime" @change="change('weight', ...arguments)"
@change="(value, ack) => $emit('change', {path: ['weight'], value, ack})"
/> />
</div> </div>
<text-area <text-area
label="Description" label="Description"
:value="model.description" :value="model.description"
:error-messages="errors.description" :error-messages="errors.description"
:debounce-time="debounceTime" @change="change('description', ...arguments)"
@change="(value, ack) => $emit('change', {path: ['description'], value, ack})"
/> />
<form-section <form-section
name="Advanced" name="Advanced"
standalone standalone
> >
<v-switch <smart-switch
label="Carried" label="Carried"
:input-value="model.carried" :value="model.carried"
:error-messages="errors.carried" :error-messages="errors.carried"
@change="e => $emit('change', {path: ['carried'], value})" @change="change('carried', ...arguments)"
/> />
<v-switch <smart-switch
label="Contents are weightless" label="Contents are weightless"
:input-value="model.contentsWeightless" :value="model.contentsWeightless"
:error-messages="errors.contentsWeightless" :error-messages="errors.contentsWeightless"
@change="e => $emit('change', {path: ['contentsWeightless'], value})" @change="change('contentsWeightless', ...arguments)"
/> />
</form-section> </form-section>
</div> </div>
@@ -63,24 +59,12 @@
<script> <script>
import FormSection from '/imports/ui/properties/forms/shared/FormSection.vue'; import FormSection from '/imports/ui/properties/forms/shared/FormSection.vue';
import propertyFormMixin from '/imports/ui/properties/forms/shared/propertyFormMixin.js';
export default { export default {
components: { components: {
FormSection, FormSection,
}, },
props: { mixins: [propertyFormMixin],
model: { }
type: Object,
default: () => ({}),
},
errors: {
type: Object,
default: () => ({}),
},
debounceTime: {
type: Number,
default: undefined,
},
},
}
</script> </script>

View File

@@ -6,8 +6,7 @@
style="flex-basis: 300px;" style="flex-basis: 300px;"
:value="model.amount" :value="model.amount"
:error-messages="errors.amount" :error-messages="errors.amount"
:debounce-time="debounceTime" @change="change('amount', ...arguments)"
@change="(value, ack) => $emit('change', {path: ['amount'], value, ack})"
/> />
<smart-select <smart-select
label="Damage Type" label="Damage Type"
@@ -16,8 +15,7 @@
:value="model.damageType" :value="model.damageType"
:error-messages="errors.damageType" :error-messages="errors.damageType"
:menu-props="{auto: true}" :menu-props="{auto: true}"
:debounce-time="debounceTime" @change="change('damageType', ...arguments)"
@change="(value, ack) => $emit('change', {path: ['damageType'], value, ack})"
/> />
</div> </div>
<smart-select <smart-select
@@ -27,33 +25,22 @@
:value="model.target" :value="model.target"
:error-messages="errors.target" :error-messages="errors.target"
:menu-props="{auto: true, lazy: true}" :menu-props="{auto: true, lazy: true}"
:debounce-time="debounceTime" @change="change('target', ...arguments)"
@change="(value, ack) => $emit('change', {path: ['target'], value, ack})"
/> />
</div> </div>
</template> </template>
<script> <script>
import DAMAGE_TYPES from '/imports/constants/DAMAGE_TYPES.js'; import DAMAGE_TYPES from '/imports/constants/DAMAGE_TYPES.js';
import propertyFormMixin from '/imports/ui/properties/forms/shared/propertyFormMixin.js';
export default { export default {
mixins: [propertyFormMixin],
props: { props: {
model: {
type: Object,
default: () => ({}),
},
errors: {
type: Object,
default: () => ({}),
},
parentTarget: { parentTarget: {
type: String, type: String,
default: undefined, default: undefined,
}, },
debounceTime: {
type: Number,
default: undefined,
},
}, },
data(){return{ data(){return{
DAMAGE_TYPES, DAMAGE_TYPES,

View File

@@ -4,8 +4,7 @@
label="Name" label="Name"
:value="model.name" :value="model.name"
:error-messages="errors.name" :error-messages="errors.name"
:debounce-time="debounceTime" @change="change('name', ...arguments)"
@change="(value, ack) => $emit('change', {path: ['name'], value, ack})"
/> />
<div class="layout row wrap"> <div class="layout row wrap">
<smart-select <smart-select
@@ -16,8 +15,7 @@
:value="model.damageTypes" :value="model.damageTypes"
:error-messages="errors.damageTypes" :error-messages="errors.damageTypes"
:menu-props="{auto: true, lazy: true}" :menu-props="{auto: true, lazy: true}"
:debounce-time="debounceTime" @change="change('damageTypes', ...arguments)"
@change="(value, ack) => $emit('change', {path: ['damageTypes'], value, ack})"
/> />
<smart-select <smart-select
label="Value" label="Value"
@@ -26,29 +24,17 @@
:value="model.value" :value="model.value"
:error-messages="errors.value" :error-messages="errors.value"
:menu-props="{auto: true, lazy: true}" :menu-props="{auto: true, lazy: true}"
:debounce-time="debounceTime" @change="change('value', ...arguments)"
@change="(value, ack) => $emit('change', {path: ['value'], value, ack})"
/> />
</div> </div>
</div> </div>
</template> </template>
<script> <script>
import propertyFormMixin from '/imports/ui/properties/forms/shared/propertyFormMixin.js';
export default { export default {
props: { mixins: [propertyFormMixin],
model: {
type: Object,
default: () => ({}),
},
errors: {
type: Object,
default: () => ({}),
},
debounceTime: {
type: Number,
default: undefined,
},
},
data(){return { data(){return {
damageTypes: [ damageTypes: [
{ {

View File

@@ -4,8 +4,7 @@
label="Name" label="Name"
:value="model.name" :value="model.name"
:error-messages="errors.name" :error-messages="errors.name"
:debounce-time="debounceTime" @change="change('name', ...arguments)"
@change="(value, ack) => $emit('change', {path: ['name'], value, ack})"
/> />
<div class="layout row wrap justify-start"> <div class="layout row wrap justify-start">
<smart-select <smart-select
@@ -16,7 +15,7 @@
:menu-props="{transition: 'slide-y-transition', lazy: true}" :menu-props="{transition: 'slide-y-transition', lazy: true}"
:items="operations" :items="operations"
:value="model.operation" :value="model.operation"
@change="(value, ack) => $emit('change', {path: ['operation'], value, ack})" @change="change('operation', ...arguments)"
> >
<v-icon <v-icon
slot="prepend" slot="prepend"
@@ -46,8 +45,7 @@
:disabled="!needsValue" :disabled="!needsValue"
:error-messages="errors.calculation" :error-messages="errors.calculation"
:hint="!isFinite(model.calculation) && model.result ? model.result + '' : '' " :hint="!isFinite(model.calculation) && model.result ? model.result + '' : '' "
:debounce-time="debounceTime" @change="change('calculation', ...arguments)"
@change="(value, ack) => $emit('change', {path: ['calculation'], value, ack})"
/> />
</div> </div>
<smart-combobox <smart-combobox
@@ -59,33 +57,19 @@
:value="model.stats" :value="model.stats"
:items="attributeList" :items="attributeList"
:error-messages="errors.stats" :error-messages="errors.stats"
:debounce-time="debounceTime" @change="change('stats', ...arguments)"
@change="(value, ack) => $emit('change', {path: ['stats'], value, ack})"
/> />
</div> </div>
</template> </template>
<script> <script>
import getEffectIcon from '/imports/ui/utility/getEffectIcon.js'; import getEffectIcon from '/imports/ui/utility/getEffectIcon.js';
import propertyFormMixin from '/imports/ui/properties/forms/shared/propertyFormMixin.js';
import attributeListMixin from '/imports/ui/properties/forms/shared/lists/attributeListMixin.js'; import attributeListMixin from '/imports/ui/properties/forms/shared/lists/attributeListMixin.js';
const ICON_SPIN_DURATION = 300; const ICON_SPIN_DURATION = 300;
export default { export default {
mixins: [attributeListMixin], mixins: [propertyFormMixin, attributeListMixin],
props: {
model: {
type: Object,
default: () => ({}),
},
errors: {
type: Object,
default: () => ({}),
},
debounceTime: {
type: Number,
default: undefined,
},
},
data(){ return { data(){ return {
displayedIcon: 'add', displayedIcon: 'add',
iconClass: '', iconClass: '',

View File

@@ -6,8 +6,7 @@
style="flex-basis: 300px;" style="flex-basis: 300px;"
:value="model.name" :value="model.name"
:error-messages="errors.name" :error-messages="errors.name"
:debounce-time="debounceTime" @change="change('name', ...arguments)"
@change="(value, ack) => $emit('change', {path: ['name'], value, ack})"
/> />
<text-field <text-field
label="In-World date" label="In-World date"
@@ -15,8 +14,7 @@
style="flex-basis: 300px;" style="flex-basis: 300px;"
hint="The date in-game that the experience occured" hint="The date in-game that the experience occured"
:error-messages="errors.worldDate" :error-messages="errors.worldDate"
:debounce-time="debounceTime" @change="change('worldDate', ...arguments)"
@change="(value, ack) => $emit('change', {path: ['worldDate'], value, ack})"
/> />
<date-picker <date-picker
label="Real date" label="Real date"
@@ -24,16 +22,14 @@
style="flex-basis: 300px;" style="flex-basis: 300px;"
hint="Real life date" hint="Real life date"
:error-messages="errors.date" :error-messages="errors.date"
:debounce-time="debounceTime" @change="change('date', ...arguments)"
@change="(value, ack) => $emit('change', {path: ['date'], value, ack})"
/> />
</div> </div>
<text-area <text-area
label="Description" label="Description"
:value="model.description" :value="model.description"
:error-messages="errors.description" :error-messages="errors.description"
:debounce-time="debounceTime" @change="change('description', ...arguments)"
@change="(value, ack) => $emit('change', {path: ['description'], value, ack})"
/> />
<div class="layout column align-end"> <div class="layout column align-end">
<text-field <text-field
@@ -43,30 +39,18 @@
hint="The number of experience points gained from this entry" hint="The number of experience points gained from this entry"
:value="model.value" :value="model.value"
:error-messages="errors.value" :error-messages="errors.value"
:debounce-time="debounceTime" @change="change('value', ...arguments)"
@change="(value, ack) => $emit('change', {path: ['value'], value, ack})"
/> />
</div> </div>
</div> </div>
</template> </template>
<script> <script>
export default { import propertyFormMixin from '/imports/ui/properties/forms/shared/propertyFormMixin.js';
props: {
model: { export default {
type: Object, mixins: [propertyFormMixin],
default: () => ({}), };
},
errors: {
type: Object,
default: () => ({}),
},
debounceTime: {
type: Number,
default: undefined,
},
},
};
</script> </script>
<style lang="css" scoped> <style lang="css" scoped>

View File

@@ -4,44 +4,30 @@
label="Name" label="Name"
:value="model.name" :value="model.name"
:error-messages="errors.name" :error-messages="errors.name"
:debounce-time="debounceTime" @change="change('name', ...arguments)"
@change="(value, ack) => $emit('change', {path: ['name'], value, ack})"
/> />
<text-area <text-area
label="Summary" label="Summary"
hint="This will appear in the feature card in the character sheet" hint="This will appear in the feature card in the character sheet"
:value="model.summary" :value="model.summary"
:error-messages="errors.summary" :error-messages="errors.summary"
:debounce-time="debounceTime" @change="change('summary', ...arguments)"
@change="(value, ack) => $emit('change', {path: ['summary'], value, ack})"
/> />
<text-area <text-area
label="Description" label="Description"
hint="The rest of the description that doesn't fit in the summary goes here" hint="The rest of the description that doesn't fit in the summary goes here"
:value="model.description" :value="model.description"
:error-messages="errors.description" :error-messages="errors.description"
:debounce-time="debounceTime" @change="change('description', ...arguments)"
@change="(value, ack) => $emit('change', {path: ['description'], value, ack})"
/> />
</div> </div>
</template> </template>
<script> <script>
import propertyFormMixin from '/imports/ui/properties/forms/shared/propertyFormMixin.js';
export default { export default {
props: { mixins: [propertyFormMixin],
model: {
type: Object,
default: () => ({}),
},
errors: {
type: Object,
default: () => ({}),
},
debounceTime: {
type: Number,
default: undefined,
},
},
data(){ return{ data(){ return{
enabledOptions: [ enabledOptions: [
{ {

View File

@@ -6,29 +6,17 @@
style="flex-basis: 300px;" style="flex-basis: 300px;"
:value="model.name" :value="model.name"
:error-messages="errors.name" :error-messages="errors.name"
:debounce-time="debounceTime" @change="change('name', ...arguments)"
@change="(value, ack) => $emit('change', {path: ['name'], value, ack})"
/> />
</div> </div>
</div> </div>
</template> </template>
<script> <script>
import propertyFormMixin from '/imports/ui/properties/forms/shared/propertyFormMixin.js';
export default { export default {
props: { mixins: [propertyFormMixin],
model: {
type: Object,
default: () => ({}),
},
errors: {
type: Object,
default: () => ({}),
},
debounceTime: {
type: Number,
default: undefined,
},
},
}; };
</script> </script>

View File

@@ -6,8 +6,7 @@
style="flex-basis: 300px;" style="flex-basis: 300px;"
:value="model.tag" :value="model.tag"
:error-messages="errors.tag" :error-messages="errors.tag"
:debounce-time="debounceTime" @change="change('tag', ...arguments)"
@change="(value, ack) => $emit('change', {path: ['tag'], value, ack})"
/> />
<text-field <text-field
label="Quantity" label="Quantity"
@@ -15,27 +14,15 @@
style="flex-basis: 300px;" style="flex-basis: 300px;"
:value="model.quantity" :value="model.quantity"
:error-messages="errors.quantity" :error-messages="errors.quantity"
:debounce-time="debounceTime" @change="change('quantity', ...arguments)"
@change="(value, ack) => $emit('change', {path: ['quantity'], value, ack})"
/> />
</div> </div>
</template> </template>
<script> <script>
import propertyFormMixin from '/imports/ui/properties/forms/shared/propertyFormMixin.js';
export default { export default {
props: { mixins: [propertyFormMixin],
model: { };
type: Object,
default: () => ({}),
},
errors: {
type: Object,
default: () => ({}),
},
debounceTime: {
type: Number,
default: undefined,
},
},
}
</script> </script>

View File

@@ -1,12 +1,12 @@
<template lang="html"> <template lang="html">
<div class="item-form"> <div class="item-form">
<div class="layout column align-center"> <div class="layout column align-center">
<v-switch <smart-switch
label="Equipped" label="Equipped"
class="no-flex" class="no-flex"
:input-value="model.equipped" :value="model.equipped"
:error-messages="errors.equipped" :error-messages="errors.equipped"
@change="e => $emit('change', {path: ['equipped'], value: !!e})" @change="change('equipped', ...arguments)"
/> />
</div> </div>
<div class="layout row wrap"> <div class="layout row wrap">
@@ -14,15 +14,13 @@
label="Name" label="Name"
:value="model.name" :value="model.name"
:error-messages="errors.name" :error-messages="errors.name"
:debounce-time="debounceTime" @change="change('name', ...arguments)"
@change="(value, ack) => $emit('change', {path: ['name'], value, ack})"
/> />
<text-field <text-field
label="Plural name" label="Plural name"
:value="model.plural" :value="model.plural"
:error-messages="errors.plural" :error-messages="errors.plural"
:debounce-time="debounceTime" @change="change('plural', ...arguments)"
@change="(value, ack) => $emit('change', {path: ['plural'], value, ack})"
/> />
</div> </div>
<div class="layout row wrap"> <div class="layout row wrap">
@@ -36,8 +34,7 @@
style="flex-basis: 300px;" style="flex-basis: 300px;"
:value="model.value" :value="model.value"
:error-messages="errors.value" :error-messages="errors.value"
:debounce-time="debounceTime" @change="change('value', ...arguments)"
@change="(value, ack) => $emit('change', {path: ['value'], value, ack})"
/> />
<text-field <text-field
label="Weight" label="Weight"
@@ -48,8 +45,7 @@
style="flex-basis: 300px;" style="flex-basis: 300px;"
:value="model.weight" :value="model.weight"
:error-messages="errors.weight" :error-messages="errors.weight"
:debounce-time="debounceTime" @change="change('weight', ...arguments)"
@change="(value, ack) => $emit('change', {path: ['weight'], value, ack})"
/> />
</div> </div>
<text-field <text-field
@@ -58,25 +54,23 @@
min="0" min="0"
:value="model.quantity" :value="model.quantity"
:error-messages="errors.quantity" :error-messages="errors.quantity"
:debounce-time="debounceTime" @change="change('quantity', ...arguments)"
@change="(value, ack) => $emit('change', {path: ['quantity'], value, ack})"
/> />
<text-area <text-area
label="Description" label="Description"
:value="model.description" :value="model.description"
:error-messages="errors.description" :error-messages="errors.description"
:debounce-time="debounceTime" @change="change('description', ...arguments)"
@change="(value, ack) => $emit('change', {path: ['description'], value, ack})"
/> />
<form-section <form-section
name="Advanced" name="Advanced"
standalone standalone
> >
<v-switch <smart-switch
label="Show increment buttons" label="Show increment buttons"
:input-value="model.showIncrement" :value="model.showIncrement"
:error-messages="errors.showIncrement" :error-messages="errors.showIncrement"
@change="value => $emit('change', {path: ['showIncrement'], value})" @change="change('showIncrement', ...arguments)"
/> />
<smart-combobox <smart-combobox
label="Tags" label="Tags"
@@ -86,25 +80,24 @@
deletable-chips deletable-chips
:value="model.tags" :value="model.tags"
:error-messages="errors.tags" :error-messages="errors.tags"
:debounce-time="debounceTime" @change="change('tags', ...arguments)"
@change="(value, ack) => $emit('change', {path: ['tags'], value, ack})"
/> />
<v-switch <smart-switch
label="Requires attunement" label="Requires attunement"
:input-value="model.requiresAttunement" :value="model.requiresAttunement"
:error-messages="errors.requiresAttunement" :error-messages="errors.requiresAttunement"
@change="value => $emit('change', {path: ['requiresAttunement'], value})" @change="change('requiresAttunement', ...arguments)"
/> />
<v-expand-transition> <v-expand-transition>
<div <div
v-show="model.requiresAttunement" v-show="model.requiresAttunement"
style="padding-top: 0.1px;" style="padding-top: 0.1px;"
> >
<v-switch <smart-switch
label="Attuned" label="Attuned"
:input-value="model.attuned" :value="model.attuned"
:error-messages="errors.attuned" :error-messages="errors.attuned"
@change="value => $emit('change', {path: ['attuned'], value})" @change="change('attuned', ...arguments)"
/> />
</div> </div>
</v-expand-transition> </v-expand-transition>
@@ -114,24 +107,12 @@
<script> <script>
import FormSection from '/imports/ui/properties/forms/shared/FormSection.vue'; import FormSection from '/imports/ui/properties/forms/shared/FormSection.vue';
import propertyFormMixin from '/imports/ui/properties/forms/shared/propertyFormMixin.js';
export default { export default {
components: { components: {
FormSection, FormSection,
}, },
props: { mixins: [propertyFormMixin],
model: {
type: Object,
default: () => ({}),
},
errors: {
type: Object,
default: () => ({}),
},
debounceTime: {
type: Number,
default: undefined,
},
},
} }
</script> </script>

View File

@@ -9,7 +9,7 @@
<div style="flex-grow: 1;"> <div style="flex-grow: 1;">
<item-consumed-form <item-consumed-form
:model="item" :model="item"
@change="({path, value, ack}) => $emit('change', {path: [i, ...path], value, ack})" @change="({path, value, ack}) => change([i, ...path], value, ack)"
/> />
</div> </div>
<v-btn <v-btn
@@ -29,20 +29,12 @@
<script> <script>
import ItemConsumedForm from '/imports/ui/properties/forms/ItemConsumedForm.vue'; import ItemConsumedForm from '/imports/ui/properties/forms/ItemConsumedForm.vue';
import propertyFormMixin from '/imports/ui/properties/forms/shared/propertyFormMixin.js';
export default { export default {
components: { components: {
ItemConsumedForm, ItemConsumedForm,
}, },
props: { mixins: [propertyFormMixin],
model: {
type: Array,
default: () => ([]),
},
debounceTime: {
type: Number,
default: undefined,
},
},
} }
</script> </script>

View File

@@ -4,37 +4,21 @@
label="Name" label="Name"
:value="model.name" :value="model.name"
:error-messages="errors.name" :error-messages="errors.name"
:debounce-time="debounceTime" @change="change('name', ...arguments)"
@change="(value, ack) => $emit('change', {path: ['name'], value, ack})"
/> />
<text-area <text-area
label="Description" label="Description"
:value="model.description" :value="model.description"
:error-messages="errors.description" :error-messages="errors.description"
:debounce-time="debounceTime" @change="change('description', ...arguments)"
@change="(value, ack) => $emit('change', {path: ['description'], value, ack})"
/> />
</div> </div>
</template> </template>
<script> <script>
export default { import propertyFormMixin from '/imports/ui/properties/forms/shared/propertyFormMixin.js';
props: {
model: {
type: Object,
default: () => ({}),
},
errors: {
type: Object,
default: () => ({}),
},
debounceTime: {
type: Number,
default: undefined,
},
},
};
</script>
<style lang="css" scoped> export default {
</style> mixins: [propertyFormMixin],
}
</script>

View File

@@ -4,8 +4,7 @@
label="Name" label="Name"
:value="model.name" :value="model.name"
:error-messages="errors.name" :error-messages="errors.name"
:debounce-time="debounceTime" @change="change('name', ...arguments)"
@change="(value, ack) => $emit('change', {path: ['name'], value, ack})"
/> />
<div class="layout row wrap justify-start proficiency-form"> <div class="layout row wrap justify-start proficiency-form">
<smart-combobox <smart-combobox
@@ -15,15 +14,14 @@
:value="model.stats" :value="model.stats"
:items="skillList" :items="skillList"
:error-messages="errors.stats" :error-messages="errors.stats"
:debounce-time="debounceTime" @change="change('stats', ...arguments)"
@change="(value, ack) => $emit('change', {path: ['stats'], value, ack})"
/> />
<proficiency-select <proficiency-select
label="Proficiency" label="Proficiency"
style="flex-basis: 300px;" style="flex-basis: 300px;"
:clearable="false" :clearable="false"
:value="model.value" :value="model.value"
@change="(value, ack) => $emit('change', {path: ['value'], value, ack})" @change="change('stats', ...arguments)"
/> />
</div> </div>
</div> </div>
@@ -32,30 +30,13 @@
<script> <script>
import ProficiencySelect from '/imports/ui/properties/forms/shared/ProficiencySelect.vue'; import ProficiencySelect from '/imports/ui/properties/forms/shared/ProficiencySelect.vue';
import skillListMixin from '/imports/ui/properties/forms/shared/lists/skillListMixin.js'; import skillListMixin from '/imports/ui/properties/forms/shared/lists/skillListMixin.js';
import propertyFormMixin from '/imports/ui/properties/forms/shared/propertyFormMixin.js';
export default { export default {
components: { components: {
ProficiencySelect, ProficiencySelect,
}, },
mixins: [skillListMixin], mixins: [propertyFormMixin, skillListMixin],
props: {
model: {
type: Object,
default: () => ({}),
},
errors: {
type: Object,
default: () => ({}),
},
debounceTime: {
type: Number,
default: undefined,
},
stats: {
type: Array,
default: () => [],
},
},
}; };
</script> </script>

View File

@@ -28,7 +28,7 @@
<template #activator="{ on }"> <template #activator="{ on }">
<v-btn <v-btn
:loading="addResourceLoading" :loading="addResourceLoading"
:disabled="addResourceLoading" :disabled="addResourceLoading || context.editPermission === false"
icon icon
large large
outline outline
@@ -53,20 +53,20 @@
<script> <script>
import AttributesConsumedListForm from '/imports/ui/properties/forms/AttributesConsumedListForm.vue'; import AttributesConsumedListForm from '/imports/ui/properties/forms/AttributesConsumedListForm.vue';
import ItemsConsumedListForm from '/imports/ui/properties/forms/ItemsConsumedListForm.vue'; import ItemsConsumedListForm from '/imports/ui/properties/forms/ItemsConsumedListForm.vue';
import ResourcesSchema from '/imports/api/properties/subSchemas/ResourcesSchema.js';
import ItemConsumedSchema from '/imports/api/properties/subSchemas/ItemConsumedSchema.js'; import ItemConsumedSchema from '/imports/api/properties/subSchemas/ItemConsumedSchema.js';
import AttributeConsumedSchema from '/imports/api/properties/subSchemas/AttributeConsumedSchema.js'; import AttributeConsumedSchema from '/imports/api/properties/subSchemas/AttributeConsumedSchema.js';
import propertyFormMixin from '/imports/ui/properties/forms/shared/propertyFormMixin.js';
export default { export default {
components: { components: {
AttributesConsumedListForm, AttributesConsumedListForm,
ItemsConsumedListForm, ItemsConsumedListForm,
}, },
props: { inject: {
model: { context: { default: {} }
type: Object,
default: () => (ResourcesSchema.clean({})),
}, },
mixins: [propertyFormMixin],
props: {
parentTarget: { parentTarget: {
type: String, type: String,
default: undefined, default: undefined,
@@ -74,10 +74,6 @@
buffsStored: { buffsStored: {
type: Boolean, type: Boolean,
}, },
debounceTime: {
type: Number,
default: undefined,
},
}, },
data(){return { data(){return {
addResourceLoading: false, addResourceLoading: false,

View File

@@ -4,19 +4,17 @@
label="Roll" label="Roll"
:value="model.roll" :value="model.roll"
:error-messages="errors.roll" :error-messages="errors.roll"
:debounce-time="debounceTime" @change="change('roll', ...arguments)"
@change="(value, ack) => $emit('change', {path: ['roll'], value, ack})"
/> />
<form-sections> <form-sections>
<form-section name="Advanced"> <form-section name="Advanced">
<v-combobox <smart-combobox
label="Tags" label="Tags"
multiple multiple
chips chips
deletable-chips deletable-chips
box
:value="model.tags" :value="model.tags"
@change="(value) => $emit('change', {path: ['tags'], value})" @change="change('tags', ...arguments)"
/> />
</form-section> </form-section>
</form-sections> </form-sections>
@@ -25,29 +23,14 @@
<script> <script>
import FormSection, {FormSections} from '/imports/ui/properties/forms/shared/FormSection.vue'; import FormSection, {FormSections} from '/imports/ui/properties/forms/shared/FormSection.vue';
import propertyFormMixin from '/imports/ui/properties/forms/shared/propertyFormMixin.js';
export default { export default {
components: { components: {
FormSection, FormSection,
FormSections, FormSections,
}, },
props: { mixins: [propertyFormMixin],
stored: {
type: Boolean,
},
model: {
type: Object,
default: () => ({}),
},
errors: {
type: Object,
default: () => ({}),
},
debounceTime: {
type: Number,
default: undefined,
},
},
data(){return { data(){return {
addResultLoading: false, addResultLoading: false,
}}, }},

View File

@@ -4,38 +4,24 @@
label="DC" label="DC"
:value="model.dc" :value="model.dc"
:error-messages="errors.dc" :error-messages="errors.dc"
:debounce-time="debounceTime" @change="change('dc', ...arguments)"
@change="(value, ack) => $emit('change', {path: ['dc'], value, ack})"
/> />
<text-field <smart-combobox
label="Ability" label="Save"
hint="Which ability the saving throw targets" hint="Which save the saving throw targets"
:value="model.ability" :value="model.ability"
:items="saveList"
:error-messages="errors.ability" :error-messages="errors.ability"
:debounce-time="debounceTime" @change="change('ability', ...arguments)"
@change="(value, ack) => $emit('change', {path: ['ability'], value, ack})"
/> />
</div> </div>
</template> </template>
<script> <script>
export default { import saveListMixin from '/imports/ui/properties/forms/shared/lists/saveListMixin.js';
props: { import propertyFormMixin from '/imports/ui/properties/forms/shared/propertyFormMixin.js';
model: {
type: Object,
default: () => ({}),
},
errors: {
type: Object,
default: () => ({}),
},
debounceTime: {
type: Number,
default: undefined,
},
},
};
</script>
<style lang="css" scoped> export default {
</style> mixins: [saveListMixin, propertyFormMixin],
};
</script>

View File

@@ -5,8 +5,7 @@
label="Name" label="Name"
:value="model.name" :value="model.name"
:error-messages="errors.name" :error-messages="errors.name"
:debounce-time="debounceTime" @change="change('name', ...arguments)"
@change="(value, ack) => $emit('change', {path: ['name'], value, ack})"
/> />
<text-field <text-field
label="Variable name" label="Variable name"
@@ -14,8 +13,7 @@
style="flex-basis: 300px;" style="flex-basis: 300px;"
hint="Use this name in formulae to reference this skill" hint="Use this name in formulae to reference this skill"
:error-messages="errors.variableName" :error-messages="errors.variableName"
:debounce-time="debounceTime" @change="change('variableName', ...arguments)"
@change="(value, ack) => $emit('change', {path: ['variableName'], value, ack})"
/> />
<smart-combobox <smart-combobox
label="Ability" label="Ability"
@@ -24,8 +22,7 @@
hint="Which ability is this skill based off of" hint="Which ability is this skill based off of"
:items="abilityScoreList" :items="abilityScoreList"
:error-messages="errors.ability" :error-messages="errors.ability"
:debounce-time="debounceTime" @change="change('ability', ...arguments)"
@change="(value, ack) => $emit('change', {path: ['ability'], value, ack})"
/> />
</div> </div>
<smart-select <smart-select
@@ -34,15 +31,13 @@
:value="model.skillType" :value="model.skillType"
:error-messages="errors.skillType" :error-messages="errors.skillType"
:menu-props="{auto: true, lazy: true}" :menu-props="{auto: true, lazy: true}"
:debounce-time="debounceTime" @change="change('skillType', ...arguments)"
@change="(value, ack) => $emit('change', {path: ['skillType'], value, ack})"
/> />
<text-area <text-area
label="Description" label="Description"
:value="model.description" :value="model.description"
:error-messages="errors.description" :error-messages="errors.description"
:debounce-time="debounceTime" @change="change('description', ...arguments)"
@change="(value, ack) => $emit('change', {path: ['description'], value, ack})"
/> />
<form-section <form-section
name="Advanced" name="Advanced"
@@ -56,15 +51,14 @@
:value="model.baseValue" :value="model.baseValue"
hint="This is the value of the skill before effects are applied" hint="This is the value of the skill before effects are applied"
:error-messages="errors.baseValue" :error-messages="errors.baseValue"
:debounce-time="debounceTime" @change="change('baseValue', ...arguments)"
@change="(value, ack) => $emit('change', {path: ['baseValue'], value, ack})"
/> />
<proficiency-select <proficiency-select
style="flex-basis: 300px;" style="flex-basis: 300px;"
label="Base Proficiency" label="Base Proficiency"
:value="model.baseProficiency" :value="model.baseProficiency"
:error-messages="errors.baseProficiency" :error-messages="errors.baseProficiency"
@change="(value, ack) => {$emit('change', {path: ['baseProficiency'], value, ack})}" @change="change('baseProficiency', ...arguments)"
/> />
</div> </div>
</form-section> </form-section>
@@ -75,26 +69,14 @@
import ProficiencySelect from '/imports/ui/properties/forms/shared/ProficiencySelect.vue'; import ProficiencySelect from '/imports/ui/properties/forms/shared/ProficiencySelect.vue';
import FormSection from '/imports/ui/properties/forms/shared/FormSection.vue'; import FormSection from '/imports/ui/properties/forms/shared/FormSection.vue';
import createListOfProperties from '/imports/ui/properties/forms/shared/lists/createListOfProperties.js'; import createListOfProperties from '/imports/ui/properties/forms/shared/lists/createListOfProperties.js';
import propertyFormMixin from '/imports/ui/properties/forms/shared/propertyFormMixin.js';
export default { export default {
components: { components: {
ProficiencySelect, ProficiencySelect,
FormSection, FormSection,
}, },
props: { mixins: [propertyFormMixin],
model: {
type: Object,
default: () => ({}),
},
errors: {
type: Object,
default: () => ({}),
},
debounceTime: {
type: Number,
default: undefined,
},
},
data(){return{ data(){return{
skillTypes: [ skillTypes: [
{ {

View File

@@ -4,8 +4,7 @@
label="Name" label="Name"
:value="model.name" :value="model.name"
:error-messages="errors.name" :error-messages="errors.name"
:debounce-time="debounceTime" @change="change('name', ...arguments)"
@change="(value, ack) => $emit('change', {path: ['name'], value, ack})"
/> />
<div class="layout row wrap"> <div class="layout row wrap">
<smart-select <smart-select
@@ -15,8 +14,7 @@
:items="spellLevels" :items="spellLevels"
:value="model.level" :value="model.level"
:error-messages="errors.level" :error-messages="errors.level"
:debounce-time="debounceTime" @change="change('level', ...arguments)"
@change="(value, ack) => $emit('change', {path: ['level'], value, ack})"
/> />
<smart-select <smart-select
label="School" label="School"
@@ -25,94 +23,87 @@
:items="magicSchools" :items="magicSchools"
:value="model.school" :value="model.school"
:error-messages="errors.school" :error-messages="errors.school"
:debounce-time="debounceTime" @change="change('school', ...arguments)"
@change="(value, ack) => $emit('change', {path: ['school'], value, ack})"
/> />
</div> </div>
<div class="layout row wrap"> <div class="layout row wrap">
<v-switch <smart-switch
label="Always prepared" label="Always prepared"
style="width: 200px; flex-grow: 0;" style="width: 200px; flex-grow: 0;"
class="ml-2" class="ml-2"
:input-value="model.alwaysPrepared" :value="model.alwaysPrepared"
:error-messages="errors.alwaysPrepared" :error-messages="errors.alwaysPrepared"
@change="e => $emit('change', {path: ['alwaysPrepared'], value: !!e})" @change="change('alwaysPrepared', ...arguments)"
/> />
</div> </div>
<text-field <text-field
label="Casting Time" label="Casting Time"
:value="model.castingTime" :value="model.castingTime"
:error-messages="errors.castingTime" :error-messages="errors.castingTime"
:debounce-time="debounceTime" @change="change('castingTime', ...arguments)"
@change="(value, ack) => $emit('change', {path: ['castingTime'], value, ack})"
/> />
<text-field <text-field
label="Range" label="Range"
:value="model.range" :value="model.range"
:error-messages="errors.range" :error-messages="errors.range"
:debounce-time="debounceTime" @change="change('range', ...arguments)"
@change="(value, ack) => $emit('change', {path: ['range'], value, ack})"
/> />
<div class="layout row wrap justify-space-between"> <div class="layout row wrap justify-space-between">
<v-checkbox <smart-checkbox
label="Verbal" label="Verbal"
:input-value="model.verbal" :value="model.verbal"
:error-messages="errors.verbal" :error-messages="errors.verbal"
@change="(value) => $emit('change', {path: ['verbal'], value})" @change="change('verbal', ...arguments)"
/> />
<v-checkbox <smart-checkbox
label="Somatic" label="Somatic"
:input-value="model.somatic" :value="model.somatic"
:error-messages="errors.somatic" :error-messages="errors.somatic"
@change="(value) => $emit('change', {path: ['somatic'], value})" @change="change('somatic', ...arguments)"
/> />
<v-checkbox <smart-checkbox
label="Concentration" label="Concentration"
:input-value="model.concentration" :value="model.concentration"
:error-messages="errors.concentration" :error-messages="errors.concentration"
@change="(value) => $emit('change', {path: ['concentration'], value})" @change="change('concentration', ...arguments)"
/> />
<v-checkbox <smart-checkbox
label="Ritual" label="Ritual"
:input-value="model.ritual" :value="model.ritual"
:error-messages="errors.ritual" :error-messages="errors.ritual"
@change="(value) => $emit('change', {path: ['ritual'], value})" @change="change('ritual', ...arguments)"
/> />
</div> </div>
<text-field <text-field
label="Material" label="Material"
:value="model.material" :value="model.material"
:error-messages="errors.material" :error-messages="errors.material"
:debounce-time="debounceTime" @change="change('material', ...arguments)"
@change="(value, ack) => $emit('change', {path: ['material'], value, ack})"
/> />
<text-field <text-field
label="Duration" label="Duration"
:value="model.duration" :value="model.duration"
:error-messages="errors.duration" :error-messages="errors.duration"
:debounce-time="debounceTime" @change="change('duration', ...arguments)"
@change="(value, ack) => $emit('change', {path: ['duration'], value, ack})"
/> />
<text-area <text-area
label="Description" label="Description"
:value="model.description" :value="model.description"
:error-messages="errors.description" :error-messages="errors.description"
:debounce-time="debounceTime" @change="change('description', ...arguments)"
@change="(value, ack) => $emit('change', {path: ['description'], value, ack})"
/> />
<form-sections> <form-sections>
<form-section <form-section
name="Advanced" name="Advanced"
> >
<v-combobox <smart-combobox
label="Spell lists" label="Spell lists"
multiple multiple
chips chips
deletable-chips deletable-chips
box
:value="model.spellLists" :value="model.spellLists"
:error-messages="errors.spellLists" :error-messages="errors.spellLists"
@change="(value) => $emit('change', {path: ['spellLists'], value})" @change="change('spellLists', ...arguments)"
/> />
</form-section> </form-section>
<form-section <form-section
@@ -130,6 +121,7 @@
<script> <script>
import FormSection, { FormSections } from '/imports/ui/properties/forms/shared/FormSection.vue'; import FormSection, { FormSections } from '/imports/ui/properties/forms/shared/FormSection.vue';
import ActionForm from '/imports/ui/properties/forms/ActionForm.vue' import ActionForm from '/imports/ui/properties/forms/ActionForm.vue'
import propertyFormMixin from '/imports/ui/properties/forms/shared/propertyFormMixin.js';
export default { export default {
components: { components: {
@@ -137,20 +129,7 @@
FormSection, FormSection,
ActionForm, ActionForm,
}, },
props: { mixins: [propertyFormMixin],
model: {
type: Object,
default: () => ({}),
},
errors: {
type: Object,
default: () => ({}),
},
debounceTime: {
type: Number,
default: undefined,
},
},
data(){return { data(){return {
magicSchools: [ magicSchools: [
{ {

View File

@@ -5,45 +5,31 @@
label="Name" label="Name"
:value="model.name" :value="model.name"
:error-messages="errors.name" :error-messages="errors.name"
:debounce-time="debounceTime" @change="change('name', ...arguments)"
@change="(value, ack) => $emit('change', {path: ['name'], value, ack})"
/> />
</div> </div>
<text-area <text-area
label="Description" label="Description"
:value="model.description" :value="model.description"
:error-messages="errors.description" :error-messages="errors.description"
:debounce-time="debounceTime" @change="change('description', ...arguments)"
@change="(value, ack) => $emit('change', {path: ['description'], value, ack})"
/> />
<text-field <text-field
label="Maximum prepared spells" label="Maximum prepared spells"
:value="model.maxPrepared" :value="model.maxPrepared"
hint="How many spells can be prepared" hint="How many spells can be prepared"
:error-messages="errors.maxPrepared" :error-messages="errors.maxPrepared"
:debounce-time="debounceTime" @change="change('maxPrepared', ...arguments)"
@change="(value, ack) => $emit('change', {path: ['maxPrepared'], value, ack})"
/> />
</div> </div>
</template> </template>
<script> <script>
export default { import propertyFormMixin from '/imports/ui/properties/forms/shared/propertyFormMixin.js';
props: {
model: { export default {
type: Object, mixins: [propertyFormMixin],
default: () => ({}), };
},
errors: {
type: Object,
default: () => ({}),
},
debounceTime: {
type: Number,
default: undefined,
},
},
};
</script> </script>
<style lang="css" scoped> <style lang="css" scoped>

View File

@@ -4,8 +4,7 @@
label="Name" label="Name"
:value="model.name" :value="model.name"
:error-messages="errors.name" :error-messages="errors.name"
:debounce-time="debounceTime" @change="change('name', ...arguments)"
@change="(value, ack) => $emit('change', {path: ['name'], value, ack})"
/> />
<v-layout <v-layout
column column
@@ -35,29 +34,17 @@
label="Condition" label="Condition"
:value="model.condition" :value="model.condition"
:error-messages="errors.condition" :error-messages="errors.condition"
:debounce-time="debounceTime" @change="change('condition', ...arguments)"
@change="(value, ack) => $emit('change', {path: ['condition'], value, ack})"
/> />
</v-fade-transition> </v-fade-transition>
</div> </div>
</template> </template>
<script> <script>
import propertyFormMixin from '/imports/ui/properties/forms/shared/propertyFormMixin.js';
export default { export default {
props: { mixins: [propertyFormMixin],
model: {
type: Object,
default: () => ({}),
},
errors: {
type: Object,
default: () => ({}),
},
debounceTime: {
type: Number,
default: undefined,
},
},
computed: { computed: {
radioSelection(){ radioSelection(){
if (this.model.disabled){ if (this.model.disabled){

View File

@@ -0,0 +1,11 @@
import createListOfProperties from '/imports/ui/properties/forms/shared/lists/createListOfProperties.js'
const saveListMixin = {
meteor: {
saveList(){
return createListOfProperties({type: 'skill', skillType: 'save'});
},
},
};
export default saveListMixin;

View File

@@ -0,0 +1,20 @@
export default {
props: {
model: {
type: [Object, Array],
default: () => ({}),
},
errors: {
type: Object,
default: () => ({}),
},
},
methods: {
change(path, value, ack){
if (!Array.isArray(path)){
path = [path];
}
this.$emit('change', {path, value, ack});
}
}
}

View File

@@ -44,7 +44,7 @@
/> />
<effect-viewer <effect-viewer
v-if="computationContext.creature && model.baseValueCalculation" v-if="context.creature && model.baseValueCalculation"
:model="{ :model="{
name: 'Base value', name: 'Base value',
result: model.baseValue, result: model.baseValue,
@@ -67,7 +67,7 @@
export default { export default {
inject: { inject: {
computationContext: { default: {} } context: { default: {} }
}, },
components: { components: {
EffectViewer, EffectViewer,
@@ -93,8 +93,8 @@
}, },
meteor: { meteor: {
effects(){ effects(){
if (this.computationContext.creature){ if (this.context.creature){
let creatureId = this.computationContext.creature._id; let creatureId = this.context.creature._id;
return CreatureProperties.find({ return CreatureProperties.find({
'ancestors.id': creatureId, 'ancestors.id': creatureId,
'stats': this.model.variableName, 'stats': this.model.variableName,

View File

@@ -40,7 +40,7 @@
/> />
<effect-viewer <effect-viewer
v-if="computationContext.creature && model.baseValue" v-if="context.creature && model.baseValue"
:model="{ :model="{
name: 'Base value', name: 'Base value',
result: model.baseValue, result: model.baseValue,
@@ -67,7 +67,7 @@ export default {
}, },
mixins: [propertyViewerMixin], mixins: [propertyViewerMixin],
inject: { inject: {
computationContext: { default: {} } context: { default: {} }
}, },
computed: { computed: {
displayedModifier(){ displayedModifier(){
@@ -96,8 +96,8 @@ export default {
}, },
meteor: { meteor: {
effects(){ effects(){
if (this.computationContext.creature){ if (this.context.creature){
let creatureId = this.computationContext.creature._id; let creatureId = this.context.creature._id;
return CreatureProperties.find({ return CreatureProperties.find({
'ancestors.id': creatureId, 'ancestors.id': creatureId,
stats: this.model.variableName, stats: this.model.variableName,

View File

@@ -1,5 +1,4 @@
import { RouterFactory, nativeScrollBehavior } from 'meteor/akryum:vue-router2'; import { RouterFactory, nativeScrollBehavior } from 'meteor/akryum:vue-router2';
import { getUserTier } from '/imports/api/users/patreon/tiers.js';
import LAUNCH_DATE from '/imports/constants/LAUNCH_DATE.js'; import LAUNCH_DATE from '/imports/constants/LAUNCH_DATE.js';
import { acceptInviteToken } from '/imports/api/users/Invites.js'; import { acceptInviteToken } from '/imports/api/users/Invites.js';
@@ -48,25 +47,6 @@ function ensureLoggedIn(to, from, next){
}); });
} }
function ensurePaidFeatures(to, from, next){
Tracker.autorun((computation) => {
if (userSubscription.ready()){
computation.stop();
const user = Meteor.user();
if (!user){
next({ name: 'signIn', query: { redirect: to.path} });
return;
}
let tier = getUserTier(user);
if (tier && tier.paidBenefits){
next();
} else {
next('/patreon-level-too-low');
}
}
});
}
function claimInvite(to, from, next){ function claimInvite(to, from, next){
Tracker.autorun((computation) => { Tracker.autorun((computation) => {
if (userSubscription.ready()){ if (userSubscription.ready()){
@@ -118,7 +98,7 @@ RouterFactory.configure(factory => {
meta: { meta: {
title: 'Character List', title: 'Character List',
}, },
beforeEnter: ensurePaidFeatures, beforeEnter: ensureLoggedIn,
},{ },{
path: '/library', path: '/library',
components: { components: {
@@ -127,7 +107,7 @@ RouterFactory.configure(factory => {
meta: { meta: {
title: 'Library', title: 'Library',
}, },
beforeEnter: ensurePaidFeatures, beforeEnter: ensureLoggedIn,
},{ },{
name: 'singleLibrary', name: 'singleLibrary',
path: '/library/:id', path: '/library/:id',
@@ -138,7 +118,6 @@ RouterFactory.configure(factory => {
meta: { meta: {
title: 'Library', title: 'Library',
}, },
beforeEnter: ensurePaidFeatures,
},{ },{
path: '/character/:id/:urlName', path: '/character/:id/:urlName',
components: { components: {
@@ -149,7 +128,6 @@ RouterFactory.configure(factory => {
meta: { meta: {
title: 'Character Sheet', title: 'Character Sheet',
}, },
beforeEnter: ensurePaidFeatures,
},{ },{
path: '/character/:id', path: '/character/:id',
components: { components: {
@@ -160,7 +138,6 @@ RouterFactory.configure(factory => {
meta: { meta: {
title: 'Character Sheet', title: 'Character Sheet',
}, },
beforeEnter: ensurePaidFeatures,
},{ },{
path: '/friends', path: '/friends',
components: { components: {

View File

@@ -0,0 +1,49 @@
<template lang="html">
<dialog-base>
<v-layout
column
align-center
justify-center
>
<h2 style="margin: 48px 28px 16px">
Your current Patreon tier is {{ tier.name }}
</h2>
<h3>
You need to be at least Adventurer tier (or be invited by a Patron of
a higher tier) to perform this action
</h3>
<v-btn
href="https://www.patreon.com/join/dicecloud/checkout?rid=3002853"
color="accent"
>
Join now
</v-btn>
</v-layout>
<v-spacer slot="actions" />
<v-btn
slot="actions"
flat
@click="$store.dispatch('popDialogStack')"
>
Cancel
</v-btn>
</dialog-base>
</template>
<script>
import TIERS, { getUserTier } from '/imports/api/users/patreon/tiers.js';
import DialogBase from '/imports/ui/dialogStack/DialogBase.vue';
export default {
components: {
DialogBase,
},
meteor: {
tier(){
let user = Meteor.user();
if (!user) return TIERS[0];
return getUserTier(user);
}
},
}
</script>