-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathmodule-schema.js
127 lines (117 loc) · 4.72 KB
/
module-schema.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
import Joi from 'joi';
import { customElementSchema } from './element/custom-element-schema.js';
import { downloadElementSchema } from './element/download-schema.js';
import { embedElementSchema } from './element/embed-schema.js';
import { expandElementSchema } from './element/expand-schema.js';
import { flashcardsElementSchema } from './element/flashcards-schema.js';
import { imageElementSchema } from './element/image-schema.js';
import { qcmElementSchema } from './element/qcm-schema.js';
import { qcuElementSchema } from './element/qcu-schema.js';
import { qrocmElementSchema } from './element/qrocm-schema.js';
import { separatorElementSchema } from './element/separator-schema.js';
import { textElementSchema } from './element/text-schema.js';
import { videoElementSchema } from './element/video-schema.js';
import { htmlNotAllowedSchema, htmlSchema, uuidSchema } from './utils.js';
const transitionTextSchema = Joi.object({
grainId: uuidSchema,
content: htmlSchema,
}).required();
const moduleDetailsSchema = Joi.object({
image: Joi.string().uri().required(),
description: htmlSchema.required(),
duration: Joi.number().integer().min(0).max(120).required(),
level: Joi.string().valid('Débutant', 'Intermédiaire', 'Avancé', 'Expert').required(),
objectives: Joi.array().items(htmlSchema).min(1).required(),
tabletSupport: Joi.string().valid('comfortable', 'inconvenient', 'obstructed').required(),
});
const elementSchema = Joi.alternatives().conditional('.type', {
switch: [
{ is: 'custom', then: customElementSchema },
{ is: 'download', then: downloadElementSchema },
{ is: 'embed', then: embedElementSchema },
{ is: 'expand', then: expandElementSchema },
{ is: 'flashcards', then: flashcardsElementSchema },
{ is: 'image', then: imageElementSchema },
{ is: 'qcu', then: qcuElementSchema },
{ is: 'qcm', then: qcmElementSchema },
{ is: 'qrocm', then: qrocmElementSchema },
{ is: 'separator', then: separatorElementSchema },
{ is: 'text', then: textElementSchema },
{ is: 'video', then: videoElementSchema },
],
});
const stepperElementSchema = Joi.alternatives().conditional('.type', {
switch: [
{ is: 'custom', then: customElementSchema },
{ is: 'download', then: downloadElementSchema },
{ is: 'expand', then: expandElementSchema },
{ is: 'image', then: imageElementSchema },
{ is: 'qcu', then: qcuElementSchema },
{ is: 'qcm', then: qcmElementSchema },
{ is: 'qrocm', then: qrocmElementSchema },
{ is: 'separator', then: separatorElementSchema },
{ is: 'text', then: textElementSchema },
{ is: 'video', then: videoElementSchema },
],
});
const componentElementSchema = Joi.object({
type: Joi.string().valid('element').required(),
element: elementSchema.required(),
});
const componentStepperSchema = Joi.object({
type: Joi.string().valid('stepper').required(),
steps: Joi.array()
.items(
Joi.object({
elements: Joi.array().items(stepperElementSchema).required(),
}),
)
.min(2)
.required(),
});
const grainSchema = Joi.object({
id: uuidSchema,
type: Joi.string().valid('lesson', 'activity', 'discovery', 'challenge', 'summary').required(),
title: htmlNotAllowedSchema.required(),
components: Joi.array()
.items(
Joi.alternatives().conditional('.type', {
switch: [
{ is: 'element', then: componentElementSchema },
{ is: 'stepper', then: componentStepperSchema },
],
}),
)
.external(async (value, helpers) => {
const steppersInArray = value.filter(({ type }) => type === 'stepper');
if (steppersInArray.length > 1) {
return helpers.error("Il ne peut y avoir qu'un stepper par grain");
}
return value;
})
.external(async (value, helpers) => {
const steppersInArray = value.filter(({ type }) => type === 'stepper');
const elementsInArray = value.filter(({ type }) => type === 'element');
const containsAnswerableElement = elementsInArray.some(({ element }) =>
['qcu', 'qcm', 'qrocm'].includes(element.type),
);
if (steppersInArray.length === 1 && containsAnswerableElement) {
return helpers.error(
"Un grain ne peut pas être composé d'un composant 'stepper' et d'un composant 'element' répondable (QCU, QCM ou QROCM)",
);
}
return value;
}),
}).required();
const moduleSchema = Joi.object({
id: uuidSchema,
slug: Joi.string()
.regex(/^[a-z0-9-]+$/)
.required(),
title: htmlNotAllowedSchema.required(),
isBeta: Joi.boolean().required(),
details: moduleDetailsSchema.required(),
transitionTexts: Joi.array().items(transitionTextSchema),
grains: Joi.array().items(grainSchema).required(),
}).required();
export { grainSchema, moduleSchema };