Compare commits
11 Commits
2.0-beta.5
...
2.0-beta.6
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
4bdc254627 | ||
|
|
db652ac47f | ||
|
|
32c9283569 | ||
|
|
060c44f384 | ||
|
|
8138cd98f1 | ||
|
|
5195e3fad5 | ||
|
|
eb97a98644 | ||
|
|
51845c62a7 | ||
|
|
56cd48da9d | ||
|
|
298f659829 | ||
|
|
b99d1a00f5 |
@@ -17,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');
|
||||||
|
|
||||||
@@ -36,6 +37,10 @@ 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){
|
||||||
@@ -259,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,
|
||||||
@@ -312,6 +359,7 @@ export {
|
|||||||
insertPropertyFromLibraryNode,
|
insertPropertyFromLibraryNode,
|
||||||
updateProperty,
|
updateProperty,
|
||||||
damageProperty,
|
damageProperty,
|
||||||
|
adjustQuantity,
|
||||||
pushToProperty,
|
pushToProperty,
|
||||||
pullFromProperty,
|
pullFromProperty,
|
||||||
softRemoveProperty,
|
softRemoveProperty,
|
||||||
|
|||||||
@@ -72,8 +72,11 @@ function combineSkill(stat, aggregator, memo){
|
|||||||
}
|
}
|
||||||
// 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;
|
||||||
if (aggregator.set !== undefined) {
|
if (aggregator.set !== undefined) {
|
||||||
@@ -103,6 +106,7 @@ function combineSkill(stat, aggregator, memo){
|
|||||||
stat.rollBonuses = aggregator.rollBonus;
|
stat.rollBonuses = aggregator.rollBonus;
|
||||||
// Hide
|
// Hide
|
||||||
stat.hide = aggregator.hasNoEffects &&
|
stat.hide = aggregator.hasNoEffects &&
|
||||||
|
stat.baseValue === undefined &&
|
||||||
stat.proficiency == 0 ||
|
stat.proficiency == 0 ||
|
||||||
undefined;
|
undefined;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -72,6 +72,9 @@ const calculationPropertyTypes = [
|
|||||||
* - Write the computed results back to the database
|
* - Write the computed results back to the database
|
||||||
*/
|
*/
|
||||||
export function recomputeCreatureById(creatureId){
|
export function recomputeCreatureById(creatureId){
|
||||||
|
// Skipping computation on the client can result in the server being made to
|
||||||
|
// do work that isn't possible, in exchange for dramatic performance gains
|
||||||
|
if (Meteor.isClient) return;
|
||||||
let props = getActiveProperties({
|
let props = getActiveProperties({
|
||||||
ancestorId: creatureId,
|
ancestorId: creatureId,
|
||||||
filter: {type: {$in: calculationPropertyTypes}},
|
filter: {type: {$in: calculationPropertyTypes}},
|
||||||
@@ -81,7 +84,6 @@ export function recomputeCreatureById(creatureId){
|
|||||||
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;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,7 +3,8 @@ import { ValidatedMethod } from 'meteor/mdg:validated-method';
|
|||||||
import Creatures from '/imports/api/creature/Creatures.js';
|
import Creatures from '/imports/api/creature/Creatures.js';
|
||||||
import CreatureProperties from '/imports/api/creature/CreatureProperties.js';
|
import CreatureProperties from '/imports/api/creature/CreatureProperties.js';
|
||||||
import getActiveProperties, { getActivePropertyFilter } from '/imports/api/creature/getActiveProperties.js';
|
import getActiveProperties, { getActivePropertyFilter } from '/imports/api/creature/getActiveProperties.js';
|
||||||
import {assertEditPermission} from '/imports/api/creature/creaturePermissions.js';
|
import { assertEditPermission } from '/imports/api/creature/creaturePermissions.js';
|
||||||
|
import { recomputeCreatureById } from '/imports/api/creature/computation/recomputeCreature.js';
|
||||||
|
|
||||||
const restCreature = new ValidatedMethod({
|
const restCreature = new ValidatedMethod({
|
||||||
name: 'creature.methods.longRest',
|
name: 'creature.methods.longRest',
|
||||||
@@ -87,7 +88,8 @@ const restCreature = new ValidatedMethod({
|
|||||||
let amountToRecover, resultingDamage;
|
let amountToRecover, resultingDamage;
|
||||||
hitDice.forEach(hd => {
|
hitDice.forEach(hd => {
|
||||||
if (!recoverableHd) return;
|
if (!recoverableHd) return;
|
||||||
amountToRecover = Math.min(recoverableHd, hd.damage);
|
amountToRecover = Math.min(recoverableHd, hd.damage || 0);
|
||||||
|
if (!amountToRecover) return;
|
||||||
recoverableHd -= amountToRecover;
|
recoverableHd -= amountToRecover;
|
||||||
resultingDamage = hd.damage - amountToRecover;
|
resultingDamage = hd.damage - amountToRecover;
|
||||||
CreatureProperties.update(hd._id, {
|
CreatureProperties.update(hd._id, {
|
||||||
@@ -97,6 +99,7 @@ const restCreature = new ValidatedMethod({
|
|||||||
});
|
});
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
recomputeCreatureById(creatureId);
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|||||||
@@ -9,6 +9,7 @@ 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');
|
||||||
|
|
||||||
@@ -24,6 +25,10 @@ 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){
|
||||||
|
|||||||
@@ -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`
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
import SimpleSchema from 'simpl-schema';
|
import SimpleSchema from 'simpl-schema';
|
||||||
import VARIABLE_NAME_REGEX from '/imports/constants/VARIABLE_NAME_REGEX.js';
|
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
|
||||||
@@ -37,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
|
||||||
@@ -59,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: {
|
||||||
|
|||||||
@@ -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');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
24
app/imports/constants/SVG_ICONS.js
Normal file
24
app/imports/constants/SVG_ICONS.js
Normal file
File diff suppressed because one or more lines are too long
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>
|
||||||
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>
|
||||||
120
app/imports/ui/components/global/IconPicker.vue
Normal file
120
app/imports/ui/components/global/IconPicker.vue
Normal file
@@ -0,0 +1,120 @@
|
|||||||
|
<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: [],
|
||||||
|
};},
|
||||||
|
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,
|
||||||
},
|
},
|
||||||
|
|||||||
89
app/imports/ui/components/global/SvgIcon.vue
Normal file
89
app/imports/ui/components/global/SvgIcon.vue
Normal file
@@ -0,0 +1,89 @@
|
|||||||
|
<template lang="html">
|
||||||
|
<i
|
||||||
|
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,
|
||||||
|
},
|
||||||
|
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.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'];
|
||||||
|
},
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="css" scoped>
|
||||||
|
svg {
|
||||||
|
color: inherit;
|
||||||
|
fill: currentColor;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
@@ -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);
|
||||||
|
|||||||
@@ -5,11 +5,11 @@
|
|||||||
:flat="flat"
|
:flat="flat"
|
||||||
>
|
>
|
||||||
<property-icon
|
<property-icon
|
||||||
:type="model && model.type"
|
:model="model"
|
||||||
class="mr-2"
|
class="mr-2"
|
||||||
/>
|
/>
|
||||||
<v-toolbar-title v-if="model">
|
<v-toolbar-title v-if="model">
|
||||||
{{ model.name || getPropertyName(model.type) }}
|
{{ title }}
|
||||||
</v-toolbar-title>
|
</v-toolbar-title>
|
||||||
<v-spacer />
|
<v-spacer />
|
||||||
<v-slide-y-transition
|
<v-slide-y-transition
|
||||||
@@ -141,13 +141,25 @@ export default {
|
|||||||
},
|
},
|
||||||
color(){
|
color(){
|
||||||
return this.model && this.model.color || this.$vuetify.theme.secondary;
|
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: {
|
methods: {
|
||||||
colorChanged(value){
|
colorChanged(value){
|
||||||
this.$emit('color-changed', value);
|
this.$emit('color-changed', value);
|
||||||
},
|
},
|
||||||
getPropertyName,
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
@@ -292,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';
|
||||||
|
|||||||
@@ -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,31 @@
|
|||||||
</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,
|
||||||
}},
|
}},
|
||||||
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']] });
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -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);
|
||||||
|
}
|
||||||
|
|||||||
@@ -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">
|
||||||
|
|||||||
@@ -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,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
|
||||||
@@ -67,7 +76,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)"
|
||||||
|
|||||||
@@ -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{
|
||||||
|
|||||||
@@ -1,5 +1,13 @@
|
|||||||
<template lang="html">
|
<template lang="html">
|
||||||
<v-icon :color="color">
|
<svg-icon
|
||||||
|
v-if="model.icon"
|
||||||
|
:shape="model.icon.shape"
|
||||||
|
:color="color"
|
||||||
|
/>
|
||||||
|
<v-icon
|
||||||
|
v-else
|
||||||
|
:color="color"
|
||||||
|
>
|
||||||
{{ icon }}
|
{{ icon }}
|
||||||
</v-icon>
|
</v-icon>
|
||||||
</template>
|
</template>
|
||||||
@@ -9,12 +17,18 @@ import { getPropertyIcon } from '/imports/constants/PROPERTIES.js';
|
|||||||
|
|
||||||
export default {
|
export default {
|
||||||
props: {
|
props: {
|
||||||
type: String,
|
model: {
|
||||||
color: String,
|
type: Object,
|
||||||
|
default: () => ({}),
|
||||||
|
},
|
||||||
|
color: {
|
||||||
|
type: String,
|
||||||
|
default: undefined,
|
||||||
|
},
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
icon(){
|
icon(){
|
||||||
return getPropertyIcon(this.type);
|
return getPropertyIcon(this.model && this.model.type);
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
<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"
|
:color="model.color"
|
||||||
/>
|
/>
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
<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"
|
:color="model.color"
|
||||||
:class="selected && 'primary--text'"
|
:class="selected && 'primary--text'"
|
||||||
/>
|
/>
|
||||||
|
|||||||
@@ -1,11 +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'"
|
||||||
:color="model.color"
|
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"
|
||||||
@@ -18,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,22 +1,116 @@
|
|||||||
<template lang="html">
|
<template lang="html">
|
||||||
<div class="item-viewer">
|
<div class="item-viewer">
|
||||||
<property-name :value="model.name" />
|
<div
|
||||||
<property-field
|
v-if="tagString"
|
||||||
name="Plural name"
|
class="tags ma-3"
|
||||||
:value="model.plural"
|
>
|
||||||
/>
|
{{ tagString }}
|
||||||
<property-field
|
</div>
|
||||||
name="Quantity"
|
<div
|
||||||
:value="model.quantity"
|
v-if="model.quantity > 1 || model.showIncrement"
|
||||||
/>
|
class="layout column justify-center align-center"
|
||||||
<property-field
|
>
|
||||||
name="Weight"
|
<div class="display-1">
|
||||||
:value="`${model.weight} lbs`"
|
{{ model.quantity }}
|
||||||
/>
|
</div>
|
||||||
<property-field
|
<increment-button
|
||||||
name="Value"
|
v-if="context.creature && model.showIncrement"
|
||||||
:value="`${model.value} gp`"
|
icon
|
||||||
/>
|
large
|
||||||
|
outline
|
||||||
|
color="primary"
|
||||||
|
:value="model.quantity"
|
||||||
|
@change="changeQuantity"
|
||||||
|
>
|
||||||
|
<svg-icon
|
||||||
|
:shape="getIcon('abacus').shape"
|
||||||
|
/>
|
||||||
|
</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"
|
||||||
|
>
|
||||||
|
<svg-icon
|
||||||
|
:shape="getIcon('cash').shape"
|
||||||
|
class="mr-2"
|
||||||
|
x-large
|
||||||
|
/>
|
||||||
|
<coin-value
|
||||||
|
class="title"
|
||||||
|
:value="totalValue"
|
||||||
|
/>
|
||||||
|
</v-layout>
|
||||||
|
<v-layout
|
||||||
|
row
|
||||||
|
align-center
|
||||||
|
>
|
||||||
|
<svg-icon
|
||||||
|
:shape="getIcon('two-coins').shape"
|
||||||
|
class="mr-2"
|
||||||
|
x-large
|
||||||
|
/>
|
||||||
|
<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>
|
||||||
|
<svg-icon
|
||||||
|
:shape="getIcon('injustice').shape"
|
||||||
|
class="ml-2"
|
||||||
|
x-large
|
||||||
|
/>
|
||||||
|
</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>
|
||||||
|
<svg-icon
|
||||||
|
:shape="getIcon('weight').shape"
|
||||||
|
class="ml-2"
|
||||||
|
x-large
|
||||||
|
/>
|
||||||
|
</v-layout>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
<property-description
|
<property-description
|
||||||
v-if="model.description"
|
v-if="model.description"
|
||||||
:value="model.description"
|
:value="model.description"
|
||||||
@@ -25,9 +119,44 @@
|
|||||||
</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:{
|
||||||
|
tagString(){
|
||||||
|
return this.model.tags && this.model.tags.join(', ');
|
||||||
|
},
|
||||||
|
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>
|
||||||
|
|
||||||
|
|||||||
@@ -14,7 +14,8 @@ import CharacterSheetToolbarItems from '/imports/ui/creature/character/Character
|
|||||||
import CharacterSheetToolbarExtension from '/imports/ui/creature/character/CharacterSheetToolbarExtension.vue';
|
import CharacterSheetToolbarExtension from '/imports/ui/creature/character/CharacterSheetToolbarExtension.vue';
|
||||||
import SignIn from '/imports/ui/pages/SignIn.vue' ;
|
import SignIn from '/imports/ui/pages/SignIn.vue' ;
|
||||||
import Register from '/imports/ui/pages/Register.vue';
|
import Register from '/imports/ui/pages/Register.vue';
|
||||||
import Friends from '/imports/ui/pages/Friends.vue' ;
|
import IconAdmin from '/imports/ui/icons/IconAdmin.vue';
|
||||||
|
//import Friends from '/imports/ui/pages/Friends.vue' ;
|
||||||
import Feedback from '/imports/ui/pages/Feedback.vue' ;
|
import Feedback from '/imports/ui/pages/Feedback.vue' ;
|
||||||
import Account from '/imports/ui/pages/Account.vue' ;
|
import Account from '/imports/ui/pages/Account.vue' ;
|
||||||
import InviteSuccess from '/imports/ui/pages/InviteSuccess.vue' ;
|
import InviteSuccess from '/imports/ui/pages/InviteSuccess.vue' ;
|
||||||
@@ -48,6 +49,24 @@ function ensureLoggedIn(to, from, next){
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function ensureAdmin(to, from, next){
|
||||||
|
Tracker.autorun((computation) => {
|
||||||
|
if (userSubscription.ready()){
|
||||||
|
computation.stop();
|
||||||
|
const user = Meteor.user();
|
||||||
|
if (user){
|
||||||
|
if (user.roles && user.roles.includes('admin')){
|
||||||
|
next()
|
||||||
|
} else {
|
||||||
|
next({name: 'home'});
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
next({ name: 'signIn', query: { redirect: to.path} });
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
function claimInvite(to, from, next){
|
function claimInvite(to, from, next){
|
||||||
Tracker.autorun((computation) => {
|
Tracker.autorun((computation) => {
|
||||||
if (userSubscription.ready()){
|
if (userSubscription.ready()){
|
||||||
@@ -222,19 +241,13 @@ RouterFactory.configure(factory => {
|
|||||||
meta: {
|
meta: {
|
||||||
title: 'Patreon Tier Too Low',
|
title: 'Patreon Tier Too Low',
|
||||||
},
|
},
|
||||||
|
},{
|
||||||
|
path: '/icon-admin',
|
||||||
|
name: 'iconAdmin',
|
||||||
|
component: IconAdmin,
|
||||||
|
beforeEnter: ensureAdmin,
|
||||||
},
|
},
|
||||||
]);
|
]);
|
||||||
// Icon admin routes
|
|
||||||
if (Meteor.isDevelopment){
|
|
||||||
let IconAdmin = require('/imports/ui/icons/IconAdmin.vue').default;
|
|
||||||
factory.addRoutes([
|
|
||||||
{
|
|
||||||
path: '/icon-admin',
|
|
||||||
name: 'iconAdmin',
|
|
||||||
component: IconAdmin,
|
|
||||||
},
|
|
||||||
]);
|
|
||||||
}
|
|
||||||
});
|
});
|
||||||
|
|
||||||
// Not found route has lowest priority
|
// Not found route has lowest priority
|
||||||
|
|||||||
8
app/imports/ui/utility/valueToCoins.js
Normal file
8
app/imports/ui/utility/valueToCoins.js
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
export default function valueToCoins(value = 0){
|
||||||
|
let totalCopperValue = Math.round(value * 100);
|
||||||
|
let copper = totalCopperValue % 10;
|
||||||
|
let totalSilverValue = Math.floor(totalCopperValue / 10);
|
||||||
|
let silver = (totalSilverValue % 10);
|
||||||
|
let totalGoldValue = Math.floor(totalSilverValue / 10);
|
||||||
|
return {gp: totalGoldValue, sp: silver, cp: copper};
|
||||||
|
}
|
||||||
971
app/package-lock.json
generated
971
app/package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@@ -41,7 +41,7 @@
|
|||||||
"vue-router": "^3.1.6",
|
"vue-router": "^3.1.6",
|
||||||
"vuedraggable": "^2.23.2",
|
"vuedraggable": "^2.23.2",
|
||||||
"vuetify": "^1.5.24",
|
"vuetify": "^1.5.24",
|
||||||
"vuetify-upload-button": "^1.2.2",
|
"vuetify-upload-button": "^2.0.2",
|
||||||
"vuex": "^3.1.3"
|
"vuex": "^3.1.3"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
|||||||
Binary file not shown.
|
Before Width: | Height: | Size: 100 KiB After Width: | Height: | Size: 70 KiB |
Reference in New Issue
Block a user