37 lines
929 B
JavaScript
37 lines
929 B
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 FeatureSchema = createPropertySchema({
|
|
name: {
|
|
type: String,
|
|
max: STORAGE_LIMITS.name,
|
|
optional: true,
|
|
},
|
|
summary: {
|
|
type: 'inlineCalculationFieldToCompute',
|
|
optional: true,
|
|
},
|
|
description: {
|
|
type: 'inlineCalculationFieldToCompute',
|
|
optional: true,
|
|
},
|
|
});
|
|
|
|
let ComputedOnlyFeatureSchema = createPropertySchema({
|
|
summary: {
|
|
type: 'computedOnlyInlineCalculationField',
|
|
optional: true,
|
|
},
|
|
description: {
|
|
type: 'computedOnlyInlineCalculationField',
|
|
optional: true,
|
|
},
|
|
});
|
|
|
|
const ComputedFeatureSchema = new SimpleSchema()
|
|
.extend(FeatureSchema)
|
|
.extend(ComputedOnlyFeatureSchema);
|
|
|
|
export { FeatureSchema, ComputedFeatureSchema, ComputedOnlyFeatureSchema }
|