116 lines
2.4 KiB
JavaScript
116 lines
2.4 KiB
JavaScript
import SimpleSchema from 'simpl-schema';
|
|
import STORAGE_LIMITS from '/imports/constants/STORAGE_LIMITS.js';
|
|
import createPropertySchema from '/imports/api/properties/subSchemas/createPropertySchema.js';
|
|
|
|
let SlotSchema = createPropertySchema({
|
|
name: {
|
|
type: String,
|
|
optional: true,
|
|
max: STORAGE_LIMITS.name,
|
|
},
|
|
description: {
|
|
type: 'inlineCalculationFieldToCompute',
|
|
optional: true,
|
|
},
|
|
slotType: {
|
|
type: String,
|
|
optional: true,
|
|
max: STORAGE_LIMITS.variableName,
|
|
},
|
|
slotTags: {
|
|
type: Array,
|
|
defaultValue: [],
|
|
maxCount: STORAGE_LIMITS.tagCount,
|
|
},
|
|
'slotTags.$': {
|
|
type: String,
|
|
max: STORAGE_LIMITS.tagLength,
|
|
},
|
|
extraTags: {
|
|
type: Array,
|
|
defaultValue: [],
|
|
maxCount: STORAGE_LIMITS.extraTagsCount,
|
|
},
|
|
'extraTags.$': {
|
|
type: Object,
|
|
},
|
|
'extraTags.$._id': {
|
|
type: String,
|
|
regEx: SimpleSchema.RegEx.Id,
|
|
autoValue(){
|
|
if (!this.isSet) return Random.id();
|
|
}
|
|
},
|
|
'extraTags.$.operation': {
|
|
type: String,
|
|
allowedValues: ['OR', 'NOT'],
|
|
defaultValue: 'OR',
|
|
},
|
|
'extraTags.$.tags': {
|
|
type: Array,
|
|
defaultValue: [],
|
|
maxCount: STORAGE_LIMITS.tagCount,
|
|
},
|
|
'extraTags.$.tags.$': {
|
|
type: String,
|
|
max: STORAGE_LIMITS.tagLength,
|
|
},
|
|
quantityExpected: {
|
|
type: 'fieldToCompute',
|
|
optional: true,
|
|
defaultValue: '1',
|
|
},
|
|
ignored: {
|
|
type: Boolean,
|
|
optional: true,
|
|
},
|
|
slotCondition: {
|
|
type: 'fieldToCompute',
|
|
optional: true,
|
|
},
|
|
hideWhenFull: {
|
|
type: Boolean,
|
|
optional: true,
|
|
defaultValue: true,
|
|
},
|
|
unique: {
|
|
type: String,
|
|
allowedValues: [
|
|
// Can't choose the same slot filler twice in this slot
|
|
'uniqueInSlot',
|
|
// Can't choose the same slot filler twice accross the whole creature
|
|
'uniqueInCreature'
|
|
],
|
|
optional: true,
|
|
defaultValue: 'uniqueInSlot',
|
|
},
|
|
});
|
|
|
|
const ComputedOnlySlotSchema = createPropertySchema({
|
|
// Computed fields
|
|
quantityExpected: {
|
|
type: 'computedOnlyField',
|
|
optional: true,
|
|
},
|
|
slotCondition: {
|
|
type: 'computedOnlyField',
|
|
optional: true,
|
|
},
|
|
|
|
// Denormalised fields
|
|
totalFilled: {
|
|
type: SimpleSchema.Integer,
|
|
defaultValue: 0,
|
|
},
|
|
spaceLeft: {
|
|
type: SimpleSchema.Integer,
|
|
optional: true,
|
|
},
|
|
});
|
|
|
|
const ComputedSlotSchema = new SimpleSchema()
|
|
.extend(ComputedOnlySlotSchema)
|
|
.extend(SlotSchema);
|
|
|
|
export { SlotSchema, ComputedSlotSchema, ComputedOnlySlotSchema };
|