Compare commits
53 Commits
2.0-beta.3
...
2.0-beta.8
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
21b823f85c | ||
|
|
4631579181 | ||
|
|
edf3920e84 | ||
|
|
fb91fd12df | ||
|
|
19f4735412 | ||
|
|
fb2f1efa72 | ||
|
|
f7ee09470e | ||
|
|
a5c42fea19 | ||
|
|
8f81614294 | ||
|
|
c56cebc652 | ||
|
|
d24fb5661d | ||
|
|
4bdc254627 | ||
|
|
db652ac47f | ||
|
|
32c9283569 | ||
|
|
060c44f384 | ||
|
|
8138cd98f1 | ||
|
|
5195e3fad5 | ||
|
|
eb97a98644 | ||
|
|
51845c62a7 | ||
|
|
56cd48da9d | ||
|
|
298f659829 | ||
|
|
b99d1a00f5 | ||
|
|
15ad8b1f5d | ||
|
|
d4804e5292 | ||
|
|
36c23e1eb5 | ||
|
|
9236f3e477 | ||
|
|
cd413ba64f | ||
|
|
2c671acf72 | ||
|
|
44e726417e | ||
|
|
7f2401da81 | ||
|
|
d31f980002 | ||
|
|
4c8512af80 | ||
|
|
edf68b1355 | ||
|
|
868b9e11fa | ||
|
|
14f5c3e797 | ||
|
|
66e25c53d0 | ||
|
|
7a75d34246 | ||
|
|
70a6c817cb | ||
|
|
56879f1911 | ||
|
|
6d12bcb063 | ||
|
|
1c26b7717c | ||
|
|
a41b267364 | ||
|
|
dfb144b8dc | ||
|
|
2859bf0e00 | ||
|
|
469822d4d7 | ||
|
|
c7de96c8c3 | ||
|
|
f7cbee27f9 | ||
|
|
b61dd6e81a | ||
|
|
add0cac31d | ||
|
|
e9c643699c | ||
|
|
3ec0f9500c | ||
|
|
a55c1382b1 | ||
|
|
7571806cd0 |
@@ -2,6 +2,7 @@ import { Meteor } from 'meteor/meteor';
|
|||||||
import { Mongo } from 'meteor/mongo';
|
import { Mongo } from 'meteor/mongo';
|
||||||
import { ValidatedMethod } from 'meteor/mdg:validated-method';
|
import { ValidatedMethod } from 'meteor/mdg:validated-method';
|
||||||
import SimpleSchema from 'simpl-schema';
|
import SimpleSchema from 'simpl-schema';
|
||||||
|
import ColorSchema from '/imports/api/properties/subSchemas/ColorSchema.js';
|
||||||
import ChildSchema, { RefSchema } from '/imports/api/parenting/ChildSchema.js';
|
import ChildSchema, { RefSchema } from '/imports/api/parenting/ChildSchema.js';
|
||||||
import { recomputeCreature } from '/imports/api/creature/computation/recomputeCreature.js';
|
import { recomputeCreature } from '/imports/api/creature/computation/recomputeCreature.js';
|
||||||
import LibraryNodes from '/imports/api/library/LibraryNodes.js';
|
import LibraryNodes from '/imports/api/library/LibraryNodes.js';
|
||||||
@@ -16,6 +17,7 @@ import {
|
|||||||
renewDocIds
|
renewDocIds
|
||||||
} from '/imports/api/parenting/parenting.js';
|
} from '/imports/api/parenting/parenting.js';
|
||||||
import {setDocToLastOrder} from '/imports/api/parenting/order.js';
|
import {setDocToLastOrder} from '/imports/api/parenting/order.js';
|
||||||
|
import { storedIconsSchema } from '/imports/api/icons/Icons.js';
|
||||||
|
|
||||||
let CreatureProperties = new Mongo.Collection('creatureProperties');
|
let CreatureProperties = new Mongo.Collection('creatureProperties');
|
||||||
|
|
||||||
@@ -35,12 +37,17 @@ let CreaturePropertySchema = new SimpleSchema({
|
|||||||
type: Boolean,
|
type: Boolean,
|
||||||
optional: true,
|
optional: true,
|
||||||
},
|
},
|
||||||
|
icon: {
|
||||||
|
type: storedIconsSchema,
|
||||||
|
optional: true,
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
for (let key in propertySchemasIndex){
|
for (let key in propertySchemasIndex){
|
||||||
let schema = new SimpleSchema({});
|
let schema = new SimpleSchema({});
|
||||||
schema.extend(propertySchemasIndex[key]);
|
schema.extend(propertySchemasIndex[key]);
|
||||||
schema.extend(CreaturePropertySchema);
|
schema.extend(CreaturePropertySchema);
|
||||||
|
schema.extend(ColorSchema);
|
||||||
schema.extend(ChildSchema);
|
schema.extend(ChildSchema);
|
||||||
schema.extend(SoftRemovableSchema);
|
schema.extend(SoftRemovableSchema);
|
||||||
CreatureProperties.attachSchema(schema, {
|
CreatureProperties.attachSchema(schema, {
|
||||||
@@ -72,6 +79,7 @@ const insertProperty = new ValidatedMethod({
|
|||||||
name: 'CreatureProperties.methods.insert',
|
name: 'CreatureProperties.methods.insert',
|
||||||
validate: null,
|
validate: null,
|
||||||
run({creatureProperty}) {
|
run({creatureProperty}) {
|
||||||
|
delete creatureProperty._id;
|
||||||
assertPropertyEditPermission(creatureProperty, this.userId);
|
assertPropertyEditPermission(creatureProperty, this.userId);
|
||||||
let _id = CreatureProperties.insert(creatureProperty);
|
let _id = CreatureProperties.insert(creatureProperty);
|
||||||
let property = CreatureProperties.findOne(_id);
|
let property = CreatureProperties.findOne(_id);
|
||||||
@@ -79,6 +87,23 @@ const insertProperty = new ValidatedMethod({
|
|||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
|
const duplicateProperty = new ValidatedMethod({
|
||||||
|
name: 'CreatureProperties.methods.duplicate',
|
||||||
|
validate: new SimpleSchema({
|
||||||
|
_id: {
|
||||||
|
type: String,
|
||||||
|
regEx: SimpleSchema.RegEx.Id,
|
||||||
|
}
|
||||||
|
}).validator(),
|
||||||
|
run({_id}) {
|
||||||
|
let creatureProperty = CreatureProperties.findOne(_id);
|
||||||
|
assertPropertyEditPermission(creatureProperty, this.userId);
|
||||||
|
delete creatureProperty._id;
|
||||||
|
CreatureProperties.insert(creatureProperty);
|
||||||
|
recomputeCreatures(creatureProperty);
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
const insertPropertyFromLibraryNode = new ValidatedMethod({
|
const insertPropertyFromLibraryNode = new ValidatedMethod({
|
||||||
name: 'CreatureProperties.methods.insertPropertyFromLibraryNode',
|
name: 'CreatureProperties.methods.insertPropertyFromLibraryNode',
|
||||||
validate: new SimpleSchema({
|
validate: new SimpleSchema({
|
||||||
@@ -239,6 +264,48 @@ const damageProperty = new ValidatedMethod({
|
|||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
|
const adjustQuantity = new ValidatedMethod({
|
||||||
|
name: 'CreatureProperties.methods.adjustQuantity',
|
||||||
|
validate: new SimpleSchema({
|
||||||
|
_id: SimpleSchema.RegEx.Id,
|
||||||
|
operation: {
|
||||||
|
type: String,
|
||||||
|
allowedValues: ['set', 'increment']
|
||||||
|
},
|
||||||
|
value: Number,
|
||||||
|
}).validator(),
|
||||||
|
run({_id, operation, value}) {
|
||||||
|
let currentProperty = CreatureProperties.findOne(_id);
|
||||||
|
// Check permissions
|
||||||
|
assertPropertyEditPermission(currentProperty, this.userId);
|
||||||
|
// Check if property can take damage
|
||||||
|
let schema = CreatureProperties.simpleSchema(currentProperty);
|
||||||
|
if (!schema.allowsKey('quantity')){
|
||||||
|
throw new Meteor.Error(
|
||||||
|
'Adjust quantity failed',
|
||||||
|
`Property of type "${currentProperty.type}" doesn't have a quantity`
|
||||||
|
);
|
||||||
|
}
|
||||||
|
if (operation === 'set'){
|
||||||
|
CreatureProperties.update(_id, {
|
||||||
|
$set: {quantity: value}
|
||||||
|
}, {
|
||||||
|
selector: currentProperty
|
||||||
|
});
|
||||||
|
} else if (operation === 'increment'){
|
||||||
|
// value here is 'damage'
|
||||||
|
value = -value;
|
||||||
|
let currentQuantity = currentProperty.quantity;
|
||||||
|
if (currentQuantity + value < 0) value = -currentQuantity;
|
||||||
|
CreatureProperties.update(_id, {
|
||||||
|
$inc: {quantity: value}
|
||||||
|
}, {
|
||||||
|
selector: currentProperty
|
||||||
|
});
|
||||||
|
}
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
const pushToProperty = new ValidatedMethod({
|
const pushToProperty = new ValidatedMethod({
|
||||||
name: 'CreatureProperties.methods.push',
|
name: 'CreatureProperties.methods.push',
|
||||||
validate: null,
|
validate: null,
|
||||||
@@ -288,9 +355,11 @@ export default CreatureProperties;
|
|||||||
export {
|
export {
|
||||||
CreaturePropertySchema,
|
CreaturePropertySchema,
|
||||||
insertProperty,
|
insertProperty,
|
||||||
|
duplicateProperty,
|
||||||
insertPropertyFromLibraryNode,
|
insertPropertyFromLibraryNode,
|
||||||
updateProperty,
|
updateProperty,
|
||||||
damageProperty,
|
damageProperty,
|
||||||
|
adjustQuantity,
|
||||||
pushToProperty,
|
pushToProperty,
|
||||||
pullFromProperty,
|
pullFromProperty,
|
||||||
softRemoveProperty,
|
softRemoveProperty,
|
||||||
|
|||||||
@@ -7,6 +7,7 @@ import {assertEditPermission} from '/imports/api/sharing/sharingPermissions.js';
|
|||||||
import { getUserTier } from '/imports/api/users/patreon/tiers.js';
|
import { getUserTier } from '/imports/api/users/patreon/tiers.js';
|
||||||
|
|
||||||
import '/imports/api/creature/removeCreature.js';
|
import '/imports/api/creature/removeCreature.js';
|
||||||
|
import '/imports/api/creature/restCreature.js';
|
||||||
|
|
||||||
//set up the collection for creatures
|
//set up the collection for creatures
|
||||||
let Creatures = new Mongo.Collection('creatures');
|
let Creatures = new Mongo.Collection('creatures');
|
||||||
@@ -27,6 +28,18 @@ let CreatureSettingsSchema = new SimpleSchema({
|
|||||||
type: Boolean,
|
type: Boolean,
|
||||||
optional: true,
|
optional: true,
|
||||||
},
|
},
|
||||||
|
// Hide all the unused stats
|
||||||
|
hideUnusedStats: {
|
||||||
|
type: Boolean,
|
||||||
|
optional: true,
|
||||||
|
},
|
||||||
|
// How much each hitDice resets on a long rest
|
||||||
|
hitDiceResetMultiplier: {
|
||||||
|
type: Number,
|
||||||
|
optional: true,
|
||||||
|
min: 0,
|
||||||
|
max: 1,
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
let CreatureSchema = new SimpleSchema({
|
let CreatureSchema = new SimpleSchema({
|
||||||
@@ -130,7 +143,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');
|
||||||
@@ -139,9 +160,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},
|
||||||
|
});
|
||||||
|
}
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
@@ -63,46 +63,6 @@ export default class ComputationMemo {
|
|||||||
});
|
});
|
||||||
return prop;
|
return prop;
|
||||||
}
|
}
|
||||||
/*
|
|
||||||
storeHighestClassLevel(name, prop, isBaseClass){
|
|
||||||
// Only store the highest level classLevel
|
|
||||||
let stat = this.statsByVariableName[name]
|
|
||||||
if (!stat){
|
|
||||||
this.statsByVariableName[name] = prop;
|
|
||||||
if (isBaseClass){
|
|
||||||
this.classes[name] = prop;
|
|
||||||
}
|
|
||||||
} else if (!has(stat, 'level')){
|
|
||||||
// Stat is overriden by an attribute
|
|
||||||
return;
|
|
||||||
} else if (stat.level < prop.level) {
|
|
||||||
this.statsByVariableName[name] = prop;
|
|
||||||
if (isBaseClass){
|
|
||||||
this.classes[name] = prop;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
this.updateLevel();
|
|
||||||
}
|
|
||||||
updateLevel(){
|
|
||||||
let currentLevel = this.statsByVariableName['level'];
|
|
||||||
if (!currentLevel){
|
|
||||||
currentLevel = {
|
|
||||||
value: 0,
|
|
||||||
computationDetails: {
|
|
||||||
builtIn: true,
|
|
||||||
computed: true,
|
|
||||||
}
|
|
||||||
};
|
|
||||||
this.statsByVariableName['level'] = currentLevel;
|
|
||||||
}
|
|
||||||
// bail out if overriden by an attribute
|
|
||||||
if (!currentLevel.computationDetails.builtIn) return;
|
|
||||||
let level = 0;
|
|
||||||
for (let name in this.classes){
|
|
||||||
level += this.classes[name].level || 0;
|
|
||||||
}
|
|
||||||
this.statsByVariableName['level'].value = level;
|
|
||||||
}*/
|
|
||||||
addToggle(prop){
|
addToggle(prop){
|
||||||
prop = this.registerProperty(prop);
|
prop = this.registerProperty(prop);
|
||||||
this.togglesById[prop._id] = prop;
|
this.togglesById[prop._id] = prop;
|
||||||
|
|||||||
@@ -2,9 +2,14 @@ import evaluateCalculation from '/imports/api/creature/computation/evaluateCalcu
|
|||||||
|
|
||||||
export default class EffectAggregator{
|
export default class EffectAggregator{
|
||||||
constructor(stat, memo){
|
constructor(stat, memo){
|
||||||
|
delete this.baseValueErrors;
|
||||||
if (stat.baseValueCalculation){
|
if (stat.baseValueCalculation){
|
||||||
this.statBaseValue = evaluateCalculation(stat.baseValueCalculation, memo);
|
let {value, errors} = evaluateCalculation(stat.baseValueCalculation, memo);
|
||||||
this.base = +this.statBaseValue;
|
this.statBaseValue = value;
|
||||||
|
if (errors.length){
|
||||||
|
this.baseValueErrors = errors;
|
||||||
|
}
|
||||||
|
this.base = this.statBaseValue;
|
||||||
} else {
|
} else {
|
||||||
this.base = 0;
|
this.base = 0;
|
||||||
}
|
}
|
||||||
@@ -16,17 +21,22 @@ export default class EffectAggregator{
|
|||||||
this.disadvantage = 0;
|
this.disadvantage = 0;
|
||||||
this.passiveAdd = 0;
|
this.passiveAdd = 0;
|
||||||
this.fail = 0;
|
this.fail = 0;
|
||||||
|
this.set = undefined;
|
||||||
this.conditional = [];
|
this.conditional = [];
|
||||||
this.rollBonus = [];
|
this.rollBonus = [];
|
||||||
|
this.hasNoEffects = true;
|
||||||
}
|
}
|
||||||
addEffect(effect){
|
addEffect(effect){
|
||||||
let result = effect.result;
|
let result = effect.result;
|
||||||
|
if (this.hasNoEffects) this.hasNoEffects = false;
|
||||||
switch(effect.operation){
|
switch(effect.operation){
|
||||||
case 'base':
|
case 'base':
|
||||||
// Take the largest base value
|
// Take the largest base value
|
||||||
this.base = result > this.base ? result : this.base;
|
this.base = result > this.base ? result : this.base;
|
||||||
if (effect.statBase){
|
if (effect.statBase){
|
||||||
this.statBaseValue = result > this.statBaseValue ? result : this.statBaseValue;
|
if (this.statBaseValue === undefined || result > this.statBaseValue){
|
||||||
|
this.statBaseValue = result;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case 'add':
|
case 'add':
|
||||||
@@ -45,6 +55,10 @@ export default class EffectAggregator{
|
|||||||
// Take the smallest max value
|
// Take the smallest max value
|
||||||
this.max = result < this.max ? result : this.max;
|
this.max = result < this.max ? result : this.max;
|
||||||
break;
|
break;
|
||||||
|
case 'set':
|
||||||
|
// Take the highest set value
|
||||||
|
this.set = this.set === undefined || result > this.set ? result : this.set;
|
||||||
|
break;
|
||||||
case 'advantage':
|
case 'advantage':
|
||||||
// Sum number of advantages
|
// Sum number of advantages
|
||||||
this.advantage++;
|
this.advantage++;
|
||||||
|
|||||||
@@ -11,17 +11,34 @@ export default function combineStat(stat, aggregator, memo){
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function combineAttribute(stat, aggregator){
|
function getAggregatorResult(stat, aggregator){
|
||||||
let result = (aggregator.base + aggregator.add) * aggregator.mul;
|
let result = (aggregator.base + aggregator.add) * aggregator.mul;
|
||||||
if (result < aggregator.min) result = aggregator.min;
|
if (result < aggregator.min) {
|
||||||
if (result > aggregator.max) result = aggregator.max;
|
result = aggregator.min;
|
||||||
if (!stat.decimal) result = Math.floor(result);
|
}
|
||||||
stat.value = result;
|
if (result > aggregator.max) {
|
||||||
|
result = aggregator.max;
|
||||||
|
}
|
||||||
|
if (aggregator.set !== undefined) {
|
||||||
|
result = aggregator.set;
|
||||||
|
}
|
||||||
|
if (!stat.decimal && Number.isFinite(result)){
|
||||||
|
result = Math.floor(result);
|
||||||
|
}
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
function combineAttribute(stat, aggregator){
|
||||||
|
stat.value = getAggregatorResult(stat, aggregator);
|
||||||
stat.baseValue = aggregator.statBaseValue;
|
stat.baseValue = aggregator.statBaseValue;
|
||||||
|
stat.baseValueErrors = aggregator.baseValueErrors;
|
||||||
if (stat.attributeType === 'ability') {
|
if (stat.attributeType === 'ability') {
|
||||||
stat.modifier = Math.floor((result - 10) / 2);
|
stat.modifier = Math.floor((stat.value - 10) / 2);
|
||||||
}
|
}
|
||||||
stat.currentValue = stat.value - (stat.damage || 0);
|
stat.currentValue = stat.value - (stat.damage || 0);
|
||||||
|
stat.hide = aggregator.hasNoEffects &&
|
||||||
|
stat.baseValue === undefined ||
|
||||||
|
undefined
|
||||||
}
|
}
|
||||||
|
|
||||||
function combineSkill(stat, aggregator, memo){
|
function combineSkill(stat, aggregator, memo){
|
||||||
@@ -51,16 +68,23 @@ function combineSkill(stat, aggregator, memo){
|
|||||||
|
|
||||||
if (typeof profBonus !== 'number' && memo.statsByVariableName['level']){
|
if (typeof profBonus !== 'number' && memo.statsByVariableName['level']){
|
||||||
let level = memo.statsByVariableName['level'].value;
|
let level = memo.statsByVariableName['level'].value;
|
||||||
profBonus = Math.floor(level / 4 + 1.75);
|
profBonus = Math.ceil(level / 4) + 1;
|
||||||
}
|
}
|
||||||
// Multiply the proficiency bonus by the actual proficiency
|
// Multiply the proficiency bonus by the actual proficiency
|
||||||
profBonus *= stat.proficiency;
|
profBonus *= stat.proficiency;
|
||||||
|
// Base value
|
||||||
|
stat.baseValue = aggregator.statBaseValue;
|
||||||
|
stat.baseValueErrors = aggregator.baseValueErrors;
|
||||||
// Combine everything to get the final result
|
// Combine everything to get the final result
|
||||||
let result = (stat.abilityMod + profBonus + aggregator.add) * aggregator.mul;
|
let result = (aggregator.base + stat.abilityMod + profBonus + aggregator.add) * aggregator.mul;
|
||||||
if (result < aggregator.min) result = aggregator.min;
|
if (result < aggregator.min) result = aggregator.min;
|
||||||
if (result > aggregator.max) result = aggregator.max;
|
if (result > aggregator.max) result = aggregator.max;
|
||||||
result = Math.floor(result);
|
if (aggregator.set !== undefined) {
|
||||||
if (aggregator.base > result) result = aggregator.base;
|
result = aggregator.set;
|
||||||
|
}
|
||||||
|
if (Number.isFinite(result)){
|
||||||
|
result = Math.floor(result);
|
||||||
|
}
|
||||||
stat.value = result;
|
stat.value = result;
|
||||||
// Advantage/disadvantage
|
// Advantage/disadvantage
|
||||||
if (aggregator.advantage && !aggregator.disadvantage){
|
if (aggregator.advantage && !aggregator.disadvantage){
|
||||||
@@ -80,6 +104,11 @@ function combineSkill(stat, aggregator, memo){
|
|||||||
stat.fail = aggregator.fail;
|
stat.fail = aggregator.fail;
|
||||||
// Rollbonus
|
// Rollbonus
|
||||||
stat.rollBonuses = aggregator.rollBonus;
|
stat.rollBonuses = aggregator.rollBonus;
|
||||||
|
// Hide
|
||||||
|
stat.hide = aggregator.hasNoEffects &&
|
||||||
|
stat.baseValue === undefined &&
|
||||||
|
stat.proficiency == 0 ||
|
||||||
|
undefined;
|
||||||
}
|
}
|
||||||
|
|
||||||
function combineDamageMultiplier(stat){
|
function combineDamageMultiplier(stat){
|
||||||
|
|||||||
@@ -20,9 +20,12 @@ export default function computeEffect(effect, memo){
|
|||||||
applyToggles(effect, memo);
|
applyToggles(effect, memo);
|
||||||
|
|
||||||
// Determine result of effect calculation
|
// Determine result of effect calculation
|
||||||
|
delete effect.errors;
|
||||||
if (!effect.calculation){
|
if (!effect.calculation){
|
||||||
if(effect.operation === 'add' || effect.operation === 'base'){
|
if(effect.operation === 'add' || effect.operation === 'base'){
|
||||||
effect.result = 0;
|
effect.result = 0;
|
||||||
|
} else {
|
||||||
|
delete effect.result
|
||||||
}
|
}
|
||||||
} else if (Number.isFinite(+effect.calculation)){
|
} else if (Number.isFinite(+effect.calculation)){
|
||||||
effect.result = +effect.calculation;
|
effect.result = +effect.calculation;
|
||||||
@@ -31,7 +34,11 @@ export default function computeEffect(effect, memo){
|
|||||||
} else if(_.contains(['advantage', 'disadvantage', 'fail'], effect.operation)){
|
} else if(_.contains(['advantage', 'disadvantage', 'fail'], effect.operation)){
|
||||||
effect.result = 1;
|
effect.result = 1;
|
||||||
} else {
|
} else {
|
||||||
effect.result = evaluateCalculation(effect.calculation, memo);
|
let {value, errors} = evaluateCalculation(effect.calculation, memo);
|
||||||
|
effect.result = value;
|
||||||
|
if (errors.length){
|
||||||
|
effect.errors = errors;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
effect.computationDetails.computed = true;
|
effect.computationDetails.computed = true;
|
||||||
effect.computationDetails.busyComputing = false;
|
effect.computationDetails.busyComputing = false;
|
||||||
|
|||||||
@@ -16,6 +16,7 @@ export default function computeToggle(toggle, memo){
|
|||||||
toggle.computationDetails.busyComputing = true;
|
toggle.computationDetails.busyComputing = true;
|
||||||
|
|
||||||
// Do work
|
// Do work
|
||||||
|
delete toggle.errors;
|
||||||
if (toggle.enabled){
|
if (toggle.enabled){
|
||||||
toggle.toggleResult = true;
|
toggle.toggleResult = true;
|
||||||
} else if (toggle.disabled){
|
} else if (toggle.disabled){
|
||||||
@@ -25,7 +26,11 @@ export default function computeToggle(toggle, memo){
|
|||||||
} else if (Number.isFinite(+toggle.condition)){
|
} else if (Number.isFinite(+toggle.condition)){
|
||||||
toggle.toggleResult = !!+toggle.condition;
|
toggle.toggleResult = !!+toggle.condition;
|
||||||
} else {
|
} else {
|
||||||
toggle.toggleResult = evaluateCalculation(toggle.condition, memo);
|
let {value, errors} = evaluateCalculation(toggle.condition, memo);
|
||||||
|
toggle.toggleResult = value;
|
||||||
|
if (errors.length){
|
||||||
|
toggle.errors = errors;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
toggle.computationDetails.computed = true;
|
toggle.computationDetails.computed = true;
|
||||||
toggle.computationDetails.busyComputing = false;
|
toggle.computationDetails.busyComputing = false;
|
||||||
|
|||||||
@@ -1,15 +1,20 @@
|
|||||||
import bareSymbolSubtitutor from '/imports/api/creature/computation/utility/bareSymbolSubtitutor.js';
|
|
||||||
import computeStat from '/imports/api/creature/computation/computeStat.js';
|
import computeStat from '/imports/api/creature/computation/computeStat.js';
|
||||||
import math from '/imports/math.js';
|
import math from '/imports/math.js';
|
||||||
|
|
||||||
|
/* Convert a calculation into a constant output and errors*/
|
||||||
export default function evaluateCalculation(string, memo){
|
export default function evaluateCalculation(string, memo){
|
||||||
if (!string) return string;
|
if (!string) return string;
|
||||||
|
let errors = [];
|
||||||
// Parse the string using mathjs
|
// Parse the string using mathjs
|
||||||
let calc;
|
let calc;
|
||||||
try {
|
try {
|
||||||
calc = math.parse(string);
|
calc = math.parse(string);
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
return string;
|
errors.push({
|
||||||
|
type: 'parsing',
|
||||||
|
message: e.message || e
|
||||||
|
});
|
||||||
|
return {errors, value: string};
|
||||||
}
|
}
|
||||||
// Ensure all symbol nodes are defined and coputed
|
// Ensure all symbol nodes are defined and coputed
|
||||||
calc.traverse(node => {
|
calc.traverse(node => {
|
||||||
@@ -20,12 +25,74 @@ export default function evaluateCalculation(string, memo){
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
// Ensure any bare symbols are value accessors instead
|
// Replace all symbols with their subtitution
|
||||||
let substitutedCalc = calc.transform(bareSymbolSubtitutor(memo.statsByVariableName));
|
let substitutedCalc = calc.transform(
|
||||||
|
symbolSubtitutor(memo.statsByVariableName, errors)
|
||||||
|
);
|
||||||
// Evaluate the expression to a number or return with substitutions
|
// Evaluate the expression to a number or return with substitutions
|
||||||
try {
|
try {
|
||||||
return substitutedCalc.evaluate(memo.statsByVariableName);
|
let value = substitutedCalc.evaluate(memo.statsByVariableName);
|
||||||
|
if (typeof value === 'object') value = value.toString();
|
||||||
|
return {errors, value};
|
||||||
} catch (e){
|
} catch (e){
|
||||||
return substitutedCalc.toString();
|
errors.push({
|
||||||
|
type: 'evaluation',
|
||||||
|
message: e.message || e
|
||||||
|
});
|
||||||
|
let value = substitutedCalc.toString();
|
||||||
|
return {errors, value};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// returns a function to replace all symbols with either their resolved value
|
||||||
|
// or zero, keeping the errors
|
||||||
|
function symbolSubtitutor(scope, errors){
|
||||||
|
return function(node){
|
||||||
|
// mark symbol nodes that are children of function nodes to be skipped
|
||||||
|
if (node.isFunctionNode){
|
||||||
|
let fn = node.fn;
|
||||||
|
if (fn && fn.isSymbolNode){
|
||||||
|
fn.skipReplacement = true;
|
||||||
|
}
|
||||||
|
return node;
|
||||||
|
} else if (node.isSymbolNode && node.skipReplacement !== true){
|
||||||
|
//bare symbols of name "stat", should search for stat.value
|
||||||
|
let stat = scope[node.name];
|
||||||
|
if (stat){
|
||||||
|
if (stat.value === undefined){
|
||||||
|
errors.push({
|
||||||
|
type: 'subsitution',
|
||||||
|
message: `${node.name} does not have a value, set to 0`
|
||||||
|
});
|
||||||
|
return new math.ConstantNode(0);
|
||||||
|
} else {
|
||||||
|
return new math.ConstantNode(stat.value);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
try {
|
||||||
|
return new math.ConstantNode(node.evaluate(scope));
|
||||||
|
} catch (e) {
|
||||||
|
errors.push({
|
||||||
|
type: 'subsitution',
|
||||||
|
message: `${node.name} not found, set to 0`
|
||||||
|
});
|
||||||
|
return new math.ConstantNode(0);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else if (node.isAccessorNode){
|
||||||
|
try {
|
||||||
|
let value = node.evaluate(scope);
|
||||||
|
if (value === undefined) throw 'Not found';
|
||||||
|
return new math.ConstantNode(value);
|
||||||
|
} catch (e) {
|
||||||
|
errors.push({
|
||||||
|
type: 'subsitution',
|
||||||
|
message: `${node.toString()} not found, set to 0`
|
||||||
|
});
|
||||||
|
return new math.ConstantNode(0);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
return node;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -76,12 +76,12 @@ export function recomputeCreatureById(creatureId){
|
|||||||
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);
|
||||||
computeMemo(computationMemo);
|
computeMemo(computationMemo);
|
||||||
writeAlteredProperties(computationMemo);
|
writeAlteredProperties(computationMemo);
|
||||||
writeCreatureVariables(computationMemo, creatureId);
|
writeCreatureVariables(computationMemo, creatureId);
|
||||||
// if(Meteor.isClient) console.log(computationMemo);
|
|
||||||
recomputeDamageMultipliersById(creatureId);
|
recomputeDamageMultipliersById(creatureId);
|
||||||
return computationMemo;
|
return computationMemo;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -6,6 +6,15 @@ export default function getActiveProperties({
|
|||||||
filter = {},
|
filter = {},
|
||||||
options,
|
options,
|
||||||
includeUntoggled = false
|
includeUntoggled = false
|
||||||
|
}){
|
||||||
|
filter = getActivePropertyFilter({ancestorId, filter, includeUntoggled});
|
||||||
|
return CreatureProperties.find(filter, options).fetch();
|
||||||
|
}
|
||||||
|
|
||||||
|
export function getActivePropertyFilter({
|
||||||
|
ancestorId,
|
||||||
|
filter = {},
|
||||||
|
includeUntoggled = false
|
||||||
}){
|
}){
|
||||||
if (!ancestorId){
|
if (!ancestorId){
|
||||||
throw 'Ancestor Id is required to get active properties'
|
throw 'Ancestor Id is required to get active properties'
|
||||||
@@ -14,9 +23,9 @@ export default function getActiveProperties({
|
|||||||
let disabledAncestorsFilter = {
|
let disabledAncestorsFilter = {
|
||||||
'ancestors.id': ancestorId,
|
'ancestors.id': ancestorId,
|
||||||
$or: [
|
$or: [
|
||||||
{disabled: true},
|
{disabled: true}, // Everything can be disabled
|
||||||
{equipped: false},
|
{equipped: false}, // Items can be equipped
|
||||||
{applied: false},
|
{applied: false}, // Buffs can be applied
|
||||||
],
|
],
|
||||||
};
|
};
|
||||||
if (!includeUntoggled){
|
if (!includeUntoggled){
|
||||||
@@ -48,5 +57,5 @@ export default function getActiveProperties({
|
|||||||
filter._id = {
|
filter._id = {
|
||||||
$nin: disabledAncestorIds,
|
$nin: disabledAncestorIds,
|
||||||
}
|
}
|
||||||
return CreatureProperties.find(filter, options).fetch();
|
return filter;
|
||||||
}
|
}
|
||||||
|
|||||||
106
app/imports/api/creature/restCreature.js
Normal file
106
app/imports/api/creature/restCreature.js
Normal file
@@ -0,0 +1,106 @@
|
|||||||
|
import SimpleSchema from 'simpl-schema';
|
||||||
|
import { ValidatedMethod } from 'meteor/mdg:validated-method';
|
||||||
|
import Creatures from '/imports/api/creature/Creatures.js';
|
||||||
|
import CreatureProperties from '/imports/api/creature/CreatureProperties.js';
|
||||||
|
import getActiveProperties, { getActivePropertyFilter } from '/imports/api/creature/getActiveProperties.js';
|
||||||
|
import { assertEditPermission } from '/imports/api/creature/creaturePermissions.js';
|
||||||
|
import { recomputeCreatureById } from '/imports/api/creature/computation/recomputeCreature.js';
|
||||||
|
|
||||||
|
const restCreature = new ValidatedMethod({
|
||||||
|
name: 'creature.methods.longRest',
|
||||||
|
validate: new SimpleSchema({
|
||||||
|
creatureId: {
|
||||||
|
type: String,
|
||||||
|
regEx: SimpleSchema.RegEx.Id,
|
||||||
|
},
|
||||||
|
restType: {
|
||||||
|
type: String,
|
||||||
|
allowedValues: ['shortRest', 'longRest'],
|
||||||
|
},
|
||||||
|
}).validator(),
|
||||||
|
run({creatureId, restType}) {
|
||||||
|
let creature = Creatures.findOne(creatureId, {
|
||||||
|
fields: {
|
||||||
|
owner: 1,
|
||||||
|
writers: 1,
|
||||||
|
settings: 1,
|
||||||
|
}
|
||||||
|
}) ;
|
||||||
|
// Need edit permissions
|
||||||
|
assertEditPermission(creature, this.userId);
|
||||||
|
|
||||||
|
// Long rests reset short rest properties as well
|
||||||
|
let resetFilter;
|
||||||
|
if (restType === 'shortRest'){
|
||||||
|
resetFilter = 'shortRest'
|
||||||
|
} else {
|
||||||
|
resetFilter = {$in: ['shortRest', 'longRest']}
|
||||||
|
}
|
||||||
|
// Only apply to active properties
|
||||||
|
let filter = getActivePropertyFilter({
|
||||||
|
filter: {reset: resetFilter},
|
||||||
|
ancestorId: creatureId,
|
||||||
|
includeUntoggled: true,
|
||||||
|
});
|
||||||
|
// update all attribute's damage
|
||||||
|
filter.type = 'attribute';
|
||||||
|
CreatureProperties.update(filter, {
|
||||||
|
$set: {damage: 0}
|
||||||
|
}, {
|
||||||
|
selector: {type: 'attribute'},
|
||||||
|
multi: true,
|
||||||
|
});
|
||||||
|
// Update all action-like properties' usesUsed
|
||||||
|
filter.type = {$in: [
|
||||||
|
'action',
|
||||||
|
'attack',
|
||||||
|
'spell'
|
||||||
|
]};
|
||||||
|
CreatureProperties.update(filter, {
|
||||||
|
$set: {usesUsed: 0}
|
||||||
|
}, {
|
||||||
|
selector: {type: 'action'},
|
||||||
|
multi: true,
|
||||||
|
});
|
||||||
|
// Reset half hit dice on a long rest, starting with the highest dice
|
||||||
|
if (restType === 'longRest'){
|
||||||
|
let hitDice = getActiveProperties({
|
||||||
|
ancestorId: creatureId,
|
||||||
|
filter: {type: 'attribute', attributeType: 'hitDice'},
|
||||||
|
options: {fields: {
|
||||||
|
hitDiceSize: 1,
|
||||||
|
damage: 1,
|
||||||
|
value: 1,
|
||||||
|
}},
|
||||||
|
});
|
||||||
|
// Use a collator to do sorting in natural order
|
||||||
|
let collator = new Intl.Collator('en', {
|
||||||
|
numeric: true, sensitivity: 'base'
|
||||||
|
});
|
||||||
|
// Get the hit dice in decending order of hitDiceSize
|
||||||
|
let compare = (a, b) => collator.compare(b.hitDiceSize, a.hitDiceSize)
|
||||||
|
hitDice.sort(compare);
|
||||||
|
// Get the total number of hit dice that can be recovered this rest
|
||||||
|
let totalHd = hitDice.reduce((sum, hd) => sum + (hd.value || 0), 0);
|
||||||
|
let resetMultiplier = creature.settings.hitDiceResetMultiplier || 0.5;
|
||||||
|
let recoverableHd = Math.max(Math.floor(totalHd*resetMultiplier), 1);
|
||||||
|
// recover each hit dice in turn until the recoverable amount is used up
|
||||||
|
let amountToRecover, resultingDamage;
|
||||||
|
hitDice.forEach(hd => {
|
||||||
|
if (!recoverableHd) return;
|
||||||
|
amountToRecover = Math.min(recoverableHd, hd.damage || 0);
|
||||||
|
if (!amountToRecover) return;
|
||||||
|
recoverableHd -= amountToRecover;
|
||||||
|
resultingDamage = hd.damage - amountToRecover;
|
||||||
|
CreatureProperties.update(hd._id, {
|
||||||
|
$set: {damage: resultingDamage}
|
||||||
|
}, {
|
||||||
|
selector: {type: 'attribute'},
|
||||||
|
});
|
||||||
|
});
|
||||||
|
}
|
||||||
|
recomputeCreatureById(creatureId);
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
export default restCreature;
|
||||||
@@ -1,8 +1,10 @@
|
|||||||
import SimpleSchema from 'simpl-schema';
|
import SimpleSchema from 'simpl-schema';
|
||||||
|
import { ValidatedMethod } from 'meteor/mdg:validated-method';
|
||||||
|
import { assertAdmin } from '/imports/api/sharing/sharingPermissions.js';
|
||||||
|
|
||||||
let Icons = new Mongo.Collection('icons');
|
let Icons = new Mongo.Collection('icons');
|
||||||
|
|
||||||
iconsSchema = new SimpleSchema({
|
let iconsSchema = new SimpleSchema({
|
||||||
name: {
|
name: {
|
||||||
type: String,
|
type: String,
|
||||||
unique: true,
|
unique: true,
|
||||||
@@ -33,21 +35,57 @@ if (Meteor.isServer) {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const storedIconsSchema = new SimpleSchema({
|
||||||
|
name: {
|
||||||
|
type: String,
|
||||||
|
},
|
||||||
|
shape: {
|
||||||
|
type: String,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
Icons.attachSchema(iconsSchema);
|
Icons.attachSchema(iconsSchema);
|
||||||
|
|
||||||
/*
|
// This method does not validate icons against the schema, use wisely;
|
||||||
console.warn("Write Icons is not secure, disable before deployment")
|
|
||||||
const writeIcons = new ValidatedMethod({
|
const writeIcons = new ValidatedMethod({
|
||||||
name: 'writeIcons',
|
name: 'icons.methods.write',
|
||||||
validate: null,
|
validate: null,
|
||||||
run(icons){
|
run(icons){
|
||||||
|
assertAdmin(this.userId);
|
||||||
if (Meteor.isServer){
|
if (Meteor.isServer){
|
||||||
this.unblock();
|
this.unblock();
|
||||||
Icons.rawCollection().insert(icons, {ordered: false});
|
Icons.rawCollection().insert(icons, {ordered: false});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
*/
|
|
||||||
|
|
||||||
export { writeIcons };
|
const findIcons = new ValidatedMethod({
|
||||||
|
name: 'icons.methods.find',
|
||||||
|
validate: new SimpleSchema({
|
||||||
|
search: {
|
||||||
|
type: String,
|
||||||
|
max: 30,
|
||||||
|
optional: true,
|
||||||
|
},
|
||||||
|
}).validator(),
|
||||||
|
run({search}){
|
||||||
|
if (!search) return [];
|
||||||
|
if (!Meteor.isServer) return;
|
||||||
|
return Icons.find(
|
||||||
|
{ $text: {$search: search} },
|
||||||
|
{
|
||||||
|
// relevant documents have a higher score.
|
||||||
|
fields: {
|
||||||
|
score: { $meta: 'textScore' }
|
||||||
|
},
|
||||||
|
// `score` property specified in the projection fields above.
|
||||||
|
sort: {
|
||||||
|
score: { $meta: 'textScore' }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
).fetch();
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
export { writeIcons, findIcons, storedIconsSchema };
|
||||||
export default Icons;
|
export default Icons;
|
||||||
|
|||||||
@@ -2,12 +2,14 @@ import { Meteor } from 'meteor/meteor';
|
|||||||
import { Mongo } from 'meteor/mongo';
|
import { Mongo } from 'meteor/mongo';
|
||||||
import { ValidatedMethod } from 'meteor/mdg:validated-method';
|
import { ValidatedMethod } from 'meteor/mdg:validated-method';
|
||||||
import SimpleSchema from 'simpl-schema';
|
import SimpleSchema from 'simpl-schema';
|
||||||
|
import ColorSchema from '/imports/api/properties/subSchemas/ColorSchema.js';
|
||||||
import ChildSchema from '/imports/api/parenting/ChildSchema.js';
|
import ChildSchema from '/imports/api/parenting/ChildSchema.js';
|
||||||
import propertySchemasIndex from '/imports/api/properties/propertySchemasIndex.js';
|
import propertySchemasIndex from '/imports/api/properties/propertySchemasIndex.js';
|
||||||
import Libraries from '/imports/api/library/Libraries.js';
|
import Libraries from '/imports/api/library/Libraries.js';
|
||||||
import { assertEditPermission } from '/imports/api/sharing/sharingPermissions.js';
|
import { assertEditPermission } from '/imports/api/sharing/sharingPermissions.js';
|
||||||
import { softRemove } from '/imports/api/parenting/softRemove.js';
|
import { softRemove } from '/imports/api/parenting/softRemove.js';
|
||||||
import SoftRemovableSchema from '/imports/api/parenting/SoftRemovableSchema.js';
|
import SoftRemovableSchema from '/imports/api/parenting/SoftRemovableSchema.js';
|
||||||
|
import { storedIconsSchema } from '/imports/api/icons/Icons.js';
|
||||||
|
|
||||||
let LibraryNodes = new Mongo.Collection('libraryNodes');
|
let LibraryNodes = new Mongo.Collection('libraryNodes');
|
||||||
|
|
||||||
@@ -23,11 +25,16 @@ let LibraryNodeSchema = new SimpleSchema({
|
|||||||
'tags.$': {
|
'tags.$': {
|
||||||
type: String,
|
type: String,
|
||||||
},
|
},
|
||||||
|
icon: {
|
||||||
|
type: storedIconsSchema,
|
||||||
|
optional: true,
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
for (let key in propertySchemasIndex){
|
for (let key in propertySchemasIndex){
|
||||||
let schema = new SimpleSchema({});
|
let schema = new SimpleSchema({});
|
||||||
schema.extend(LibraryNodeSchema);
|
schema.extend(LibraryNodeSchema);
|
||||||
|
schema.extend(ColorSchema);
|
||||||
schema.extend(propertySchemasIndex[key]);
|
schema.extend(propertySchemasIndex[key]);
|
||||||
schema.extend(ChildSchema);
|
schema.extend(ChildSchema);
|
||||||
schema.extend(SoftRemovableSchema);
|
schema.extend(SoftRemovableSchema);
|
||||||
@@ -52,11 +59,28 @@ const insertNode = new ValidatedMethod({
|
|||||||
name: 'LibraryNodes.methods.insert',
|
name: 'LibraryNodes.methods.insert',
|
||||||
validate: null,
|
validate: null,
|
||||||
run(libraryNode) {
|
run(libraryNode) {
|
||||||
|
delete libraryNode._id;
|
||||||
assertNodeEditPermission(libraryNode, this.userId);
|
assertNodeEditPermission(libraryNode, this.userId);
|
||||||
return LibraryNodes.insert(libraryNode);
|
return LibraryNodes.insert(libraryNode);
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
|
const duplicateNode = new ValidatedMethod({
|
||||||
|
name: 'LibraryNodes.methods.duplicate',
|
||||||
|
validate: new SimpleSchema({
|
||||||
|
_id: {
|
||||||
|
type: String,
|
||||||
|
regEx: SimpleSchema.RegEx.Id,
|
||||||
|
}
|
||||||
|
}).validator(),
|
||||||
|
run({_id}) {
|
||||||
|
let libraryNode = LibraryNodes.findOne(_id);
|
||||||
|
assertNodeEditPermission(libraryNode, this.userId);
|
||||||
|
delete libraryNode._id;
|
||||||
|
return LibraryNodes.insert(libraryNode);
|
||||||
|
},
|
||||||
|
})
|
||||||
|
|
||||||
const updateLibraryNode = new ValidatedMethod({
|
const updateLibraryNode = new ValidatedMethod({
|
||||||
name: 'LibraryNodes.methods.update',
|
name: 'LibraryNodes.methods.update',
|
||||||
validate({_id, path}){
|
validate({_id, path}){
|
||||||
@@ -132,6 +156,7 @@ export default LibraryNodes;
|
|||||||
export {
|
export {
|
||||||
LibraryNodeSchema,
|
LibraryNodeSchema,
|
||||||
insertNode,
|
insertNode,
|
||||||
|
duplicateNode,
|
||||||
updateLibraryNode,
|
updateLibraryNode,
|
||||||
pullFromLibraryNode,
|
pullFromLibraryNode,
|
||||||
pushToLibraryNode,
|
pushToLibraryNode,
|
||||||
|
|||||||
@@ -22,6 +22,7 @@ let ChildSchema = new SimpleSchema({
|
|||||||
ancestors: {
|
ancestors: {
|
||||||
type: Array,
|
type: Array,
|
||||||
defaultValue: [],
|
defaultValue: [],
|
||||||
|
max: 100,
|
||||||
},
|
},
|
||||||
'ancestors.$': {
|
'ancestors.$': {
|
||||||
type: RefSchema,
|
type: RefSchema,
|
||||||
|
|||||||
@@ -133,7 +133,7 @@ export function reorderDocs({collection, ancestorId}){
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
if (Meteor.isServer){
|
if (Meteor.isServer && bulkWrite.length){
|
||||||
collection.rawCollection().bulkWrite(
|
collection.rawCollection().bulkWrite(
|
||||||
bulkWrite,
|
bulkWrite,
|
||||||
{ordered : false},
|
{ordered : false},
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
import SimpleSchema from 'simpl-schema';
|
import SimpleSchema from 'simpl-schema';
|
||||||
|
import ErrorSchema from '/imports/api/properties/subSchemas/ErrorSchema.js';
|
||||||
import VARIABLE_NAME_REGEX from '/imports/constants/VARIABLE_NAME_REGEX.js';
|
import VARIABLE_NAME_REGEX from '/imports/constants/VARIABLE_NAME_REGEX.js';
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@@ -13,7 +14,7 @@ let AttributeSchema = new SimpleSchema({
|
|||||||
variableName: {
|
variableName: {
|
||||||
type: String,
|
type: String,
|
||||||
regEx: VARIABLE_NAME_REGEX,
|
regEx: VARIABLE_NAME_REGEX,
|
||||||
min: 3,
|
min: 2,
|
||||||
defaultValue: 'newAttribute',
|
defaultValue: 'newAttribute',
|
||||||
},
|
},
|
||||||
// How it is displayed and computed is determined by type
|
// How it is displayed and computed is determined by type
|
||||||
@@ -73,18 +74,36 @@ let ComputedOnlyAttributeSchema = new SimpleSchema({
|
|||||||
baseValue: {
|
baseValue: {
|
||||||
type: SimpleSchema.oneOf(Number, String, Boolean),
|
type: SimpleSchema.oneOf(Number, String, Boolean),
|
||||||
optional: true,
|
optional: true,
|
||||||
|
},
|
||||||
|
baseValueErrors: {
|
||||||
|
type: Array,
|
||||||
|
optional: true,
|
||||||
|
},
|
||||||
|
'baseValueErrors.$': {
|
||||||
|
type: ErrorSchema,
|
||||||
},
|
},
|
||||||
// The computed value of the attribute
|
// The computed value of the attribute
|
||||||
value: {
|
value: {
|
||||||
type: SimpleSchema.oneOf(Number, String, Boolean),
|
type: SimpleSchema.oneOf(Number, String, Boolean),
|
||||||
defaultValue: 0,
|
defaultValue: 0,
|
||||||
optional: true,
|
optional: true,
|
||||||
|
},
|
||||||
|
// The computed value of the attribute minus the damage
|
||||||
|
currentValue: {
|
||||||
|
type: SimpleSchema.oneOf(Number, String, Boolean),
|
||||||
|
defaultValue: 0,
|
||||||
|
optional: true,
|
||||||
},
|
},
|
||||||
// The computed modifier, provided the attribute type is `ability`
|
// The computed modifier, provided the attribute type is `ability`
|
||||||
modifier: {
|
modifier: {
|
||||||
type: SimpleSchema.Integer,
|
type: SimpleSchema.Integer,
|
||||||
optional: true,
|
optional: true,
|
||||||
},
|
},
|
||||||
|
// Should this attribute hide
|
||||||
|
hide: {
|
||||||
|
type: Boolean,
|
||||||
|
optional: true,
|
||||||
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
const ComputedAttributeSchema = new SimpleSchema()
|
const ComputedAttributeSchema = new SimpleSchema()
|
||||||
|
|||||||
@@ -9,6 +9,7 @@ let ClassLevelSchema = new SimpleSchema({
|
|||||||
// The name of this class level's variable
|
// The name of this class level's variable
|
||||||
variableName: {
|
variableName: {
|
||||||
type: String,
|
type: String,
|
||||||
|
min: 2,
|
||||||
regEx: VARIABLE_NAME_REGEX,
|
regEx: VARIABLE_NAME_REGEX,
|
||||||
},
|
},
|
||||||
level: {
|
level: {
|
||||||
|
|||||||
@@ -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 };
|
||||||
|
|||||||
@@ -34,11 +34,11 @@ let DamageMultiplierSchema = new SimpleSchema({
|
|||||||
type: String,
|
type: String,
|
||||||
},
|
},
|
||||||
// Tags which must be present to be affected by this multiplier (AND)
|
// Tags which must be present to be affected by this multiplier (AND)
|
||||||
targetTags: {
|
includeTags: {
|
||||||
type: Array,
|
type: Array,
|
||||||
defaultValue: [],
|
defaultValue: [],
|
||||||
},
|
},
|
||||||
'targetTags.$': {
|
'includeTags.$': {
|
||||||
type: String,
|
type: String,
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
import SimpleSchema from 'simpl-schema';
|
import SimpleSchema from 'simpl-schema';
|
||||||
|
import ErrorSchema from '/imports/api/properties/subSchemas/ErrorSchema.js';
|
||||||
/*
|
/*
|
||||||
* Effects are reason-value attached to skills and abilities
|
* Effects are reason-value attached to skills and abilities
|
||||||
* that modify their final value or presentation in some way
|
* that modify their final value or presentation in some way
|
||||||
@@ -18,6 +18,7 @@ let EffectSchema = new SimpleSchema({
|
|||||||
'mul',
|
'mul',
|
||||||
'min',
|
'min',
|
||||||
'max',
|
'max',
|
||||||
|
'set',
|
||||||
'advantage',
|
'advantage',
|
||||||
'disadvantage',
|
'disadvantage',
|
||||||
'passiveAdd',
|
'passiveAdd',
|
||||||
@@ -47,7 +48,15 @@ const ComputedOnlyEffectSchema = new SimpleSchema({
|
|||||||
type: SimpleSchema.oneOf(Number, String, Boolean),
|
type: SimpleSchema.oneOf(Number, String, Boolean),
|
||||||
optional: true,
|
optional: true,
|
||||||
},
|
},
|
||||||
})
|
// The errors encountered while computing the result
|
||||||
|
errors: {
|
||||||
|
type: Array,
|
||||||
|
optional: true,
|
||||||
|
},
|
||||||
|
'errors.$':{
|
||||||
|
type: ErrorSchema,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
const ComputedEffectSchema = new SimpleSchema()
|
const ComputedEffectSchema = new SimpleSchema()
|
||||||
.extend(ComputedOnlyEffectSchema)
|
.extend(ComputedOnlyEffectSchema)
|
||||||
|
|||||||
@@ -24,13 +24,13 @@ const ItemSchema = new SimpleSchema({
|
|||||||
weight: {
|
weight: {
|
||||||
type: Number,
|
type: Number,
|
||||||
min: 0,
|
min: 0,
|
||||||
defaultValue: 0,
|
optional: true,
|
||||||
},
|
},
|
||||||
// Value per item in the stack, in gold pieces
|
// Value per item in the stack, in gold pieces
|
||||||
value: {
|
value: {
|
||||||
type: Number,
|
type: Number,
|
||||||
min: 0,
|
min: 0,
|
||||||
defaultValue: 0,
|
optional: true,
|
||||||
},
|
},
|
||||||
// If this item is equipped, it requires attunement
|
// If this item is equipped, it requires attunement
|
||||||
// Being equipped is `enabled === true`
|
// Being equipped is `enabled === true`
|
||||||
|
|||||||
@@ -3,6 +3,10 @@ import SimpleSchema from 'simpl-schema';
|
|||||||
// These are the rolls made when saves are called for
|
// These are the rolls made when saves are called for
|
||||||
// For the saving throw bonus or proficiency, see ./Skills.js
|
// For the saving throw bonus or proficiency, see ./Skills.js
|
||||||
let SavingThrowSchema = new SimpleSchema ({
|
let SavingThrowSchema = new SimpleSchema ({
|
||||||
|
name: {
|
||||||
|
type: String,
|
||||||
|
optional: true,
|
||||||
|
},
|
||||||
dc: {
|
dc: {
|
||||||
type: String,
|
type: String,
|
||||||
optional: true,
|
optional: true,
|
||||||
|
|||||||
@@ -1,4 +1,6 @@
|
|||||||
import SimpleSchema from 'simpl-schema';
|
import SimpleSchema from 'simpl-schema';
|
||||||
|
import VARIABLE_NAME_REGEX from '/imports/constants/VARIABLE_NAME_REGEX.js';
|
||||||
|
import ErrorSchema from '/imports/api/properties/subSchemas/ErrorSchema.js';
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Skills are anything that results in a modifier to be added to a D20
|
* Skills are anything that results in a modifier to be added to a D20
|
||||||
@@ -13,7 +15,8 @@ let SkillSchema = new SimpleSchema({
|
|||||||
// Ignored for skilltype = save
|
// Ignored for skilltype = save
|
||||||
variableName: {
|
variableName: {
|
||||||
type: String,
|
type: String,
|
||||||
regEx: /^\w*[a-z]\w*$/i,
|
regEx: VARIABLE_NAME_REGEX,
|
||||||
|
min: 2,
|
||||||
},
|
},
|
||||||
// The variable name of the ability this skill relies on
|
// The variable name of the ability this skill relies on
|
||||||
ability: {
|
ability: {
|
||||||
@@ -35,9 +38,9 @@ let SkillSchema = new SimpleSchema({
|
|||||||
],
|
],
|
||||||
defaultValue: 'skill',
|
defaultValue: 'skill',
|
||||||
},
|
},
|
||||||
// If the baseValue is higher than the computed value, it will be used as `value`
|
// The starting value, before effects
|
||||||
baseValue: {
|
baseValueCalculation: {
|
||||||
type: Number,
|
type: String,
|
||||||
optional: true,
|
optional: true,
|
||||||
},
|
},
|
||||||
// The base proficiency of this skill
|
// The base proficiency of this skill
|
||||||
@@ -57,6 +60,18 @@ let ComputedOnlySkillSchema = new SimpleSchema({
|
|||||||
value: {
|
value: {
|
||||||
type: Number,
|
type: Number,
|
||||||
defaultValue: 0,
|
defaultValue: 0,
|
||||||
|
},
|
||||||
|
// The result of baseValueCalculation
|
||||||
|
baseValue: {
|
||||||
|
type: SimpleSchema.oneOf(Number, String, Boolean),
|
||||||
|
optional: true,
|
||||||
|
},
|
||||||
|
baseValueErrors: {
|
||||||
|
type: Array,
|
||||||
|
optional: true,
|
||||||
|
},
|
||||||
|
'baseValueErrors.$': {
|
||||||
|
type: ErrorSchema,
|
||||||
},
|
},
|
||||||
// Computed value added by the ability
|
// Computed value added by the ability
|
||||||
abilityMod: {
|
abilityMod: {
|
||||||
@@ -101,6 +116,11 @@ let ComputedOnlySkillSchema = new SimpleSchema({
|
|||||||
type: SimpleSchema.Integer,
|
type: SimpleSchema.Integer,
|
||||||
optional: true,
|
optional: true,
|
||||||
},
|
},
|
||||||
|
// Should this attribute hide
|
||||||
|
hide: {
|
||||||
|
type: Boolean,
|
||||||
|
optional: true,
|
||||||
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
const ComputedSkillSchema = new SimpleSchema()
|
const ComputedSkillSchema = new SimpleSchema()
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
import SimpleSchema from 'simpl-schema';
|
import SimpleSchema from 'simpl-schema';
|
||||||
|
import ErrorSchema from '/imports/api/properties/subSchemas/ErrorSchema.js';
|
||||||
|
|
||||||
const ToggleSchema = new SimpleSchema({
|
const ToggleSchema = new SimpleSchema({
|
||||||
name: {
|
name: {
|
||||||
@@ -27,6 +28,14 @@ const ComputedOnlyToggleSchema = new SimpleSchema({
|
|||||||
type: SimpleSchema.oneOf(Number, String, Boolean),
|
type: SimpleSchema.oneOf(Number, String, Boolean),
|
||||||
optional: true,
|
optional: true,
|
||||||
},
|
},
|
||||||
|
// The errors encountered while computing the result
|
||||||
|
errors: {
|
||||||
|
type: Array,
|
||||||
|
optional: true,
|
||||||
|
},
|
||||||
|
'errors.$': {
|
||||||
|
type: ErrorSchema,
|
||||||
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
const ComputedToggleSchema = new SimpleSchema()
|
const ComputedToggleSchema = new SimpleSchema()
|
||||||
|
|||||||
14
app/imports/api/properties/subSchemas/ErrorSchema.js
Normal file
14
app/imports/api/properties/subSchemas/ErrorSchema.js
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
import SimpleSchema from 'simpl-schema';
|
||||||
|
|
||||||
|
const ErrorSchema = new SimpleSchema({
|
||||||
|
// The roll that determines how much to change the attribute
|
||||||
|
message: {
|
||||||
|
type: String,
|
||||||
|
},
|
||||||
|
// Who this adjustment applies to
|
||||||
|
type: {
|
||||||
|
type: String,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
export default ErrorSchema;
|
||||||
@@ -113,3 +113,17 @@ export function assertDocViewPermission(doc, userId){
|
|||||||
let root = getRoot(doc);
|
let root = getRoot(doc);
|
||||||
assertViewPermission(root, userId);
|
assertViewPermission(root, userId);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export function assertAdmin(userId){
|
||||||
|
assertIdValid(userId);
|
||||||
|
let user = Meteor.users.findOne(userId, {fields: {roles: 1}});
|
||||||
|
if (!user){
|
||||||
|
throw new Meteor.Error('Permission denied',
|
||||||
|
'UserId does not match any existing user');
|
||||||
|
}
|
||||||
|
let isAdmin = user.roles && user.roles.includes('admin')
|
||||||
|
if (!isAdmin){
|
||||||
|
throw new Meteor.Error('Permission denied',
|
||||||
|
'User does not have the admin role');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
@@ -80,6 +80,7 @@ const userSchema = new SimpleSchema({
|
|||||||
profile: {
|
profile: {
|
||||||
type: Object,
|
type: Object,
|
||||||
blackbox: true,
|
blackbox: true,
|
||||||
|
optional: true,
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
@@ -1,17 +1,18 @@
|
|||||||
const DAMAGE_TYPES = Object.freeze([
|
const DAMAGE_TYPES = Object.freeze([
|
||||||
"bludgeoning",
|
'healing',
|
||||||
"piercing",
|
'bludgeoning',
|
||||||
"slashing",
|
'piercing',
|
||||||
"acid",
|
'slashing',
|
||||||
"cold",
|
'acid',
|
||||||
"fire",
|
'cold',
|
||||||
"force",
|
'fire',
|
||||||
"lightning",
|
'force',
|
||||||
"necrotic",
|
'lightning',
|
||||||
"poison",
|
'necrotic',
|
||||||
"psychic",
|
'poison',
|
||||||
"radiant",
|
'psychic',
|
||||||
"thunder",
|
'radiant',
|
||||||
|
'thunder',
|
||||||
]);
|
]);
|
||||||
|
|
||||||
export default DAMAGE_TYPES;
|
export default DAMAGE_TYPES;
|
||||||
|
|||||||
@@ -1,42 +1,42 @@
|
|||||||
const PROPERTIES = Object.freeze({
|
const PROPERTIES = Object.freeze({
|
||||||
action: {
|
action: {
|
||||||
icon: 'offline_bolt',
|
icon: '$vuetify.icons.action',
|
||||||
name: 'Action'
|
name: 'Action'
|
||||||
},
|
},
|
||||||
adjustment: {
|
adjustment: {
|
||||||
icon: 'warning',
|
icon: '$vuetify.icons.attribute_damage',
|
||||||
name: 'Attribute damage'
|
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'
|
||||||
},
|
},
|
||||||
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'
|
||||||
},
|
},
|
||||||
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: {
|
experience: {
|
||||||
icon: 'add',
|
icon: '$vuetify.icons.experience',
|
||||||
name: 'Experience'
|
name: 'Experience'
|
||||||
},
|
},
|
||||||
feature: {
|
feature: {
|
||||||
@@ -56,23 +56,23 @@ 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: {
|
container: {
|
||||||
@@ -80,11 +80,11 @@ const PROPERTIES = Object.freeze({
|
|||||||
name: 'Container'
|
name: 'Container'
|
||||||
},
|
},
|
||||||
item: {
|
item: {
|
||||||
icon: 'category',
|
icon: '$vuetify.icons.item',
|
||||||
name: 'Item'
|
name: 'Item'
|
||||||
},
|
},
|
||||||
toggle: {
|
toggle: {
|
||||||
icon: 'power_settings_new',
|
icon: '$vuetify.icons.toggle',
|
||||||
name: 'Toggle'
|
name: 'Toggle'
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|||||||
92
app/imports/constants/SVG_ICONS.js
Normal file
92
app/imports/constants/SVG_ICONS.js
Normal file
File diff suppressed because one or more lines are too long
@@ -40,16 +40,23 @@ let libraryIdSchema = new SimpleSchema({
|
|||||||
Meteor.publish('library', function(libraryId){
|
Meteor.publish('library', function(libraryId){
|
||||||
libraryIdSchema.validate({libraryId});
|
libraryIdSchema.validate({libraryId});
|
||||||
this.autorun(function (){
|
this.autorun(function (){
|
||||||
if (!this.userId) return [];
|
let libraryCursor
|
||||||
let libraryCursor = Libraries.find({
|
if (this.userId) {
|
||||||
_id: libraryId,
|
libraryCursor = Libraries.find({
|
||||||
$or: [
|
_id: libraryId,
|
||||||
{owner: this.userId},
|
$or: [
|
||||||
{writers: this.userId},
|
{owner: this.userId},
|
||||||
{readers: this.userId},
|
{writers: this.userId},
|
||||||
{public: true},
|
{readers: this.userId},
|
||||||
],
|
{public: true},
|
||||||
});
|
],
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
libraryCursor = Libraries.find({
|
||||||
|
_id: libraryId,
|
||||||
|
public: true,
|
||||||
|
});
|
||||||
|
}
|
||||||
if (!libraryCursor.count()) return this.ready();
|
if (!libraryCursor.count()) return this.ready();
|
||||||
return [
|
return [
|
||||||
libraryCursor,
|
libraryCursor,
|
||||||
|
|||||||
40
app/imports/ui/components/CoinValue.vue
Normal file
40
app/imports/ui/components/CoinValue.vue
Normal file
@@ -0,0 +1,40 @@
|
|||||||
|
<template lang="html">
|
||||||
|
<div>
|
||||||
|
<span
|
||||||
|
v-if="coinValue.gp || value === 0"
|
||||||
|
>
|
||||||
|
{{ coinValue.gp }} gp
|
||||||
|
</span>
|
||||||
|
<span
|
||||||
|
v-if="coinValue.sp || (coinValue.gp && coinValue.cp)"
|
||||||
|
>
|
||||||
|
{{ coinValue.sp }} sp
|
||||||
|
</span>
|
||||||
|
<span
|
||||||
|
v-if="coinValue.cp"
|
||||||
|
>
|
||||||
|
{{ coinValue.cp }} cp
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import valueToCoins from '/imports/ui/utility/valueToCoins.js';
|
||||||
|
|
||||||
|
export default {
|
||||||
|
props:{
|
||||||
|
value: {
|
||||||
|
type: Number,
|
||||||
|
default: undefined,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
computed:{
|
||||||
|
coinValue(){
|
||||||
|
return valueToCoins(this.value);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="css" scoped>
|
||||||
|
</style>
|
||||||
@@ -1,193 +1,230 @@
|
|||||||
<template lang="html">
|
<template lang="html">
|
||||||
<v-menu
|
<v-menu
|
||||||
:close-on-content-click="false"
|
v-model="opened"
|
||||||
|
:close-on-content-click="false"
|
||||||
transition="slide-y-transition"
|
transition="slide-y-transition"
|
||||||
lazy
|
lazy
|
||||||
v-model="opened"
|
left
|
||||||
>
|
>
|
||||||
<v-btn
|
<v-btn
|
||||||
slot="activator"
|
slot="activator"
|
||||||
icon
|
icon
|
||||||
>
|
>
|
||||||
<v-icon>format_paint</v-icon>
|
<v-icon>format_paint</v-icon>
|
||||||
</v-btn>
|
</v-btn>
|
||||||
<v-card class="overflow-hidden">
|
<v-card class="overflow-hidden">
|
||||||
<v-card-text>
|
<v-card-text>
|
||||||
<v-item-group v-model="color" mandatory>
|
<v-layout
|
||||||
<v-layout row wrap>
|
row
|
||||||
<v-item
|
wrap
|
||||||
v-for="kebabColorOption in colors"
|
>
|
||||||
:key="kebabColorOption"
|
<div
|
||||||
:value="kebabToCamelCase(kebabColorOption)"
|
v-for="colorOption in colors"
|
||||||
>
|
:key="colorOption"
|
||||||
<div
|
:class="[colorOption, shade]"
|
||||||
slot-scope="{ active, toggle }"
|
class="color-swatch d-flex align-center"
|
||||||
:class="[kebabColorOption, kebabShade]"
|
@click="color = colorOption"
|
||||||
class="color-swatch d-flex align-center"
|
>
|
||||||
@click="toggle"
|
<v-scroll-y-transition>
|
||||||
>
|
<v-icon
|
||||||
<v-scroll-y-transition>
|
v-if="kebabColor === colorOption"
|
||||||
<v-icon
|
:class="{dark: isDark(colorOption, shade)}"
|
||||||
v-if="active"
|
>
|
||||||
:class="{dark: isDark(kebabColorOption, kebabShade)}"
|
check
|
||||||
>check</v-icon>
|
</v-icon>
|
||||||
</v-scroll-y-transition>
|
</v-scroll-y-transition>
|
||||||
</div>
|
</div>
|
||||||
</v-item>
|
<div
|
||||||
<div class="spacer" v-for="i in 8"/>
|
v-for="i in 8"
|
||||||
</v-layout>
|
:key="i"
|
||||||
</v-item-group>
|
class="spacer"
|
||||||
<v-item-group class="mt-2" v-model="shade" mandatory>
|
/>
|
||||||
<v-layout wrap>
|
</v-layout>
|
||||||
<v-item
|
<v-fade-transition>
|
||||||
v-for="kebabShadeOption in shades"
|
<v-layout
|
||||||
:key="kebabShadeOption"
|
v-show="color"
|
||||||
:value="kebabToCamelCase(kebabShadeOption)"
|
wrap
|
||||||
>
|
class="mt-2"
|
||||||
<div
|
>
|
||||||
slot-scope="{ active, toggle }"
|
<div
|
||||||
:class="[kebabColor, kebabShadeOption]"
|
v-for="shadeOption in shades"
|
||||||
class="shade-swatch d-flex align-center"
|
:key="shadeOption"
|
||||||
@click="toggle"
|
:class="[kebabColor, shadeOption]"
|
||||||
>
|
class="shade-swatch d-flex align-center"
|
||||||
<v-scroll-y-transition>
|
@click="shade = shadeOption"
|
||||||
<v-icon
|
>
|
||||||
v-if="active"
|
<v-scroll-y-transition>
|
||||||
:class="{dark: isDark(kebabColor, kebabShadeOption)}"
|
<v-icon
|
||||||
>check</v-icon>
|
v-if="kebabShade === shadeOption"
|
||||||
</v-scroll-y-transition>
|
:class="isDark(color, shade) ? 'dark' : 'light'"
|
||||||
</div>
|
>
|
||||||
</v-item>
|
check
|
||||||
<div class="spacer" v-for="i in 8"/>
|
</v-icon>
|
||||||
</v-layout>
|
</v-scroll-y-transition>
|
||||||
</v-item-group>
|
</div>
|
||||||
</v-card-text>
|
<div
|
||||||
<v-card-actions>
|
v-for="i in 8"
|
||||||
<v-spacer/>
|
:key="i"
|
||||||
<v-btn flat @click="opened = false">Done</v-btn>
|
class="spacer"
|
||||||
</v-card-actions>
|
/>
|
||||||
</v-card>
|
</v-layout>
|
||||||
|
</v-fade-transition>
|
||||||
|
</v-card-text>
|
||||||
|
<v-card-actions>
|
||||||
|
<v-btn
|
||||||
|
flat
|
||||||
|
@click="$emit('input')"
|
||||||
|
>
|
||||||
|
Clear
|
||||||
|
</v-btn>
|
||||||
|
<v-spacer />
|
||||||
|
<v-btn
|
||||||
|
flat
|
||||||
|
@click="opened = false"
|
||||||
|
>
|
||||||
|
Done
|
||||||
|
</v-btn>
|
||||||
|
</v-card-actions>
|
||||||
|
</v-card>
|
||||||
</v-menu>
|
</v-menu>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import isDarkColor from '/imports/ui/utility/isDarkColor.js';
|
import isDarkColor from '/imports/ui/utility/isDarkColor.js';
|
||||||
import vuetifyColors from 'vuetify/es5/util/colors';
|
import vuetifyColors from 'vuetify/es5/util/colors';
|
||||||
import { kebabToCamelCase, camelToKebabCase } from '/imports/ui/utility/swapCase.js';
|
import { kebabToCamelCase, camelToKebabCase } from '/imports/ui/utility/swapCase.js';
|
||||||
|
|
||||||
function colorToHex(color, shade = 'base'){
|
function colorToHex(color, shade = 'base'){
|
||||||
color = kebabToCamelCase(color);
|
if (!color) return;
|
||||||
shade = kebabToCamelCase(shade);
|
color = kebabToCamelCase(color);
|
||||||
return vuetifyColors[color][shade];
|
shade = kebabToCamelCase(shade);
|
||||||
};
|
return vuetifyColors[color] && vuetifyColors[color][shade];
|
||||||
|
}
|
||||||
|
|
||||||
// Create an index of hex colors and what color/shade combination makes them
|
// Create an index of hex colors and what color/shade combination makes them
|
||||||
let colorIndex = {};
|
let colorIndex = {};
|
||||||
for (let color in vuetifyColors){
|
for (let color in vuetifyColors){
|
||||||
for (let shade in vuetifyColors[color]){
|
color = kebabToCamelCase(color);
|
||||||
colorIndex[vuetifyColors[color][shade]] = {color, shade};
|
for (let shade in vuetifyColors[color]){
|
||||||
}
|
shade = kebabToCamelCase(shade);
|
||||||
}
|
colorIndex[vuetifyColors[color][shade]] = {color, shade};
|
||||||
function hexToColor(hex){
|
}
|
||||||
return colorIndex[hex.toLowerCase()];
|
}
|
||||||
};
|
function hexToColor(hex){
|
||||||
|
if (!hex) return undefined;
|
||||||
|
return colorIndex[hex.toLowerCase()];
|
||||||
|
}
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
props: {
|
props: {
|
||||||
value: String, //hex string
|
//hex string
|
||||||
},
|
value: {
|
||||||
data(){ return {
|
type: String,
|
||||||
colors: [
|
default: undefined,
|
||||||
'red',
|
},
|
||||||
'pink',
|
},
|
||||||
'purple',
|
data(){ return {
|
||||||
'deep-purple',
|
colors: [
|
||||||
'indigo',
|
'red',
|
||||||
'blue',
|
'pink',
|
||||||
'light-blue',
|
'purple',
|
||||||
'cyan',
|
'deep-purple',
|
||||||
'teal',
|
'indigo',
|
||||||
'green',
|
'blue',
|
||||||
'light-green',
|
'light-blue',
|
||||||
'lime',
|
'cyan',
|
||||||
'yellow',
|
'teal',
|
||||||
'amber',
|
'green',
|
||||||
'orange',
|
'light-green',
|
||||||
'deep-orange',
|
'lime',
|
||||||
'brown',
|
'yellow',
|
||||||
'grey',
|
'amber',
|
||||||
],
|
'orange',
|
||||||
shades: [
|
'deep-orange',
|
||||||
'lighten-4',
|
'brown',
|
||||||
'lighten-3',
|
'grey',
|
||||||
'lighten-2',
|
],
|
||||||
'lighten-1',
|
shades: [
|
||||||
'base',
|
'lighten-4',
|
||||||
'darken-1',
|
'lighten-3',
|
||||||
'darken-2',
|
'lighten-2',
|
||||||
'darken-3',
|
'lighten-1',
|
||||||
'darken-4',
|
'base',
|
||||||
],
|
'darken-1',
|
||||||
opened: false,
|
'darken-2',
|
||||||
}},
|
'darken-3',
|
||||||
methods: {
|
'darken-4',
|
||||||
isDark(kebabColor, kebabShade){
|
],
|
||||||
color = colorToHex(kebabColor, kebabShade);
|
opened: false,
|
||||||
return isDarkColor(color);
|
}},
|
||||||
},
|
computed: {
|
||||||
kebabToCamelCase,
|
combination (){
|
||||||
},
|
if (!this.value) return;
|
||||||
computed: {
|
return hexToColor(this.value) || {};
|
||||||
combination (){
|
},
|
||||||
return hexToColor(this.value) || {};
|
color: {
|
||||||
},
|
get(){
|
||||||
color: {
|
return this.combination && this.combination.color;
|
||||||
get(){
|
},
|
||||||
return this.combination.color;
|
set(newColor){
|
||||||
},
|
this.$emit('input', colorToHex(newColor, this.shade));
|
||||||
set(newColor){
|
},
|
||||||
this.$emit('input', colorToHex(newColor, this.shade));
|
},
|
||||||
},
|
shade: {
|
||||||
},
|
get(){
|
||||||
shade: {
|
return this.combination && this.combination.shade;
|
||||||
get(){
|
},
|
||||||
return this.combination.shade;
|
set(newShade){
|
||||||
},
|
this.$emit('input', colorToHex(this.color, newShade));
|
||||||
set(newShade){
|
},
|
||||||
this.$emit('input', colorToHex(this.color, newShade));
|
},
|
||||||
},
|
kebabColor(){
|
||||||
},
|
return camelToKebabCase(this.color);
|
||||||
kebabColor(){
|
},
|
||||||
return camelToKebabCase(this.color);
|
kebabShade(){
|
||||||
},
|
return camelToKebabCase(this.shade);
|
||||||
kebabShade(){
|
},
|
||||||
return camelToKebabCase(this.shade);
|
},
|
||||||
},
|
methods: {
|
||||||
},
|
isDark(kebabColor, kebabShade){
|
||||||
};
|
let color = colorToHex(kebabColor, kebabShade);
|
||||||
|
return isDarkColor(color);
|
||||||
|
},
|
||||||
|
kebabToCamelCase,
|
||||||
|
},
|
||||||
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="css" scoped>
|
<style lang="css" scoped>
|
||||||
.color-swatch, .shade-swatch {
|
.color-swatch, .shade-swatch {
|
||||||
height: 30px;
|
height: 30px;
|
||||||
width: 30px;
|
width: 30px;
|
||||||
flex-grow: 1;
|
flex-grow: 1;
|
||||||
}
|
cursor: pointer;
|
||||||
.v-icon {
|
transition: all 0.2s linear;
|
||||||
height: 30px;
|
}
|
||||||
}
|
.color-swatch:hover{
|
||||||
.v-icon {
|
z-index: 1;
|
||||||
color: black;
|
transform: scale(1.1);
|
||||||
}
|
box-shadow: 0px 2px 1px -1px rgba(0,0,0,0.2),
|
||||||
.dark.v-icon {
|
0px 1px 1px 0px rgba(0,0,0,0.14),
|
||||||
color: white;
|
0px 1px 3px 0px rgba(0,0,0,0.12);
|
||||||
}
|
}
|
||||||
.layout {
|
.v-icon {
|
||||||
max-width: 270px;
|
height: 30px;
|
||||||
}
|
}
|
||||||
.spacer {
|
.v-icon {
|
||||||
width: 30px;
|
color: black;
|
||||||
height: 0;
|
}
|
||||||
flex-grow: 1;
|
.dark.v-icon {
|
||||||
}
|
color: white;
|
||||||
|
}
|
||||||
|
.layout {
|
||||||
|
max-width: 270px;
|
||||||
|
}
|
||||||
|
.spacer {
|
||||||
|
width: 30px;
|
||||||
|
height: 0;
|
||||||
|
flex-grow: 1;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
@@ -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>
|
|
||||||
58
app/imports/ui/components/IncrementButton.vue
Normal file
58
app/imports/ui/components/IncrementButton.vue
Normal file
@@ -0,0 +1,58 @@
|
|||||||
|
<template lang="html">
|
||||||
|
<v-menu
|
||||||
|
v-model="open"
|
||||||
|
origin="center center"
|
||||||
|
transition="scale-transition"
|
||||||
|
:nudge-left="130"
|
||||||
|
:min-width="305"
|
||||||
|
:close-on-content-click="false"
|
||||||
|
>
|
||||||
|
<template #activator="{ on }">
|
||||||
|
<v-btn
|
||||||
|
v-bind="$attrs"
|
||||||
|
v-on="on"
|
||||||
|
>
|
||||||
|
<slot>
|
||||||
|
<v-icon>add</v-icon>
|
||||||
|
</slot>
|
||||||
|
</v-btn>
|
||||||
|
</template>
|
||||||
|
<v-card>
|
||||||
|
<increment-menu
|
||||||
|
flat
|
||||||
|
:value="value"
|
||||||
|
:open="open"
|
||||||
|
@change="changeIncrementMenu"
|
||||||
|
@close="open = false"
|
||||||
|
/>
|
||||||
|
</v-card>
|
||||||
|
</v-menu>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import IncrementMenu from '/imports/ui/components/IncrementMenu.vue';
|
||||||
|
|
||||||
|
export default {
|
||||||
|
components: {
|
||||||
|
IncrementMenu,
|
||||||
|
},
|
||||||
|
props: {
|
||||||
|
value: {
|
||||||
|
type: Number,
|
||||||
|
required: true,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
data(){return {
|
||||||
|
open: false
|
||||||
|
}},
|
||||||
|
methods: {
|
||||||
|
changeIncrementMenu(e){
|
||||||
|
this.$emit('change', e);
|
||||||
|
this.open = false;
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="css" scoped>
|
||||||
|
</style>
|
||||||
166
app/imports/ui/components/IncrementMenu.vue
Normal file
166
app/imports/ui/components/IncrementMenu.vue
Normal file
@@ -0,0 +1,166 @@
|
|||||||
|
<template>
|
||||||
|
<v-layout
|
||||||
|
row
|
||||||
|
align-center
|
||||||
|
justify-center
|
||||||
|
class="increment-menu"
|
||||||
|
>
|
||||||
|
<v-spacer />
|
||||||
|
<v-btn-toggle
|
||||||
|
:value="operation === 'add' ? 0: operation === 'subtract' ? 1 : null"
|
||||||
|
class="mx-2"
|
||||||
|
@click="$refs.editInput.focus()"
|
||||||
|
>
|
||||||
|
<v-btn
|
||||||
|
:disabled="context.editPermission === false"
|
||||||
|
class="filled"
|
||||||
|
@click="toggleAdd(); $nextTick(() => $refs.editInput.focus())"
|
||||||
|
>
|
||||||
|
<v-icon>add</v-icon>
|
||||||
|
</v-btn>
|
||||||
|
<v-btn
|
||||||
|
:disabled="context.editPermission === false"
|
||||||
|
class="filled"
|
||||||
|
@click="toggleSubtract(); $nextTick(() => $refs.editInput.focus())"
|
||||||
|
>
|
||||||
|
<v-icon>remove</v-icon>
|
||||||
|
</v-btn>
|
||||||
|
</v-btn-toggle>
|
||||||
|
<v-text-field
|
||||||
|
ref="editInput"
|
||||||
|
:solo="!flat"
|
||||||
|
:class="flat && 'ma-0 pa-0'"
|
||||||
|
hide-details
|
||||||
|
type="number"
|
||||||
|
style="max-width: 120px;"
|
||||||
|
min="0"
|
||||||
|
:value="editValue"
|
||||||
|
:prepend-inner-icon="operationIcon(operation)"
|
||||||
|
:disabled="context.editPermission === false"
|
||||||
|
@focus="$event.target.select()"
|
||||||
|
@keypress="keypress"
|
||||||
|
@input="input"
|
||||||
|
/>
|
||||||
|
<v-btn
|
||||||
|
:small="!flat"
|
||||||
|
:fab="!flat"
|
||||||
|
:flat="flat"
|
||||||
|
:icon="flat"
|
||||||
|
class="filled"
|
||||||
|
@click="commitEdit"
|
||||||
|
>
|
||||||
|
<v-icon>done</v-icon>
|
||||||
|
</v-btn>
|
||||||
|
<v-btn
|
||||||
|
:small="!flat"
|
||||||
|
:fab="!flat"
|
||||||
|
:flat="flat"
|
||||||
|
:icon="flat"
|
||||||
|
class="mx-0 filled"
|
||||||
|
@click="cancelEdit"
|
||||||
|
>
|
||||||
|
<v-icon>close</v-icon>
|
||||||
|
</v-btn>
|
||||||
|
<v-spacer />
|
||||||
|
</v-layout>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
inject: {
|
||||||
|
context: { default: {} }
|
||||||
|
},
|
||||||
|
props: {
|
||||||
|
value: {
|
||||||
|
type: Number,
|
||||||
|
required: true,
|
||||||
|
},
|
||||||
|
open: Boolean,
|
||||||
|
flat: Boolean,
|
||||||
|
},
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
editValue: 0,
|
||||||
|
operation: 'set',
|
||||||
|
hover: false,
|
||||||
|
};
|
||||||
|
},
|
||||||
|
watch: {
|
||||||
|
open(newValue){
|
||||||
|
if (newValue){
|
||||||
|
this.resetData();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
resetData(){
|
||||||
|
this.editValue = this.value;
|
||||||
|
this.operation = 'set';
|
||||||
|
// this.$nextTick didn't work, using timeout instead did
|
||||||
|
setTimeout(() => {
|
||||||
|
if (this.$refs.editInput){
|
||||||
|
this.$refs.editInput.focus();
|
||||||
|
}
|
||||||
|
}, 100);
|
||||||
|
},
|
||||||
|
cancelEdit() {
|
||||||
|
this.$emit('close');
|
||||||
|
},
|
||||||
|
commitEdit() {
|
||||||
|
this.editing = false;
|
||||||
|
let value = +this.$refs.editInput.lazyValue;
|
||||||
|
if (this.operation === 'add') {
|
||||||
|
value = -value;
|
||||||
|
}
|
||||||
|
let type = this.operation === 'set' ? 'set' : 'increment';
|
||||||
|
this.$emit('change', { type, value });
|
||||||
|
},
|
||||||
|
operationIcon(operation) {
|
||||||
|
switch (operation) {
|
||||||
|
case 'set':
|
||||||
|
return 'forward';
|
||||||
|
case 'add':
|
||||||
|
return 'add';
|
||||||
|
case 'subtract':
|
||||||
|
return 'remove';
|
||||||
|
}
|
||||||
|
},
|
||||||
|
toggleAdd(){
|
||||||
|
this.operation = (this.operation === 'add') ? 'set': 'add';
|
||||||
|
},
|
||||||
|
toggleSubtract(){
|
||||||
|
this.operation = (this.operation === 'subtract') ? 'set': 'subtract';
|
||||||
|
},
|
||||||
|
keypress(event) {
|
||||||
|
let digitsOnly = /[0-9]/;
|
||||||
|
let key = event.key;
|
||||||
|
if (key === '+') {
|
||||||
|
this.toggleAdd();
|
||||||
|
event.preventDefault();
|
||||||
|
} else if (key === '-') {
|
||||||
|
this.toggleSubtract();
|
||||||
|
event.preventDefault();
|
||||||
|
} else if (key === 'Enter') {
|
||||||
|
this.commitEdit();
|
||||||
|
} else if (!digitsOnly.test(key)){
|
||||||
|
event.preventDefault();
|
||||||
|
}
|
||||||
|
},
|
||||||
|
input(value){
|
||||||
|
if (+value < 0){
|
||||||
|
this.editValue = -value;
|
||||||
|
this.operation = 'subtract';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
.filled.theme--light {
|
||||||
|
background: #fff !important;
|
||||||
|
}
|
||||||
|
.filled.theme--dark {
|
||||||
|
background: #424242 !important;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
@@ -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" />
|
||||||
|
|||||||
43
app/imports/ui/components/TreeDetailLayout.vue
Normal file
43
app/imports/ui/components/TreeDetailLayout.vue
Normal file
@@ -0,0 +1,43 @@
|
|||||||
|
<template lang="html">
|
||||||
|
<div
|
||||||
|
class="layout row"
|
||||||
|
style="height: 100%;"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
class="layout column justify-start"
|
||||||
|
:style="computedTreeStyle"
|
||||||
|
>
|
||||||
|
<slot name="tree" />
|
||||||
|
</div>
|
||||||
|
<template v-if="$vuetify.breakpoint.mdAndUp">
|
||||||
|
<v-divider vertical />
|
||||||
|
<div
|
||||||
|
class="flex layout column"
|
||||||
|
style="background-color: inherit; overflow: hidden;"
|
||||||
|
data-id="selected-node-card"
|
||||||
|
>
|
||||||
|
<slot name="detail" />
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
computed:{
|
||||||
|
computedTreeStyle(){
|
||||||
|
if (this.$vuetify.breakpoint.smAndDown) return;
|
||||||
|
let style = 'flex-shrink: 0; flex-grow: 0; ';
|
||||||
|
if (this.$vuetify.breakpoint.xlOnly){
|
||||||
|
style += 'width: 400px;'
|
||||||
|
} else {
|
||||||
|
style += 'width: 320px;'
|
||||||
|
}
|
||||||
|
return style;
|
||||||
|
},
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="css" scoped>
|
||||||
|
</style>
|
||||||
131
app/imports/ui/components/global/IconPicker.vue
Normal file
131
app/imports/ui/components/global/IconPicker.vue
Normal file
@@ -0,0 +1,131 @@
|
|||||||
|
<template lang="html">
|
||||||
|
<v-menu
|
||||||
|
v-model="menu"
|
||||||
|
:close-on-content-click="false"
|
||||||
|
lazy
|
||||||
|
transition="slide-y-transition"
|
||||||
|
min-width="290px"
|
||||||
|
style="overflow-y: auto;"
|
||||||
|
>
|
||||||
|
<template #activator="{ on }">
|
||||||
|
<div class="layout row align-center">
|
||||||
|
<v-label>{{ label }}</v-label>
|
||||||
|
<v-btn
|
||||||
|
:loading="loading"
|
||||||
|
large
|
||||||
|
icon
|
||||||
|
v-on="on"
|
||||||
|
>
|
||||||
|
<svg-icon
|
||||||
|
v-if="safeValue && safeValue.shape"
|
||||||
|
large
|
||||||
|
:shape="safeValue.shape"
|
||||||
|
/>
|
||||||
|
<v-icon
|
||||||
|
v-else
|
||||||
|
large
|
||||||
|
>
|
||||||
|
highlight_alt
|
||||||
|
</v-icon>
|
||||||
|
</v-btn>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
<v-card>
|
||||||
|
<v-card-text>
|
||||||
|
<div class="layout row">
|
||||||
|
<text-field
|
||||||
|
ref="iconSearchField"
|
||||||
|
label="Search icons"
|
||||||
|
append-icon="search"
|
||||||
|
clearable
|
||||||
|
:value="searchString"
|
||||||
|
@change="search"
|
||||||
|
/>
|
||||||
|
<v-btn
|
||||||
|
icon
|
||||||
|
@click="select()"
|
||||||
|
>
|
||||||
|
<v-icon>
|
||||||
|
cancel
|
||||||
|
</v-icon>
|
||||||
|
</v-btn>
|
||||||
|
</div>
|
||||||
|
<v-layout
|
||||||
|
row
|
||||||
|
wrap
|
||||||
|
style="max-height: 400px; overflow-y: auto;"
|
||||||
|
>
|
||||||
|
<v-scale-transition
|
||||||
|
group
|
||||||
|
hide-on-leave
|
||||||
|
>
|
||||||
|
<v-btn
|
||||||
|
v-for="icon in icons"
|
||||||
|
:key="icon._id"
|
||||||
|
icon
|
||||||
|
large
|
||||||
|
@click="select(icon)"
|
||||||
|
>
|
||||||
|
<svg-icon
|
||||||
|
:shape="icon.shape"
|
||||||
|
x-large
|
||||||
|
/>
|
||||||
|
</v-btn>
|
||||||
|
</v-scale-transition>
|
||||||
|
</v-layout>
|
||||||
|
</v-card-text>
|
||||||
|
</v-card>
|
||||||
|
</v-menu>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import SvgIcon from '/imports/ui/components/global/SvgIcon.vue';
|
||||||
|
import SmartInput from '/imports/ui/components/global/SmartInputMixin.js';
|
||||||
|
import { findIcons } from '/imports/api/icons/Icons.js';
|
||||||
|
|
||||||
|
export default {
|
||||||
|
components: {
|
||||||
|
SvgIcon,
|
||||||
|
},
|
||||||
|
mixins: [SmartInput],
|
||||||
|
props: {
|
||||||
|
label: {
|
||||||
|
type: String,
|
||||||
|
default: 'Icon',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
data(){return {
|
||||||
|
menu: false,
|
||||||
|
searchString: '',
|
||||||
|
icons: [],
|
||||||
|
};},
|
||||||
|
watch: {
|
||||||
|
menu(value){
|
||||||
|
if (value){
|
||||||
|
setTimeout(() => {
|
||||||
|
if (this.$refs.iconSearchField){
|
||||||
|
this.$refs.iconSearchField.$children[0].focus();
|
||||||
|
}
|
||||||
|
}, 100);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
search(value, ack){
|
||||||
|
this.searchString = value;
|
||||||
|
this.icons = [];
|
||||||
|
findIcons.call({search: value}, (error, result) => {
|
||||||
|
ack(error);
|
||||||
|
this.icons = result;
|
||||||
|
});
|
||||||
|
},
|
||||||
|
select(icon){
|
||||||
|
this.menu = false;
|
||||||
|
this.change(icon);
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="css" scoped>
|
||||||
|
</style>
|
||||||
@@ -23,7 +23,7 @@ export default {
|
|||||||
inputValue: this.value,
|
inputValue: this.value,
|
||||||
};},
|
};},
|
||||||
props: {
|
props: {
|
||||||
value: [String, Number, Date, Array, Boolean],
|
value: [String, Number, Date, Array, Object, Boolean],
|
||||||
errorMessages: [String, Array],
|
errorMessages: [String, Array],
|
||||||
disabled: Boolean,
|
disabled: Boolean,
|
||||||
},
|
},
|
||||||
|
|||||||
97
app/imports/ui/components/global/SvgIcon.vue
Normal file
97
app/imports/ui/components/global/SvgIcon.vue
Normal file
@@ -0,0 +1,97 @@
|
|||||||
|
<template lang="html">
|
||||||
|
<i
|
||||||
|
ref="icon"
|
||||||
|
aria-hidden
|
||||||
|
role="img"
|
||||||
|
class="v-icon"
|
||||||
|
:class="themeClasses"
|
||||||
|
:style="color && `color: ${color}`"
|
||||||
|
>
|
||||||
|
<svg
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
viewBox="0 0 512 512"
|
||||||
|
:style="`height: ${size}; width: ${size}`"
|
||||||
|
>
|
||||||
|
<path
|
||||||
|
:d="shape"
|
||||||
|
/>
|
||||||
|
</svg>
|
||||||
|
</i>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
const SIZE_MAP = {
|
||||||
|
xSmall: '12px',
|
||||||
|
small: '16px',
|
||||||
|
default: '24px',
|
||||||
|
medium: '28px',
|
||||||
|
large: '36px',
|
||||||
|
xLarge: '40px',
|
||||||
|
}
|
||||||
|
export default {
|
||||||
|
inject: {
|
||||||
|
theme: {
|
||||||
|
default: {
|
||||||
|
isDark: false,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
props: {
|
||||||
|
shape: {
|
||||||
|
type: String,
|
||||||
|
default: '',
|
||||||
|
},
|
||||||
|
color: {
|
||||||
|
type: String,
|
||||||
|
default: undefined,
|
||||||
|
},
|
||||||
|
xSmall: Boolean,
|
||||||
|
small: Boolean,
|
||||||
|
medium: Boolean,
|
||||||
|
large: Boolean,
|
||||||
|
xLarge: Boolean,
|
||||||
|
},
|
||||||
|
data(){return {
|
||||||
|
inheritedSize: undefined,
|
||||||
|
}},
|
||||||
|
computed: {
|
||||||
|
isDark () {
|
||||||
|
if (this.dark === true) {
|
||||||
|
// explicitly dark
|
||||||
|
return true
|
||||||
|
} else if (this.light === true) {
|
||||||
|
// explicitly light
|
||||||
|
return false
|
||||||
|
} else {
|
||||||
|
// inherit from parent, or default false if there is none
|
||||||
|
return this.theme.isDark
|
||||||
|
}
|
||||||
|
},
|
||||||
|
themeClasses() {
|
||||||
|
return {
|
||||||
|
'theme--dark': this.isDark,
|
||||||
|
'theme--light': !this.isDark,
|
||||||
|
}
|
||||||
|
},
|
||||||
|
size() {
|
||||||
|
if (this.inheritedSize) return this.inheritedSize;
|
||||||
|
if (this.xSmall) return SIZE_MAP['xSmall'];
|
||||||
|
if (this.small) return SIZE_MAP['small'];
|
||||||
|
if (this.medium) return SIZE_MAP['medium'];
|
||||||
|
if (this.large) return SIZE_MAP['large'];
|
||||||
|
if (this.xLarge) return SIZE_MAP['xLarge'];
|
||||||
|
return SIZE_MAP['default'];
|
||||||
|
},
|
||||||
|
},
|
||||||
|
mounted(){
|
||||||
|
this.inheritedSize = this.$refs.icon.style.fontSize;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="css" scoped>
|
||||||
|
svg {
|
||||||
|
color: inherit;
|
||||||
|
fill: currentColor;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
@@ -21,7 +21,7 @@
|
|||||||
props: {
|
props: {
|
||||||
autoGrow: {
|
autoGrow: {
|
||||||
type: Boolean,
|
type: Boolean,
|
||||||
default: true,
|
default: false,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -1,17 +1,21 @@
|
|||||||
import Vue from 'vue';
|
import Vue from 'vue';
|
||||||
// Global components
|
// Global components
|
||||||
import DatePicker from '/imports/ui/components/global/DatePicker.vue';
|
import DatePicker from '/imports/ui/components/global/DatePicker.vue';
|
||||||
|
import IconPicker from '/imports/ui/components/global/IconPicker.vue';
|
||||||
import TextField from '/imports/ui/components/global/TextField.vue';
|
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 SmartCheckbox from '/imports/ui/components/global/SmartCheckbox.vue';
|
||||||
import SmartSwitch from '/imports/ui/components/global/SmartSwitch.vue';
|
import SmartSwitch from '/imports/ui/components/global/SmartSwitch.vue';
|
||||||
|
import SvgIcon from '/imports/ui/components/global/SvgIcon.vue';
|
||||||
|
|
||||||
Vue.component('DatePicker', DatePicker);
|
Vue.component('DatePicker', DatePicker);
|
||||||
|
Vue.component('IconPicker', IconPicker);
|
||||||
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('SmartCheckbox', SmartCheckbox);
|
||||||
Vue.component('SmartSwitch', SmartSwitch);
|
Vue.component('SmartSwitch', SmartSwitch);
|
||||||
|
Vue.component('SvgIcon', SvgIcon);
|
||||||
|
|||||||
169
app/imports/ui/components/propertyToolbar.vue
Normal file
169
app/imports/ui/components/propertyToolbar.vue
Normal file
@@ -0,0 +1,169 @@
|
|||||||
|
<template lang="html">
|
||||||
|
<v-toolbar
|
||||||
|
:color="color || 'secondary'"
|
||||||
|
:dark="isDark"
|
||||||
|
:light="!isDark"
|
||||||
|
:flat="flat"
|
||||||
|
>
|
||||||
|
<property-icon
|
||||||
|
:model="model"
|
||||||
|
class="mr-2"
|
||||||
|
/>
|
||||||
|
<v-toolbar-title v-if="model">
|
||||||
|
{{ title }}
|
||||||
|
</v-toolbar-title>
|
||||||
|
<v-spacer />
|
||||||
|
<v-slide-y-transition
|
||||||
|
hide-on-leave
|
||||||
|
>
|
||||||
|
<v-layout
|
||||||
|
v-if="editing && model"
|
||||||
|
key="edit-buttons"
|
||||||
|
>
|
||||||
|
<v-spacer />
|
||||||
|
<color-picker
|
||||||
|
v-if="$listeners && $listeners['color-changed']"
|
||||||
|
:value="model.color"
|
||||||
|
@input="colorChanged"
|
||||||
|
/>
|
||||||
|
<v-menu
|
||||||
|
v-if="$listeners && (
|
||||||
|
$listeners.move ||
|
||||||
|
$listeners.duplicate ||
|
||||||
|
$listeners.remove
|
||||||
|
)"
|
||||||
|
bottom
|
||||||
|
left
|
||||||
|
transition="slide-y-transition"
|
||||||
|
>
|
||||||
|
<template #activator="{ on }">
|
||||||
|
<v-btn
|
||||||
|
icon
|
||||||
|
data-id="property-toolbar-menu-button"
|
||||||
|
v-on="on"
|
||||||
|
>
|
||||||
|
<v-icon>more_vert</v-icon>
|
||||||
|
</v-btn>
|
||||||
|
</template>
|
||||||
|
<v-list>
|
||||||
|
<v-list-tile
|
||||||
|
v-if="$listeners && $listeners.duplicate"
|
||||||
|
@click="$emit('duplicate')"
|
||||||
|
>
|
||||||
|
<v-list-tile-content>
|
||||||
|
<v-list-tile-title>
|
||||||
|
Duplicate
|
||||||
|
</v-list-tile-title>
|
||||||
|
</v-list-tile-content>
|
||||||
|
<v-list-tile-action>
|
||||||
|
<v-icon>file_copy</v-icon>
|
||||||
|
</v-list-tile-action>
|
||||||
|
</v-list-tile>
|
||||||
|
<v-list-tile
|
||||||
|
v-if="$listeners && $listeners.move"
|
||||||
|
@click="$emit('move')"
|
||||||
|
>
|
||||||
|
<v-list-tile-content>
|
||||||
|
<v-list-tile-title>
|
||||||
|
Move
|
||||||
|
</v-list-tile-title>
|
||||||
|
</v-list-tile-content>
|
||||||
|
<v-list-tile-action>
|
||||||
|
<v-icon>send</v-icon>
|
||||||
|
</v-list-tile-action>
|
||||||
|
</v-list-tile>
|
||||||
|
<v-list-tile
|
||||||
|
v-if="$listeners && $listeners.remove"
|
||||||
|
@click="$emit('remove')"
|
||||||
|
>
|
||||||
|
<v-list-tile-content>
|
||||||
|
<v-list-tile-title>
|
||||||
|
Delete
|
||||||
|
</v-list-tile-title>
|
||||||
|
</v-list-tile-content>
|
||||||
|
<v-list-tile-action>
|
||||||
|
<v-icon>delete</v-icon>
|
||||||
|
</v-list-tile-action>
|
||||||
|
</v-list-tile>
|
||||||
|
</v-list>
|
||||||
|
</v-menu>
|
||||||
|
</v-layout>
|
||||||
|
<v-layout
|
||||||
|
v-else
|
||||||
|
key="blank"
|
||||||
|
/>
|
||||||
|
</v-slide-y-transition>
|
||||||
|
<v-btn
|
||||||
|
icon
|
||||||
|
@click="$emit('toggle-editing')"
|
||||||
|
>
|
||||||
|
<v-slide-y-transition
|
||||||
|
hide-on-leave
|
||||||
|
>
|
||||||
|
<v-icon
|
||||||
|
v-if="editing"
|
||||||
|
key="doneIcon"
|
||||||
|
>
|
||||||
|
done
|
||||||
|
</v-icon>
|
||||||
|
<v-icon
|
||||||
|
v-else
|
||||||
|
key="createIcon"
|
||||||
|
>
|
||||||
|
create
|
||||||
|
</v-icon>
|
||||||
|
</v-slide-y-transition>
|
||||||
|
</v-btn>
|
||||||
|
</v-toolbar>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import isDarkColor from '/imports/ui/utility/isDarkColor.js';
|
||||||
|
import PropertyIcon from '/imports/ui/properties/shared/PropertyIcon.vue';
|
||||||
|
import { getPropertyName } from '/imports/constants/PROPERTIES.js';
|
||||||
|
import ColorPicker from '/imports/ui/components/ColorPicker.vue';
|
||||||
|
|
||||||
|
export default {
|
||||||
|
components: {
|
||||||
|
PropertyIcon,
|
||||||
|
ColorPicker,
|
||||||
|
},
|
||||||
|
props: {
|
||||||
|
model: {
|
||||||
|
type: Object,
|
||||||
|
default: undefined,
|
||||||
|
},
|
||||||
|
flat: Boolean,
|
||||||
|
editing: Boolean,
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
isDark(){
|
||||||
|
return isDarkColor(this.color);
|
||||||
|
},
|
||||||
|
color(){
|
||||||
|
return this.model && this.model.color || this.$vuetify.theme.secondary;
|
||||||
|
},
|
||||||
|
title(){
|
||||||
|
let model = this.model;
|
||||||
|
if (model.quantity !== 1 && model.quantity !== undefined){
|
||||||
|
if (model.plural){
|
||||||
|
return `${model.quantity} ${model.plural}`;
|
||||||
|
} else if (model.name) {
|
||||||
|
return `${model.quantity} ${model.name}`;
|
||||||
|
} else {
|
||||||
|
return `${model.quantity} × ${getPropertyName(model.type)}`
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return model.name || getPropertyName(model.type);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
colorChanged(value){
|
||||||
|
this.$emit('color-changed', value);
|
||||||
|
},
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="css" scoped>
|
||||||
|
</style>
|
||||||
@@ -46,7 +46,7 @@
|
|||||||
v-show="showExpanded"
|
v-show="showExpanded"
|
||||||
class="pl-3"
|
class="pl-3"
|
||||||
>
|
>
|
||||||
<v-fade-transition leave-absolute>
|
<v-fade-transition hide-on-leave>
|
||||||
<tree-node-list
|
<tree-node-list
|
||||||
v-if="showExpanded"
|
v-if="showExpanded"
|
||||||
:node="node"
|
:node="node"
|
||||||
|
|||||||
@@ -42,9 +42,28 @@
|
|||||||
:disabled="disabled"
|
:disabled="disabled"
|
||||||
@change="(value, ack) => $emit('change', {path: ['avatarPicture'], value, ack})"
|
@change="(value, ack) => $emit('change', {path: ['avatarPicture'], value, ack})"
|
||||||
/>
|
/>
|
||||||
<!--
|
<form-sections>
|
||||||
<form-sections>
|
<form-section name="settings">
|
||||||
<form-section name="settings">
|
<v-switch
|
||||||
|
label="Hide redundant stats"
|
||||||
|
:input-value="model.settings.hideUnusedStats"
|
||||||
|
:disabled="disabled"
|
||||||
|
@change="value => $emit('change', {path: ['settings','hideUnusedStats'], value: !!value})"
|
||||||
|
/>
|
||||||
|
<text-field
|
||||||
|
label="Hit Dice reset multiplier"
|
||||||
|
hint="What fraction of your hit dice are reset every long rest"
|
||||||
|
placeholder="0.5"
|
||||||
|
type="number"
|
||||||
|
min="0"
|
||||||
|
max="1"
|
||||||
|
step="0.1"
|
||||||
|
:value="model.settings.hitDiceResetMultiplier"
|
||||||
|
:debounce-time="debounceTime"
|
||||||
|
:disabled="disabled"
|
||||||
|
@change="(value, ack) => $emit('change', {path: ['settings','hitDiceResetMultiplier'], value, ack})"
|
||||||
|
/>
|
||||||
|
<!--
|
||||||
<v-switch
|
<v-switch
|
||||||
label="Use variant encumbrance"
|
label="Use variant encumbrance"
|
||||||
:input-value="model.settings.useVariantEncumbrance"
|
:input-value="model.settings.useVariantEncumbrance"
|
||||||
@@ -66,9 +85,9 @@
|
|||||||
:disabled="disabled"
|
:disabled="disabled"
|
||||||
@change="value => $emit('change', {path: ['settings','swapStatAndModifier'], value})"
|
@change="value => $emit('change', {path: ['settings','swapStatAndModifier'], value})"
|
||||||
/>
|
/>
|
||||||
</form-section>
|
-->
|
||||||
</form-sections>
|
</form-section>
|
||||||
-->
|
</form-sections>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|||||||
@@ -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();
|
||||||
|
}
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|||||||
51
app/imports/ui/creature/RestButton.vue
Normal file
51
app/imports/ui/creature/RestButton.vue
Normal file
@@ -0,0 +1,51 @@
|
|||||||
|
<template lang="html">
|
||||||
|
<v-btn
|
||||||
|
:loading="loading"
|
||||||
|
:disabled="loading"
|
||||||
|
outline
|
||||||
|
style="width: 160px;"
|
||||||
|
@click="rest"
|
||||||
|
>
|
||||||
|
<v-icon left>
|
||||||
|
{{ type === 'shortRest' ? 'snooze' : 'bedtime' }}
|
||||||
|
</v-icon>
|
||||||
|
{{ type === 'shortRest' ? 'Short Rest' : 'Long Rest' }}
|
||||||
|
</v-btn>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import restCreature from '/imports/api/creature/restCreature.js';
|
||||||
|
|
||||||
|
export default {
|
||||||
|
props:{
|
||||||
|
type: {
|
||||||
|
type: String,
|
||||||
|
required: true,
|
||||||
|
},
|
||||||
|
creatureId: {
|
||||||
|
type: String,
|
||||||
|
required: true,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
data(){return {
|
||||||
|
loading: false,
|
||||||
|
}},
|
||||||
|
methods: {
|
||||||
|
rest(){
|
||||||
|
this.loading = true;
|
||||||
|
restCreature.call({
|
||||||
|
creatureId: this.creatureId,
|
||||||
|
restType: this.type,
|
||||||
|
}, error => {
|
||||||
|
this.loading = false;
|
||||||
|
if (error){
|
||||||
|
console.error(error);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="css" scoped>
|
||||||
|
</style>
|
||||||
@@ -35,7 +35,7 @@
|
|||||||
class="fill-height"
|
class="fill-height"
|
||||||
>
|
>
|
||||||
<v-tabs-items
|
<v-tabs-items
|
||||||
v-model="tabs"
|
v-model="activeTab"
|
||||||
>
|
>
|
||||||
<v-tab-item>
|
<v-tab-item>
|
||||||
<stats-tab :creature-id="creatureId" />
|
<stats-tab :creature-id="creatureId" />
|
||||||
@@ -103,6 +103,16 @@
|
|||||||
'creature.name'(value){
|
'creature.name'(value){
|
||||||
this.$store.commit('setPageTitle', value || 'Character Sheet');
|
this.$store.commit('setPageTitle', value || 'Character Sheet');
|
||||||
},
|
},
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
activeTab: {
|
||||||
|
get(){
|
||||||
|
return this.tabs;
|
||||||
|
},
|
||||||
|
set(newTab){
|
||||||
|
this.$emit('update:tabs', newTab);
|
||||||
|
},
|
||||||
|
},
|
||||||
},
|
},
|
||||||
meteor: {
|
meteor: {
|
||||||
$subscribe: {
|
$subscribe: {
|
||||||
|
|||||||
247
app/imports/ui/creature/character/CharacterSheetToolbar.vue
Normal file
247
app/imports/ui/creature/character/CharacterSheetToolbar.vue
Normal 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>
|
||||||
@@ -2,6 +2,7 @@
|
|||||||
<v-tabs
|
<v-tabs
|
||||||
v-if="creature"
|
v-if="creature"
|
||||||
slot="extension"
|
slot="extension"
|
||||||
|
color="secondary"
|
||||||
:value="value"
|
:value="value"
|
||||||
centered
|
centered
|
||||||
grow
|
grow
|
||||||
|
|||||||
@@ -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: {
|
||||||
|
|||||||
@@ -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"
|
||||||
|
|||||||
@@ -1,10 +1,26 @@
|
|||||||
<template lang="html">
|
<template lang="html">
|
||||||
<div class="stats-tab ma-2">
|
<div
|
||||||
|
class="stats-tab ma-2"
|
||||||
|
>
|
||||||
<div class="px-2 pt-2">
|
<div class="px-2 pt-2">
|
||||||
<health-bar-card-container :creature-id="creatureId" />
|
<health-bar-card-container :creature-id="creatureId" />
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<column-layout>
|
<column-layout>
|
||||||
|
<div class="character-buttons">
|
||||||
|
<v-card>
|
||||||
|
<v-card-text class="layout column align-center">
|
||||||
|
<rest-button
|
||||||
|
:creature-id="creatureId"
|
||||||
|
type="shortRest"
|
||||||
|
/>
|
||||||
|
<rest-button
|
||||||
|
:creature-id="creatureId"
|
||||||
|
type="longRest"
|
||||||
|
/>
|
||||||
|
</v-card-text>
|
||||||
|
</v-card>
|
||||||
|
</div>
|
||||||
<div class="ability-scores">
|
<div class="ability-scores">
|
||||||
<v-card>
|
<v-card>
|
||||||
<v-list>
|
<v-list>
|
||||||
@@ -276,7 +292,7 @@
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
import Creatures from '/imports/api/creature/Creatures.js';
|
import Creatures from '/imports/api/creature/Creatures.js';
|
||||||
import CreatureProperties, { damageProperty } from '/imports/api/creature/CreatureProperties.js';
|
import { damageProperty } from '/imports/api/creature/CreatureProperties.js';
|
||||||
import AttributeCard from '/imports/ui/properties/components/attributes/AttributeCard.vue';
|
import AttributeCard from '/imports/ui/properties/components/attributes/AttributeCard.vue';
|
||||||
import AbilityListTile from '/imports/ui/properties/components/attributes/AbilityListTile.vue';
|
import AbilityListTile from '/imports/ui/properties/components/attributes/AbilityListTile.vue';
|
||||||
import ColumnLayout from '/imports/ui/components/ColumnLayout.vue';
|
import ColumnLayout from '/imports/ui/components/ColumnLayout.vue';
|
||||||
@@ -288,25 +304,30 @@
|
|||||||
import SpellSlotListTile from '/imports/ui/properties/components/attributes/SpellSlotListTile.vue';
|
import SpellSlotListTile from '/imports/ui/properties/components/attributes/SpellSlotListTile.vue';
|
||||||
import ActionListTile from '/imports/ui/properties/components/actions/ActionListTile.vue';
|
import ActionListTile from '/imports/ui/properties/components/actions/ActionListTile.vue';
|
||||||
import AttackListTile from '/imports/ui/properties/components/actions/AttackListTile.vue';
|
import AttackListTile from '/imports/ui/properties/components/actions/AttackListTile.vue';
|
||||||
|
import RestButton from '/imports/ui/creature/RestButton.vue';
|
||||||
import getActiveProperties from '/imports/api/creature/getActiveProperties.js';
|
import getActiveProperties from '/imports/api/creature/getActiveProperties.js';
|
||||||
|
|
||||||
const getProperties = function(creatureId, filter){
|
const getProperties = function(creature, filter,){
|
||||||
|
if (!creature) return;
|
||||||
|
if (creature.settings.hideUnusedStats){
|
||||||
|
filter.hide = {$ne: true};
|
||||||
|
}
|
||||||
return getActiveProperties({
|
return getActiveProperties({
|
||||||
ancestorId: creatureId,
|
ancestorId: creature._id,
|
||||||
filter,
|
filter,
|
||||||
options: {sort: {order: 1}},
|
options: {sort: {order: 1}},
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
const getAttributeOfType = function(creatureId, type){
|
const getAttributeOfType = function(creature, type){
|
||||||
return getProperties(creatureId, {
|
return getProperties(creature, {
|
||||||
type: 'attribute',
|
type: 'attribute',
|
||||||
attributeType: type,
|
attributeType: type,
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
const getSkillOfType = function(creatureId, type){
|
const getSkillOfType = function(creature, type){
|
||||||
return getProperties(creatureId, {
|
return getProperties(creature, {
|
||||||
type: 'skill',
|
type: 'skill',
|
||||||
skillType: type,
|
skillType: type,
|
||||||
});
|
});
|
||||||
@@ -314,6 +335,7 @@
|
|||||||
|
|
||||||
export default {
|
export default {
|
||||||
components: {
|
components: {
|
||||||
|
RestButton,
|
||||||
AbilityListTile,
|
AbilityListTile,
|
||||||
AttributeCard,
|
AttributeCard,
|
||||||
ColumnLayout,
|
ColumnLayout,
|
||||||
@@ -337,49 +359,49 @@
|
|||||||
return Creatures.findOne(this.creatureId);
|
return Creatures.findOne(this.creatureId);
|
||||||
},
|
},
|
||||||
abilities(){
|
abilities(){
|
||||||
return getAttributeOfType(this.creatureId, 'ability');
|
return getAttributeOfType(this.creature, 'ability');
|
||||||
},
|
},
|
||||||
stats(){
|
stats(){
|
||||||
return getAttributeOfType(this.creatureId, 'stat');
|
return getAttributeOfType(this.creature, 'stat');
|
||||||
},
|
},
|
||||||
modifiers(){
|
modifiers(){
|
||||||
return getAttributeOfType(this.creatureId, 'modifier');
|
return getAttributeOfType(this.creature, 'modifier');
|
||||||
},
|
},
|
||||||
resources(){
|
resources(){
|
||||||
return getAttributeOfType(this.creatureId, 'resource');
|
return getAttributeOfType(this.creature, 'resource');
|
||||||
},
|
},
|
||||||
spellSlots(){
|
spellSlots(){
|
||||||
return getAttributeOfType(this.creatureId, 'spellSlot');
|
return getAttributeOfType(this.creature, 'spellSlot');
|
||||||
},
|
},
|
||||||
hitDice(){
|
hitDice(){
|
||||||
return getAttributeOfType(this.creatureId, 'hitDice');
|
return getAttributeOfType(this.creature, 'hitDice');
|
||||||
},
|
},
|
||||||
checks(){
|
checks(){
|
||||||
return getSkillOfType(this.creatureId, 'check');
|
return getSkillOfType(this.creature, 'check');
|
||||||
},
|
},
|
||||||
savingThrows(){
|
savingThrows(){
|
||||||
return getSkillOfType(this.creatureId, 'save');
|
return getSkillOfType(this.creature, 'save');
|
||||||
},
|
},
|
||||||
skills(){
|
skills(){
|
||||||
return getSkillOfType(this.creatureId, 'skill');
|
return getSkillOfType(this.creature, 'skill');
|
||||||
},
|
},
|
||||||
tools(){
|
tools(){
|
||||||
return getSkillOfType(this.creatureId, 'tool');
|
return getSkillOfType(this.creature, 'tool');
|
||||||
},
|
},
|
||||||
weapons(){
|
weapons(){
|
||||||
return getSkillOfType(this.creatureId, 'weapon');
|
return getSkillOfType(this.creature, 'weapon');
|
||||||
},
|
},
|
||||||
armors(){
|
armors(){
|
||||||
return getSkillOfType(this.creatureId, 'armor');
|
return getSkillOfType(this.creature, 'armor');
|
||||||
},
|
},
|
||||||
languages(){
|
languages(){
|
||||||
return getSkillOfType(this.creatureId, 'language');
|
return getSkillOfType(this.creature, 'language');
|
||||||
},
|
},
|
||||||
actions(){
|
actions(){
|
||||||
return getProperties(this.creatureId, {type: 'action'});
|
return getProperties(this.creature, {type: 'action'});
|
||||||
},
|
},
|
||||||
attacks(){
|
attacks(){
|
||||||
return getProperties(this.creatureId, {type: 'attack'});
|
return getProperties(this.creature, {type: 'attack'});
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
|||||||
@@ -1,106 +1,60 @@
|
|||||||
<template lang="html">
|
<template lang="html">
|
||||||
<div
|
<div
|
||||||
class="tree-tab pa-4"
|
class="tree-tab pa-4 layout column align-center"
|
||||||
style="height: calc(100vh - 96px); display: flex;"
|
style="height: calc(100vh - 96px); display: flex;"
|
||||||
>
|
>
|
||||||
<v-card
|
<v-card
|
||||||
class="layout row"
|
style="height: 100%; width: 100%; max-width: 1800px;"
|
||||||
style="height: 100%;"
|
|
||||||
data-id="creature-tree-card"
|
data-id="creature-tree-card"
|
||||||
>
|
>
|
||||||
<div
|
<tree-detail-layout>
|
||||||
class="layout column justify-start"
|
<template slot="tree">
|
||||||
:style="
|
|
||||||
$vuetify.breakpoint.mdAndUp &&
|
|
||||||
'width: 320px; flex-shrink: 0; flex-grow: 0;'
|
|
||||||
"
|
|
||||||
>
|
|
||||||
<v-toolbar
|
|
||||||
flat
|
|
||||||
dense
|
|
||||||
>
|
|
||||||
<v-spacer />
|
|
||||||
<v-switch
|
|
||||||
v-if="context.editPermission !== false"
|
|
||||||
v-model="organize"
|
|
||||||
label="Organize"
|
|
||||||
class="mx-3"
|
|
||||||
:disabled="organizeDisabled"
|
|
||||||
style="flex-grow: 0; height: 32px;"
|
|
||||||
/>
|
|
||||||
<v-combobox
|
|
||||||
ref="searchBox"
|
|
||||||
slot="extension"
|
|
||||||
v-model="filterString"
|
|
||||||
:items="filterOptions"
|
|
||||||
prepend-inner-icon="search"
|
|
||||||
class="mx-4"
|
|
||||||
hide-no-data
|
|
||||||
hide-selected
|
|
||||||
multiple
|
|
||||||
clearable
|
|
||||||
small-chips
|
|
||||||
deletable-chips
|
|
||||||
/>
|
|
||||||
</v-toolbar>
|
|
||||||
<creature-properties-tree
|
|
||||||
class="pt-2 flex"
|
|
||||||
style="overflow-y: auto;"
|
|
||||||
:root="{collection: 'creatures', id: creatureId}"
|
|
||||||
:organize="organize"
|
|
||||||
:selected-node-id="selected"
|
|
||||||
:filter="filter"
|
|
||||||
@selected="clickNode"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
<template v-if="$vuetify.breakpoint.mdAndUp">
|
|
||||||
<v-divider vertical />
|
|
||||||
<div
|
|
||||||
class="flex layout column"
|
|
||||||
style="background-color: inherit; overflow: hidden;"
|
|
||||||
data-id="selected-node-card"
|
|
||||||
>
|
|
||||||
<v-toolbar
|
<v-toolbar
|
||||||
dense
|
|
||||||
flat
|
flat
|
||||||
extended
|
dense
|
||||||
>
|
>
|
||||||
<v-fade-transition mode="out-in">
|
|
||||||
<div
|
|
||||||
:key="selectedProperty && selectedProperty._id"
|
|
||||||
class="title"
|
|
||||||
>
|
|
||||||
<property-icon
|
|
||||||
:key="selectedProperty && selectedProperty._id"
|
|
||||||
:type="selectedProperty && selectedProperty.type"
|
|
||||||
class="mr-2"
|
|
||||||
/>
|
|
||||||
{{ getPropertyName(selectedProperty && selectedProperty.type) }}
|
|
||||||
</div>
|
|
||||||
</v-fade-transition>
|
|
||||||
<v-spacer />
|
<v-spacer />
|
||||||
<v-btn
|
<v-switch
|
||||||
v-if="selectedProperty"
|
v-if="context.editPermission !== false"
|
||||||
flat
|
v-model="organize"
|
||||||
icon
|
label="Organize"
|
||||||
@click="editCreatureProperty"
|
class="mx-3"
|
||||||
>
|
:disabled="organizeDisabled"
|
||||||
<v-icon>create</v-icon>
|
style="flex-grow: 0; height: 32px;"
|
||||||
</v-btn>
|
/>
|
||||||
|
<v-combobox
|
||||||
|
ref="searchBox"
|
||||||
|
slot="extension"
|
||||||
|
v-model="filterString"
|
||||||
|
:items="filterOptions"
|
||||||
|
prepend-inner-icon="search"
|
||||||
|
class="mx-4"
|
||||||
|
hide-no-data
|
||||||
|
hide-selected
|
||||||
|
multiple
|
||||||
|
clearable
|
||||||
|
small-chips
|
||||||
|
deletable-chips
|
||||||
|
/>
|
||||||
</v-toolbar>
|
</v-toolbar>
|
||||||
<v-card-text
|
<creature-properties-tree
|
||||||
class="flex"
|
class="pt-2 flex"
|
||||||
style="overflow-y: auto"
|
style="overflow-y: auto;"
|
||||||
>
|
:root="{collection: 'creatures', id: creatureId}"
|
||||||
<v-fade-transition mode="out-in">
|
:organize="organize"
|
||||||
<property-viewer
|
:selected-node-id="selected"
|
||||||
:key="selectedProperty && selectedProperty._id"
|
:filter="filter"
|
||||||
:model="selectedProperty"
|
@selected="clickNode"
|
||||||
/>
|
/>
|
||||||
</v-fade-transition>
|
</template>
|
||||||
</v-card-text>
|
<template slot="detail">
|
||||||
</div>
|
<creature-property-dialog
|
||||||
</template>
|
embedded
|
||||||
|
:_id="selected"
|
||||||
|
@removed="selected = undefined"
|
||||||
|
/>
|
||||||
|
</template>
|
||||||
|
</tree-detail-layout>
|
||||||
</v-card>
|
</v-card>
|
||||||
<v-speed-dial
|
<v-speed-dial
|
||||||
v-model="fab"
|
v-model="fab"
|
||||||
@@ -136,22 +90,23 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
import TreeDetailLayout from '/imports/ui/components/TreeDetailLayout.vue';
|
||||||
import CreaturePropertiesTree from '/imports/ui/creature/creatureProperties/CreaturePropertiesTree.vue';
|
import CreaturePropertiesTree from '/imports/ui/creature/creatureProperties/CreaturePropertiesTree.vue';
|
||||||
|
import CreaturePropertyDialog from '/imports/ui/creature/creatureProperties/CreaturePropertyDialog.vue';
|
||||||
|
import LabeledFab from '/imports/ui/components/LabeledFab.vue';
|
||||||
|
|
||||||
import CreatureProperties, {
|
import CreatureProperties, {
|
||||||
insertProperty,
|
insertProperty,
|
||||||
insertPropertyFromLibraryNode
|
insertPropertyFromLibraryNode
|
||||||
} from '/imports/api/creature/CreatureProperties.js';
|
} from '/imports/api/creature/CreatureProperties.js';
|
||||||
import PropertyViewer from '/imports/ui/properties/shared/PropertyViewer.vue';
|
|
||||||
import { setDocToLastOrder } from '/imports/api/parenting/order.js';
|
import { setDocToLastOrder } from '/imports/api/parenting/order.js';
|
||||||
import PropertyIcon from '/imports/ui/properties/shared/PropertyIcon.vue';
|
|
||||||
import { getPropertyName } from '/imports/constants/PROPERTIES.js';
|
import { getPropertyName } from '/imports/constants/PROPERTIES.js';
|
||||||
import LabeledFab from '/imports/ui/components/LabeledFab.vue';
|
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
components: {
|
components: {
|
||||||
|
TreeDetailLayout,
|
||||||
CreaturePropertiesTree,
|
CreaturePropertiesTree,
|
||||||
PropertyViewer,
|
CreaturePropertyDialog,
|
||||||
PropertyIcon,
|
|
||||||
LabeledFab,
|
LabeledFab,
|
||||||
},
|
},
|
||||||
inject: {
|
inject: {
|
||||||
|
|||||||
@@ -1,79 +1,40 @@
|
|||||||
<template lang="html">
|
<template lang="html">
|
||||||
<dialog-base>
|
<dialog-base>
|
||||||
<template slot="toolbar">
|
<template #replace-toolbar="{flat}">
|
||||||
<property-icon
|
<property-toolbar
|
||||||
:type="model.type"
|
:model="model"
|
||||||
class="mr-2"
|
:editing="editing"
|
||||||
|
:flat="flat"
|
||||||
|
@duplicate="duplicate"
|
||||||
|
@remove="remove"
|
||||||
|
@toggle-editing="editing = !editing"
|
||||||
|
@color-changed="value => change({path: ['color'], value})"
|
||||||
/>
|
/>
|
||||||
<v-toolbar-title>
|
|
||||||
{{ model.name || getPropertyName(model.type) }}
|
|
||||||
</v-toolbar-title>
|
|
||||||
<v-spacer />
|
|
||||||
<v-menu
|
|
||||||
v-if="editing"
|
|
||||||
bottom
|
|
||||||
left
|
|
||||||
transition="slide-y-transition"
|
|
||||||
>
|
|
||||||
<template #activator="{ on }">
|
|
||||||
<v-btn
|
|
||||||
icon
|
|
||||||
v-on="on"
|
|
||||||
>
|
|
||||||
<v-icon>more_vert</v-icon>
|
|
||||||
</v-btn>
|
|
||||||
</template>
|
|
||||||
<v-list>
|
|
||||||
<v-list-tile @click="remove">
|
|
||||||
<v-list-tile-title>
|
|
||||||
Delete <v-icon>delete</v-icon>
|
|
||||||
</v-list-tile-title>
|
|
||||||
</v-list-tile>
|
|
||||||
</v-list>
|
|
||||||
</v-menu>
|
|
||||||
<v-btn
|
|
||||||
icon
|
|
||||||
@click="editing = !editing"
|
|
||||||
>
|
|
||||||
<v-slide-y-transition
|
|
||||||
leave-absolute
|
|
||||||
mode="out-in"
|
|
||||||
>
|
|
||||||
<v-icon
|
|
||||||
v-if="editing"
|
|
||||||
key="doneIcon"
|
|
||||||
>
|
|
||||||
done
|
|
||||||
</v-icon>
|
|
||||||
<v-icon
|
|
||||||
v-else
|
|
||||||
key="createIcon"
|
|
||||||
>
|
|
||||||
create
|
|
||||||
</v-icon>
|
|
||||||
</v-slide-y-transition>
|
|
||||||
</v-btn>
|
|
||||||
</template>
|
</template>
|
||||||
<template v-if="model">
|
<template v-if="model">
|
||||||
<component
|
<v-fade-transition
|
||||||
:is="model.type + 'Form'"
|
mode="out-in"
|
||||||
v-if="editing"
|
>
|
||||||
class="creature-property-form"
|
<component
|
||||||
:model="model"
|
:is="model.type + 'Form'"
|
||||||
@change="change"
|
v-if="editing"
|
||||||
@push="push"
|
class="creature-property-form"
|
||||||
@pull="pull"
|
:model="model"
|
||||||
/>
|
@change="change"
|
||||||
<component
|
@push="push"
|
||||||
:is="model.type + 'Viewer'"
|
@pull="pull"
|
||||||
v-else-if="!editing && $options.components[model.type + 'Viewer']"
|
/>
|
||||||
class="creature-property-viewer"
|
<component
|
||||||
:model="model"
|
:is="model.type + 'Viewer'"
|
||||||
/>
|
v-else-if="!editing && $options.components[model.type + 'Viewer']"
|
||||||
<p v-else>
|
class="creature-property-viewer"
|
||||||
This property can't be viewed yet.
|
:model="model"
|
||||||
</p>
|
/>
|
||||||
<template v-if="!editing">
|
<p v-else>
|
||||||
|
This property can't be viewed yet.
|
||||||
|
</p>
|
||||||
|
</v-fade-transition>
|
||||||
|
<template v-if="!editing && !embedded">
|
||||||
<v-divider />
|
<v-divider />
|
||||||
<creature-properties-tree
|
<creature-properties-tree
|
||||||
v-if="!editing"
|
v-if="!editing"
|
||||||
@@ -83,6 +44,7 @@
|
|||||||
</template>
|
</template>
|
||||||
</template>
|
</template>
|
||||||
<div
|
<div
|
||||||
|
v-if="!embedded"
|
||||||
slot="actions"
|
slot="actions"
|
||||||
class="layout row justify-end"
|
class="layout row justify-end"
|
||||||
>
|
>
|
||||||
@@ -100,11 +62,13 @@
|
|||||||
import CreatureProperties, {
|
import CreatureProperties, {
|
||||||
updateProperty,
|
updateProperty,
|
||||||
damageProperty,
|
damageProperty,
|
||||||
|
duplicateProperty,
|
||||||
pushToProperty,
|
pushToProperty,
|
||||||
pullFromProperty,
|
pullFromProperty,
|
||||||
softRemoveProperty,
|
softRemoveProperty,
|
||||||
} from '/imports/api/creature/CreatureProperties.js';
|
} from '/imports/api/creature/CreatureProperties.js';
|
||||||
import Creatures from '/imports/api/creature/Creatures.js';
|
import Creatures from '/imports/api/creature/Creatures.js';
|
||||||
|
import PropertyToolbar from '/imports/ui/components/propertyToolbar.vue';
|
||||||
import DialogBase from '/imports/ui/dialogStack/DialogBase.vue';
|
import DialogBase from '/imports/ui/dialogStack/DialogBase.vue';
|
||||||
import { getPropertyName } from '/imports/constants/PROPERTIES.js';
|
import { getPropertyName } from '/imports/constants/PROPERTIES.js';
|
||||||
import PropertyIcon from '/imports/ui/properties/shared/PropertyIcon.vue';
|
import PropertyIcon from '/imports/ui/properties/shared/PropertyIcon.vue';
|
||||||
@@ -130,10 +94,12 @@ export default {
|
|||||||
...viewerIndex,
|
...viewerIndex,
|
||||||
PropertyIcon,
|
PropertyIcon,
|
||||||
DialogBase,
|
DialogBase,
|
||||||
|
PropertyToolbar,
|
||||||
CreaturePropertiesTree,
|
CreaturePropertiesTree,
|
||||||
},
|
},
|
||||||
props: {
|
props: {
|
||||||
_id: String,
|
_id: String,
|
||||||
|
embedded: Boolean, // This dialog is embedded in a page
|
||||||
startInEditTab: Boolean,
|
startInEditTab: Boolean,
|
||||||
},
|
},
|
||||||
data(){ return {
|
data(){ return {
|
||||||
@@ -169,8 +135,26 @@ export default {
|
|||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
getPropertyName,
|
getPropertyName,
|
||||||
|
duplicate(){
|
||||||
|
duplicateProperty.call({_id: this._id}, (error) => {
|
||||||
|
if (error) {
|
||||||
|
console.error(error);
|
||||||
|
}
|
||||||
|
if (this.embedded){
|
||||||
|
this.$emit('duplicated');
|
||||||
|
} else {
|
||||||
|
this.$store.dispatch('popDialogStack');
|
||||||
|
}
|
||||||
|
});
|
||||||
|
},
|
||||||
change({path, value, ack}){
|
change({path, value, ack}){
|
||||||
updateProperty.call({_id: this._id, path, value}, (error) =>{
|
updateProperty.call({_id: this._id, path, value}, (error) =>{
|
||||||
|
if (error) console.warn(error);
|
||||||
|
ack && ack(error && error.reason || error);
|
||||||
|
});
|
||||||
|
},
|
||||||
|
damage({operation, value, ack}){
|
||||||
|
damageProperty.call({_id: this._id, operation, value}, (error) =>{
|
||||||
if (error) console.warn(error);
|
if (error) console.warn(error);
|
||||||
ack && ack(error && error.reason || error);
|
ack && ack(error && error.reason || error);
|
||||||
});
|
});
|
||||||
@@ -191,7 +175,11 @@ export default {
|
|||||||
},
|
},
|
||||||
remove(){
|
remove(){
|
||||||
softRemoveProperty.call({_id: this._id});
|
softRemoveProperty.call({_id: this._id});
|
||||||
this.$store.dispatch('popDialogStack');
|
if (this.embedded){
|
||||||
|
this.$emit('removed');
|
||||||
|
} else {
|
||||||
|
this.$store.dispatch('popDialogStack');
|
||||||
|
}
|
||||||
},
|
},
|
||||||
selectSubProperty(_id){
|
selectSubProperty(_id){
|
||||||
this.$store.commit('pushDialogStack', {
|
this.$store.commit('pushDialogStack', {
|
||||||
|
|||||||
@@ -6,6 +6,7 @@
|
|||||||
<library-and-node
|
<library-and-node
|
||||||
slot="unwrapped-content"
|
slot="unwrapped-content"
|
||||||
style="height: 100%;"
|
style="height: 100%;"
|
||||||
|
selection
|
||||||
@selected="val => node = val"
|
@selected="val => node = val"
|
||||||
/>
|
/>
|
||||||
<template slot="actions">
|
<template slot="actions">
|
||||||
|
|||||||
@@ -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: {
|
||||||
|
|||||||
@@ -1,64 +1,73 @@
|
|||||||
<template>
|
<template>
|
||||||
<v-layout column style="height: 100%;">
|
<v-layout
|
||||||
<v-toolbar :color="color || 'secondary'" dark class="base-dialog-toolbar" :flat="!offsetTop">
|
column
|
||||||
<v-btn icon flat @click="back">
|
style="height: 100%;"
|
||||||
<v-icon>arrow_back</v-icon>
|
>
|
||||||
</v-btn>
|
<slot
|
||||||
<slot name="toolbar"/>
|
name="replace-toolbar"
|
||||||
<template v-if="$slots.edit">
|
:flat="!offsetTop"
|
||||||
<v-spacer/>
|
>
|
||||||
<v-btn icon flat @click="$emit('remove')" v-if="isEditing">
|
<v-toolbar
|
||||||
<v-icon>delete</v-icon>
|
:color="computedColor"
|
||||||
</v-btn>
|
:dark="isDark"
|
||||||
<v-btn icon flat @click="isEditing = !isEditing">
|
:light="!isDark"
|
||||||
<v-icon>{{isEditing ? 'check' : 'create'}}</v-icon>
|
class="base-dialog-toolbar"
|
||||||
</v-btn>
|
:flat="!offsetTop"
|
||||||
</template>
|
>
|
||||||
</v-toolbar>
|
<v-btn
|
||||||
<template v-if="breadcrumbs">
|
icon
|
||||||
<v-card-text>
|
flat
|
||||||
example > bread > crumb
|
@click="back"
|
||||||
</v-card-text>
|
>
|
||||||
</template>
|
<v-icon>arrow_back</v-icon>
|
||||||
<div
|
</v-btn>
|
||||||
v-if="$slots['unwrapped-content']"
|
<slot name="toolbar" />
|
||||||
class="unwrapped-content"
|
</v-toolbar>
|
||||||
>
|
</slot>
|
||||||
<slot name="unwrapped-content"/>
|
<div
|
||||||
</div>
|
v-if="$slots['unwrapped-content']"
|
||||||
<v-card-text
|
class="unwrapped-content"
|
||||||
v-if="!$slots['unwrapped-content']"
|
>
|
||||||
id="base-dialog-body"
|
<slot name="unwrapped-content" />
|
||||||
v-scroll:#base-dialog-body="onScroll"
|
</div>
|
||||||
>
|
<v-card-text
|
||||||
<v-tabs-items :value="isEditing ? 1 : 0" touchless>
|
v-if="!$slots['unwrapped-content']"
|
||||||
<v-tab-item>
|
id="base-dialog-body"
|
||||||
<slot/>
|
v-scroll:#base-dialog-body="onScroll"
|
||||||
</v-tab-item>
|
>
|
||||||
<v-tab-item lazy>
|
<slot />
|
||||||
<slot name="edit"/>
|
</v-card-text>
|
||||||
</v-tab-item>
|
<v-card-actions v-if="$slots.actions">
|
||||||
</v-tabs-items>
|
<slot name="actions" />
|
||||||
</v-card-text>
|
</v-card-actions>
|
||||||
<v-card-actions>
|
</v-layout>
|
||||||
<slot name="actions"/>
|
|
||||||
</v-card-actions>
|
|
||||||
</v-layout>
|
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import store from "/imports/ui/vuexStore.js";
|
import isDarkColor from '/imports/ui/utility/isDarkColor.js';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
props: {
|
props: {
|
||||||
color: String,
|
color: {
|
||||||
breadcrumbs: Object,
|
type: String,
|
||||||
overrideBackButton: Function,
|
default: undefined,
|
||||||
|
},
|
||||||
|
overrideBackButton: {
|
||||||
|
type: Function,
|
||||||
|
default: undefined,
|
||||||
|
},
|
||||||
},
|
},
|
||||||
data(){ return {
|
data(){ return {
|
||||||
offsetTop: 0,
|
offsetTop: 0,
|
||||||
isEditing: false,
|
|
||||||
}},
|
}},
|
||||||
|
computed: {
|
||||||
|
isDark(){
|
||||||
|
return isDarkColor(this.computedColor);
|
||||||
|
},
|
||||||
|
computedColor(){
|
||||||
|
return this.color || this.$vuetify.theme.secondary;
|
||||||
|
}
|
||||||
|
},
|
||||||
methods: {
|
methods: {
|
||||||
onScroll(e){
|
onScroll(e){
|
||||||
this.offsetTop = e.target.scrollTop
|
this.offsetTop = e.target.scrollTop
|
||||||
@@ -71,7 +80,7 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
close(){
|
close(){
|
||||||
store.dispatch("popDialogStack");
|
this.$store.dispatch('popDialogStack');
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -7,7 +7,8 @@ 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';
|
||||||
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 LibraryNodeDialog from '/imports/ui/library/LibraryNodeDialog.vue';
|
||||||
|
import MoveLibraryNodeDialog from '/imports/ui/library/MoveLibraryNodeDialog.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 TierTooLowDialog from '/imports/ui/user/TierTooLowDialog.vue';
|
||||||
import UsernameDialog from '/imports/ui/user/UsernameDialog.vue';
|
import UsernameDialog from '/imports/ui/user/UsernameDialog.vue';
|
||||||
@@ -23,7 +24,8 @@ export default {
|
|||||||
LibraryCreationDialog,
|
LibraryCreationDialog,
|
||||||
LibraryEditDialog,
|
LibraryEditDialog,
|
||||||
LibraryNodeCreationDialog,
|
LibraryNodeCreationDialog,
|
||||||
LibraryNodeEditDialog,
|
LibraryNodeDialog,
|
||||||
|
MoveLibraryNodeDialog,
|
||||||
ShareDialog,
|
ShareDialog,
|
||||||
TierTooLowDialog,
|
TierTooLowDialog,
|
||||||
UsernameDialog,
|
UsernameDialog,
|
||||||
|
|||||||
@@ -8,47 +8,17 @@
|
|||||||
align-center
|
align-center
|
||||||
>
|
>
|
||||||
<upload-btn
|
<upload-btn
|
||||||
:file-changed-callback="fileChanged"
|
title="Metadata JSON"
|
||||||
|
@file-update="metadataFileChanged"
|
||||||
/>
|
/>
|
||||||
<v-text-field
|
<upload-btn
|
||||||
ref="iconSearchField"
|
title="Sprite JSON"
|
||||||
label="Search"
|
@file-update="fileChanged"
|
||||||
append-icon="search"
|
/>
|
||||||
@click:append="updateSearchString"
|
<icon-picker
|
||||||
@keydown.enter="updateSearchString"
|
:value="testIcon"
|
||||||
|
@change="testIconChange"
|
||||||
/>
|
/>
|
||||||
<v-container
|
|
||||||
grid-list-md
|
|
||||||
fill-height
|
|
||||||
>
|
|
||||||
<v-layout
|
|
||||||
row
|
|
||||||
wrap
|
|
||||||
>
|
|
||||||
<v-flex
|
|
||||||
v-for="icon in icons"
|
|
||||||
:key="icon._id._str || icon._id"
|
|
||||||
xs3
|
|
||||||
md2
|
|
||||||
xl1
|
|
||||||
>
|
|
||||||
<v-card>
|
|
||||||
<v-card-title class="title">
|
|
||||||
{{ icon.name }}
|
|
||||||
</v-card-title>
|
|
||||||
<v-card-text>
|
|
||||||
<svg
|
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
|
||||||
viewBox="0 0 512 512"
|
|
||||||
><path
|
|
||||||
fill="#000"
|
|
||||||
:d="icon.shape"
|
|
||||||
/></svg>
|
|
||||||
</v-card-text>
|
|
||||||
</v-card>
|
|
||||||
</v-flex>
|
|
||||||
</v-layout>
|
|
||||||
</v-container>
|
|
||||||
</v-layout>
|
</v-layout>
|
||||||
</v-card-text>
|
</v-card-text>
|
||||||
</v-card>
|
</v-card>
|
||||||
@@ -57,29 +27,34 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import importIcons from '/imports/ui/icons/importIcons.js';
|
import {importIcons, importIconMetadata} from '/imports/ui/icons/importIcons.js';
|
||||||
import Icons from '/imports/api/icons/Icons.js';
|
import IconPicker from '/imports/ui/components/global/IconPicker.vue';
|
||||||
|
import UploadButton from 'vuetify-upload-button';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
|
components: {
|
||||||
|
IconPicker,
|
||||||
|
UploadBtn: UploadButton,
|
||||||
|
},
|
||||||
data(){ return {
|
data(){ return {
|
||||||
searchString: '',
|
searchString: '',
|
||||||
|
testIcon: undefined,
|
||||||
}},
|
}},
|
||||||
|
mounted(){
|
||||||
|
console.log(this.$vuetify);
|
||||||
|
},
|
||||||
methods: {
|
methods: {
|
||||||
fileChanged (file) {
|
fileChanged (file) {
|
||||||
importIcons(file);
|
importIcons(file);
|
||||||
},
|
},
|
||||||
updateSearchString(){
|
metadataFileChanged(file){
|
||||||
this.searchString = this.$refs.iconSearchField.internalValue;
|
importIconMetadata(file);
|
||||||
},
|
},
|
||||||
},
|
testIconChange(value, ack){
|
||||||
meteor: {
|
setTimeout(() => {
|
||||||
$subscribe: {
|
this.testIcon = value;
|
||||||
searchIcons() {
|
ack();
|
||||||
return [this.searchString];
|
}, 1000);
|
||||||
},
|
|
||||||
},
|
|
||||||
icons(){
|
|
||||||
return Icons.find({}, { sort: [['score', 'desc']] });
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|||||||
30
app/imports/ui/icons/SvgIconByName.vue
Normal file
30
app/imports/ui/icons/SvgIconByName.vue
Normal 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>
|
||||||
@@ -1,31 +1,50 @@
|
|||||||
import { writeIcons } from '/imports/api/icons/Icons.js';
|
import { writeIcons } from '/imports/api/icons/Icons.js';
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Import a SVG sprite file. All the icons must contain one id and one path with a
|
* Import a SVG sprite file.
|
||||||
* single 'd' attribute.
|
|
||||||
*
|
*
|
||||||
* A svg sprite file can be created by downloading the entire archive of
|
* A svg sprite file can be created by downloading the entire archive of
|
||||||
* https://game-icons.net/ then using the search function with *.svg to copy
|
* https://game-icons.net/ then using the search function with *.svg to copy
|
||||||
* all the individual files into a single directory, and then using the npm
|
* all the individual files into a single directory, and then using
|
||||||
* sprite-generator to run `svg-sprite-generate -d icons -o sprite.svg` to save
|
* `npm i -g svg-sprite-generator` `npm i -g xml-js`
|
||||||
* the sprite file.
|
* run `svg-sprite-generate -d icons -o sprite.xml`
|
||||||
|
* run `xml-js sprite.xml --out sprite.json --compact true `
|
||||||
|
* to save the sprite file as json.
|
||||||
*/
|
*/
|
||||||
|
let metadata;
|
||||||
|
|
||||||
export default function importIcons(file){
|
export function importIcons(file){
|
||||||
let id, d, icons = [];
|
|
||||||
let reader = new FileReader();
|
let reader = new FileReader();
|
||||||
|
if (! metadata) throw 'No metadata to build with';
|
||||||
|
|
||||||
reader.onload = function(){
|
reader.onload = function(){
|
||||||
reader.result.match(/i?d="([^"])+"/gi).forEach(s => {
|
let data = JSON.parse(reader.result);
|
||||||
if (s[0] === 'i'){
|
let icons = [];
|
||||||
id = s.slice(4, -1);
|
data.svg.symbol.forEach(iconData => {
|
||||||
} else if (s[0] === 'd'){
|
let name = iconData._attributes.id;
|
||||||
d = s.slice(3, -1);
|
let shape = iconData.path[1]._attributes.d;
|
||||||
icons.push ({_id: Random.id(), name: id, shape: d});
|
let icon = metadata[name] || {};
|
||||||
}
|
icon._id = Random.id();
|
||||||
|
icon.name = name;
|
||||||
|
icon.shape = shape;
|
||||||
|
icons.push(icon);
|
||||||
});
|
});
|
||||||
writeIcons.call(icons);
|
writeIcons.call(icons);
|
||||||
};
|
};
|
||||||
|
|
||||||
reader.readAsText(file);
|
reader.readAsText(file);
|
||||||
};
|
}
|
||||||
|
|
||||||
|
// Get metadata here:
|
||||||
|
// https://gist.github.com/ThaumRystra/ffb264dea8c32e15de95f775596194a4
|
||||||
|
// It is probably out of date though
|
||||||
|
export function importIconMetadata(file){
|
||||||
|
let reader = new FileReader();
|
||||||
|
|
||||||
|
reader.onload = function(){
|
||||||
|
metadata = JSON.parse(reader.result);
|
||||||
|
console.log(metadata);
|
||||||
|
};
|
||||||
|
|
||||||
|
reader.readAsText(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
|
||||||
@@ -54,20 +57,10 @@
|
|||||||
</v-fade-transition>
|
</v-fade-transition>
|
||||||
</v-toolbar>
|
</v-toolbar>
|
||||||
<v-content>
|
<v-content>
|
||||||
<v-alert
|
|
||||||
v-if="$route.path !== '/countdown'"
|
|
||||||
icon="priority_high"
|
|
||||||
type="error"
|
|
||||||
dismissible
|
|
||||||
:value="true"
|
|
||||||
>
|
|
||||||
This version of DiceCloud is in beta. Some data stored here may be destroyed by
|
|
||||||
future updates.
|
|
||||||
</v-alert>
|
|
||||||
<v-fade-transition
|
<v-fade-transition
|
||||||
mode="out-in"
|
mode="out-in"
|
||||||
>
|
>
|
||||||
<router-view :tabs="tabs" />
|
<router-view :tabs.sync="tabs" />
|
||||||
</v-fade-transition>
|
</v-fade-transition>
|
||||||
</v-content>
|
</v-content>
|
||||||
|
|
||||||
@@ -126,6 +119,9 @@
|
|||||||
'toggleDrawer',
|
'toggleDrawer',
|
||||||
]),
|
]),
|
||||||
},
|
},
|
||||||
|
mounted(){
|
||||||
|
console.log(this.$route);
|
||||||
|
}
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,14 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="sidebar">
|
<div class="sidebar">
|
||||||
|
<v-alert
|
||||||
|
icon="priority_high"
|
||||||
|
type="error"
|
||||||
|
dismissible
|
||||||
|
:value="true"
|
||||||
|
>
|
||||||
|
This version of DiceCloud is in beta. Some data stored here may be destroyed by
|
||||||
|
future updates.
|
||||||
|
</v-alert>
|
||||||
<v-layout
|
<v-layout
|
||||||
v-if="!signedIn"
|
v-if="!signedIn"
|
||||||
row
|
row
|
||||||
@@ -126,8 +135,9 @@
|
|||||||
{title: 'Home', icon: 'home', to: '/'},
|
{title: 'Home', icon: 'home', to: '/'},
|
||||||
{title: 'Characters', icon: 'portrait', to: '/characterList', requireLogin: true},
|
{title: 'Characters', icon: 'portrait', to: '/characterList', requireLogin: true},
|
||||||
{title: 'Library', icon: 'book', to: '/library', requireLogin: true},
|
{title: 'Library', icon: 'book', to: '/library', requireLogin: true},
|
||||||
{title: 'Friends', icon: 'people', to: '/friends', requireLogin: true},
|
//{title: 'Friends', icon: 'people', to: '/friends', requireLogin: true},
|
||||||
{title: 'Send Feedback', icon: 'bug_report', to: '/feedback'},
|
{title: 'Feedback', icon: 'bug_report', to: '/feedback'},
|
||||||
|
{title: 'About', icon: 'subject', to: '/about'},
|
||||||
{title: 'Patreon', icon: '', href: 'https://www.patreon.com/dicecloud'},
|
{title: 'Patreon', icon: '', href: 'https://www.patreon.com/dicecloud'},
|
||||||
{title: 'Github', icon: '', href: 'https://github.com/ThaumRystra/DiceCloud/tree/version-2'},
|
{title: 'Github', icon: '', href: 'https://github.com/ThaumRystra/DiceCloud/tree/version-2'},
|
||||||
];
|
];
|
||||||
|
|||||||
15
app/imports/ui/layouts/SingleCardLayout.vue
Normal file
15
app/imports/ui/layouts/SingleCardLayout.vue
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
<template
|
||||||
|
lang="html"
|
||||||
|
functional
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
class="pa-4 layout column align-center"
|
||||||
|
style="height: calc(100vh - 96px); display: flex;"
|
||||||
|
>
|
||||||
|
<v-card
|
||||||
|
style="height: 100%; width: 100%; max-width: 1800px;"
|
||||||
|
>
|
||||||
|
<slot />
|
||||||
|
</v-card>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
@@ -1,20 +1,21 @@
|
|||||||
<template lang="html">
|
<template lang="html">
|
||||||
<div
|
<tree-detail-layout>
|
||||||
class="layout row"
|
|
||||||
style="background-color: inherit;"
|
|
||||||
>
|
|
||||||
<div
|
<div
|
||||||
|
slot="tree"
|
||||||
class="layout column"
|
class="layout column"
|
||||||
style="
|
style="
|
||||||
background-color: inherit;
|
background-color: inherit;
|
||||||
width: initial;
|
width: initial;
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
min-width: 320px;
|
min-width: 320px;
|
||||||
"
|
height: 100%;
|
||||||
|
"
|
||||||
>
|
>
|
||||||
<v-toolbar
|
<v-toolbar
|
||||||
dense
|
|
||||||
flat
|
flat
|
||||||
|
:color="selectedNode && selectedNode.color || 'secondary'"
|
||||||
|
:dark="isToolbarDark"
|
||||||
|
:light="!isToolbarDark"
|
||||||
>
|
>
|
||||||
<v-spacer />
|
<v-spacer />
|
||||||
<v-switch
|
<v-switch
|
||||||
@@ -28,91 +29,104 @@
|
|||||||
edit-mode
|
edit-mode
|
||||||
:organize-mode="organize"
|
:organize-mode="organize"
|
||||||
:selected-node-id="selected"
|
:selected-node-id="selected"
|
||||||
@selected="e => selected = e"
|
style="overflow-y: auto;"
|
||||||
|
@selected="clickNode"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<v-divider vertical />
|
|
||||||
<div
|
<div
|
||||||
style="width: 100%; background-color: inherit;"
|
slot="detail"
|
||||||
data-id="selected-node-card"
|
data-id="selected-node-card"
|
||||||
>
|
>
|
||||||
<v-toolbar
|
<library-node-dialog
|
||||||
dense
|
:_id="selected"
|
||||||
flat
|
embedded
|
||||||
>
|
@removed="selected = undefined"
|
||||||
<property-icon
|
/>
|
||||||
:type="selectedNode && selectedNode.type"
|
|
||||||
class="mr-2"
|
|
||||||
/>
|
|
||||||
<div class="title">
|
|
||||||
{{ getPropertyName(selectedNode && selectedNode.type) }}
|
|
||||||
</div>
|
|
||||||
<v-spacer />
|
|
||||||
<v-btn
|
|
||||||
v-if="selectedNode"
|
|
||||||
flat
|
|
||||||
icon
|
|
||||||
@click="editLibraryNode"
|
|
||||||
>
|
|
||||||
<v-icon>create</v-icon>
|
|
||||||
</v-btn>
|
|
||||||
</v-toolbar>
|
|
||||||
<v-card-text style="overflow-y: auto;">
|
|
||||||
<property-viewer :model="selectedNode" />
|
|
||||||
</v-card-text>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</tree-detail-layout>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
import TreeDetailLayout from '/imports/ui/components/TreeDetailLayout.vue';
|
||||||
import LibraryBrowser from '/imports/ui/library/LibraryBrowser.vue';
|
import LibraryBrowser from '/imports/ui/library/LibraryBrowser.vue';
|
||||||
import PropertyViewer from '/imports/ui/properties/shared/PropertyViewer.vue';
|
import LibraryNodeDialog from '/imports/ui/library/LibraryNodeDialog.vue';
|
||||||
import LibraryNodes from '/imports/api/library/LibraryNodes.js';
|
import LibraryNodes from '/imports/api/library/LibraryNodes.js';
|
||||||
import Libraries from '/imports/api/library/Libraries.js';
|
import Libraries from '/imports/api/library/Libraries.js';
|
||||||
import PropertyIcon from '/imports/ui/properties/shared/PropertyIcon.vue';
|
|
||||||
import { getPropertyName } from '/imports/constants/PROPERTIES.js';
|
import { getPropertyName } from '/imports/constants/PROPERTIES.js';
|
||||||
|
import isDarkColor from '/imports/ui/utility/isDarkColor.js';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
components: {
|
components: {
|
||||||
LibraryBrowser,
|
TreeDetailLayout,
|
||||||
PropertyViewer,
|
LibraryBrowser,
|
||||||
PropertyIcon,
|
LibraryNodeDialog,
|
||||||
},
|
},
|
||||||
data(){ return {
|
props: {
|
||||||
organize: false,
|
selection: Boolean,
|
||||||
selected: undefined,
|
},
|
||||||
};},
|
data(){ return {
|
||||||
watch:{
|
organize: false,
|
||||||
selectedNode(val){
|
selected: undefined,
|
||||||
this.$emit('selected', val)
|
};},
|
||||||
},
|
computed: {
|
||||||
},
|
isToolbarDark(){
|
||||||
methods: {
|
return isDarkColor(
|
||||||
editLibraryNode(){
|
this.selectedNode && this.selectedNode.color ||
|
||||||
this.$store.commit('pushDialogStack', {
|
this.$vuetify.theme.secondary
|
||||||
component: 'library-node-edit-dialog',
|
);
|
||||||
elementId: 'selected-node-card',
|
}
|
||||||
data: {_id: this.selected},
|
},
|
||||||
});
|
watch:{
|
||||||
},
|
selectedNode(val){
|
||||||
getPropertyName,
|
this.$emit('selected', val)
|
||||||
},
|
},
|
||||||
meteor: {
|
},
|
||||||
$subscribe: {
|
methods: {
|
||||||
'libraries': [],
|
editLibraryNode(){
|
||||||
},
|
this.$store.commit('pushDialogStack', {
|
||||||
libraries(){
|
component: 'library-node-edit-dialog',
|
||||||
return Libraries.find({}, {
|
elementId: 'selected-node-card',
|
||||||
sort: {name: 1}
|
data: {_id: this.selected},
|
||||||
}).fetch();
|
});
|
||||||
},
|
},
|
||||||
selectedNode(){
|
clickNode(id){
|
||||||
return LibraryNodes.findOne({
|
if (this.$vuetify.breakpoint.mdAndUp){
|
||||||
_id: this.selected,
|
this.selected = id;
|
||||||
removed: {$ne: true}
|
} else {
|
||||||
});
|
this.$store.commit('pushDialogStack', {
|
||||||
}
|
component: 'library-node-dialog',
|
||||||
}
|
elementId: `tree-node-${id}`,
|
||||||
|
data: {
|
||||||
|
_id: id,
|
||||||
|
selection: this.selection,
|
||||||
|
},
|
||||||
|
callback: result => {
|
||||||
|
console.log(result)
|
||||||
|
if (result){
|
||||||
|
this.selected = id;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}
|
||||||
|
},
|
||||||
|
getPropertyName,
|
||||||
|
},
|
||||||
|
meteor: {
|
||||||
|
$subscribe: {
|
||||||
|
'libraries': [],
|
||||||
|
},
|
||||||
|
libraries(){
|
||||||
|
return Libraries.find({}, {
|
||||||
|
sort: {name: 1}
|
||||||
|
}).fetch();
|
||||||
|
},
|
||||||
|
selectedNode(){
|
||||||
|
return LibraryNodes.findOne({
|
||||||
|
_id: this.selected,
|
||||||
|
removed: {$ne: true}
|
||||||
|
});
|
||||||
|
},
|
||||||
|
}
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|||||||
@@ -76,6 +76,7 @@ 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 { getUserTier } from '/imports/api/users/patreon/tiers.js';
|
||||||
import { assertEditPermission } from '/imports/api/sharing/sharingPermissions.js';
|
import { assertEditPermission } from '/imports/api/sharing/sharingPermissions.js';
|
||||||
|
import { getAncestry } from '/imports/api/parenting/parenting.js';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
components: {
|
components: {
|
||||||
@@ -139,13 +140,20 @@ export default {
|
|||||||
},
|
},
|
||||||
insertLibraryNode(libraryId){
|
insertLibraryNode(libraryId){
|
||||||
if (this.paidBenefits){
|
if (this.paidBenefits){
|
||||||
|
let parentRef;
|
||||||
|
if (this.organizeMode && this.selectedNodeId){
|
||||||
|
parentRef = {collection: 'libraryNodes', id: this.selectedNodeId}
|
||||||
|
} else {
|
||||||
|
parentRef = {collection: 'libraries', id: libraryId};
|
||||||
|
}
|
||||||
|
let {ancestors} = getAncestry({parentRef});
|
||||||
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 = parentRef;
|
||||||
libraryNode.ancestors = [ {collection: 'libraries', id: libraryId}];
|
libraryNode.ancestors = ancestors;
|
||||||
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}`;
|
||||||
|
|||||||
209
app/imports/ui/library/LibraryNodeDialog.vue
Normal file
209
app/imports/ui/library/LibraryNodeDialog.vue
Normal file
@@ -0,0 +1,209 @@
|
|||||||
|
<template lang="html">
|
||||||
|
<dialog-base>
|
||||||
|
<template #replace-toolbar="{flat}">
|
||||||
|
<property-toolbar
|
||||||
|
:model="model"
|
||||||
|
:editing="editing"
|
||||||
|
:flat="flat"
|
||||||
|
@duplicate="duplicate"
|
||||||
|
@move="move"
|
||||||
|
@remove="remove"
|
||||||
|
@toggle-editing="editing = !editing"
|
||||||
|
@color-changed="value => change({path: ['color'], value})"
|
||||||
|
/>
|
||||||
|
</template>
|
||||||
|
<template v-if="model">
|
||||||
|
<v-fade-transition
|
||||||
|
mode="out-in"
|
||||||
|
>
|
||||||
|
<component
|
||||||
|
:is="model.type + 'Form'"
|
||||||
|
v-if="editing"
|
||||||
|
class="library-node-form"
|
||||||
|
:model="model"
|
||||||
|
@change="change"
|
||||||
|
@push="push"
|
||||||
|
@pull="pull"
|
||||||
|
/>
|
||||||
|
<component
|
||||||
|
:is="model.type + 'Viewer'"
|
||||||
|
v-else-if="!editing && $options.components[model.type + 'Viewer']"
|
||||||
|
class="creature-property-viewer"
|
||||||
|
:model="model"
|
||||||
|
/>
|
||||||
|
<p v-else>
|
||||||
|
This property can't be viewed yet.
|
||||||
|
</p>
|
||||||
|
</v-fade-transition>
|
||||||
|
</template>
|
||||||
|
<div
|
||||||
|
v-if="!embedded"
|
||||||
|
slot="actions"
|
||||||
|
class="layout row justify-end"
|
||||||
|
>
|
||||||
|
<template v-if="selection">
|
||||||
|
<v-btn
|
||||||
|
flat
|
||||||
|
@click="$store.dispatch('popDialogStack', false)"
|
||||||
|
>
|
||||||
|
Cancel
|
||||||
|
</v-btn>
|
||||||
|
<v-spacer />
|
||||||
|
<v-btn
|
||||||
|
flat
|
||||||
|
@click="$store.dispatch('popDialogStack', true)"
|
||||||
|
>
|
||||||
|
Select
|
||||||
|
</v-btn>
|
||||||
|
</template>
|
||||||
|
<v-btn
|
||||||
|
v-else
|
||||||
|
flat
|
||||||
|
@click="$store.dispatch('popDialogStack')"
|
||||||
|
>
|
||||||
|
Done
|
||||||
|
</v-btn>
|
||||||
|
</div>
|
||||||
|
</dialog-base>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import LibraryNodes, {
|
||||||
|
duplicateNode,
|
||||||
|
updateLibraryNode,
|
||||||
|
pushToLibraryNode,
|
||||||
|
pullFromLibraryNode,
|
||||||
|
softRemoveLibraryNode,
|
||||||
|
} from '/imports/api/library/LibraryNodes.js';
|
||||||
|
import DialogBase from '/imports/ui/dialogStack/DialogBase.vue';
|
||||||
|
import PropertyToolbar from '/imports/ui/components/propertyToolbar.vue';
|
||||||
|
import { getPropertyName } from '/imports/constants/PROPERTIES.js';
|
||||||
|
import PropertyIcon from '/imports/ui/properties/shared/PropertyIcon.vue';
|
||||||
|
import propertyFormIndex from '/imports/ui/properties/forms/shared/propertyFormIndex.js';
|
||||||
|
import propertyViewerIndex from '/imports/ui/properties/viewers/shared/propertyViewerIndex.js';
|
||||||
|
import { get } from 'lodash';
|
||||||
|
import { assertDocEditPermission } from '/imports/api/sharing/sharingPermissions.js';
|
||||||
|
import { organizeDoc } from '/imports/api/parenting/organizeMethods.js';
|
||||||
|
|
||||||
|
let formIndex = {};
|
||||||
|
for (let key in propertyFormIndex){
|
||||||
|
formIndex[key + 'Form'] = propertyFormIndex[key];
|
||||||
|
}
|
||||||
|
|
||||||
|
let viewerIndex = {};
|
||||||
|
for (let key in propertyViewerIndex){
|
||||||
|
formIndex[key + 'Viewer'] = propertyViewerIndex[key];
|
||||||
|
}
|
||||||
|
|
||||||
|
export default {
|
||||||
|
components: {
|
||||||
|
PropertyToolbar,
|
||||||
|
PropertyIcon,
|
||||||
|
DialogBase,
|
||||||
|
...formIndex,
|
||||||
|
...viewerIndex,
|
||||||
|
},
|
||||||
|
props: {
|
||||||
|
_id: String,
|
||||||
|
startInEditTab: Boolean,
|
||||||
|
embedded: Boolean, // This dialog is embedded in a page
|
||||||
|
selection: Boolean, // This dialog is being used to select a node
|
||||||
|
},
|
||||||
|
reactiveProvide: {
|
||||||
|
name: 'context',
|
||||||
|
include: ['editPermission'],
|
||||||
|
},
|
||||||
|
data(){return {
|
||||||
|
editing: !!this.startInEditTab,
|
||||||
|
}},
|
||||||
|
meteor: {
|
||||||
|
model(){
|
||||||
|
return LibraryNodes.findOne(this._id);
|
||||||
|
},
|
||||||
|
editPermission(){
|
||||||
|
try {
|
||||||
|
assertDocEditPermission(this.model, Meteor.userId());
|
||||||
|
return true;
|
||||||
|
} catch (e) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
getPropertyName,
|
||||||
|
duplicate(){
|
||||||
|
duplicateNode.call({_id: this._id}, (error) => {
|
||||||
|
console.error(error);
|
||||||
|
if (this.embedded){
|
||||||
|
this.$emit('duplicated');
|
||||||
|
} else {
|
||||||
|
this.$store.dispatch('popDialogStack');
|
||||||
|
}
|
||||||
|
});
|
||||||
|
},
|
||||||
|
move(){
|
||||||
|
let that = this;
|
||||||
|
this.$store.commit('pushDialogStack', {
|
||||||
|
component: 'move-library-node-dialog',
|
||||||
|
elementId: 'property-toolbar-menu-button',
|
||||||
|
callback(parentId){
|
||||||
|
if (!parentId) return;
|
||||||
|
organizeDoc.call({
|
||||||
|
docRef: {
|
||||||
|
collection: 'libraryNodes',
|
||||||
|
id: that._id,
|
||||||
|
},
|
||||||
|
parentRef: {
|
||||||
|
collection: 'libraryNodes',
|
||||||
|
id: parentId
|
||||||
|
},
|
||||||
|
order: -0.5
|
||||||
|
}, (error) => {
|
||||||
|
if (error) console.error(error);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
|
},
|
||||||
|
change({path, value, ack}){
|
||||||
|
updateLibraryNode.call({_id: this._id, path, value}, (error) =>{
|
||||||
|
if (ack){
|
||||||
|
ack(error && error.reason || error);
|
||||||
|
} else if (error){
|
||||||
|
console.error(error);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
},
|
||||||
|
push({path, value, ack}){
|
||||||
|
pushToLibraryNode.call({_id: this._id, path, value}, (error) =>{
|
||||||
|
if (ack){
|
||||||
|
ack(error && error.reason || error);
|
||||||
|
} else if (error){
|
||||||
|
console.error(error);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
},
|
||||||
|
pull({path, ack}){
|
||||||
|
let itemId = get(this.model, path)._id;
|
||||||
|
path.pop();
|
||||||
|
pullFromLibraryNode.call({_id: this._id, path, itemId}, (error) =>{
|
||||||
|
if (ack){
|
||||||
|
ack(error && error.reason || error);
|
||||||
|
} else if (error){
|
||||||
|
console.error(error);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
},
|
||||||
|
remove(){
|
||||||
|
softRemoveLibraryNode.call({_id: this._id});
|
||||||
|
if (this.embedded){
|
||||||
|
this.$emit('removed');
|
||||||
|
} else {
|
||||||
|
this.$store.dispatch('popDialogStack');
|
||||||
|
}
|
||||||
|
},
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="css" scoped>
|
||||||
|
</style>
|
||||||
@@ -1,114 +0,0 @@
|
|||||||
<template lang="html">
|
|
||||||
<dialog-base>
|
|
||||||
<template slot="toolbar">
|
|
||||||
<property-icon
|
|
||||||
:type="model.type"
|
|
||||||
class="mr-2"
|
|
||||||
/>
|
|
||||||
<v-toolbar-title>
|
|
||||||
{{ getPropertyName(model.type) }}
|
|
||||||
</v-toolbar-title>
|
|
||||||
<v-spacer />
|
|
||||||
<v-btn
|
|
||||||
icon
|
|
||||||
flat
|
|
||||||
@click="remove"
|
|
||||||
>
|
|
||||||
<v-icon>delete</v-icon>
|
|
||||||
</v-btn>
|
|
||||||
</template>
|
|
||||||
<component
|
|
||||||
:is="model.type"
|
|
||||||
v-if="model"
|
|
||||||
class="library-node-form"
|
|
||||||
:model="model"
|
|
||||||
@change="change"
|
|
||||||
@push="push"
|
|
||||||
@pull="pull"
|
|
||||||
/>
|
|
||||||
<div
|
|
||||||
slot="actions"
|
|
||||||
class="layout row justify-end"
|
|
||||||
>
|
|
||||||
<v-btn
|
|
||||||
flat
|
|
||||||
@click="$store.dispatch('popDialogStack')"
|
|
||||||
>
|
|
||||||
Done
|
|
||||||
</v-btn>
|
|
||||||
</div>
|
|
||||||
</dialog-base>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
import LibraryNodes, {
|
|
||||||
updateLibraryNode,
|
|
||||||
pushToLibraryNode,
|
|
||||||
pullFromLibraryNode,
|
|
||||||
softRemoveLibraryNode,
|
|
||||||
} from '/imports/api/library/LibraryNodes.js';
|
|
||||||
import DialogBase from '/imports/ui/dialogStack/DialogBase.vue';
|
|
||||||
import { getPropertyName } from '/imports/constants/PROPERTIES.js';
|
|
||||||
import PropertyIcon from '/imports/ui/properties/shared/PropertyIcon.vue';
|
|
||||||
import propertyFormIndex from '/imports/ui/properties/forms/shared/propertyFormIndex.js';
|
|
||||||
import { get } from 'lodash';
|
|
||||||
import { assertDocEditPermission } from '/imports/api/sharing/sharingPermissions.js';
|
|
||||||
|
|
||||||
export default {
|
|
||||||
components: {
|
|
||||||
...propertyFormIndex,
|
|
||||||
PropertyIcon,
|
|
||||||
DialogBase,
|
|
||||||
},
|
|
||||||
props: {
|
|
||||||
_id: String,
|
|
||||||
},
|
|
||||||
reactiveProvide: {
|
|
||||||
name: 'context',
|
|
||||||
include: ['debounceTime', 'editPermission'],
|
|
||||||
},
|
|
||||||
data(){return {
|
|
||||||
debounceTime: 0,
|
|
||||||
}},
|
|
||||||
meteor: {
|
|
||||||
model(){
|
|
||||||
return LibraryNodes.findOne(this._id);
|
|
||||||
},
|
|
||||||
editPermission(){
|
|
||||||
try {
|
|
||||||
assertDocEditPermission(this.model, Meteor.userId());
|
|
||||||
return true;
|
|
||||||
} catch (e) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
},
|
|
||||||
},
|
|
||||||
methods: {
|
|
||||||
getPropertyName,
|
|
||||||
change({path, value, ack}){
|
|
||||||
updateLibraryNode.call({_id: this._id, path, value}, (error) =>{
|
|
||||||
ack && ack(error && error.reason || error);
|
|
||||||
});
|
|
||||||
},
|
|
||||||
push({path, value, ack}){
|
|
||||||
pushToLibraryNode.call({_id: this._id, path, value}, (error) =>{
|
|
||||||
ack && ack(error && error.reason || error);
|
|
||||||
});
|
|
||||||
},
|
|
||||||
pull({path, ack}){
|
|
||||||
let itemId = get(this.model, path)._id;
|
|
||||||
path.pop();
|
|
||||||
pullFromLibraryNode.call({_id: this._id, path, itemId}, (error) =>{
|
|
||||||
ack && ack(error && error.reason || error);
|
|
||||||
});
|
|
||||||
},
|
|
||||||
remove(){
|
|
||||||
softRemoveLibraryNode.call({_id: this._id});
|
|
||||||
this.$store.dispatch('popDialogStack');
|
|
||||||
},
|
|
||||||
}
|
|
||||||
};
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<style lang="css" scoped>
|
|
||||||
</style>
|
|
||||||
@@ -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: {
|
||||||
|
|||||||
37
app/imports/ui/library/MoveLibraryNodeDialog.vue
Normal file
37
app/imports/ui/library/MoveLibraryNodeDialog.vue
Normal file
@@ -0,0 +1,37 @@
|
|||||||
|
<template lang="html">
|
||||||
|
<dialog-base>
|
||||||
|
<v-toolbar-title slot="toolbar">
|
||||||
|
Select new location
|
||||||
|
</v-toolbar-title>
|
||||||
|
<library-and-node
|
||||||
|
slot="unwrapped-content"
|
||||||
|
style="height: 100%;"
|
||||||
|
selection
|
||||||
|
@selected="val => node = val"
|
||||||
|
/>
|
||||||
|
<template slot="actions">
|
||||||
|
<v-spacer />
|
||||||
|
<v-btn
|
||||||
|
flat
|
||||||
|
color="primary"
|
||||||
|
@click="$store.dispatch('popDialogStack', node._id)"
|
||||||
|
>
|
||||||
|
Move
|
||||||
|
</v-btn>
|
||||||
|
</template>
|
||||||
|
</dialog-base>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import DialogBase from '/imports/ui/dialogStack/DialogBase.vue';
|
||||||
|
import LibraryAndNode from '/imports/ui/library/LibraryAndNode.vue';
|
||||||
|
export default {
|
||||||
|
components: {
|
||||||
|
DialogBase,
|
||||||
|
LibraryAndNode,
|
||||||
|
},
|
||||||
|
data(){return {
|
||||||
|
node: undefined,
|
||||||
|
};},
|
||||||
|
};
|
||||||
|
</script>
|
||||||
@@ -41,7 +41,7 @@
|
|||||||
flat
|
flat
|
||||||
>
|
>
|
||||||
<property-icon
|
<property-icon
|
||||||
:type="selectedNode && selectedNode.type"
|
:model="selectedNode"
|
||||||
class="mr-2"
|
class="mr-2"
|
||||||
/>
|
/>
|
||||||
<div class="title">
|
<div class="title">
|
||||||
|
|||||||
88
app/imports/ui/pages/About.vue
Normal file
88
app/imports/ui/pages/About.vue
Normal file
@@ -0,0 +1,88 @@
|
|||||||
|
<template lang="html">
|
||||||
|
<div>
|
||||||
|
<section>
|
||||||
|
<v-parallax
|
||||||
|
src="/images/paper-dice-crown-with-candy.png"
|
||||||
|
height="400"
|
||||||
|
>
|
||||||
|
<v-layout
|
||||||
|
column
|
||||||
|
align-center
|
||||||
|
justify-center
|
||||||
|
class="white--text"
|
||||||
|
>
|
||||||
|
<p
|
||||||
|
class="white--text ma-2 headline text-xs-center"
|
||||||
|
style="max-width: 1200px;"
|
||||||
|
>
|
||||||
|
DiceCloud is a single-developer project started in 2014 with the aim of
|
||||||
|
being a character sheet that stayed in sync between the DM and their
|
||||||
|
players, and made it clear where every value in the sheet came from, and
|
||||||
|
how it was calculated.
|
||||||
|
</p>
|
||||||
|
</v-layout>
|
||||||
|
</v-parallax>
|
||||||
|
</section>
|
||||||
|
<section class="layout column align-center ma-2 mt-4">
|
||||||
|
<div>
|
||||||
|
<h3 class="headline mb-2">
|
||||||
|
Special Thanks
|
||||||
|
</h3>
|
||||||
|
<p>
|
||||||
|
<b>Sam</b> My fiancée, without whom DiceCloud could not hope to exist
|
||||||
|
</p><p>
|
||||||
|
<b>The "Heroes" of Asaea</b> The D&D party whose joy was the fuel
|
||||||
|
with which DiceCloud was powered
|
||||||
|
</p>
|
||||||
|
<h3 class="title">
|
||||||
|
Paragon tier Patrons
|
||||||
|
</h3>
|
||||||
|
<v-list
|
||||||
|
avatar
|
||||||
|
two-line
|
||||||
|
style="background: inherit;"
|
||||||
|
>
|
||||||
|
<v-list-tile
|
||||||
|
v-for="paragon in paragons"
|
||||||
|
:key="paragon.name"
|
||||||
|
>
|
||||||
|
<v-list-tile-avatar>
|
||||||
|
<v-img :src="`/images/paragons/${paragon.avatar}.png`" />
|
||||||
|
</v-list-tile-avatar>
|
||||||
|
<v-list-tile-content>
|
||||||
|
<v-list-tile-title>
|
||||||
|
{{ paragon.name }}
|
||||||
|
</v-list-tile-title>
|
||||||
|
<v-list-tile-sub-title>
|
||||||
|
{{ paragon.title }}
|
||||||
|
</v-list-tile-sub-title>
|
||||||
|
</v-list-tile-content>
|
||||||
|
</v-list-tile>
|
||||||
|
</v-list>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
data(){ return {
|
||||||
|
paragons:[{
|
||||||
|
name: 'Kira Ametrine',
|
||||||
|
title: 'Cleric of Lewd',
|
||||||
|
avatar: 'kira'
|
||||||
|
},{
|
||||||
|
name: 'Satherian',
|
||||||
|
title: 'Defender of Naptime',
|
||||||
|
avatar: 'satherian'
|
||||||
|
},{
|
||||||
|
name: 'Vinton',
|
||||||
|
title: 'The Gravekeeper',
|
||||||
|
avatar: 'vinton'
|
||||||
|
}],
|
||||||
|
}},
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="css" scoped>
|
||||||
|
</style>
|
||||||
@@ -2,7 +2,7 @@
|
|||||||
<character-sheet
|
<character-sheet
|
||||||
show-menu-button
|
show-menu-button
|
||||||
:creature-id="$route.params.id"
|
:creature-id="$route.params.id"
|
||||||
:tabs="tabs"
|
:tabs.sync="activeTab"
|
||||||
/>
|
/>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@@ -18,5 +18,15 @@ export default {
|
|||||||
required: true,
|
required: true,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
computed: {
|
||||||
|
activeTab: {
|
||||||
|
get(){
|
||||||
|
return this.tabs;
|
||||||
|
},
|
||||||
|
set(newTab){
|
||||||
|
this.$emit('update:tabs', newTab);
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
<div class="content">
|
<div class="content">
|
||||||
<section>
|
<section>
|
||||||
<v-parallax
|
<v-parallax
|
||||||
src="/png/paper-dice-crown.png"
|
src="/images/paper-dice-crown.png"
|
||||||
height="300"
|
height="300"
|
||||||
>
|
>
|
||||||
<v-layout
|
<v-layout
|
||||||
@@ -78,9 +78,7 @@
|
|||||||
Inventory manager
|
Inventory manager
|
||||||
</h3>
|
</h3>
|
||||||
<p>
|
<p>
|
||||||
Equiping items changes your characters stats automatically. Drag
|
Equiping items changes your characters stats automatically.
|
||||||
items to other characters, or between sheets open on different
|
|
||||||
tabs.
|
|
||||||
</p>
|
</p>
|
||||||
</v-layout>
|
</v-layout>
|
||||||
</v-layout>
|
</v-layout>
|
||||||
@@ -117,7 +115,6 @@
|
|||||||
>
|
>
|
||||||
<v-btn
|
<v-btn
|
||||||
v-for="btn in [
|
v-for="btn in [
|
||||||
{link: 'https://reddit.com/r/dicecloud', name: 'Reddit'},
|
|
||||||
{link: 'https://discord.gg/qEvdfeB', name: 'Discord'},
|
{link: 'https://discord.gg/qEvdfeB', name: 'Discord'},
|
||||||
{link: 'https://www.patreon.com/dicecloud', name: 'Patreon'},
|
{link: 'https://www.patreon.com/dicecloud', name: 'Patreon'},
|
||||||
{link: 'https://github.com/ThaumRystra/DiceCloud', name: 'Github'},
|
{link: 'https://github.com/ThaumRystra/DiceCloud', name: 'Github'},
|
||||||
|
|||||||
@@ -1,15 +1,15 @@
|
|||||||
<template lang="html">
|
<template lang="html">
|
||||||
<div>
|
<single-card-layout>
|
||||||
<v-card class="ma-4">
|
<library-and-node />
|
||||||
<library-and-node />
|
</single-card-layout>
|
||||||
</v-card>
|
|
||||||
</div>
|
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
import SingleCardLayout from '/imports/ui/layouts/SingleCardLayout.vue';
|
||||||
import LibraryAndNode from '/imports/ui/library/LibraryAndNode.vue';
|
import LibraryAndNode from '/imports/ui/library/LibraryAndNode.vue';
|
||||||
export default {
|
export default {
|
||||||
components: {
|
components: {
|
||||||
|
SingleCardLayout,
|
||||||
LibraryAndNode,
|
LibraryAndNode,
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -17,7 +17,13 @@
|
|||||||
>
|
>
|
||||||
{{ name }}
|
{{ name }}
|
||||||
</div>
|
</div>
|
||||||
<v-flex style="height: 20px; flex-basis: 300px; flex-grow: 100;">
|
<v-flex
|
||||||
|
style="
|
||||||
|
height: 20px;
|
||||||
|
flex-basis: 300px;
|
||||||
|
flex-grow: 100;
|
||||||
|
"
|
||||||
|
>
|
||||||
<v-layout
|
<v-layout
|
||||||
column
|
column
|
||||||
align-center
|
align-center
|
||||||
@@ -33,87 +39,43 @@
|
|||||||
/>
|
/>
|
||||||
<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;
|
||||||
|
"
|
||||||
>
|
>
|
||||||
{{ value }} / {{ maxValue }}
|
{{ value }} / {{ maxValue }}
|
||||||
</span>
|
</span>
|
||||||
</v-layout>
|
</v-layout>
|
||||||
<transition name="transition">
|
<transition name="transition">
|
||||||
<v-toolbar
|
<increment-menu
|
||||||
|
v-show="editing"
|
||||||
|
:value="value"
|
||||||
|
:open="editing"
|
||||||
|
@change="changeIncrementMenu"
|
||||||
|
@close="cancelEdit"
|
||||||
|
/>
|
||||||
|
</transition>
|
||||||
|
<transition name="background-transition">
|
||||||
|
<div
|
||||||
v-if="editing"
|
v-if="editing"
|
||||||
justify-center
|
class="page-tint"
|
||||||
height="48"
|
@click="cancelEdit"
|
||||||
flat
|
/>
|
||||||
class="transparent toolbar"
|
|
||||||
>
|
|
||||||
<v-spacer />
|
|
||||||
<v-btn-toggle
|
|
||||||
:value="operation === 'add' ? 0: operation === 'subtract' ? 1 : null"
|
|
||||||
class="mr-2"
|
|
||||||
@click="$refs.editInput.focus()"
|
|
||||||
>
|
|
||||||
<v-btn
|
|
||||||
:disabled="context.editPermission === false"
|
|
||||||
class="filled"
|
|
||||||
@click="toggleAdd(); $nextTick(() => $refs.editInput.focus())"
|
|
||||||
>
|
|
||||||
<v-icon>add</v-icon>
|
|
||||||
</v-btn>
|
|
||||||
<v-btn
|
|
||||||
:disabled="context.editPermission === false"
|
|
||||||
class="filled"
|
|
||||||
@click="toggleSubtract(); $nextTick(() => $refs.editInput.focus())"
|
|
||||||
>
|
|
||||||
<v-icon>remove</v-icon>
|
|
||||||
</v-btn>
|
|
||||||
</v-btn-toggle>
|
|
||||||
<v-text-field
|
|
||||||
v-if="editing"
|
|
||||||
ref="editInput"
|
|
||||||
solo
|
|
||||||
hide-details
|
|
||||||
type="number"
|
|
||||||
style="max-width: 120px;"
|
|
||||||
min="0"
|
|
||||||
:value="editValue"
|
|
||||||
:prepend-inner-icon="operationIcon(operation)"
|
|
||||||
:disabled="context.editPermission === false"
|
|
||||||
@focus="$event.target.select()"
|
|
||||||
@keypress="keypress"
|
|
||||||
/>
|
|
||||||
<v-btn
|
|
||||||
small
|
|
||||||
fab
|
|
||||||
class="filled"
|
|
||||||
color="red"
|
|
||||||
@click="commitEdit"
|
|
||||||
>
|
|
||||||
<v-icon>done</v-icon>
|
|
||||||
</v-btn>
|
|
||||||
<v-btn
|
|
||||||
small
|
|
||||||
fab
|
|
||||||
class="mx-0 filled"
|
|
||||||
@click="cancelEdit"
|
|
||||||
>
|
|
||||||
<v-icon>close</v-icon>
|
|
||||||
</v-btn>
|
|
||||||
<v-spacer />
|
|
||||||
</v-toolbar>
|
|
||||||
</transition>
|
</transition>
|
||||||
</v-flex>
|
</v-flex>
|
||||||
<transition name="background-transition">
|
|
||||||
<div
|
|
||||||
v-if="editing"
|
|
||||||
class="page-tint"
|
|
||||||
@click="cancelEdit"
|
|
||||||
/>
|
|
||||||
</transition>
|
|
||||||
</v-layout>
|
</v-layout>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
import IncrementMenu from '/imports/ui/components/IncrementMenu.vue';
|
||||||
export default {
|
export default {
|
||||||
|
components: {
|
||||||
|
IncrementMenu
|
||||||
|
},
|
||||||
inject: {
|
inject: {
|
||||||
context: { default: {} }
|
context: { default: {} }
|
||||||
},
|
},
|
||||||
@@ -126,67 +88,35 @@
|
|||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
editing: false,
|
editing: false,
|
||||||
editValue: 0,
|
|
||||||
operation: 3,
|
|
||||||
hover: false,
|
hover: false,
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
edit() {
|
edit() {
|
||||||
this.editing = true;
|
this.editing = true;
|
||||||
this.operation = 'set';
|
|
||||||
this.editValue = this.value;
|
|
||||||
this.$nextTick(function() {
|
|
||||||
this.$refs.editInput.focus();
|
|
||||||
});
|
|
||||||
},
|
},
|
||||||
cancelEdit() {
|
cancelEdit() {
|
||||||
this.editing = false;
|
this.editing = false;
|
||||||
},
|
},
|
||||||
commitEdit() {
|
changeIncrementMenu(e){
|
||||||
this.editing = false;
|
this.$emit('change', e);
|
||||||
let value = +this.$refs.editInput.lazyValue;
|
this.editing = false;
|
||||||
if (this.operation === 'add') {
|
}
|
||||||
value = -value;
|
|
||||||
}
|
|
||||||
let type = this.operation === 'set' ? 'set' : 'increment';
|
|
||||||
this.$emit('change', { type, value });
|
|
||||||
},
|
|
||||||
operationIcon(operation) {
|
|
||||||
switch (operation) {
|
|
||||||
case 'set':
|
|
||||||
return 'forward';
|
|
||||||
case 'add':
|
|
||||||
return 'add';
|
|
||||||
case 'subtract':
|
|
||||||
return 'remove';
|
|
||||||
}
|
|
||||||
},
|
|
||||||
toggleAdd(){
|
|
||||||
this.operation = (this.operation === 'add') ? 'set': 'add';
|
|
||||||
},
|
|
||||||
toggleSubtract(){
|
|
||||||
this.operation = (this.operation === 'subtract') ? 'set': 'subtract';
|
|
||||||
},
|
|
||||||
keypress(event) {
|
|
||||||
let digitsOnly = /[0-9]/;
|
|
||||||
let key = event.key;
|
|
||||||
if (key === '+') {
|
|
||||||
this.toggleAdd();
|
|
||||||
event.preventDefault();
|
|
||||||
} else if (key === '-') {
|
|
||||||
this.toggleSubtract();
|
|
||||||
event.preventDefault();
|
|
||||||
} else if (key === 'Enter') {
|
|
||||||
this.commitEdit();
|
|
||||||
} else if (!digitsOnly.test(key)){
|
|
||||||
event.preventDefault();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
.health-bar .increment-menu {
|
||||||
|
margin-left: -50%;
|
||||||
|
margin-right: -50%;
|
||||||
|
width: 200%;
|
||||||
|
margin-top: -34px !important;
|
||||||
|
z-index: 4;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
.health-bar {
|
.health-bar {
|
||||||
background: inherit;
|
background: inherit;
|
||||||
@@ -209,13 +139,6 @@
|
|||||||
box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14),
|
box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14),
|
||||||
0 1px 5px 0 rgba(0, 0, 0, 0.12) !important;
|
0 1px 5px 0 rgba(0, 0, 0, 0.12) !important;
|
||||||
}
|
}
|
||||||
.toolbar {
|
|
||||||
margin-left: -50%;
|
|
||||||
margin-right: -50%;
|
|
||||||
width: 200%;
|
|
||||||
margin-top: -34px !important;
|
|
||||||
z-index: 4;
|
|
||||||
}
|
|
||||||
.hover {
|
.hover {
|
||||||
background: #f5f5f5 !important;
|
background: #f5f5f5 !important;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,27 +1,27 @@
|
|||||||
<template lang="html">
|
<template lang="html">
|
||||||
<v-card class="pa-2">
|
<v-card class="pa-2">
|
||||||
<health-bar
|
<health-bar
|
||||||
v-for="attribute in attributes"
|
v-for="attribute in attributes"
|
||||||
:key="attribute._id"
|
:key="attribute._id"
|
||||||
:value="attribute.value - (attribute.damage || 0)"
|
:value="attribute.currentValue"
|
||||||
:maxValue="attribute.value"
|
:max-value="attribute.value"
|
||||||
:name="attribute.name"
|
:name="attribute.name"
|
||||||
:_id="attribute._id"
|
:_id="attribute._id"
|
||||||
@change="e => $emit('change', {_id: attribute._id, change: e})"
|
@change="e => $emit('change', {_id: attribute._id, change: e})"
|
||||||
@click="e => $emit('click', {_id: attribute._id})"
|
@click="e => $emit('click', {_id: attribute._id})"
|
||||||
/>
|
/>
|
||||||
</v-card>
|
</v-card>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import HealthBar from '/imports/ui/properties/components/attributes/HealthBar.vue';
|
import HealthBar from '/imports/ui/properties/components/attributes/HealthBar.vue';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
props: {
|
|
||||||
attributes: Array,
|
|
||||||
},
|
|
||||||
components: {
|
components: {
|
||||||
HealthBar,
|
HealthBar,
|
||||||
},
|
},
|
||||||
|
props: {
|
||||||
|
attributes: Array,
|
||||||
|
},
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
@@ -7,26 +7,40 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import CreatureProperties, { damageProperty } from '/imports/api/creature/CreatureProperties.js';
|
import Creatures from '/imports/api/creature/Creatures.js';
|
||||||
|
import { damageProperty } from '/imports/api/creature/CreatureProperties.js';
|
||||||
import HealthBarCard from '/imports/ui/properties/components/attributes/HealthBarCard.vue';
|
import HealthBarCard from '/imports/ui/properties/components/attributes/HealthBarCard.vue';
|
||||||
|
import getActiveProperties from '/imports/api/creature/getActiveProperties.js';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
components: {
|
components: {
|
||||||
HealthBarCard,
|
HealthBarCard,
|
||||||
},
|
},
|
||||||
props: {
|
props: {
|
||||||
creatureId: String,
|
creatureId: {
|
||||||
|
type: String,
|
||||||
|
required: true
|
||||||
|
},
|
||||||
},
|
},
|
||||||
meteor: {
|
meteor: {
|
||||||
|
creature(){
|
||||||
|
return Creatures.findOne(this.creatureId, {fields: {settings: 1}});
|
||||||
|
},
|
||||||
attributes(){
|
attributes(){
|
||||||
return CreatureProperties.find({
|
let creature = this.creature;
|
||||||
'ancestors.id': this.creatureId,
|
if (!creature) return;
|
||||||
type: 'attribute',
|
let filter = {
|
||||||
|
type: 'attribute',
|
||||||
attributeType: 'healthBar',
|
attributeType: 'healthBar',
|
||||||
removed: {$ne: true},
|
};
|
||||||
}, {
|
if (creature.settings.hideUnusedStats){
|
||||||
sort: {order: 1},
|
filter.hide = {$ne: true};
|
||||||
});
|
}
|
||||||
|
return getActiveProperties({
|
||||||
|
ancestorId: creature._id,
|
||||||
|
filter,
|
||||||
|
options: {sort: {order: 1}},
|
||||||
|
});
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
|||||||
@@ -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', {
|
||||||
|
|||||||
@@ -11,6 +11,7 @@
|
|||||||
@change="change('baseValueCalculation', ...arguments)"
|
@change="change('baseValueCalculation', ...arguments)"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
<calculation-error-list :errors="model.baseValueErrors" />
|
||||||
<div class="layout row wrap">
|
<div class="layout row wrap">
|
||||||
<text-field
|
<text-field
|
||||||
label="Name"
|
label="Name"
|
||||||
@@ -100,10 +101,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';
|
import propertyFormMixin from '/imports/ui/properties/forms/shared/propertyFormMixin.js';
|
||||||
|
import CalculationErrorList from '/imports/ui/properties/forms/shared/CalculationErrorList.vue';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
components: {
|
components: {
|
||||||
FormSection,
|
FormSection,
|
||||||
|
CalculationErrorList,
|
||||||
},
|
},
|
||||||
mixins: [propertyFormMixin],
|
mixins: [propertyFormMixin],
|
||||||
data(){
|
data(){
|
||||||
|
|||||||
@@ -1,11 +1,22 @@
|
|||||||
<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"
|
label="Name"
|
||||||
:error-messages="errors.name"
|
:value="model.name"
|
||||||
@change="change('name', ...arguments)"
|
: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 +26,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 +54,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>
|
||||||
|
|||||||
@@ -6,48 +6,35 @@
|
|||||||
:error-messages="errors.name"
|
:error-messages="errors.name"
|
||||||
@change="change('name', ...arguments)"
|
@change="change('name', ...arguments)"
|
||||||
/>
|
/>
|
||||||
<div class="layout row wrap justify-start">
|
<smart-select
|
||||||
<smart-select
|
label="Operation"
|
||||||
label="Operation"
|
append-icon="arrow_drop_down"
|
||||||
append-icon="arrow_drop_down"
|
class="mx-2"
|
||||||
class="mx-2"
|
:error-messages="errors.operation"
|
||||||
:error-messages="errors.operation"
|
: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="change('operation', ...arguments)"
|
||||||
@change="change('operation', ...arguments)"
|
>
|
||||||
|
<v-icon
|
||||||
|
slot="prepend"
|
||||||
|
class="icon"
|
||||||
|
:class="iconClass"
|
||||||
|
>
|
||||||
|
{{ displayedIcon }}
|
||||||
|
</v-icon>
|
||||||
|
<template
|
||||||
|
slot="item"
|
||||||
|
slot-scope="item"
|
||||||
>
|
>
|
||||||
<v-icon
|
<v-icon
|
||||||
slot="prepend"
|
class="icon mr-2"
|
||||||
class="icon"
|
|
||||||
:class="iconClass"
|
|
||||||
>
|
>
|
||||||
{{ displayedIcon }}
|
{{ getEffectIcon(item.item.value, 1) }}
|
||||||
</v-icon>
|
</v-icon>
|
||||||
<template
|
{{ item.item.text }}
|
||||||
slot="item"
|
</template>
|
||||||
slot-scope="item"
|
</smart-select>
|
||||||
>
|
|
||||||
<v-icon
|
|
||||||
class="icon mr-2"
|
|
||||||
>
|
|
||||||
{{ getEffectIcon(item.item.value, 1) }}
|
|
||||||
</v-icon>
|
|
||||||
{{ item.item.text }}
|
|
||||||
</template>
|
|
||||||
</smart-select>
|
|
||||||
|
|
||||||
<text-field
|
|
||||||
label="Value"
|
|
||||||
class="mr-2"
|
|
||||||
:persistent-hint="needsValue"
|
|
||||||
:value="needsValue ? (model.calculation) : ' '"
|
|
||||||
:disabled="!needsValue"
|
|
||||||
:error-messages="errors.calculation"
|
|
||||||
:hint="!isFinite(model.calculation) && model.result ? model.result + '' : '' "
|
|
||||||
@change="change('calculation', ...arguments)"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
<smart-combobox
|
<smart-combobox
|
||||||
label="Stats"
|
label="Stats"
|
||||||
class="mr-2"
|
class="mr-2"
|
||||||
@@ -59,6 +46,17 @@
|
|||||||
:error-messages="errors.stats"
|
:error-messages="errors.stats"
|
||||||
@change="change('stats', ...arguments)"
|
@change="change('stats', ...arguments)"
|
||||||
/>
|
/>
|
||||||
|
<text-field
|
||||||
|
label="Value"
|
||||||
|
class="mr-2"
|
||||||
|
:persistent-hint="needsValue"
|
||||||
|
:value="needsValue ? (model.calculation) : ' '"
|
||||||
|
:disabled="!needsValue"
|
||||||
|
:error-messages="errors.calculation"
|
||||||
|
:hint="!isFinite(model.calculation) && model.result ? model.result + '' : '' "
|
||||||
|
@change="change('calculation', ...arguments)"
|
||||||
|
/>
|
||||||
|
<calculation-error-list :errors="model.errors" />
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@@ -66,9 +64,13 @@
|
|||||||
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 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';
|
||||||
|
import CalculationErrorList from '/imports/ui/properties/forms/shared/CalculationErrorList.vue';
|
||||||
|
|
||||||
const ICON_SPIN_DURATION = 300;
|
const ICON_SPIN_DURATION = 300;
|
||||||
export default {
|
export default {
|
||||||
|
components: {
|
||||||
|
CalculationErrorList,
|
||||||
|
},
|
||||||
mixins: [propertyFormMixin, attributeListMixin],
|
mixins: [propertyFormMixin, attributeListMixin],
|
||||||
data(){ return {
|
data(){ return {
|
||||||
displayedIcon: 'add',
|
displayedIcon: 'add',
|
||||||
@@ -78,7 +80,8 @@
|
|||||||
{value: 'add', text: 'Add'},
|
{value: 'add', text: 'Add'},
|
||||||
{value: 'mul', text: 'Multiply'},
|
{value: 'mul', text: 'Multiply'},
|
||||||
{value: 'min', text: 'Minimum'},
|
{value: 'min', text: 'Minimum'},
|
||||||
{value: 'max', text: 'Maximum'},
|
{value: 'max', text: 'Maximum'},
|
||||||
|
{value: 'set', text: 'Set'},
|
||||||
{value: 'advantage', text: 'Advantage'},
|
{value: 'advantage', text: 'Advantage'},
|
||||||
{value: 'disadvantage', text: 'Disadvantage'},
|
{value: 'disadvantage', text: 'Disadvantage'},
|
||||||
{value: 'passiveAdd', text: 'Passive Bonus'},
|
{value: 'passiveAdd', text: 'Passive Bonus'},
|
||||||
@@ -93,7 +96,8 @@
|
|||||||
case 'add': return true;
|
case 'add': return true;
|
||||||
case 'mul': return true;
|
case 'mul': return true;
|
||||||
case 'min': return true;
|
case 'min': return true;
|
||||||
case 'max': return true;
|
case 'max': return true;
|
||||||
|
case 'set': return true;
|
||||||
case 'advantage': return false;
|
case 'advantage': return false;
|
||||||
case 'disadvantage': return false;
|
case 'disadvantage': return false;
|
||||||
case 'passiveAdd': return true;
|
case 'passiveAdd': return true;
|
||||||
|
|||||||
@@ -1,13 +1,22 @@
|
|||||||
<template lang="html">
|
<template lang="html">
|
||||||
<div class="item-form">
|
<div class="item-form">
|
||||||
<div class="layout column align-center">
|
<div class="layout row justify-space-around">
|
||||||
<smart-switch
|
<div>
|
||||||
label="Equipped"
|
<icon-picker
|
||||||
class="no-flex"
|
label="Icon"
|
||||||
:value="model.equipped"
|
:value="model.icon"
|
||||||
:error-messages="errors.equipped"
|
:error-messages="errors.icon"
|
||||||
@change="change('equipped', ...arguments)"
|
@change="change('icon', ...arguments)"
|
||||||
/>
|
/>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<smart-switch
|
||||||
|
label="Equipped"
|
||||||
|
:value="model.equipped"
|
||||||
|
:error-messages="errors.equipped"
|
||||||
|
@change="change('equipped', ...arguments)"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="layout row wrap">
|
<div class="layout row wrap">
|
||||||
<text-field
|
<text-field
|
||||||
@@ -32,17 +41,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)"
|
||||||
@@ -52,6 +63,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)"
|
||||||
@@ -67,7 +79,7 @@
|
|||||||
standalone
|
standalone
|
||||||
>
|
>
|
||||||
<smart-switch
|
<smart-switch
|
||||||
label="Show increment buttons"
|
label="Show increment button"
|
||||||
:value="model.showIncrement"
|
:value="model.showIncrement"
|
||||||
:error-messages="errors.showIncrement"
|
:error-messages="errors.showIncrement"
|
||||||
@change="change('showIncrement', ...arguments)"
|
@change="change('showIncrement', ...arguments)"
|
||||||
|
|||||||
@@ -1,5 +1,11 @@
|
|||||||
<template lang="html">
|
<template lang="html">
|
||||||
<div class="saving-throw-form">
|
<div class="saving-throw-form">
|
||||||
|
<text-field
|
||||||
|
label="Name"
|
||||||
|
:value="model.name"
|
||||||
|
:error-messages="errors.name"
|
||||||
|
@change="change('name', ...arguments)"
|
||||||
|
/>
|
||||||
<text-field
|
<text-field
|
||||||
label="DC"
|
label="DC"
|
||||||
:value="model.dc"
|
:value="model.dc"
|
||||||
@@ -9,10 +15,10 @@
|
|||||||
<smart-combobox
|
<smart-combobox
|
||||||
label="Save"
|
label="Save"
|
||||||
hint="Which save the saving throw targets"
|
hint="Which save the saving throw targets"
|
||||||
:value="model.ability"
|
:value="model.stat"
|
||||||
:items="saveList"
|
:items="saveList"
|
||||||
:error-messages="errors.ability"
|
:error-messages="errors.stat"
|
||||||
@change="change('ability', ...arguments)"
|
@change="change('stat', ...arguments)"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
@@ -46,12 +46,11 @@
|
|||||||
<div class="layout row justify-center">
|
<div class="layout row justify-center">
|
||||||
<text-field
|
<text-field
|
||||||
label="Base Value"
|
label="Base Value"
|
||||||
type="number"
|
class="base-value-field no-flex"
|
||||||
class="base-value-field text-xs-center large-format no-flex"
|
:value="model.baseValueCalculation"
|
||||||
: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.baseValueCalculation"
|
||||||
@change="change('baseValue', ...arguments)"
|
@change="change('baseValueCalculation', ...arguments)"
|
||||||
/>
|
/>
|
||||||
<proficiency-select
|
<proficiency-select
|
||||||
style="flex-basis: 300px;"
|
style="flex-basis: 300px;"
|
||||||
@@ -61,6 +60,7 @@
|
|||||||
@change="change('baseProficiency', ...arguments)"
|
@change="change('baseProficiency', ...arguments)"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
<calculation-error-list :errors="model.baseValueErrors" />
|
||||||
</form-section>
|
</form-section>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
@@ -70,11 +70,13 @@
|
|||||||
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';
|
import propertyFormMixin from '/imports/ui/properties/forms/shared/propertyFormMixin.js';
|
||||||
|
import CalculationErrorList from '/imports/ui/properties/forms/shared/CalculationErrorList.vue';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
components: {
|
components: {
|
||||||
ProficiencySelect,
|
ProficiencySelect,
|
||||||
FormSection,
|
FormSection,
|
||||||
|
CalculationErrorList,
|
||||||
},
|
},
|
||||||
mixins: [propertyFormMixin],
|
mixins: [propertyFormMixin],
|
||||||
data(){return{
|
data(){return{
|
||||||
|
|||||||
@@ -37,13 +37,18 @@
|
|||||||
@change="change('condition', ...arguments)"
|
@change="change('condition', ...arguments)"
|
||||||
/>
|
/>
|
||||||
</v-fade-transition>
|
</v-fade-transition>
|
||||||
|
<calculation-error-list :errors="model.errors" />
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import propertyFormMixin from '/imports/ui/properties/forms/shared/propertyFormMixin.js';
|
import propertyFormMixin from '/imports/ui/properties/forms/shared/propertyFormMixin.js';
|
||||||
|
import CalculationErrorList from '/imports/ui/properties/forms/shared/CalculationErrorList.vue';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
|
components: {
|
||||||
|
CalculationErrorList,
|
||||||
|
},
|
||||||
mixins: [propertyFormMixin],
|
mixins: [propertyFormMixin],
|
||||||
computed: {
|
computed: {
|
||||||
radioSelection(){
|
radioSelection(){
|
||||||
|
|||||||
@@ -0,0 +1,56 @@
|
|||||||
|
<template lang="html">
|
||||||
|
<div
|
||||||
|
v-if="errors && errors.length"
|
||||||
|
class="error-list"
|
||||||
|
>
|
||||||
|
<v-slide-x-transition
|
||||||
|
group
|
||||||
|
hide-on-leave
|
||||||
|
>
|
||||||
|
<v-alert
|
||||||
|
v-for="error in errors"
|
||||||
|
:key="error.message"
|
||||||
|
:value="true"
|
||||||
|
:icon="errorIcon(error.type)"
|
||||||
|
:color="errorColor(error.type)"
|
||||||
|
outline
|
||||||
|
>
|
||||||
|
{{ error.message }}
|
||||||
|
</v-alert>
|
||||||
|
</v-slide-x-transition>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
props: {
|
||||||
|
errors: {
|
||||||
|
type: Array,
|
||||||
|
default: undefined,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
errorIcon(type){
|
||||||
|
if (type === 'subsitution'){
|
||||||
|
return 'info';
|
||||||
|
} else if (type === 'evaluation'){
|
||||||
|
return 'warning';
|
||||||
|
} else {
|
||||||
|
return 'error'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
errorColor(type){
|
||||||
|
if (type === 'subsitution'){
|
||||||
|
return 'info';
|
||||||
|
} else if (type === 'evaluation'){
|
||||||
|
return 'warning';
|
||||||
|
} else {
|
||||||
|
return 'error'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="css" scoped>
|
||||||
|
</style>
|
||||||
@@ -15,7 +15,7 @@ export default function createListOfProperties(filter = {}){
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
let options = {sort: {variableName: 1}}
|
let options = {sort: {order: 1, variableName: 1}}
|
||||||
CreatureProperties.find(filter, options).forEach(addUniquePropertys);
|
CreatureProperties.find(filter, options).forEach(addUniquePropertys);
|
||||||
LibraryNodes.find(filter, options).forEach(addUniquePropertys);
|
LibraryNodes.find(filter, options).forEach(addUniquePropertys);
|
||||||
return Array.from(variableNames);
|
return Array.from(variableNames);
|
||||||
|
|||||||
@@ -1,5 +1,15 @@
|
|||||||
<template lang="html">
|
<template lang="html">
|
||||||
<v-icon>{{icon}}</v-icon>
|
<svg-icon
|
||||||
|
v-if="model.icon"
|
||||||
|
:shape="model.icon.shape"
|
||||||
|
:color="color"
|
||||||
|
/>
|
||||||
|
<v-icon
|
||||||
|
v-else
|
||||||
|
:color="color"
|
||||||
|
>
|
||||||
|
{{ icon }}
|
||||||
|
</v-icon>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
@@ -7,11 +17,18 @@ import { getPropertyIcon } from '/imports/constants/PROPERTIES.js';
|
|||||||
|
|
||||||
export default {
|
export default {
|
||||||
props: {
|
props: {
|
||||||
type: String,
|
model: {
|
||||||
|
type: Object,
|
||||||
|
default: () => ({}),
|
||||||
|
},
|
||||||
|
color: {
|
||||||
|
type: String,
|
||||||
|
default: undefined,
|
||||||
|
},
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
icon(){
|
icon(){
|
||||||
return getPropertyIcon(this.type);
|
return getPropertyIcon(this.model && this.model.type);
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,8 +2,9 @@
|
|||||||
<div class="layout row align-center justify-start">
|
<div class="layout row align-center justify-start">
|
||||||
<property-icon
|
<property-icon
|
||||||
class="mr-2"
|
class="mr-2"
|
||||||
:type="model.type"
|
:model="model"
|
||||||
:class="selected && 'primary--text'"
|
:class="selected && 'primary--text'"
|
||||||
|
:color="model.color"
|
||||||
/>
|
/>
|
||||||
<div
|
<div
|
||||||
class="text-no-wrap text-truncate"
|
class="text-no-wrap text-truncate"
|
||||||
|
|||||||
@@ -1,10 +1,12 @@
|
|||||||
<template lang="html">
|
<template lang="html">
|
||||||
<div class="layout row align-center justify-start">
|
<div class="layout row align-center justify-start">
|
||||||
<property-icon
|
<v-icon
|
||||||
class="mr-2"
|
class="mr-2"
|
||||||
:type="model.type"
|
:color="model.color"
|
||||||
:class="selected && 'primary--text'"
|
:class="selected && 'primary--text'"
|
||||||
/>
|
>
|
||||||
|
{{ icon }}
|
||||||
|
</v-icon>
|
||||||
<div
|
<div
|
||||||
class="text-no-wrap text-truncate"
|
class="text-no-wrap text-truncate"
|
||||||
>
|
>
|
||||||
@@ -13,7 +15,12 @@
|
|||||||
:value="model.amount"
|
:value="model.amount"
|
||||||
:expect-number="false"
|
:expect-number="false"
|
||||||
/>
|
/>
|
||||||
{{ model.damageType }} damage
|
<span class="mr-1">
|
||||||
|
{{ model.damageType }}
|
||||||
|
</span>
|
||||||
|
<span v-if="model.damageType !== 'healing'">
|
||||||
|
damage
|
||||||
|
</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
@@ -21,11 +28,21 @@
|
|||||||
<script>
|
<script>
|
||||||
import treeNodeViewMixin from '/imports/ui/properties/treeNodeViews/treeNodeViewMixin.js';
|
import treeNodeViewMixin from '/imports/ui/properties/treeNodeViews/treeNodeViewMixin.js';
|
||||||
import ComputedForCreature from '/imports/ui/components/computation/ComputedForCreature.vue';
|
import ComputedForCreature from '/imports/ui/components/computation/ComputedForCreature.vue';
|
||||||
|
import { getPropertyIcon } from '/imports/constants/PROPERTIES.js';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
components: {
|
components: {
|
||||||
Computed: ComputedForCreature,
|
Computed: ComputedForCreature,
|
||||||
},
|
},
|
||||||
mixins: [treeNodeViewMixin],
|
mixins: [treeNodeViewMixin],
|
||||||
|
computed: {
|
||||||
|
icon(){
|
||||||
|
if (this.model.damageType === 'healing'){
|
||||||
|
return 'group_work'
|
||||||
|
} else {
|
||||||
|
return getPropertyIcon('damage');
|
||||||
|
}
|
||||||
|
},
|
||||||
|
},
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
@@ -2,7 +2,8 @@
|
|||||||
<div class="layout row align-center justify-start">
|
<div class="layout row align-center justify-start">
|
||||||
<property-icon
|
<property-icon
|
||||||
class="mr-2"
|
class="mr-2"
|
||||||
:type="model.type"
|
:model="model"
|
||||||
|
:color="model.color"
|
||||||
:class="selected && 'primary--text'"
|
:class="selected && 'primary--text'"
|
||||||
/>
|
/>
|
||||||
<div class="text-no-wrap text-truncate">
|
<div class="text-no-wrap text-truncate">
|
||||||
|
|||||||
@@ -3,6 +3,7 @@
|
|||||||
<v-icon
|
<v-icon
|
||||||
class="mr-2"
|
class="mr-2"
|
||||||
:class="selected && 'primary--text'"
|
:class="selected && 'primary--text'"
|
||||||
|
:color="model.color"
|
||||||
>
|
>
|
||||||
{{ effectIcon }}
|
{{ effectIcon }}
|
||||||
</v-icon>
|
</v-icon>
|
||||||
|
|||||||
@@ -1,10 +1,18 @@
|
|||||||
<template lang="html">
|
<template lang="html">
|
||||||
<div class="layout row align-center justify-start">
|
<div class="layout row align-center justify-start">
|
||||||
|
<property-icon
|
||||||
|
class="mr-2"
|
||||||
|
:model="model"
|
||||||
|
:color="model.color"
|
||||||
|
:class="selected && 'primary--text'"
|
||||||
|
/>
|
||||||
<v-icon
|
<v-icon
|
||||||
|
v-if="model.equipped"
|
||||||
class="mr-2"
|
class="mr-2"
|
||||||
:class="selected && 'primary--text'"
|
:class="selected && 'primary--text'"
|
||||||
|
small
|
||||||
>
|
>
|
||||||
{{ model.equipped ? 'check_box' : 'check_box_outline_blank' }}
|
pan_tool
|
||||||
</v-icon>
|
</v-icon>
|
||||||
<div
|
<div
|
||||||
class="text-no-wrap text-truncate"
|
class="text-no-wrap text-truncate"
|
||||||
@@ -17,9 +25,27 @@
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
import treeNodeViewMixin from '/imports/ui/properties/treeNodeViews/treeNodeViewMixin.js';
|
import treeNodeViewMixin from '/imports/ui/properties/treeNodeViews/treeNodeViewMixin.js';
|
||||||
|
import PROPERTIES from '/imports/constants/PROPERTIES.js';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
mixins: [treeNodeViewMixin],
|
mixins: [treeNodeViewMixin],
|
||||||
|
computed: {
|
||||||
|
title(){
|
||||||
|
let model = this.model;
|
||||||
|
if (!model) return;
|
||||||
|
if (model.quantity !== 1){
|
||||||
|
if (model.plural){
|
||||||
|
return `${model.quantity} ${model.plural}`;
|
||||||
|
} else if (model.name){
|
||||||
|
return `${model.quantity} ${model.name}`;
|
||||||
|
}
|
||||||
|
} else if (model.name) {
|
||||||
|
return model.name;
|
||||||
|
}
|
||||||
|
let prop = PROPERTIES[model.type]
|
||||||
|
return prop && prop.name;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|||||||
@@ -77,13 +77,9 @@
|
|||||||
reset(){
|
reset(){
|
||||||
let reset = this.model.reset
|
let reset = this.model.reset
|
||||||
if (reset === 'shortRest'){
|
if (reset === 'shortRest'){
|
||||||
return `Reset${
|
return 'Reset on a short rest';
|
||||||
this.model.resetMultiplier && ' x' + this.model.resetMultiplier
|
|
||||||
} on a short rest`;
|
|
||||||
} else if (reset === 'longRest'){
|
} else if (reset === 'longRest'){
|
||||||
return `Reset${
|
return 'Reset on a long rest';
|
||||||
this.model.resetMultiplier && ' x' + this.model.resetMultiplier
|
|
||||||
} on a long rest`;
|
|
||||||
}
|
}
|
||||||
return undefined;
|
return undefined;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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>
|
||||||
|
|||||||
@@ -4,7 +4,11 @@
|
|||||||
class="mr-2"
|
class="mr-2"
|
||||||
:value="model.amount"
|
:value="model.amount"
|
||||||
:expect-number="false"
|
:expect-number="false"
|
||||||
/> {{ model.damageType }} damage
|
/>
|
||||||
|
{{ model.damageType }}
|
||||||
|
<span v-if="model.damageType !== 'healing'">
|
||||||
|
damage
|
||||||
|
</span>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|||||||
@@ -1,22 +1,113 @@
|
|||||||
<template lang="html">
|
<template lang="html">
|
||||||
<div class="item-viewer">
|
<div class="item-viewer">
|
||||||
<property-name :value="model.name" />
|
<property-tags :tags="model.tags" />
|
||||||
<property-field
|
<div
|
||||||
name="Plural name"
|
v-if="model.quantity > 1 || model.showIncrement"
|
||||||
:value="model.plural"
|
class="layout row justify-center align-center wrap"
|
||||||
/>
|
>
|
||||||
<property-field
|
<div class="display-1">
|
||||||
name="Quantity"
|
{{ model.quantity }}
|
||||||
:value="model.quantity"
|
</div>
|
||||||
/>
|
<increment-button
|
||||||
<property-field
|
v-if="context.creature && model.showIncrement"
|
||||||
name="Weight"
|
icon
|
||||||
:value="`${model.weight} lbs`"
|
large
|
||||||
/>
|
outline
|
||||||
<property-field
|
color="primary"
|
||||||
name="Value"
|
:value="model.quantity"
|
||||||
:value="`${model.value} gp`"
|
@change="changeQuantity"
|
||||||
/>
|
>
|
||||||
|
<v-icon>$vuetify.icons.abacus</v-icon>
|
||||||
|
</increment-button>
|
||||||
|
</div>
|
||||||
|
<div class="layout row wrap justify-space-around">
|
||||||
|
<div
|
||||||
|
v-if="model.value !== undefined"
|
||||||
|
class="mr-3 my-3"
|
||||||
|
>
|
||||||
|
<v-layout
|
||||||
|
v-if="model.quantity > 1"
|
||||||
|
row
|
||||||
|
align-center
|
||||||
|
class="mb-2"
|
||||||
|
>
|
||||||
|
<v-icon
|
||||||
|
class="mr-2"
|
||||||
|
x-large
|
||||||
|
>
|
||||||
|
$vuetify.icons.cash
|
||||||
|
</v-icon>
|
||||||
|
<coin-value
|
||||||
|
class="title"
|
||||||
|
:value="totalValue"
|
||||||
|
/>
|
||||||
|
</v-layout>
|
||||||
|
<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"
|
||||||
|
/>
|
||||||
|
<span
|
||||||
|
v-if="model.quantity > 1"
|
||||||
|
class="title"
|
||||||
|
>
|
||||||
|
each
|
||||||
|
</span>
|
||||||
|
</v-layout>
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
v-if="model.weight !== undefined"
|
||||||
|
class="my-3"
|
||||||
|
>
|
||||||
|
<v-layout
|
||||||
|
v-if="model.quantity > 1"
|
||||||
|
row
|
||||||
|
align-center
|
||||||
|
justify-end
|
||||||
|
class="mb-2"
|
||||||
|
>
|
||||||
|
<span class="title">
|
||||||
|
{{ totalWeight }} lb
|
||||||
|
</span>
|
||||||
|
<v-icon
|
||||||
|
class="ml-2"
|
||||||
|
x-large
|
||||||
|
>
|
||||||
|
$vuetify.icons.injustice
|
||||||
|
</v-icon>
|
||||||
|
</v-layout>
|
||||||
|
<v-layout
|
||||||
|
row
|
||||||
|
align-center
|
||||||
|
justify-end
|
||||||
|
>
|
||||||
|
<span class="title mr-2">
|
||||||
|
{{ model.weight }} lb
|
||||||
|
</span>
|
||||||
|
<span
|
||||||
|
v-if="model.quantity > 1"
|
||||||
|
class="title"
|
||||||
|
>
|
||||||
|
each
|
||||||
|
</span>
|
||||||
|
<v-icon
|
||||||
|
class="ml-2"
|
||||||
|
x-large
|
||||||
|
>
|
||||||
|
$vuetify.icons.weight
|
||||||
|
</v-icon>
|
||||||
|
</v-layout>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
<property-description
|
<property-description
|
||||||
v-if="model.description"
|
v-if="model.description"
|
||||||
:value="model.description"
|
:value="model.description"
|
||||||
@@ -25,9 +116,41 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
import SVG_ICONS from '/imports/constants/SVG_ICONS.js';
|
||||||
import propertyViewerMixin from '/imports/ui/properties/viewers/shared/propertyViewerMixin.js'
|
import propertyViewerMixin from '/imports/ui/properties/viewers/shared/propertyViewerMixin.js'
|
||||||
|
import CoinValue from '/imports/ui/components/CoinValue.vue';
|
||||||
|
import IncrementButton from '/imports/ui/components/IncrementButton.vue';
|
||||||
|
import { adjustQuantity } from '/imports/api/creature/CreatureProperties.js';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
|
components:{
|
||||||
|
IncrementButton,
|
||||||
|
CoinValue,
|
||||||
|
},
|
||||||
mixins: [propertyViewerMixin],
|
mixins: [propertyViewerMixin],
|
||||||
|
inject: {
|
||||||
|
context: { default: {} }
|
||||||
|
},
|
||||||
|
computed:{
|
||||||
|
totalValue(){
|
||||||
|
return this.model.value * this.model.quantity;
|
||||||
|
},
|
||||||
|
totalWeight(){
|
||||||
|
return this.model.weight * this.model.quantity;
|
||||||
|
},
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
getIcon(name){
|
||||||
|
return SVG_ICONS[name];
|
||||||
|
},
|
||||||
|
changeQuantity({type, value}) {
|
||||||
|
adjustQuantity.call({
|
||||||
|
_id: this.model._id,
|
||||||
|
operation: type,
|
||||||
|
value: value
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user