54 lines
1.3 KiB
JavaScript
54 lines
1.3 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';
|
|
|
|
const AdjustmentSchema = createPropertySchema({
|
|
// The roll that determines how much to change the attribute
|
|
// This can be simplified, but should only compute when activated
|
|
amount: {
|
|
type: 'fieldToCompute',
|
|
parseLevel: 'compile',
|
|
optional: true,
|
|
defaultValue: 1,
|
|
},
|
|
// Who this adjustment applies to
|
|
target: {
|
|
type: String,
|
|
defaultValue: 'target',
|
|
allowedValues: [
|
|
'self',
|
|
'target',
|
|
],
|
|
},
|
|
// The stat this rolls applies to
|
|
stat: {
|
|
type: String,
|
|
optional: true,
|
|
max: STORAGE_LIMITS.variableName,
|
|
},
|
|
operation: {
|
|
type: String,
|
|
allowedValues: ['set', 'increment'],
|
|
defaultValue: 'increment',
|
|
},
|
|
// Prevent the property from showing up in the log
|
|
silent: {
|
|
type: Boolean,
|
|
optional: true,
|
|
},
|
|
});
|
|
|
|
const ComputedOnlyAdjustmentSchema = createPropertySchema({
|
|
amount: {
|
|
type: 'computedOnlyField',
|
|
parseLevel: 'compile',
|
|
optional: true,
|
|
},
|
|
});
|
|
|
|
const ComputedAdjustmentSchema = new SimpleSchema()
|
|
.extend(AdjustmentSchema)
|
|
.extend(ComputedOnlyAdjustmentSchema);
|
|
|
|
export { AdjustmentSchema, ComputedAdjustmentSchema, ComputedOnlyAdjustmentSchema };
|