Compare commits

...

19 Commits

Author SHA1 Message Date
Stefan Zermatten
b4da32f9ab Fixed soft removed documents never getting permanently removed 2020-06-05 23:08:31 +02:00
Stefan Zermatten
986fe8fd93 Added an autofocus field to most forms 2020-06-05 22:39:21 +02:00
Stefan Zermatten
dd4596851e Improved class level viewer and tree node view 2020-06-05 22:25:22 +02:00
Stefan Zermatten
bc3fc9574a Added loading and empty state to experience list 2020-06-05 22:20:40 +02:00
Stefan Zermatten
db1ae5db3d Iterated on XP system 2020-06-05 21:48:28 +02:00
Stefan Zermatten
d1e7eb2fa0 Added basic XP system 2020-06-05 16:14:26 +02:00
Stefan Zermatten
efb8b87a2d Alphabetized properties by displayed name 2020-05-31 22:39:15 +02:00
Stefan Zermatten
b04b915c7b Removed stray logging 2020-05-31 22:36:27 +02:00
Stefan Zermatten
21b823f85c Dark mode now with 20% more dark 2020-05-31 22:25:04 +02:00
Stefan Zermatten
4631579181 Character toolbar now correctly uses dark and light text where appropriate 2020-05-31 22:22:42 +02:00
Stefan Zermatten
edf3920e84 Character sheet toolbars now match the color of the character 2020-05-31 22:16:38 +02:00
Stefan Zermatten
fb91fd12df Set up custom icons for most properties 2020-05-31 21:03:45 +02:00
Stefan Zermatten
19f4735412 Icon search field now focuses when the menu is opened 2020-05-31 19:18:49 +02:00
Stefan Zermatten
fb2f1efa72 Property insert forms now have color selectors 2020-05-31 19:00:32 +02:00
Stefan Zermatten
f7ee09470e Improved container and item forms and viewers 2020-05-31 18:50:00 +02:00
Stefan Zermatten
a5c42fea19 Made custom svg icons work anywhere a regular icon would work 2020-05-31 18:49:46 +02:00
Stefan Zermatten
8f81614294 Weight and value are no longer required on containers 2020-05-31 15:59:37 +02:00
Stefan Zermatten
c56cebc652 Fixed dark/light font color swapping not working in dark mode 2020-05-31 15:58:21 +02:00
Stefan Zermatten
d24fb5661d re-enabled computation on client side for optimistic UI 2020-05-30 23:56:55 +02:00
77 changed files with 1498 additions and 416 deletions

View File

@@ -65,24 +65,31 @@ let CreatureSchema = new SimpleSchema({
type: String, type: String,
optional: true, optional: true,
}, },
// Mechanics // Mechanics
deathSave: { deathSave: {
type: deathSaveSchema, type: deathSaveSchema,
defaultValue: {}, defaultValue: {},
}, },
xp: { // Stats that are computed and denormalised outside of recomputation
denormalizedStats: {
type: Object,
defaultValue: {},
},
// Sum of all XP gained by this character
'denormalizedStats.xp': {
type: SimpleSchema.Integer, type: SimpleSchema.Integer,
defaultValue: 0, defaultValue: 0,
}, },
weightCarried: { // Sum of all levels granted by milestone XP
'denormalizedStats.milestoneLevels': {
type: SimpleSchema.Integer,
defaultValue: 0,
},
// Sum of all weights of items and containers that are carried
'denormalizedStats.weightCarried': {
type: Number, type: Number,
defaultValue: 0, defaultValue: 0,
}, },
level: {
type: SimpleSchema.Integer,
defaultValue: 0,
},
type: { type: {
type: String, type: String,
defaultValue: 'pc', defaultValue: 'pc',
@@ -143,7 +150,15 @@ const updateCreature = new ValidatedMethod({
validate({_id, path}){ validate({_id, path}){
if (!_id) return false; if (!_id) return false;
// Allowed fields // Allowed fields
let allowedFields = ['name', 'alignment', 'gender', 'picture', 'avatarPicture', 'settings']; let allowedFields = [
'name',
'alignment',
'gender',
'picture',
'avatarPicture',
'color',
'settings',
];
if (!allowedFields.includes(path[0])){ if (!allowedFields.includes(path[0])){
throw new Meteor.Error('Creatures.methods.update.denied', throw new Meteor.Error('Creatures.methods.update.denied',
'This field can\'t be updated using this method'); 'This field can\'t be updated using this method');
@@ -152,9 +167,15 @@ const updateCreature = new ValidatedMethod({
run({_id, path, value}) { run({_id, path, value}) {
let creature = Creatures.findOne(_id); let creature = Creatures.findOne(_id);
assertEditPermission(creature, this.userId); assertEditPermission(creature, this.userId);
Creatures.update(_id, { if (value === undefined || value === null){
$set: {[path.join('.')]: value}, Creatures.update(_id, {
}); $unset: {[path.join('.')]: 1},
});
} else {
Creatures.update(_id, {
$set: {[path.join('.')]: value},
});
}
}, },
}); });

View File

@@ -3,7 +3,7 @@ import { includes, cloneDeep } from 'lodash';
// The computation memo is an in-memory data structure used only during the // The computation memo is an in-memory data structure used only during the
// computation process // computation process
export default class ComputationMemo { export default class ComputationMemo {
constructor(props){ constructor(props, creature){
this.statsByVariableName = {}; this.statsByVariableName = {};
this.extraStatsByVariableName = {}; this.extraStatsByVariableName = {};
this.statsById = {}; this.statsById = {};
@@ -51,6 +51,15 @@ export default class ComputationMemo {
this.addClassLevel(prop); this.addClassLevel(prop);
} }
}); });
for (let name in creature.denormalizedStats){
if (!this.statsByVariableName[name]){
this.statsByVariableName[name] = {
variableName: name,
value: creature.denormalizedStats[name],
computationDetails: propDetailsByType.denormalizedStat(),
}
}
}
} }
registerProperty(prop){ registerProperty(prop){
this.originalPropsById[prop._id] = cloneDeep(prop); this.originalPropsById[prop._id] = cloneDeep(prop);
@@ -251,4 +260,10 @@ const propDetailsByType = {
disabledByToggle: false, disabledByToggle: false,
}; };
}, },
denormalizedStat(){
return {
toggleAncestors: [],
disabledByToggle: false,
};
}
} }

View File

@@ -6,7 +6,8 @@ import computeMemo from '/imports/api/creature/computation/computeMemo.js';
import getActiveProperties from '/imports/api/creature/getActiveProperties.js'; import getActiveProperties from '/imports/api/creature/getActiveProperties.js';
import writeAlteredProperties from '/imports/api/creature/computation/writeAlteredProperties.js'; import writeAlteredProperties from '/imports/api/creature/computation/writeAlteredProperties.js';
import writeCreatureVariables from '/imports/api/creature/computation/writeCreatureVariables.js'; import writeCreatureVariables from '/imports/api/creature/computation/writeCreatureVariables.js';
import { recomputeDamageMultipliersById } from '/imports/api/creature/damageMultiplierDenormalise/recomputeDamageMultipliers.js' import { recomputeDamageMultipliersById } from '/imports/api/creature/damageMultiplierDenormalise/recomputeDamageMultipliers.js';
import Creatures from '/imports/api/creature/Creatures.js';
export const recomputeCreature = new ValidatedMethod({ export const recomputeCreature = new ValidatedMethod({
@@ -17,8 +18,9 @@ export const recomputeCreature = new ValidatedMethod({
}).validator(), }).validator(),
run({charId}) { run({charId}) {
let creature = Creatures.findOne(charId);
// Permission // Permission
assertEditPermission(charId, this.userId); assertEditPermission(creature, this.userId);
// Work, call this direcly if you are already in a method that has checked // Work, call this direcly if you are already in a method that has checked
// for permission to edit a given character // for permission to edit a given character
recomputeCreatureById(charId); recomputeCreatureById(charId);
@@ -35,6 +37,11 @@ const calculationPropertyTypes = [
'toggle', 'toggle',
]; ];
export function recomputeCreatureById(creatureId){
let creature = Creatures.findOne(creatureId);
recomputeCreatureByDoc(creature);
}
/** /**
* This function is the heart of DiceCloud. It recomputes a creature's stats, * This function is the heart of DiceCloud. It recomputes a creature's stats,
* distilling down effects and proficiencies into the final stats that make up * distilling down effects and proficiencies into the final stats that make up
@@ -71,16 +78,15 @@ const calculationPropertyTypes = [
* - Mark the stat as computed * - Mark the stat as computed
* - Write the computed results back to the database * - Write the computed results back to the database
*/ */
export function recomputeCreatureById(creatureId){ function recomputeCreatureByDoc(creature){
// Skipping computation on the client can result in the server being made to const creatureId = creature._id;
// do work that isn't possible, in exchange for dramatic performance gains
if (Meteor.isClient) return;
let props = getActiveProperties({ let props = getActiveProperties({
ancestorId: creatureId, ancestorId: creatureId,
filter: {type: {$in: calculationPropertyTypes}}, filter: {type: {$in: calculationPropertyTypes}},
includeUntoggled: true, includeUntoggled: true,
// TODO filter out expensive fields, particularly icon field
}); });
let computationMemo = new ComputationMemo(props); let computationMemo = new ComputationMemo(props, creature);
computeMemo(computationMemo); computeMemo(computationMemo);
writeAlteredProperties(computationMemo); writeAlteredProperties(computationMemo);
writeCreatureVariables(computationMemo, creatureId); writeCreatureVariables(computationMemo, creatureId);

View File

@@ -0,0 +1,181 @@
import SimpleSchema from 'simpl-schema';
import { ValidatedMethod } from 'meteor/mdg:validated-method';
import { getUserTier } from '/imports/api/users/patreon/tiers.js';
import { assertEditPermission } from '/imports/api/creature/creaturePermissions.js';
import Creatures from '/imports/api/creature/Creatures.js';
import { recomputeCreatureById } from '/imports/api/creature/computation/recomputeCreature.js';
let Experiences = new Mongo.Collection('experiences');
let ExperienceSchema = new SimpleSchema({
name: {
type: String,
optional: true,
},
// The amount of XP this experience gives
xp: {
type: SimpleSchema.Integer,
optional: true,
min: 0,
},
// Setting levels instead of value grants whole levels
levels: {
type: SimpleSchema.Integer,
optional: true,
min: 0,
index: 1,
},
// The real-world date that it occured, usually sorted by date
date: {
type: Date,
autoValue: function() {
// If the date isn't set, set it to now
if (!this.isSet) {
return new Date();
}
},
index: 1,
},
creatureId: {
type: String,
regEx: SimpleSchema.RegEx.Id,
index: 1,
},
});
Experiences.attachSchema(ExperienceSchema);
const insertExperienceForCreature = function({experience, creatureId, userId}){
assertEditPermission(creatureId, userId);
if (experience.xp){
Creatures.update(creatureId, {$inc: {
'denormalizedStats.xp': experience.xp
}});
}
if (experience.levels) {
Creatures.update(creatureId, {$inc: {
'denormalizedStats.milestoneLevels': experience.levels
}});
}
experience.creatureId = creatureId;
let id = Experiences.insert(experience);
recomputeCreatureById(creatureId);
return id;
};
const insertExperience = new ValidatedMethod({
name: 'Experiences.methods.insert',
validate: new SimpleSchema({
experience: {
type: ExperienceSchema.omit('creatureId'),
},
creatureIds: {
type: Array,
max: 12,
},
'creatureIds.$': {
type: String,
regEx: SimpleSchema.RegEx.Id,
},
}).validator(),
run({experience, creatureIds}) {
let userId = this.userId;
if (!userId) {
throw new Meteor.Error('Experiences.methods.insert.denied',
'You need to be logged in to insert an experience');
}
let tier = getUserTier(this.userId);
if (!tier.paidBenefits){
throw new Meteor.Error('Experiences.methods.insert.denied',
`The ${tier.name} tier does not allow you to grant experience`);
}
let insertedIds = [];
creatureIds.forEach(creatureId => {
let id = insertExperienceForCreature({experience, creatureId, userId});
insertedIds.push(id);
});
return insertedIds;
},
});
const removeExperience = new ValidatedMethod({
name: 'Experiences.methods.remove',
validate: new SimpleSchema({
experienceId: {
type: String,
regEx: SimpleSchema.RegEx.Id,
},
}).validator(),
run({experienceId}) {
let userId = this.userId;
if (!userId) {
throw new Meteor.Error('Experiences.methods.remove.denied',
'You need to be logged in to remove an experience');
}
let tier = getUserTier(this.userId);
if (!tier.paidBenefits){
throw new Meteor.Error('Experiences.methods.remove.denied',
`The ${tier.name} tier does not allow you to remove an experience`);
}
let experience = Experiences.findOne(experienceId);
if (!experience) return;
let creatureId = experience.creatureId
assertEditPermission(creatureId, userId);
if (experience.xp){
Creatures.update(creatureId, {$inc: {
'denormalizedStats.xp': -experience.xp
}});
}
if (experience.levels) {
Creatures.update(creatureId, {$inc: {
'denormalizedStats.milestoneLevels': -experience.levels
}});
}
experience.creatureId = creatureId;
let numRemoved = Experiences.remove(experienceId);
recomputeCreatureById(creatureId);
return numRemoved;
},
});
const recomputeExperiences = new ValidatedMethod({
name: 'Experiences.methods.recompute',
validate: new SimpleSchema({
creatureId: {
type: String,
regEx: SimpleSchema.RegEx.Id,
},
}).validator(),
run({creatureId}) {
let userId = this.userId;
if (!userId) {
throw new Meteor.Error('Experiences.methods.recompute.denied',
'You need to be logged in to recompute a creature\'s experiences');
}
let tier = getUserTier(this.userId);
if (!tier.paidBenefits){
throw new Meteor.Error('Experiences.methods.recompute.denied',
`The ${tier.name} tier does not allow you to recompute a creature's experiences`);
}
assertEditPermission(creatureId, userId);
let xp = 0;
let milestoneLevels = 0;
Experiences.find({
creatureId
}, {
fields: {xp: 1, levels: 1}
}).forEach(experience => {
xp += experience.xp || 0;
milestoneLevels += experience.levels || 0;
});
Creatures.update(creatureId, {$set: {
'denormalizedStats.xp': xp,
'denormalizedStats.milestoneLevels': milestoneLevels
}});
recomputeCreatureById(creatureId);
},
});
export default Experiences;
export { ExperienceSchema, insertExperience, removeExperience, recomputeExperiences };

View File

@@ -1,7 +1,7 @@
import SimpleSchema from 'simpl-schema'; import SimpleSchema from 'simpl-schema';
let ExperienceSchema = new SimpleSchema({ let ExperienceSchema = new SimpleSchema({
name: { title: {
type: String, type: String,
optional: true, optional: true,
}, },
@@ -10,11 +10,6 @@ let ExperienceSchema = new SimpleSchema({
type: String, type: String,
optional: true, optional: true,
}, },
// The amount of XP this experience gives
value: {
type: SimpleSchema.Integer,
optional: true,
},
// The real-world date that it occured // The real-world date that it occured
date: { date: {
type: Date, type: Date,
@@ -30,6 +25,20 @@ let ExperienceSchema = new SimpleSchema({
type: String, type: String,
optional: true, optional: true,
}, },
// Tags to better find this entry later
tags: {
type: Array,
defaultValue: [],
},
'tags.$': {
type: String,
},
// ID of the journal this entry belongs to
journalId: {
type: String,
regEx: SimpleSchema.RegEx.Id,
index: 1,
}
}); });
export { ExperienceSchema }; export { ExperienceSchema };

View File

@@ -1,14 +1,17 @@
import SimpleSchema from 'simpl-schema'; import SimpleSchema from 'simpl-schema';
import { ValidatedMethod } from 'meteor/mdg:validated-method';
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'
import { assertOwnership } from '/imports/api/creature/creaturePermissions.js'; import { assertOwnership } from '/imports/api/creature/creaturePermissions.js';
import Experiences from '/imports/api/creature/experience/Experiences.js';
function removeRelatedDocuments(charId){ function removeRelatedDocuments(creatureId){
CreatureProperties.remove({'ancestors.id': charId}); CreatureProperties.remove({'ancestors.id': creatureId});
}; Experiences.remove({creatureId});
}
const removeCreature = new ValidatedMethod({ const removeCreature = new ValidatedMethod({
name: "Creatures.methods.removeCreature", // DDP method name name: 'Creatures.methods.removeCreature', // DDP method name
validate: new SimpleSchema({ validate: new SimpleSchema({
charId: { charId: {
type: String, type: String,

View File

@@ -18,12 +18,12 @@ let ContainerSchema = new SimpleSchema({
weight: { weight: {
type: Number, type: Number,
min: 0, min: 0,
defaultValue: 0 optional: true,
}, },
value: { value: {
type: Number, type: Number,
min: 0, min: 0,
defaultValue: 0 optional: true,
}, },
description: { description: {
type: String, type: String,
@@ -32,4 +32,16 @@ let ContainerSchema = new SimpleSchema({
}, },
}); });
export { ContainerSchema }; const ComputedOnlyContainerSchema = new SimpleSchema({
// Weight of all the contents, zero if `contentsWeightless` is true
contentsWeight:{
type: Number,
optional: true,
},
});
const ComputedContainerSchema = new SimpleSchema()
.extend(ComputedOnlyContainerSchema)
.extend(ContainerSchema);
export { ContainerSchema, ComputedContainerSchema };

View File

@@ -9,7 +9,6 @@ import { ContainerSchema } from '/imports/api/properties/Containers.js';
import { DamageSchema } from '/imports/api/properties/Damages.js'; import { DamageSchema } from '/imports/api/properties/Damages.js';
import { DamageMultiplierSchema } from '/imports/api/properties/DamageMultipliers.js'; import { DamageMultiplierSchema } from '/imports/api/properties/DamageMultipliers.js';
import { ComputedEffectSchema } from '/imports/api/properties/Effects.js'; import { ComputedEffectSchema } from '/imports/api/properties/Effects.js';
import { ExperienceSchema } from '/imports/api/properties/Experiences.js';
import { FeatureSchema } from '/imports/api/properties/Features.js'; import { FeatureSchema } from '/imports/api/properties/Features.js';
import { FolderSchema } from '/imports/api/properties/Folders.js'; import { FolderSchema } from '/imports/api/properties/Folders.js';
import { ItemSchema } from '/imports/api/properties/Items.js'; import { ItemSchema } from '/imports/api/properties/Items.js';
@@ -33,7 +32,6 @@ const propertySchemasIndex = {
damage: DamageSchema, damage: DamageSchema,
damageMultiplier: DamageMultiplierSchema, damageMultiplier: DamageMultiplierSchema,
effect: ComputedEffectSchema, effect: ComputedEffectSchema,
experience: ExperienceSchema,
feature: FeatureSchema, feature: FeatureSchema,
folder: FolderSchema, folder: FolderSchema,
note: NoteSchema, note: NoteSchema,

View File

@@ -8,7 +8,6 @@ import { ClassLevelSchema } from '/imports/api/properties/ClassLevels.js';
import { DamageSchema } from '/imports/api/properties/Damages.js'; import { DamageSchema } from '/imports/api/properties/Damages.js';
import { DamageMultiplierSchema } from '/imports/api/properties/DamageMultipliers.js'; import { DamageMultiplierSchema } from '/imports/api/properties/DamageMultipliers.js';
import { EffectSchema } from '/imports/api/properties/Effects.js'; import { EffectSchema } from '/imports/api/properties/Effects.js';
import { ExperienceSchema } from '/imports/api/properties/Experiences.js';
import { FeatureSchema } from '/imports/api/properties/Features.js'; import { FeatureSchema } from '/imports/api/properties/Features.js';
import { FolderSchema } from '/imports/api/properties/Folders.js'; import { FolderSchema } from '/imports/api/properties/Folders.js';
import { NoteSchema } from '/imports/api/properties/Notes.js'; import { NoteSchema } from '/imports/api/properties/Notes.js';
@@ -33,7 +32,6 @@ const propertySchemasIndex = {
damage: DamageSchema, damage: DamageSchema,
damageMultiplier: DamageMultiplierSchema, damageMultiplier: DamageMultiplierSchema,
effect: EffectSchema, effect: EffectSchema,
experience: ExperienceSchema,
feature: FeatureSchema, feature: FeatureSchema,
folder: FolderSchema, folder: FolderSchema,
note: NoteSchema, note: NoteSchema,

View File

@@ -1,44 +1,44 @@
const PROPERTIES = Object.freeze({ const PROPERTIES = Object.freeze({
action: { action: {
icon: 'offline_bolt', icon: '$vuetify.icons.action',
name: 'Action' name: 'Action'
}, },
adjustment: {
icon: 'warning',
name: 'Attribute damage'
},
attack: { attack: {
icon: 'bolt', icon: '$vuetify.icons.attack',
name: 'Attack' name: 'Attack'
}, },
attribute: { attribute: {
icon: 'donut_small', icon: '$vuetify.icons.attribute',
name: 'Attribute' name: 'Attribute'
}, },
adjustment: {
icon: '$vuetify.icons.attribute_damage',
name: 'Attribute damage'
},
buff: { buff: {
icon: 'star', icon: '$vuetify.icons.buff',
name: 'Buff' name: 'Buff'
}, },
classLevel: { classLevel: {
icon: 'school', icon: '$vuetify.icons.class_level',
name: 'Class level' name: 'Class level'
}, },
container: {
icon: 'work',
name: 'Container'
},
damage: { damage: {
icon: 'report', icon: '$vuetify.icons.damage',
name: 'Damage' name: 'Damage'
}, },
damageMultiplier: { damageMultiplier: {
icon: 'layers', icon: '$vuetify.icons.damage_multiplier',
name: 'Damage multiplier' name: 'Damage multiplier'
}, },
effect: { effect: {
icon: 'show_chart', icon: '$vuetify.icons.effect',
name: 'Effect' name: 'Effect'
}, },
experience: {
icon: 'add',
name: 'Experience'
},
feature: { feature: {
icon: 'subject', icon: 'subject',
name: 'Feature' name: 'Feature'
@@ -47,6 +47,10 @@ const PROPERTIES = Object.freeze({
icon: 'folder', icon: 'folder',
name: 'Folder' name: 'Folder'
}, },
item: {
icon: '$vuetify.icons.item',
name: 'Item'
},
note: { note: {
icon: 'note', icon: 'note',
name: 'Note' name: 'Note'
@@ -56,35 +60,27 @@ const PROPERTIES = Object.freeze({
name: 'Proficiency' name: 'Proficiency'
}, },
roll: { roll: {
icon: 'flare', icon: '$vuetify.icons.roll',
name: 'Roll' name: 'Roll'
}, },
savingThrow: { savingThrow: {
icon: 'all_out', icon: '$vuetify.icons.saving_throw',
name: 'Saving throw' name: 'Saving throw'
}, },
skill: { skill: {
icon: 'check_box', icon: '$vuetify.icons.skill',
name: 'Skill' name: 'Skill'
}, },
spellList: { spellList: {
icon: 'list', icon: '$vuetify.icons.spell_list',
name: 'Spell list' name: 'Spell list'
}, },
spell: { spell: {
icon: 'whatshot', icon: '$vuetify.icons.spell',
name: 'Spell' name: 'Spell'
}, },
container: {
icon: 'work',
name: 'Container'
},
item: {
icon: 'category',
name: 'Item'
},
toggle: { toggle: {
icon: 'power_settings_new', icon: '$vuetify.icons.toggle',
name: 'Toggle' name: 'Toggle'
}, },
}); });

File diff suppressed because one or more lines are too long

View File

@@ -1,11 +1,18 @@
import CreatureProperties from '/imports/api/creature/CreatureProperties.js';
import LibraryNodes from '/imports/api/library/LibraryNodes.js'; import LibraryNodes from '/imports/api/library/LibraryNodes.js';
import { assertAdmin } from '/imports/api/sharing/sharingPermissions.js';
import { SyncedCron } from 'meteor/percolate:synced-cron';
let collections = [LibraryNodes]; Meteor.startup(() => {
const collections = [
CreatureProperties,
LibraryNodes,
];
if (Meteor.isServer) Meteor.startup(() => {
/** /**
* Deletes all soft removed documents that were removed more than 30 minutes ago * Deletes all soft removed documents that were removed more than 30 minutes ago
* and were not restored * and were not restored
* @return {Number} Number of documents removed
*/ */
const deleteOldSoftRemovedDocs = function(){ const deleteOldSoftRemovedDocs = function(){
const now = new Date(); const now = new Date();
@@ -14,30 +21,30 @@ if (Meteor.isServer) Meteor.startup(() => {
collection.remove({ collection.remove({
removed: true, removed: true,
removedAt: {$lt: thirtyMinutesAgo} // dates *before* 30 minutes ago removedAt: {$lt: thirtyMinutesAgo} // dates *before* 30 minutes ago
}, error => { }, function(error){
if (error) console.error(error); if (error){
console.error(error);
}
}); });
}); });
return;
}; };
SyncedCron.add({ SyncedCron.add({
name: "Delete all soft removed items that haven't been restored", name: 'deleteSoftRemovedDocs',
schedule: function(parser) { schedule: function(parser) {
return parser.text('every 6 hours'); return parser.text('every 2 hours');
}, },
job: function() { job: deleteOldSoftRemovedDocs,
deleteOldSoftRemovedDocs();
}
}); });
SyncedCron.start();
// Add a method to manually trigger removal // Add a method to manually trigger removal
Meteor.methods({ Meteor.methods({
deleteOldSoftRemovedDocs() { deleteOldSoftRemovedDocs() {
const user = Meteor.users.findOne(this.userId); assertAdmin(this.userId);
if (user && _.contains(user.roles, "admin")){ this.unblock();
return deleteOldSoftRemovedDocs(); deleteOldSoftRemovedDocs();
}
}, },
}); });
}); });

View File

@@ -0,0 +1,32 @@
import SimpleSchema from 'simpl-schema';
import Creatures from '/imports/api/creature/Creatures.js';
import Experiences from '/imports/api/creature/experience/Experiences.js';
let schema = new SimpleSchema({
creatureId: {
type: String,
regEx: SimpleSchema.RegEx.Id,
},
});
Meteor.publish('experiences', function(creatureId){
schema.validate({ creatureId });
this.autorun(function (){
let userId = this.userId;
let creatureCursor = Creatures.find({
_id: creatureId,
$or: [
{readers: userId},
{writers: userId},
{owner: userId},
{public: true},
],
});
if (!creatureCursor.count()) return this.ready();
return [
Experiences.find({
creatureId,
}),
];
});
});

View File

@@ -1,5 +1,6 @@
import '/imports/server/publications/characterList.js'; import '/imports/server/publications/characterList.js';
import '/imports/server/publications/library.js'; import '/imports/server/publications/library.js';
import '/imports/server/publications/singleCharacter.js'; import '/imports/server/publications/singleCharacter.js';
import '/imports/server/publications/experiences.js';
import '/imports/server/publications/users.js'; import '/imports/server/publications/users.js';
import '/imports/server/publications/icons.js'; import '/imports/server/publications/icons.js';

View File

@@ -56,7 +56,7 @@
<v-scroll-y-transition> <v-scroll-y-transition>
<v-icon <v-icon
v-if="kebabShade === shadeOption" v-if="kebabShade === shadeOption"
:class="{dark: isDark(color, shade)}" :class="isDark(color, shade) ? 'dark' : 'light'"
> >
check check
</v-icon> </v-icon>

View File

@@ -1,79 +0,0 @@
<template lang="html">
<v-autocomplete
v-model="model"
:search-input.sync="searchString"
:items="items"
:loading="!$subReady.searchIcons || isLoading"
item-text="name"
item-value="_id"
label="Search icons"
hide-no-data
@input="input"
>
<template
slot="item"
slot-scope="{ item, tile }"
>
<v-list-tile-avatar>
<svg class="avatar" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path :d="item.shape"/></svg>
</v-list-tile-avatar>
<v-list-tile-content>
<v-list-tile-title v-text="item.name"></v-list-tile-title>
</v-list-tile-content>
</template>
</v-autocomplete>
</template>
<script>
import Icons from '/imports/api/icons/Icons.js';
export default {
data(){ return {
model: this.value,
searchString: null,
serverSearchString: null,
isLoading: false,
}},
props: {
value: String,
},
watch: {
searchString(string){
this.isLoading = true;
this.searchServer(string)
},
value(newValue){
this.model = newValue;
},
},
methods: {
searchServer: _.debounce(function(string){
this.serverSearchString = string;
}, 200),
input(e){
this.$emit('input', e);
}
},
meteor: {
$subscribe: {
searchIcons() {
this.isLoading = false;
return [this.serverSearchString];
},
},
items(){
return Icons.find({}, { sort: [['score', 'desc']] }).fetch();
},
},
}
</script>
<style lang="css" scoped>
.avatar {
width: 100%;
height: 100%;
}
.theme--dark .avatar {
fill: white;
}
</style>

View File

@@ -9,6 +9,7 @@
:style="`transform: none; ${hasToolbarClickListener ? 'cursor: pointer;' : ''}`" :style="`transform: none; ${hasToolbarClickListener ? 'cursor: pointer;' : ''}`"
:color="color" :color="color"
:dark="isDark" :dark="isDark"
:light="!isDark"
@click="$emit('toolbarclick')" @click="$emit('toolbarclick')"
> >
<slot name="toolbar" /> <slot name="toolbar" />

View File

@@ -99,6 +99,17 @@ export default {
searchString: '', searchString: '',
icons: [], icons: [],
};}, };},
watch: {
menu(value){
if (value){
setTimeout(() => {
if (this.$refs.iconSearchField){
this.$refs.iconSearchField.$children[0].focus();
}
}, 100);
}
},
},
methods: { methods: {
search(value, ack){ search(value, ack){
this.searchString = value; this.searchString = value;

View File

@@ -93,6 +93,9 @@ export default {
this.safeValue = null; this.safeValue = null;
this.$nextTick(() => this.safeValue = this.value); this.$nextTick(() => this.safeValue = this.value);
}, },
focus(){
this.$refs.input.focus();
}
}, },
computed: { computed: {
errors(){ errors(){

View File

@@ -1,5 +1,6 @@
<template lang="html"> <template lang="html">
<i <i
ref="icon"
aria-hidden aria-hidden
role="img" role="img"
class="v-icon" class="v-icon"
@@ -50,6 +51,9 @@ export default {
large: Boolean, large: Boolean,
xLarge: Boolean, xLarge: Boolean,
}, },
data(){return {
inheritedSize: undefined,
}},
computed: { computed: {
isDark () { isDark () {
if (this.dark === true) { if (this.dark === true) {
@@ -70,6 +74,7 @@ export default {
} }
}, },
size() { size() {
if (this.inheritedSize) return this.inheritedSize;
if (this.xSmall) return SIZE_MAP['xSmall']; if (this.xSmall) return SIZE_MAP['xSmall'];
if (this.small) return SIZE_MAP['small']; if (this.small) return SIZE_MAP['small'];
if (this.medium) return SIZE_MAP['medium']; if (this.medium) return SIZE_MAP['medium'];
@@ -77,6 +82,9 @@ export default {
if (this.xLarge) return SIZE_MAP['xLarge']; if (this.xLarge) return SIZE_MAP['xLarge'];
return SIZE_MAP['default']; return SIZE_MAP['default'];
}, },
},
mounted(){
this.inheritedSize = this.$refs.icon.style.fontSize;
} }
} }
</script> </script>

View File

@@ -1,5 +1,6 @@
<template lang="html"> <template lang="html">
<v-text-field <v-text-field
ref="input"
v-bind="$attrs" v-bind="$attrs"
:loading="loading" :loading="loading"
:error-messages="errors" :error-messages="errors"

View File

@@ -2,6 +2,7 @@
<v-toolbar <v-toolbar
:color="color || 'secondary'" :color="color || 'secondary'"
:dark="isDark" :dark="isDark"
:light="!isDark"
:flat="flat" :flat="flat"
> >
<property-icon <property-icon

View File

@@ -107,7 +107,6 @@
let allowed = isParentAllowed({parentType, childType}); let allowed = isParentAllowed({parentType, childType});
return allowed; return allowed;
}, },
log: console.log,
}, },
}; };
</script> </script>

View File

@@ -1,8 +1,15 @@
<template lang="html"> <template lang="html">
<dialog-base> <dialog-base :color="model.color">
<v-toolbar-title slot="toolbar"> <template slot="toolbar">
Creature Form Dialog <v-toolbar-title>
</v-toolbar-title> Creature Form Dialog
</v-toolbar-title>
<v-spacer />
<color-picker
:value="model.color"
@input="value => change({path: ['color'], value})"
/>
</template>
<div> <div>
<creature-form <creature-form
:model="model" :model="model"
@@ -27,11 +34,13 @@ 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'; import { assertEditPermission } from '/imports/api/creature/creaturePermissions.js';
import ColorPicker from '/imports/ui/components/ColorPicker.vue';
export default { export default {
components: { components: {
DialogBase, DialogBase,
CreatureForm, CreatureForm,
ColorPicker,
}, },
props: { props: {
_id: String, _id: String,
@@ -52,8 +61,16 @@ export default {
}, },
methods: { methods: {
change({path, value, ack}){ change({path, value, ack}){
updateCreature.call({_id: this._id, path, value}, (error, result) =>{ updateCreature.call({_id: this._id, path, value}, (error) =>{
ack && ack(error && error.reason || error); if (error){
if(ack){
ack(error && error.reason || error)
} else {
console.error(error)
}
} else if (ack) {
ack();
}
}); });
}, },
} }

View File

@@ -0,0 +1,247 @@
<template lang="html">
<v-toolbar
app
class="character-sheet-toolbar"
:color="toolbarColor"
:dark="isDark"
:light="!isDark"
tabs
dense
>
<v-toolbar-side-icon @click="toggleDrawer" />
<v-toolbar-title>
<v-fade-transition
mode="out-in"
>
<div :key="$store.state.pageTitle">
{{ $store.state.pageTitle }}
</div>
</v-fade-transition>
</v-toolbar-title>
<v-spacer />
<v-fade-transition
mode="out-in"
>
<div :key="$route.meta.title">
<v-toolbar-items v-if="creature">
<v-btn
v-if="editPermission"
flat
icon
@click="recompute(creature._id)"
>
<v-icon>refresh</v-icon>
</v-btn>
<v-menu
bottom
left
transition="slide-y-transition"
data-id="creature-menu"
>
<template #activator="{ on }">
<v-btn
icon
v-on="on"
>
<v-icon>more_vert</v-icon>
</v-btn>
</template>
<v-list v-if="editPermission">
<v-list-tile @click="deleteCharacter">
<v-list-tile-title>
<v-icon>delete</v-icon> Delete
</v-list-tile-title>
</v-list-tile>
<v-list-tile @click="showCharacterForm">
<v-list-tile-title>
<v-icon>create</v-icon> Edit details
</v-list-tile-title>
</v-list-tile>
<v-list-tile @click="showShareDialog">
<v-list-tile-title>
<v-icon>share</v-icon> Sharing
</v-list-tile-title>
</v-list-tile>
</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-toolbar-items>
</div>
</v-fade-transition>
<v-fade-transition
slot="extension"
mode="out-in"
>
<div
:key="$route.meta.title"
style="width: 100%"
>
<v-tabs
v-if="creature"
slot="extension"
:value="value"
centered
grow
max="100px"
@change="e => $emit('input', e)"
>
<v-tab>
Stats
</v-tab>
<v-tab>
Features
</v-tab>
<v-tab>
Inventory
</v-tab>
<v-tab>
Spells
</v-tab>
<v-tab>
Persona
</v-tab>
<v-tab>
Tree
</v-tab>
</v-tabs>
</div>
</v-fade-transition>
</v-toolbar>
</template>
<script>
import Creatures from '/imports/api/creature/Creatures.js';
import removeCreature from '/imports/api/creature/removeCreature.js';
import { mapMutations } from 'vuex';
import { theme } from '/imports/ui/theme.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';
import isDarkColor from '/imports/ui/utility/isDarkColor.js';
export default {
props: {
value: {
type: Number,
required: true,
},
},
data(){return {
theme,
}},
computed: {
creatureId(){
return this.$route.params.id;
},
toolbarColor(){
if (this.creature && this.creature.color){
return this.creature.color;
} else {
return this.$vuetify.theme.secondary;
}
},
isDark(){
return isDarkColor(this.toolbarColor);
},
},
methods: {
...mapMutations([
'toggleDrawer',
]),
recompute(charId){
recomputeCreature.call({charId});
},
showCharacterForm(){
this.$store.commit('pushDialogStack', {
component: 'creature-form-dialog',
elementId: 'creature-menu',
data: {
_id: this.creatureId,
},
});
},
showShareDialog(){
this.$store.commit('pushDialogStack', {
component: 'share-dialog',
elementId: 'creature-menu',
data: {
docRef: {
id: this.creatureId,
collection: 'creatures',
}
},
});
},
deleteCharacter(){
let that = this;
this.$store.commit('pushDialogStack', {
component: 'delete-confirmation-dialog',
elementId: 'creature-menu',
data: {
name: this.creature.name,
typeName: 'Character'
},
callback(confirmation){
if(!confirmation) return;
removeCreature.call({charId: that.creatureId}, (error) => {
if (error) {
console.error(error);
} else {
that.$router.push('/characterList');
}
});
}
});
},
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');
}
});
},
},
meteor: {
$subscribe: {
'singleCharacter'(){
return [this.creatureId];
},
},
creature(){
return Creatures.findOne(this.creatureId);
},
editPermission(){
try {
assertEditPermission(this.creature, Meteor.userId());
return true;
} catch (e) {
return false;
}
},
},
}
</script>
<style lang="css">
.character-sheet-toolbar .v-tabs__container--grow .v-tabs__div {
max-width: 120px !important;
}
.character-sheet-toolbar .v-tabs__bar {
background: none !important;
}
</style>

View File

@@ -53,7 +53,6 @@
<script> <script>
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 removeCreature from '/imports/api/creature/removeCreature.js';
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';
@@ -134,7 +133,6 @@ export default {
} }
}); });
}, },
isDarkColor,
}, },
meteor: { meteor: {
$subscribe: { $subscribe: {

View File

@@ -2,7 +2,7 @@
<div class="inventory"> <div class="inventory">
<column-layout> <column-layout>
<div> <div>
<toolbar-card color=""> <toolbar-card :color="$vuetify.theme.secondary">
<v-spacer slot="toolbar" /> <v-spacer slot="toolbar" />
<v-switch <v-switch
v-if="context.editPermission !== false" v-if="context.editPermission !== false"

View File

@@ -20,6 +20,70 @@
</v-card-text> </v-card-text>
</v-card> </v-card>
</div> </div>
<div>
<v-card class="class-details">
<v-card-title
v-if="creature.variables.level"
class="title"
>
Level {{ creature.variables.level.value }}
</v-card-title>
<v-list>
<v-list-tile>
<v-list-tile-content>
<v-list-tile-title
v-if="
creature.variables.milestoneLevels &&
creature.variables.milestoneLevels.value
"
>
{{ creature.variables.milestoneLevels.value }} Milestone levels
</v-list-tile-title>
<v-list-tile-title v-else>
{{
creature.variables.xp &&
creature.variables.xp.value ||
0
}} XP
</v-list-tile-title>
</v-list-tile-content>
<v-list-tile-action>
<v-btn
flat
icon
data-id="experience-info-button"
@click="showExperienceList"
>
<v-icon>info</v-icon>
</v-btn>
</v-list-tile-action>
<v-list-tile-action>
<v-btn
flat
icon
data-id="experience-add-button"
@click="addExperience"
>
<v-icon>add</v-icon>
</v-btn>
</v-list-tile-action>
</v-list-tile>
<v-list-tile
v-for="classLevel in highestClassLevels"
:key="classLevel._id"
>
<v-list-tile-content>
<v-list-tile-title>
{{ classLevel.name }}
</v-list-tile-title>
</v-list-tile-content>
<v-list-tile-avatar>
{{ classLevel.level }}
</v-list-tile-avatar>
</v-list-tile>
</v-list>
</v-card>
</div>
<div <div
v-for="note in notes" v-for="note in notes"
:key="note._id" :key="note._id"
@@ -37,6 +101,7 @@ import Creatures from '/imports/api/creature/Creatures.js';
import CreatureProperties from '/imports/api/creature/CreatureProperties.js'; import CreatureProperties from '/imports/api/creature/CreatureProperties.js';
import ColumnLayout from '/imports/ui/components/ColumnLayout.vue'; import ColumnLayout from '/imports/ui/components/ColumnLayout.vue';
import NoteCard from '/imports/ui/properties/components/persona/NoteCard.vue'; import NoteCard from '/imports/ui/properties/components/persona/NoteCard.vue';
import getActiveProperties from '/imports/api/creature/getActiveProperties.js'
export default { export default {
components: { components: {
@@ -44,7 +109,10 @@ export default {
NoteCard, NoteCard,
}, },
props: { props: {
creatureId: String, creatureId: {
type: String,
required: true,
},
}, },
meteor: { meteor: {
notes(){ notes(){
@@ -58,8 +126,34 @@ export default {
}, },
creature(){ creature(){
return Creatures.findOne(this.creatureId); return Creatures.findOne(this.creatureId);
} },
classLevels(){
return getActiveProperties({
ancestorId: this.creatureId,
filter: {type: 'classLevel'},
});
},
}, },
computed: {
highestClassLevels(){
let highestLevels = {};
let highestLevelsList = [];
this.classLevels.forEach(classLevel => {
let name = classLevel.vairableName;
if (
!highestLevels[name] ||
highestLevels[name].level < classLevel.level
){
highestLevels[name] = classLevel;
}
});
for (let name in highestLevels){
highestLevelsList.push(highestLevels[name]);
}
highestLevelsList.sort((a, b) => a.level - b.level);
return highestLevelsList;
},
},
methods: { methods: {
showCharacterForm(){ showCharacterForm(){
this.$store.commit('pushDialogStack', { this.$store.commit('pushDialogStack', {
@@ -70,6 +164,28 @@ export default {
}, },
}); });
}, },
addExperience(){
this.$store.commit('pushDialogStack', {
component: 'experience-insert-dialog',
elementId: 'experience-add-button',
data: {
creatureIds: [this.creatureId],
startAsMilestone: this.creature.variables.milestoneLevels &&
!!this.creature.variables.milestoneLevels.value,
},
});
},
showExperienceList(){
this.$store.commit('pushDialogStack', {
component: 'experience-list-dialog',
elementId: 'experience-info-button',
data: {
creatureId: this.creatureId,
startAsMilestone: this.creature.variables.milestoneLevels &&
!!this.creature.variables.milestoneLevels.value,
},
});
},
}, },
}; };
</script> </script>

View File

@@ -1,8 +1,18 @@
<template lang="html"> <template lang="html">
<dialog-base :override-back-button="() => $emit('back')"> <dialog-base
<v-toolbar-title slot="toolbar"> :override-back-button="() => $emit('back')"
Add {{ propertyName }} :color="model.color"
</v-toolbar-title> >
<template slot="toolbar">
<v-toolbar-title>
Add {{ propertyName }}
</v-toolbar-title>
<v-spacer />
<color-picker
:value="model.color"
@input="value => change({path: ['color'], value})"
/>
</template>
<component <component
:is="type" :is="type"
v-if="type" v-if="type"
@@ -32,11 +42,14 @@
import propertySchemasIndex from '/imports/api/properties/propertySchemasIndex.js'; import propertySchemasIndex from '/imports/api/properties/propertySchemasIndex.js';
import DialogBase from '/imports/ui/dialogStack/DialogBase.vue'; import DialogBase from '/imports/ui/dialogStack/DialogBase.vue';
import propertyFormIndex from '/imports/ui/properties/forms/shared/propertyFormIndex.js'; import propertyFormIndex from '/imports/ui/properties/forms/shared/propertyFormIndex.js';
import ColorPicker from '/imports/ui/components/ColorPicker.vue';
import schemaFormMixin from '/imports/ui/properties/forms/shared/schemaFormMixin.js'; import schemaFormMixin from '/imports/ui/properties/forms/shared/schemaFormMixin.js';
export default { export default {
components: { components: {
...propertyFormIndex, ...propertyFormIndex,
DialogBase, DialogBase,
ColorPicker,
}, },
mixins: [schemaFormMixin], mixins: [schemaFormMixin],
props: { props: {

View File

@@ -0,0 +1,68 @@
<template lang="html">
<div class="experience-form">
<div class="layout column align-center">
<smart-switch
label="Milestone"
class="mx-3"
:value="milestone"
@change="makeMilestone"
/>
<text-field
v-if="milestone"
label="Levels"
type="number"
class="base-value-field text-xs-center large-format no-flex"
:value="model.levels"
:error-messages="errors.levels"
@change="change('levels', ...arguments)"
/>
<text-field
v-else
type="number"
class="base-value-field text-xs-center large-format no-flex"
suffix="XP"
autofocus
:value="model.xp"
:error-messages="errors.xp"
@change="change('xp', ...arguments)"
/>
</div>
<text-field
label="Name"
:autofocus="milestone"
:value="model.name"
:error-messages="errors.name"
@change="change('name', ...arguments)"
/>
</div>
</template>
<script>
import propertyFormMixin from '/imports/ui/properties/forms/shared/propertyFormMixin.js';
export default {
mixins: [propertyFormMixin],
props: {
startAsMilestone: {
type: Boolean,
},
},
data(){return {
milestone: this.startAsMilestone,
}},
methods: {
makeMilestone(milestone, ack){
this.milestone = milestone;
if (milestone){
this.change('xp', undefined);
this.change('levels', 1, ack);
} else {
this.change('levels', undefined, ack);
}
}
}
}
</script>
<style lang="css" scoped>
</style>

View File

@@ -0,0 +1,83 @@
<template lang="html">
<dialog-base>
<experience-form
:start-as-milestone="startAsMilestone"
:model="model"
:errors="errors"
@change="change"
@push="push"
@pull="pull"
/>
<div
slot="actions"
class="layout row justify-end"
>
<v-btn
flat
:disabled="!valid"
@click="insertExperience"
>
Insert
</v-btn>
</div>
</dialog-base>
</template>
<script>
import DialogBase from '/imports/ui/dialogStack/DialogBase.vue';
import ExperienceForm from '/imports/ui/creature/experiences/ExperienceForm.vue';
import { ExperienceSchema, insertExperience } from '/imports/api/creature/experience/Experiences.js';
import schemaFormMixin from '/imports/ui/properties/forms/shared/schemaFormMixin.js';
export default {
components: {
DialogBase,
ExperienceForm,
},
mixins: [schemaFormMixin],
provide: {
context: {
debounceTime: 0,
},
},
props: {
creatureIds: {
type: Array,
required: true,
},
startAsMilestone: {
type: Boolean,
},
},
data(){
let schema = ExperienceSchema.omit('creatureId');
let startingModel = {};
if (this.startAsMilestone){
startingModel.levels = 1;
}
return {
model: schema.clean(startingModel),
schema: schema,
validationContext: schema.newContext(),
debounceTime: 0,
};
},
methods:{
insertExperience(){
let experience = this.schema.clean(this.model);
let id = insertExperience.call({
experience,
creatureIds: this.creatureIds,
}, (error) => {
if (error){
console.error(error);
}
});
this.$store.dispatch('popDialogStack', id);
}
}
}
</script>
<style lang="css" scoped>
</style>

View File

@@ -0,0 +1,174 @@
<template lang="html">
<dialog-base>
<template slot="toolbar">
<v-toolbar-title>
Experiences
</v-toolbar-title>
<v-spacer />
<v-btn
icon
flat
data-id="experience-add-button"
@click="addExperience"
>
<v-icon>add</v-icon>
</v-btn>
<v-btn
icon
flat
@click="recompute"
>
<v-icon>refresh</v-icon>
</v-btn>
</template>
<div
v-if="!$subReady.experiences"
class="layout column align-center justify-center fill-height"
>
<v-progress-circular
indeterminate
size="240"
/>
</div>
<div
v-else-if="experiences.length === 0"
class="layout column align-center justify-center fill-height"
>
<v-icon style="font-size: 240px; width: 240px; height: 240px;">
$vuetify.icons.baby_face
</v-icon>
<p class="headline">
No experiences
</p>
</div>
<v-list v-else>
<v-slide-x-transition
group
mode="out"
>
<v-list-tile
v-for="experience in experiences"
:key="experience._id"
:data-id="experience._id"
>
<v-list-tile-action class="mr-3">
<v-list-tile-action-text>
{{ formatDate(experience.date) }}
</v-list-tile-action-text>
</v-list-tile-action>
<v-list-tile-content>
<template v-if="experience.name">
<v-list-tile-title>
{{ experience.name }}
</v-list-tile-title>
<v-list-tile-sub-title>
{{ xpText(experience) }}
</v-list-tile-sub-title>
</template>
<template v-else>
<v-list-tile-title>
{{ xpText(experience) }}
</v-list-tile-title>
</template>
</v-list-tile-content>
<v-list-tile-action>
<v-btn
icon
flat
:loading="experiencesRemovalLoading.has(experience._id)"
@click="removeExperience(experience._id)"
>
<v-icon>delete</v-icon>
</v-btn>
</v-list-tile-action>
</v-list-tile>
</v-slide-x-transition>
</v-list>
</dialog-base>
</template>
<script>
import { format } from 'date-fns';
import DialogBase from '/imports/ui/dialogStack/DialogBase.vue';
import Experiences, { removeExperience, recomputeExperiences } from '/imports/api/creature/experience/Experiences.js';
export default {
components: {
DialogBase,
},
props: {
creatureId: {
type: String,
required: true,
},
startAsMilestone: {
type: Boolean,
},
},
data(){ return {
experiencesRemovalLoading: new Set(),
recomputeLoading: false,
}},
meteor: {
$subscribe: {
'experiences'(){
return [this.creatureId];
},
},
experiences(){
return Experiences.find({
creatureId: this.creatureId
}, {
sort: {date: 1}
});
}
},
methods: {
xpText(experience){
let xpText = [];
if (experience.levels === 1){
xpText.push('1 Milestone level');
} else if (experience.levels){
xpText.push(`${experience.levels} Milestone levels`);
}
if (experience.xp || !experience.levels){
xpText.push(`${experience.xp || 0} XP`);
}
return xpText.join(', ');
},
formatDate(date){
return format(date, 'YYYY-MM-DD');
},
removeExperience(experienceId){
this.experiencesRemovalLoading.add(experienceId);
removeExperience.call({experienceId}, (error) => {
this.experiencesRemovalLoading.delete(experienceId);
if (error) console.error(error);
});
},
recompute(){
this.recomputeLoading = true;
recomputeExperiences.call({creatureId: this.creatureId}, error => {
this.recomputeLoading = false;
if (error) console.error(error);
});
},
addExperience(){
this.$store.commit('pushDialogStack', {
component: 'experience-insert-dialog',
elementId: 'experience-add-button',
data: {
creatureIds: [this.creatureId],
startAsMilestone: this.startAsMilestone,
},
callback(id){
return id;
}
});
},
},
}
</script>
<style lang="css" scoped>
</style>

View File

@@ -10,6 +10,7 @@
<v-toolbar <v-toolbar
:color="computedColor" :color="computedColor"
:dark="isDark" :dark="isDark"
:light="!isDark"
class="base-dialog-toolbar" class="base-dialog-toolbar"
:flat="!offsetTop" :flat="!offsetTop"
> >

View File

@@ -3,6 +3,8 @@ import CreaturePropertyCreationDialog from '/imports/ui/creature/creaturePropert
import CreaturePropertyDialog from '/imports/ui/creature/creatureProperties/CreaturePropertyDialog.vue' import CreaturePropertyDialog from '/imports/ui/creature/creatureProperties/CreaturePropertyDialog.vue'
import CreaturePropertyFromLibraryDialog from '/imports/ui/creature/creatureProperties/CreaturePropertyFromLibraryDialog.vue' import CreaturePropertyFromLibraryDialog from '/imports/ui/creature/creatureProperties/CreaturePropertyFromLibraryDialog.vue'
import DeleteConfirmationDialog from '/imports/ui/dialogStack/DeleteConfirmationDialog.vue'; import DeleteConfirmationDialog from '/imports/ui/dialogStack/DeleteConfirmationDialog.vue';
import ExperienceInsertDialog from '/imports/ui/creature/experiences/ExperienceInsertDialog.vue';
import ExperienceListDialog from '/imports/ui/creature/experiences/ExperienceListDialog.vue';
import InviteDialog from '/imports/ui/user/InviteDialog.vue'; import InviteDialog from '/imports/ui/user/InviteDialog.vue';
import LibraryCreationDialog from '/imports/ui/library/LibraryCreationDialog.vue'; import LibraryCreationDialog from '/imports/ui/library/LibraryCreationDialog.vue';
import LibraryEditDialog from '/imports/ui/library/LibraryEditDialog.vue'; import LibraryEditDialog from '/imports/ui/library/LibraryEditDialog.vue';
@@ -13,13 +15,14 @@ import ShareDialog from '/imports/ui/sharing/ShareDialog.vue';
import TierTooLowDialog from '/imports/ui/user/TierTooLowDialog.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,
CreaturePropertyDialog, CreaturePropertyDialog,
CreaturePropertyFromLibraryDialog, CreaturePropertyFromLibraryDialog,
DeleteConfirmationDialog, DeleteConfirmationDialog,
ExperienceInsertDialog,
ExperienceListDialog,
InviteDialog, InviteDialog,
LibraryCreationDialog, LibraryCreationDialog,
LibraryEditDialog, LibraryEditDialog,

View File

@@ -0,0 +1,30 @@
<template lang="html">
<svg-icon
:shape="shape"
/>
</template>
<script>
import SvgIcon from '/imports/ui/components/global/SvgIcon.vue'
import SVG_ICONS from '/imports/constants/SVG_ICONS.js';
export default {
components: {
SvgIcon,
},
props: {
name: {
type: String,
required: true,
}
},
computed: {
shape(){
return SVG_ICONS[this.name].shape;
}
}
}
</script>
<style lang="css" scoped>
</style>

View File

@@ -4,14 +4,17 @@
:light="!darkMode" :light="!darkMode"
> >
<v-navigation-drawer <v-navigation-drawer
v-if="$route.path !== '/countdown'"
v-model="drawer" v-model="drawer"
app app
> >
<Sidebar /> <Sidebar />
</v-navigation-drawer> </v-navigation-drawer>
<router-view
v-model="tabs"
name="toolbar"
/>
<v-toolbar <v-toolbar
v-if="$route.path !== '/countdown'" v-if="!$route.matched[0].components.toolbar"
app app
color="secondary" color="secondary"
dark dark

View File

@@ -1,7 +1,6 @@
<template> <template>
<div class="sidebar"> <div class="sidebar">
<v-alert <v-alert
v-if="$route.path !== '/countdown'"
icon="priority_high" icon="priority_high"
type="error" type="error"
dismissible dismissible

View File

@@ -14,7 +14,8 @@
<v-toolbar <v-toolbar
flat flat
:color="selectedNode && selectedNode.color || 'secondary'" :color="selectedNode && selectedNode.color || 'secondary'"
:dark="isDarkColor(selectedNode && selectedNode.color || $vuetify.theme.secondary)" :dark="isToolbarDark"
:light="!isToolbarDark"
> >
<v-spacer /> <v-spacer />
<v-switch <v-switch
@@ -67,6 +68,14 @@ export default {
organize: false, organize: false,
selected: undefined, selected: undefined,
};}, };},
computed: {
isToolbarDark(){
return isDarkColor(
this.selectedNode && this.selectedNode.color ||
this.$vuetify.theme.secondary
);
}
},
watch:{ watch:{
selectedNode(val){ selectedNode(val){
this.$emit('selected', val) this.$emit('selected', val)
@@ -92,7 +101,6 @@ export default {
selection: this.selection, selection: this.selection,
}, },
callback: result => { callback: result => {
console.log(result)
if (result){ if (result){
this.selected = id; this.selected = id;
} }
@@ -101,7 +109,6 @@ export default {
} }
}, },
getPropertyName, getPropertyName,
isDarkColor,
}, },
meteor: { meteor: {
$subscribe: { $subscribe: {

View File

@@ -1,8 +1,18 @@
<template lang="html"> <template lang="html">
<dialog-base :override-back-button="() => $emit('back')"> <dialog-base
<v-toolbar-title slot="toolbar"> :override-back-button="() => $emit('back')"
Add {{ propertyName }} :color="model.color"
</v-toolbar-title> >
<template slot="toolbar">
<v-toolbar-title>
Add {{ propertyName }}
</v-toolbar-title>
<v-spacer />
<color-picker
:value="model.color"
@input="value => change({path: ['color'], value})"
/>
</template>
<component <component
:is="type" :is="type"
v-if="type" v-if="type"
@@ -32,12 +42,14 @@
import DialogBase from '/imports/ui/dialogStack/DialogBase.vue'; import DialogBase from '/imports/ui/dialogStack/DialogBase.vue';
import propertyFormIndex from '/imports/ui/properties/forms/shared/propertyFormIndex.js'; import propertyFormIndex from '/imports/ui/properties/forms/shared/propertyFormIndex.js';
import schemaFormMixin from '/imports/ui/properties/forms/shared/schemaFormMixin.js'; import schemaFormMixin from '/imports/ui/properties/forms/shared/schemaFormMixin.js';
import ColorPicker from '/imports/ui/components/ColorPicker.vue';
import propertySchemasIndex from '/imports/api/properties/propertySchemasIndex.js'; import propertySchemasIndex from '/imports/api/properties/propertySchemasIndex.js';
export default { export default {
components: { components: {
...propertyFormIndex, ...propertyFormIndex,
DialogBase, DialogBase,
ColorPicker,
}, },
mixins: [schemaFormMixin], mixins: [schemaFormMixin],
props: { props: {

View File

@@ -29,7 +29,6 @@ export default {
}}, }},
meteor: { meteor: {
library(){ library(){
console.log(this.$route);
return Libraries.findOne(this.$route.params.id); return Libraries.findOne(this.$route.params.id);
}, },
subscribed(){ subscribed(){
@@ -41,7 +40,6 @@ export default {
let userId = Meteor.userId(); let userId = Meteor.userId();
let library = this.library; let library = this.library;
if (!library) return; if (!library) return;
console.log({library, userId});
if ( if (
library.readers.includes(userId) || library.readers.includes(userId) ||
library.writers.includes(userId) || library.writers.includes(userId) ||
@@ -55,10 +53,8 @@ export default {
canEdit(){ canEdit(){
try { try {
assertDocEditPermission(this.library, Meteor.userId()); assertDocEditPermission(this.library, Meteor.userId());
console.log('can edit');
return true return true
} catch (e) { } catch (e) {
console.log(e);
return false; return false;
} }
} }

View File

@@ -1,16 +1,25 @@
<template lang="html"> <template lang="html">
<v-card :color="model.color" :data-id="model._id" hover @click="clickProperty(model._id)"> <v-card
<v-card-title class="title"> :color="model.color"
{{model.name}} :data-id="model._id"
</v-card-title> hover
<v-card-text> :dark="model.color && isDark"
<property-description :value="model.description"/> :light="model.color && !isDark"
</v-card-text> @click="clickProperty(model._id)"
</v-card> >
<v-card-title class="title">
{{ model.name }}
</v-card-title>
<v-card-text>
<property-description :value="model.description" />
</v-card-text>
</v-card>
</template> </template>
<script> <script>
import PropertyDescription from '/imports/ui/properties/viewers/shared/PropertyDescription.vue'; import PropertyDescription from '/imports/ui/properties/viewers/shared/PropertyDescription.vue';
import isDarkColor from '/imports/ui/utility/isDarkColor.js';
export default { export default {
components: { components: {
PropertyDescription, PropertyDescription,
@@ -18,6 +27,11 @@ export default {
props: { props: {
model: Object, model: Object,
}, },
computed: {
isDark(){
return isDarkColor(this.model.color);
},
},
methods: { methods: {
clickProperty(_id){ clickProperty(_id){
this.$store.commit('pushDialogStack', { this.$store.commit('pushDialogStack', {

View File

@@ -1,6 +1,7 @@
<template lang="html"> <template lang="html">
<div :class="attackForm ? 'attack-form' : 'action-form'"> <div :class="attackForm ? 'attack-form' : 'action-form'">
<text-field <text-field
ref="focusFirst"
label="Name" label="Name"
:value="model.name" :value="model.name"
:error-messages="errors.name" :error-messages="errors.name"

View File

@@ -2,6 +2,7 @@
<div class="attribute-form"> <div class="attribute-form">
<div class="layout column align-center"> <div class="layout column align-center">
<text-field <text-field
ref="focusFirst"
label="Base Value" label="Base Value"
class="base-value-field" class="base-value-field"
hint="This is the value of the attribute before effects are applied" hint="This is the value of the attribute before effects are applied"

View File

@@ -1,6 +1,7 @@
<template lang="html"> <template lang="html">
<div class="buff-form"> <div class="buff-form">
<text-field <text-field
ref="focusFirst"
label="Name" label="Name"
:value="model.name" :value="model.name"
:error-messages="errors.name" :error-messages="errors.name"

View File

@@ -12,6 +12,7 @@
</div> </div>
<div class="layout row wrap"> <div class="layout row wrap">
<text-field <text-field
ref="focusFirst"
label="Name" label="Name"
:value="model.name" :value="model.name"
:error-messages="errors.name" :error-messages="errors.name"

View File

@@ -1,11 +1,23 @@
<template lang="html"> <template lang="html">
<div class="attribute-form"> <div class="attribute-form">
<text-field <div class="layout row justify-space-between wrap">
label="Name" <text-field
:value="model.name" ref="focusFirst"
:error-messages="errors.name" label="Name"
@change="change('name', ...arguments)" :value="model.name"
/> :error-messages="errors.name"
@change="change('name', ...arguments)"
/>
<div>
<smart-switch
label="Carried"
class="mx-3"
:value="model.carried"
:error-messages="errors.carried"
@change="change('carried', ...arguments)"
/>
</div>
</div>
<div class="layout row wrap"> <div class="layout row wrap">
<text-field <text-field
label="Value" label="Value"
@@ -15,17 +27,19 @@
hint="The value of the item in gold pieces, using decimals for values less than 1 gp" hint="The value of the item in gold pieces, using decimals for values less than 1 gp"
class="mx-1" class="mx-1"
style="flex-basis: 300px;" style="flex-basis: 300px;"
prepend-inner-icon="$vuetify.icons.two_coins"
:value="model.value" :value="model.value"
:error-messages="errors.value" :error-messages="errors.value"
@change="change('value', ...arguments)" @change="change('value', ...arguments)"
/> />
<text-field <text-field
label="Weight" label="Weight"
suffix="lbs" suffix="lb"
type="number" type="number"
min="0" min="0"
class="mx-1" class="mx-1"
style="flex-basis: 300px;" style="flex-basis: 300px;"
prepend-inner-icon="$vuetify.icons.weight"
:value="model.weight" :value="model.weight"
:error-messages="errors.weight" :error-messages="errors.weight"
@change="change('weight', ...arguments)" @change="change('weight', ...arguments)"
@@ -41,18 +55,16 @@
name="Advanced" name="Advanced"
standalone standalone
> >
<smart-switch <div class="layout row justify-center">
label="Carried" <div>
:value="model.carried" <smart-switch
:error-messages="errors.carried" label="Contents are weightless"
@change="change('carried', ...arguments)" :value="model.contentsWeightless"
/> :error-messages="errors.contentsWeightless"
<smart-switch @change="change('contentsWeightless', ...arguments)"
label="Contents are weightless" />
:value="model.contentsWeightless" </div>
:error-messages="errors.contentsWeightless" </div>
@change="change('contentsWeightless', ...arguments)"
/>
</form-section> </form-section>
</div> </div>
</template> </template>

View File

@@ -2,6 +2,7 @@
<div> <div>
<div class="layout row"> <div class="layout row">
<text-field <text-field
ref="focusFirst"
label="Damage" label="Damage"
style="flex-basis: 300px;" style="flex-basis: 300px;"
:value="model.amount" :value="model.amount"

View File

@@ -1,6 +1,7 @@
<template lang="html"> <template lang="html">
<div class="attribute-form"> <div class="attribute-form">
<text-field <text-field
ref="focusFirst"
label="Name" label="Name"
:value="model.name" :value="model.name"
:error-messages="errors.name" :error-messages="errors.name"

View File

@@ -1,6 +1,7 @@
<template lang="html"> <template lang="html">
<div class="effect-form"> <div class="effect-form">
<text-field <text-field
ref="focusFirst"
label="Name" label="Name"
:value="model.name" :value="model.name"
:error-messages="errors.name" :error-messages="errors.name"

View File

@@ -1,57 +0,0 @@
<template lang="html">
<div class="class-form">
<div class="layout row wrap">
<text-field
label="Title"
style="flex-basis: 300px;"
:value="model.name"
:error-messages="errors.name"
@change="change('name', ...arguments)"
/>
<text-field
label="In-World date"
:value="model.worldDate"
style="flex-basis: 300px;"
hint="The date in-game that the experience occured"
:error-messages="errors.worldDate"
@change="change('worldDate', ...arguments)"
/>
<date-picker
label="Real date"
:value="model.date"
style="flex-basis: 300px;"
hint="Real life date"
:error-messages="errors.date"
@change="change('date', ...arguments)"
/>
</div>
<text-area
label="Description"
:value="model.description"
:error-messages="errors.description"
@change="change('description', ...arguments)"
/>
<div class="layout column align-end">
<text-field
label="XP gained"
type="number"
class="base-value-field text-xs-center large-format no-flex"
hint="The number of experience points gained from this entry"
:value="model.value"
:error-messages="errors.value"
@change="change('value', ...arguments)"
/>
</div>
</div>
</template>
<script>
import propertyFormMixin from '/imports/ui/properties/forms/shared/propertyFormMixin.js';
export default {
mixins: [propertyFormMixin],
};
</script>
<style lang="css" scoped>
</style>

View File

@@ -1,6 +1,7 @@
<template lang="html"> <template lang="html">
<div class="feature-form"> <div class="feature-form">
<text-field <text-field
ref="focusFirst"
label="Name" label="Name"
:value="model.name" :value="model.name"
:error-messages="errors.name" :error-messages="errors.name"

View File

@@ -2,6 +2,7 @@
<div class="folder-form"> <div class="folder-form">
<div class="layout row wrap"> <div class="layout row wrap">
<text-field <text-field
ref="focusFirst"
label="Name" label="Name"
style="flex-basis: 300px;" style="flex-basis: 300px;"
:value="model.name" :value="model.name"

View File

@@ -20,6 +20,7 @@
</div> </div>
<div class="layout row wrap"> <div class="layout row wrap">
<text-field <text-field
ref="focusFirst"
label="Name" label="Name"
:value="model.name" :value="model.name"
:error-messages="errors.name" :error-messages="errors.name"
@@ -41,17 +42,19 @@
hint="The value of the item in gold pieces, using decimals for values less than 1 gp" hint="The value of the item in gold pieces, using decimals for values less than 1 gp"
class="mx-1" class="mx-1"
style="flex-basis: 300px;" style="flex-basis: 300px;"
prepend-inner-icon="$vuetify.icons.two_coins"
:value="model.value" :value="model.value"
:error-messages="errors.value" :error-messages="errors.value"
@change="change('value', ...arguments)" @change="change('value', ...arguments)"
/> />
<text-field <text-field
label="Weight" label="Weight"
suffix="lbs" suffix="lb"
type="number" type="number"
min="0" min="0"
class="mx-1" class="mx-1"
style="flex-basis: 300px;" style="flex-basis: 300px;"
prepend-inner-icon="$vuetify.icons.weight"
:value="model.weight" :value="model.weight"
:error-messages="errors.weight" :error-messages="errors.weight"
@change="change('weight', ...arguments)" @change="change('weight', ...arguments)"
@@ -61,6 +64,7 @@
label="Quantity" label="Quantity"
type="number" type="number"
min="0" min="0"
prepend-inner-icon="$vuetify.icons.abacus"
:value="model.quantity" :value="model.quantity"
:error-messages="errors.quantity" :error-messages="errors.quantity"
@change="change('quantity', ...arguments)" @change="change('quantity', ...arguments)"

View File

@@ -1,6 +1,7 @@
<template lang="html"> <template lang="html">
<div class="feature-form"> <div class="feature-form">
<text-field <text-field
ref="focusFirst"
label="Name" label="Name"
:value="model.name" :value="model.name"
:error-messages="errors.name" :error-messages="errors.name"

View File

@@ -1,6 +1,7 @@
<template lang="html"> <template lang="html">
<div> <div>
<text-field <text-field
ref="focusFirst"
label="Name" label="Name"
:value="model.name" :value="model.name"
:error-messages="errors.name" :error-messages="errors.name"

View File

@@ -1,6 +1,7 @@
<template lang="html"> <template lang="html">
<div class="roll-form"> <div class="roll-form">
<text-field <text-field
ref="focusFirst"
label="Roll" label="Roll"
:value="model.roll" :value="model.roll"
:error-messages="errors.roll" :error-messages="errors.roll"

View File

@@ -1,6 +1,7 @@
<template lang="html"> <template lang="html">
<div class="saving-throw-form"> <div class="saving-throw-form">
<text-field <text-field
ref="focusFirst"
label="Name" label="Name"
:value="model.name" :value="model.name"
:error-messages="errors.name" :error-messages="errors.name"

View File

@@ -2,6 +2,7 @@
<div class="skill-form"> <div class="skill-form">
<div class="layout row wrap"> <div class="layout row wrap">
<text-field <text-field
ref="focusFirst"
label="Name" label="Name"
:value="model.name" :value="model.name"
:error-messages="errors.name" :error-messages="errors.name"

View File

@@ -1,6 +1,7 @@
<template lang="html"> <template lang="html">
<div class="attribute-form"> <div class="attribute-form">
<text-field <text-field
ref="focusFirst"
label="Name" label="Name"
:value="model.name" :value="model.name"
:error-messages="errors.name" :error-messages="errors.name"

View File

@@ -2,6 +2,7 @@
<div class="attribute-form"> <div class="attribute-form">
<div class="layout row wrap"> <div class="layout row wrap">
<text-field <text-field
ref="focusFirst"
label="Name" label="Name"
:value="model.name" :value="model.name"
:error-messages="errors.name" :error-messages="errors.name"

View File

@@ -1,6 +1,7 @@
<template lang="html"> <template lang="html">
<div class="feature-form"> <div class="feature-form">
<text-field <text-field
ref="focusFirst"
label="Name" label="Name"
:value="model.name" :value="model.name"
:error-messages="errors.name" :error-messages="errors.name"

View File

@@ -8,7 +8,6 @@ import ContainerForm from '/imports/ui/properties/forms/ContainerForm.vue';
import DamageForm from '/imports/ui/properties/forms/DamageForm.vue'; import DamageForm from '/imports/ui/properties/forms/DamageForm.vue';
import DamageMultiplierForm from '/imports/ui/properties/forms/DamageMultiplierForm.vue'; import DamageMultiplierForm from '/imports/ui/properties/forms/DamageMultiplierForm.vue';
import EffectForm from '/imports/ui/properties/forms/EffectForm.vue'; import EffectForm from '/imports/ui/properties/forms/EffectForm.vue';
import ExperienceForm from '/imports/ui/properties/forms/ExperienceForm.vue';
import FeatureForm from '/imports/ui/properties/forms/FeatureForm.vue'; import FeatureForm from '/imports/ui/properties/forms/FeatureForm.vue';
import FolderForm from '/imports/ui/properties/forms/FolderForm.vue'; import FolderForm from '/imports/ui/properties/forms/FolderForm.vue';
import ItemForm from '/imports/ui/properties/forms/ItemForm.vue'; import ItemForm from '/imports/ui/properties/forms/ItemForm.vue';
@@ -31,7 +30,6 @@ export default {
classLevel: ClassLevelForm, classLevel: ClassLevelForm,
damage: DamageForm, damage: DamageForm,
damageMultiplier: DamageMultiplierForm, damageMultiplier: DamageMultiplierForm,
experience:ExperienceForm,
effect: EffectForm, effect: EffectForm,
feature: FeatureForm, feature: FeatureForm,
folder: FolderForm, folder: FolderForm,

View File

@@ -9,6 +9,11 @@ export default {
default: () => ({}), default: () => ({}),
}, },
}, },
mounted(){
if (this.$refs.focusFirst){
setTimeout(() => this.$refs.focusFirst.focus(), 300);
}
},
methods: { methods: {
change(path, value, ack){ change(path, value, ack){
if (!Array.isArray(path)){ if (!Array.isArray(path)){
@@ -16,5 +21,5 @@ export default {
} }
this.$emit('change', {path, value, ack}); this.$emit('change', {path, value, ack});
} }
} },
} }

View File

@@ -0,0 +1,21 @@
<template lang="html">
<div class="layout row align-center justify-start">
<property-icon
class="mr-2"
:model="model"
:color="model.color"
:class="selected && 'primary--text'"
/>
<div class="text-no-wrap text-truncate">
{{ title }} {{ model.level }}
</div>
</div>
</template>
<script>
import treeNodeViewMixin from '/imports/ui/properties/treeNodeViews/treeNodeViewMixin.js';
export default {
mixins: [treeNodeViewMixin],
}
</script>

View File

@@ -3,10 +3,12 @@ import AdjustmentTreeNode from '/imports/ui/properties/treeNodeViews/AdjustmentT
import ItemTreeNode from '/imports/ui/properties/treeNodeViews/ItemTreeNode.vue'; import ItemTreeNode from '/imports/ui/properties/treeNodeViews/ItemTreeNode.vue';
import DamageTreeNode from '/imports/ui/properties/treeNodeViews/DamageTreeNode.vue'; import DamageTreeNode from '/imports/ui/properties/treeNodeViews/DamageTreeNode.vue';
import EffectTreeNode from '/imports/ui/properties/treeNodeViews/EffectTreeNode.vue'; import EffectTreeNode from '/imports/ui/properties/treeNodeViews/EffectTreeNode.vue';
import ClassLevelTreeNode from '/imports/ui/properties/treeNodeViews/ClassLevelTreeNode.vue';
export default { export default {
default: DefaultTreeNode, default: DefaultTreeNode,
adjustment: AdjustmentTreeNode, adjustment: AdjustmentTreeNode,
classLevel: ClassLevelTreeNode,
damage: DamageTreeNode, damage: DamageTreeNode,
effect: EffectTreeNode, effect: EffectTreeNode,
item: ItemTreeNode, item: ItemTreeNode,

View File

@@ -1,23 +1,14 @@
<template lang="html"> <template lang="html">
<div class="class-level-viewer"> <div class="class-level-viewer">
<div> <div>
<span class="name headline"> <span class="name headline">
{{model.name}} {{ model.name }} {{ model.level }}
</span> </span>
<span </div>
class="display-2" <p class="my-2">
v-if="model.level" <code>{{ model.variableName }}</code>
> </p>
{{model.level}} </div>
</span>
</div>
<p class="my-2">
<code>{{model.variableName}}</code>
</p>
<p class="my-2" v-if="model.baseClass">
Base class: <code>{{model.baseClass}}</code>
</p>
</div>
</template> </template>
<script> <script>

View File

@@ -1,26 +1,48 @@
<template lang="html"> <template lang="html">
<div class="container-viewer"> <div class="container-viewer">
<property-name :value="model.name" /> <property-tags :tags="model.tags" />
<div <div class="layout row wrap justify-space-around">
v-if="!model.carried" <div
class="caption" v-if="model.value !== undefined"
> class="mr-3 my-3"
Not carried >
<v-layout
row
align-center
>
<v-icon
class="mr-2"
x-large
>
$vuetify.icons.two_coins
</v-icon>
<coin-value
class="title mr-2"
:value="model.value"
/>
</v-layout>
</div>
<div
v-if="model.weight !== undefined"
class="my-3"
>
<v-layout
row
align-center
justify-end
>
<span class="title mr-2">
{{ model.weight }} lb
</span>
<v-icon
class="ml-2"
x-large
>
$vuetify.icons.weight
</v-icon>
</v-layout>
</div>
</div> </div>
<div
v-if="model.contentsWeightless"
class="caption"
>
Contents are weightless
</div>
<property-field
name="Weight"
:value="`${model.weight} lbs`"
/>
<property-field
name="Value"
:value="`${model.value} gp`"
/>
<property-description <property-description
v-if="model.description" v-if="model.description"
:value="model.description" :value="model.description"
@@ -29,8 +51,12 @@
</template> </template>
<script> <script>
import CoinValue from '/imports/ui/components/CoinValue.vue';
import propertyViewerMixin from '/imports/ui/properties/viewers/shared/propertyViewerMixin.js' import propertyViewerMixin from '/imports/ui/properties/viewers/shared/propertyViewerMixin.js'
export default { export default {
components: {
CoinValue,
},
mixins: [propertyViewerMixin], mixins: [propertyViewerMixin],
} }
</script> </script>

View File

@@ -1,34 +0,0 @@
<template lang="html">
<div class="experience-viewer">
<div
v-if="model.value"
class="display-1"
>
{{ model.value }} XP
</div>
<div class="headline layout row mb-3">
<property-name :value="model.name" />
<v-spacer />
<div>
{{ model.worldDate }}
</div>
</div>
<p>
{{ model.date }}
</p>
<property-description
v-if="model.description"
:value="model.description"
/>
</div>
</template>
<script>
import propertyViewerMixin from '/imports/ui/properties/viewers/shared/propertyViewerMixin.js'
export default {
mixins: [propertyViewerMixin],
}
</script>
<style lang="css" scoped>
</style>

View File

@@ -1,14 +1,9 @@
<template lang="html"> <template lang="html">
<div class="item-viewer"> <div class="item-viewer">
<div <property-tags :tags="model.tags" />
v-if="tagString"
class="tags ma-3"
>
{{ tagString }}
</div>
<div <div
v-if="model.quantity > 1 || model.showIncrement" v-if="model.quantity > 1 || model.showIncrement"
class="layout column justify-center align-center" class="layout row justify-center align-center wrap"
> >
<div class="display-1"> <div class="display-1">
{{ model.quantity }} {{ model.quantity }}
@@ -22,9 +17,7 @@
:value="model.quantity" :value="model.quantity"
@change="changeQuantity" @change="changeQuantity"
> >
<svg-icon <v-icon>$vuetify.icons.abacus</v-icon>
:shape="getIcon('abacus').shape"
/>
</increment-button> </increment-button>
</div> </div>
<div class="layout row wrap justify-space-around"> <div class="layout row wrap justify-space-around">
@@ -38,11 +31,12 @@
align-center align-center
class="mb-2" class="mb-2"
> >
<svg-icon <v-icon
:shape="getIcon('cash').shape"
class="mr-2" class="mr-2"
x-large x-large
/> >
$vuetify.icons.cash
</v-icon>
<coin-value <coin-value
class="title" class="title"
:value="totalValue" :value="totalValue"
@@ -52,11 +46,12 @@
row row
align-center align-center
> >
<svg-icon <v-icon
:shape="getIcon('two-coins').shape"
class="mr-2" class="mr-2"
x-large x-large
/> >
$vuetify.icons.two_coins
</v-icon>
<coin-value <coin-value
class="title mr-2" class="title mr-2"
:value="model.value" :value="model.value"
@@ -83,11 +78,12 @@
<span class="title"> <span class="title">
{{ totalWeight }} lb {{ totalWeight }} lb
</span> </span>
<svg-icon <v-icon
:shape="getIcon('injustice').shape"
class="ml-2" class="ml-2"
x-large x-large
/> >
$vuetify.icons.injustice
</v-icon>
</v-layout> </v-layout>
<v-layout <v-layout
row row
@@ -103,11 +99,12 @@
> >
each each
</span> </span>
<svg-icon <v-icon
:shape="getIcon('weight').shape"
class="ml-2" class="ml-2"
x-large x-large
/> >
$vuetify.icons.weight
</v-icon>
</v-layout> </v-layout>
</div> </div>
</div> </div>
@@ -135,9 +132,6 @@ export default {
context: { default: {} } context: { default: {} }
}, },
computed:{ computed:{
tagString(){
return this.model.tags && this.model.tags.join(', ');
},
totalValue(){ totalValue(){
return this.model.value * this.model.quantity; return this.model.value * this.model.quantity;
}, },

View File

@@ -0,0 +1,30 @@
<template lang="html">
<div
v-if="tagString"
class="tags ma-3 "
>
{{ tagString }}
</div>
</template>
<script>
export default {
props:{
tags: {
type: Array,
default: () => [],
}
},
computed:{
tagString(){
return this.tags.join(', ');
},
}
}
</script>
<style lang="css" scoped>
.tags {
font-style: italic;
}
</style>

View File

@@ -8,7 +8,6 @@ import ClassLevelViewer from '/imports/ui/properties/viewers/ClassLevelViewer.vu
import DamageViewer from '/imports/ui/properties/viewers/DamageViewer.vue'; import DamageViewer from '/imports/ui/properties/viewers/DamageViewer.vue';
import DamageMultiplierViewer from '/imports/ui/properties/viewers/DamageMultiplierViewer.vue'; import DamageMultiplierViewer from '/imports/ui/properties/viewers/DamageMultiplierViewer.vue';
import EffectViewer from '/imports/ui/properties/viewers/EffectViewer.vue'; import EffectViewer from '/imports/ui/properties/viewers/EffectViewer.vue';
import ExperienceViewer from '/imports/ui/properties/viewers/ExperienceViewer.vue';
import FeatureViewer from '/imports/ui/properties/viewers/FeatureViewer.vue'; import FeatureViewer from '/imports/ui/properties/viewers/FeatureViewer.vue';
import FolderViewer from '/imports/ui/properties/viewers/FolderViewer.vue'; import FolderViewer from '/imports/ui/properties/viewers/FolderViewer.vue';
import ItemViewer from '/imports/ui/properties/viewers/ItemViewer.vue'; import ItemViewer from '/imports/ui/properties/viewers/ItemViewer.vue';
@@ -29,7 +28,6 @@ export default {
classLevel: ClassLevelViewer, classLevel: ClassLevelViewer,
damage: DamageViewer, damage: DamageViewer,
damageMultiplier: DamageMultiplierViewer, damageMultiplier: DamageMultiplierViewer,
experience: ExperienceViewer,
effect: EffectViewer, effect: EffectViewer,
feature: FeatureViewer, feature: FeatureViewer,
folder: FolderViewer, folder: FolderViewer,

View File

@@ -2,6 +2,7 @@ import PropertyName from '/imports/ui/properties/viewers/shared/PropertyName.vue
import PropertyVariableName from '/imports/ui/properties/viewers/shared/PropertyVariableName.vue'; import PropertyVariableName from '/imports/ui/properties/viewers/shared/PropertyVariableName.vue';
import PropertyField from '/imports/ui/properties/viewers/shared/PropertyField.vue'; import PropertyField from '/imports/ui/properties/viewers/shared/PropertyField.vue';
import PropertyDescription from '/imports/ui/properties/viewers/shared/PropertyDescription.vue'; import PropertyDescription from '/imports/ui/properties/viewers/shared/PropertyDescription.vue';
import PropertyTags from '/imports/ui/properties/viewers/shared/PropertyTags.vue';
const propertyViewerMixin = { const propertyViewerMixin = {
components: { components: {
@@ -9,6 +10,7 @@ const propertyViewerMixin = {
PropertyVariableName, PropertyVariableName,
PropertyField, PropertyField,
PropertyDescription, PropertyDescription,
PropertyTags,
}, },
props: { props: {
model: { model: {

View File

@@ -1,5 +1,4 @@
import { RouterFactory, nativeScrollBehavior } from 'meteor/akryum:vue-router2'; import { RouterFactory, nativeScrollBehavior } from 'meteor/akryum:vue-router2';
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';
// Components // Components
@@ -10,8 +9,7 @@ import Library from '/imports/ui/pages/Library.vue';
import SingleLibraryPage from '/imports/ui/pages/SingleLibraryPage.vue' import SingleLibraryPage from '/imports/ui/pages/SingleLibraryPage.vue'
import SingleLibraryToolbarItems from '/imports/ui/library/SingleLibraryToolbarItems.vue' import SingleLibraryToolbarItems from '/imports/ui/library/SingleLibraryToolbarItems.vue'
import CharacterSheetPage from '/imports/ui/pages/CharacterSheetPage.vue'; import CharacterSheetPage from '/imports/ui/pages/CharacterSheetPage.vue';
import CharacterSheetToolbarItems from '/imports/ui/creature/character/CharacterSheetToolbarItems.vue'; import CharacterSheetToolbar from '/imports/ui/creature/character/CharacterSheetToolbar.vue';
import CharacterSheetToolbarExtension from '/imports/ui/creature/character/CharacterSheetToolbarExtension.vue';
import SignIn from '/imports/ui/pages/SignIn.vue' ; import SignIn from '/imports/ui/pages/SignIn.vue' ;
import Register from '/imports/ui/pages/Register.vue'; import Register from '/imports/ui/pages/Register.vue';
import IconAdmin from '/imports/ui/icons/IconAdmin.vue'; import IconAdmin from '/imports/ui/icons/IconAdmin.vue';
@@ -22,7 +20,6 @@ import InviteSuccess from '/imports/ui/pages/InviteSuccess.vue' ;
import InviteError from '/imports/ui/pages/InviteError.vue' ; import InviteError from '/imports/ui/pages/InviteError.vue' ;
import NotImplemented from '/imports/ui/pages/NotImplemented.vue'; import NotImplemented from '/imports/ui/pages/NotImplemented.vue';
import PatreonLevelTooLow from '/imports/ui/pages/PatreonLevelTooLow.vue'; import PatreonLevelTooLow from '/imports/ui/pages/PatreonLevelTooLow.vue';
import LaunchCountdown from '/imports/ui/pages/LaunchCountdown.vue';
let userSubscription = Meteor.subscribe('user'); let userSubscription = Meteor.subscribe('user');
@@ -91,17 +88,7 @@ function claimInvite(to, from, next){
} }
RouterFactory.configure(factory => { RouterFactory.configure(factory => {
factory.addRoutes([ factory.addRoutes([{
{
path: '/countdown',
name: 'Countdown',
components: {
default: LaunchCountdown,
},
meta: {
title: 'Countdown to Launch',
},
},{
path: '/', path: '/',
name: 'home', name: 'home',
components: { components: {
@@ -142,8 +129,7 @@ RouterFactory.configure(factory => {
path: '/character/:id/:urlName', path: '/character/:id/:urlName',
components: { components: {
default: CharacterSheetPage, default: CharacterSheetPage,
toolbarExtension: CharacterSheetToolbarExtension, toolbar: CharacterSheetToolbar,
toolbarItems: CharacterSheetToolbarItems,
}, },
meta: { meta: {
title: 'Character Sheet', title: 'Character Sheet',
@@ -152,8 +138,7 @@ RouterFactory.configure(factory => {
path: '/character/:id', path: '/character/:id',
components: { components: {
default: CharacterSheetPage, default: CharacterSheetPage,
toolbarExtension: CharacterSheetToolbarExtension, toolbar: CharacterSheetToolbar,
toolbarItems: CharacterSheetToolbarItems,
}, },
meta: { meta: {
title: 'Character Sheet', title: 'Character Sheet',
@@ -263,13 +248,10 @@ const router = routerFactory.create();
router.beforeEach((to, from, next) => { router.beforeEach((to, from, next) => {
let user = Meteor.user(); let user = Meteor.user();
if ( if (
to.path === '/countdown' ||
to.path === '/sign-in' || to.path === '/sign-in' ||
(user && user.roles && user.roles.includes('admin')) (user && user.roles && user.roles.includes('admin'))
){ ){
next(); next();
} else if (new Date() < LAUNCH_DATE){
next('/countdown');
} else { } else {
next(); next();
} }

View File

@@ -10,7 +10,7 @@ const theme = {
const darkTheme = { const darkTheme = {
primary: '#f44336', primary: '#f44336',
secondary: '#757575', secondary: '#212121',
accent: '#f44336', accent: '#f44336',
error: '#FF6D00', error: '#FF6D00',
warning: '#FFB300', warning: '#FFB300',

View File

@@ -12,7 +12,7 @@ function hexToRgb(hex) {
g: parseInt(result[2], 16), g: parseInt(result[2], 16),
b: parseInt(result[3], 16) b: parseInt(result[3], 16)
} : null; } : null;
}; }
export default function isDarkColor(hexColor){ export default function isDarkColor(hexColor){
let rgb = hexToRgb(hexColor); let rgb = hexToRgb(hexColor);
@@ -22,4 +22,4 @@ export default function isDarkColor(hexColor){
/ 1000 / 1000
); );
return brightness <= 125; return brightness <= 125;
}; }

View File

@@ -1,20 +1,34 @@
import Vue from "vue"; import Vue from 'vue';
import Vuex from "vuex"; import Vuetify from 'vuetify';
import Vuetify from "vuetify"; import store from '/imports/ui/vuexStore.js';
import store from "/imports/ui/vuexStore.js";
import VueMeteorTracker from 'vue-meteor-tracker'; import VueMeteorTracker from 'vue-meteor-tracker';
import AppLayout from '/imports/ui/layouts/AppLayout.vue'; import AppLayout from '/imports/ui/layouts/AppLayout.vue';
import ReactiveProvide from 'vue-reactive-provide'; import ReactiveProvide from 'vue-reactive-provide';
import router from "/imports/ui/router.js"; import router from '/imports/ui/router.js';
import { theme } from '/imports/ui/theme.js'; import { theme } from '/imports/ui/theme.js';
import "vuetify/dist/vuetify.min.css"; import 'vuetify/dist/vuetify.min.css';
import '/imports/ui/components/global/globalIndex.js'; import '/imports/ui/components/global/globalIndex.js';
import SvgIconByName from '/imports/ui/icons/SvgIconByName.vue';
import SVG_ICONS from '/imports/constants/SVG_ICONS.js';
let icons = {};
for (const name in SVG_ICONS) {
let icon = SVG_ICONS[name];
icons[icon.name] = {
component: SvgIconByName,
props: {
name: name,
}
}
}
Vue.use(VueMeteorTracker); Vue.use(VueMeteorTracker);
Vue.config.meteor.freeze = true Vue.config.meteor.freeze = true
Vue.use(Vuetify, { Vue.use(Vuetify, {
theme, theme,
iconfont: "md", iconfont: 'md',
icons,
}); });
Vue.use(ReactiveProvide, { Vue.use(ReactiveProvide, {
name: 'reactiveProvide', // default value name: 'reactiveProvide', // default value
@@ -27,5 +41,5 @@ Meteor.startup(() => {
router, router,
store, store,
...AppLayout, ...AppLayout,
}).$mount("#app"); }).$mount('#app');
}); });

View File

@@ -1,4 +1,4 @@
import '/imports/server/publications/index.js'; import '/imports/server/publications/index.js';
import '/imports/api/parenting/deleteRemovedDocuments.js';
import '/imports/server/config/simpleSchemaDebug.js'; import '/imports/server/config/simpleSchemaDebug.js';
import '/imports/server/cron/deleteSoftRemovedDocuments.js';
import '/imports/api/parenting/organizeMethods.js'; import '/imports/api/parenting/organizeMethods.js';