@pie-element/categorize 11.0.5-esm.1 → 11.2.0-mui-update.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +81 -0
- package/configure/CHANGELOG.md +74 -0
- package/configure/lib/defaults.js +2 -5
- package/configure/lib/defaults.js.map +1 -1
- package/configure/lib/design/builder.js +15 -33
- package/configure/lib/design/builder.js.map +1 -1
- package/configure/lib/design/buttons.js +44 -95
- package/configure/lib/design/buttons.js.map +1 -1
- package/configure/lib/design/categories/RowLabel.js +32 -45
- package/configure/lib/design/categories/RowLabel.js.map +1 -1
- package/configure/lib/design/categories/alternateResponses.js +102 -251
- package/configure/lib/design/categories/alternateResponses.js.map +1 -1
- package/configure/lib/design/categories/category.js +138 -208
- package/configure/lib/design/categories/category.js.map +1 -1
- package/configure/lib/design/categories/choice-preview.js +59 -126
- package/configure/lib/design/categories/choice-preview.js.map +1 -1
- package/configure/lib/design/categories/droppable-placeholder.js +76 -165
- package/configure/lib/design/categories/droppable-placeholder.js.map +1 -1
- package/configure/lib/design/categories/index.js +199 -384
- package/configure/lib/design/categories/index.js.map +1 -1
- package/configure/lib/design/choices/choice.js +160 -263
- package/configure/lib/design/choices/choice.js.map +1 -1
- package/configure/lib/design/choices/config.js +46 -98
- package/configure/lib/design/choices/config.js.map +1 -1
- package/configure/lib/design/choices/index.js +152 -236
- package/configure/lib/design/choices/index.js.map +1 -1
- package/configure/lib/design/header.js +62 -111
- package/configure/lib/design/header.js.map +1 -1
- package/configure/lib/design/index.js +632 -476
- package/configure/lib/design/index.js.map +1 -1
- package/configure/lib/design/input-header.js +97 -149
- package/configure/lib/design/input-header.js.map +1 -1
- package/configure/lib/design/utils.js +4 -15
- package/configure/lib/design/utils.js.map +1 -1
- package/configure/lib/index.js +120 -183
- package/configure/lib/index.js.map +1 -1
- package/configure/lib/main.js +31 -74
- package/configure/lib/main.js.map +1 -1
- package/configure/lib/utils.js +22 -32
- package/configure/lib/utils.js.map +1 -1
- package/configure/package.json +15 -14
- package/controller/CHANGELOG.md +62 -0
- package/controller/lib/defaults.js +2 -5
- package/controller/lib/defaults.js.map +1 -1
- package/controller/lib/index.js +238 -315
- package/controller/lib/index.js.map +1 -1
- package/controller/lib/utils.js +40 -31
- package/controller/lib/utils.js.map +1 -1
- package/controller/package.json +5 -5
- package/lib/categorize/categories.js +110 -164
- package/lib/categorize/categories.js.map +1 -1
- package/lib/categorize/category.js +72 -122
- package/lib/categorize/category.js.map +1 -1
- package/lib/categorize/choice.js +116 -245
- package/lib/categorize/choice.js.map +1 -1
- package/lib/categorize/choices.js +66 -131
- package/lib/categorize/choices.js.map +1 -1
- package/lib/categorize/droppable-placeholder.js +49 -103
- package/lib/categorize/droppable-placeholder.js.map +1 -1
- package/lib/categorize/grid-content.js +39 -87
- package/lib/categorize/grid-content.js.map +1 -1
- package/lib/categorize/index.js +341 -316
- package/lib/categorize/index.js.map +1 -1
- package/lib/index.js +286 -271
- package/lib/index.js.map +1 -1
- package/package.json +17 -31
- package/LICENSE.md +0 -5
- package/esm/configure.js +0 -5025
- package/esm/configure.js.map +0 -1
- package/esm/controller.js +0 -456
- package/esm/controller.js.map +0 -1
- package/esm/element.js +0 -3118
- package/esm/element.js.map +0 -1
- package/module/configure.js +0 -1
- package/module/controller.js +0 -6076
- package/module/demo.js +0 -382
- package/module/element.js +0 -1
- package/module/index.html +0 -21
- package/module/manifest.json +0 -22
- package/module/print-demo.js +0 -420
- package/module/print.html +0 -18
package/esm/controller.js
DELETED
|
@@ -1,456 +0,0 @@
|
|
|
1
|
-
import isEmpty from 'lodash/isEmpty';
|
|
2
|
-
import { buildState } from '@pie-lib/categorize';
|
|
3
|
-
export { score } from '@pie-lib/categorize';
|
|
4
|
-
import { getFeedbackForCorrectness } from '@pie-lib/feedback';
|
|
5
|
-
import { partialScoring, lockChoices, getShuffledChoices } from '@pie-lib/controller-utils';
|
|
6
|
-
import Translator from '@pie-lib/translator';
|
|
7
|
-
|
|
8
|
-
function _extends() {
|
|
9
|
-
_extends = Object.assign || function (target) {
|
|
10
|
-
for (var i = 1; i < arguments.length; i++) {
|
|
11
|
-
var source = arguments[i];
|
|
12
|
-
|
|
13
|
-
for (var key in source) {
|
|
14
|
-
if (Object.prototype.hasOwnProperty.call(source, key)) {
|
|
15
|
-
target[key] = source[key];
|
|
16
|
-
}
|
|
17
|
-
}
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
return target;
|
|
21
|
-
};
|
|
22
|
-
|
|
23
|
-
return _extends.apply(this, arguments);
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
// used in configure too, for consistency modify it there too
|
|
27
|
-
const multiplePlacements = {
|
|
28
|
-
enabled: 'Yes',
|
|
29
|
-
disabled: 'No',
|
|
30
|
-
perChoice: 'Set Per Choice'
|
|
31
|
-
}; // used to validate the config
|
|
32
|
-
|
|
33
|
-
const isCorrectResponseDuplicated = (choices, alternate) => {
|
|
34
|
-
if (choices.length < 1 || alternate.length < 1) {
|
|
35
|
-
return -1;
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
const stringChoices = JSON.stringify(choices.sort());
|
|
39
|
-
const stringAlternate = alternate.reduce((total, current) => current.length > 0 ? [...total, JSON.stringify(current.sort())] : total, []);
|
|
40
|
-
const foundIndexDuplicate = stringAlternate.findIndex(alternate => alternate.length && alternate === stringChoices);
|
|
41
|
-
return foundIndexDuplicate;
|
|
42
|
-
};
|
|
43
|
-
const isAlternateDuplicated = alternate => {
|
|
44
|
-
if (alternate.length <= 1) {
|
|
45
|
-
return -1;
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
const elementSet = new Set();
|
|
49
|
-
const stringAlternate = alternate.reduce((total, current) => current.length > 0 ? [...total, JSON.stringify(current.sort())] : total, []);
|
|
50
|
-
|
|
51
|
-
for (let i = 0; i < stringAlternate.length; i++) {
|
|
52
|
-
if (elementSet.has(stringAlternate[i]) && stringAlternate[i]) {
|
|
53
|
-
return i;
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
elementSet.add(stringAlternate[i]);
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
return -1;
|
|
60
|
-
};
|
|
61
|
-
|
|
62
|
-
var defaults = {
|
|
63
|
-
allowMultiplePlacementsEnabled: multiplePlacements.enabled,
|
|
64
|
-
alternates: [],
|
|
65
|
-
categories: [],
|
|
66
|
-
categoriesPerRow: 2,
|
|
67
|
-
choices: [],
|
|
68
|
-
choicesLabel: '',
|
|
69
|
-
choicesPosition: 'below',
|
|
70
|
-
correctResponse: [],
|
|
71
|
-
feedbackEnabled: false,
|
|
72
|
-
lockChoiceOrder: true,
|
|
73
|
-
maxAnswerChoices: 6,
|
|
74
|
-
maxChoicesPerCategory: 0,
|
|
75
|
-
partialScoring: true,
|
|
76
|
-
prompt: '',
|
|
77
|
-
promptEnabled: true,
|
|
78
|
-
rationale: '',
|
|
79
|
-
rationaleEnabled: true,
|
|
80
|
-
rowLabels: [''],
|
|
81
|
-
studentInstructionsEnabled: true,
|
|
82
|
-
teacherInstructions: '',
|
|
83
|
-
teacherInstructionsEnabled: true,
|
|
84
|
-
toolbarEditorPosition: 'bottom',
|
|
85
|
-
minRowHeight: '80px'
|
|
86
|
-
};
|
|
87
|
-
|
|
88
|
-
const {
|
|
89
|
-
translator
|
|
90
|
-
} = Translator;
|
|
91
|
-
const getPartialScore = (correctResponse, builtCategories) => {
|
|
92
|
-
// in the resulted best scenario we make a sum with all the correct responses
|
|
93
|
-
// and all the placements
|
|
94
|
-
const {
|
|
95
|
-
placements,
|
|
96
|
-
score
|
|
97
|
-
} = builtCategories.reduce((acc, {
|
|
98
|
-
choices: _choices = []
|
|
99
|
-
}) => ({
|
|
100
|
-
placements: acc.placements + _choices.length,
|
|
101
|
-
score: acc.score + _choices.filter(ch => ch.correct).length
|
|
102
|
-
}), {
|
|
103
|
-
placements: 0,
|
|
104
|
-
score: 0
|
|
105
|
-
}); // in the correct response, we make a sum of the max possible score
|
|
106
|
-
|
|
107
|
-
const {
|
|
108
|
-
maxScore
|
|
109
|
-
} = correctResponse.reduce((acc, {
|
|
110
|
-
choices
|
|
111
|
-
}) => ({
|
|
112
|
-
maxScore: acc.maxScore + choices.length
|
|
113
|
-
}), {
|
|
114
|
-
maxScore: 0
|
|
115
|
-
}); // if there are any extra placements, we subtract from the obtained score
|
|
116
|
-
|
|
117
|
-
const extraPlacements = placements > maxScore ? placements - maxScore : 0;
|
|
118
|
-
const totalScore = (score - extraPlacements) / maxScore;
|
|
119
|
-
return totalScore < 0 ? 0 : parseFloat(totalScore.toFixed(2));
|
|
120
|
-
};
|
|
121
|
-
|
|
122
|
-
const getAlternates = correctResponse => correctResponse.map(c => c.alternateResponses).filter(alternate => alternate);
|
|
123
|
-
|
|
124
|
-
const getTotalScore = (question, session, env) => {
|
|
125
|
-
if (!session) {
|
|
126
|
-
return 0;
|
|
127
|
-
}
|
|
128
|
-
|
|
129
|
-
if (Object.keys(session).length === 0) {
|
|
130
|
-
return 0;
|
|
131
|
-
}
|
|
132
|
-
|
|
133
|
-
const {
|
|
134
|
-
categories,
|
|
135
|
-
choices
|
|
136
|
-
} = question || {};
|
|
137
|
-
let {
|
|
138
|
-
correctResponse
|
|
139
|
-
} = question || {};
|
|
140
|
-
let {
|
|
141
|
-
answers
|
|
142
|
-
} = session || {};
|
|
143
|
-
answers = answers || [];
|
|
144
|
-
correctResponse = correctResponse || []; // this function is used in pie-ui/categorize as well, in order to get the best scenario
|
|
145
|
-
// so we get the best scenario and calculate the score
|
|
146
|
-
|
|
147
|
-
const {
|
|
148
|
-
categories: builtCategories,
|
|
149
|
-
correct
|
|
150
|
-
} = buildState(categories, choices, answers, correctResponse);
|
|
151
|
-
const alternates = getAlternates(correctResponse);
|
|
152
|
-
const enabled = partialScoring.enabled(question, env); // if there are any alternates, there will be no partial scoring!
|
|
153
|
-
|
|
154
|
-
if (enabled && !alternates.length) {
|
|
155
|
-
// we apply partial scoring
|
|
156
|
-
return getPartialScore(correctResponse, builtCategories);
|
|
157
|
-
} // else we apply dichotomous
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
return correct ? 1 : 0;
|
|
161
|
-
};
|
|
162
|
-
const getCorrectness = (question, session, env) => {
|
|
163
|
-
return new Promise(resolve => {
|
|
164
|
-
if (env.mode === 'evaluate') {
|
|
165
|
-
const score = getTotalScore(question, session, env);
|
|
166
|
-
|
|
167
|
-
if (score === 1) {
|
|
168
|
-
resolve('correct');
|
|
169
|
-
} else if (score === 0) {
|
|
170
|
-
resolve('incorrect');
|
|
171
|
-
} else {
|
|
172
|
-
resolve('partially-correct');
|
|
173
|
-
}
|
|
174
|
-
} else {
|
|
175
|
-
resolve(undefined);
|
|
176
|
-
}
|
|
177
|
-
});
|
|
178
|
-
};
|
|
179
|
-
const createDefaultModel = (model = {}) => new Promise(resolve => {
|
|
180
|
-
resolve(_extends({}, defaults, model));
|
|
181
|
-
});
|
|
182
|
-
const normalize = question => _extends({}, defaults, question);
|
|
183
|
-
/**
|
|
184
|
-
*
|
|
185
|
-
* @param {*} question
|
|
186
|
-
* @param {*} session
|
|
187
|
-
* @param {*} env
|
|
188
|
-
* @param {*} updateSession - optional - a function that will set the properties passed into it on the session.
|
|
189
|
-
*/
|
|
190
|
-
|
|
191
|
-
const model = (question, session, env, updateSession) => new Promise(async resolve => {
|
|
192
|
-
const normalizedQuestion = normalize(question);
|
|
193
|
-
const answerCorrectness = await getCorrectness(normalizedQuestion, session, env);
|
|
194
|
-
const {
|
|
195
|
-
mode,
|
|
196
|
-
role
|
|
197
|
-
} = env || {};
|
|
198
|
-
const {
|
|
199
|
-
categories,
|
|
200
|
-
categoriesPerRow,
|
|
201
|
-
choicesLabel,
|
|
202
|
-
choicesPosition,
|
|
203
|
-
correctResponse,
|
|
204
|
-
feedback,
|
|
205
|
-
feedbackEnabled,
|
|
206
|
-
promptEnabled,
|
|
207
|
-
prompt,
|
|
208
|
-
rowLabels,
|
|
209
|
-
rationaleEnabled,
|
|
210
|
-
rationale,
|
|
211
|
-
teacherInstructionsEnabled,
|
|
212
|
-
teacherInstructions,
|
|
213
|
-
language,
|
|
214
|
-
maxChoicesPerCategory,
|
|
215
|
-
extraCSSRules,
|
|
216
|
-
minRowHeight,
|
|
217
|
-
fontSizeFactor,
|
|
218
|
-
autoplayAudioEnabled,
|
|
219
|
-
completeAudioEnabled,
|
|
220
|
-
customAudioButton
|
|
221
|
-
} = normalizedQuestion;
|
|
222
|
-
let {
|
|
223
|
-
choices,
|
|
224
|
-
note
|
|
225
|
-
} = normalizedQuestion;
|
|
226
|
-
let fb;
|
|
227
|
-
const lockChoiceOrder = lockChoices(normalizedQuestion, session, env);
|
|
228
|
-
const filteredCorrectResponse = correctResponse.map(response => {
|
|
229
|
-
const filteredChoices = (response.choices || []).filter(choice => choice !== 'null');
|
|
230
|
-
return _extends({}, response, {
|
|
231
|
-
choices: filteredChoices
|
|
232
|
-
});
|
|
233
|
-
});
|
|
234
|
-
|
|
235
|
-
if (mode === 'evaluate' && feedbackEnabled) {
|
|
236
|
-
fb = await getFeedbackForCorrectness(answerCorrectness, feedback);
|
|
237
|
-
}
|
|
238
|
-
|
|
239
|
-
if (!lockChoiceOrder) {
|
|
240
|
-
choices = await getShuffledChoices(choices, session, updateSession, 'id');
|
|
241
|
-
}
|
|
242
|
-
|
|
243
|
-
if (!note) {
|
|
244
|
-
note = translator.t('common:commonCorrectAnswerWithAlternates', {
|
|
245
|
-
lng: language
|
|
246
|
-
});
|
|
247
|
-
}
|
|
248
|
-
|
|
249
|
-
const alternates = getAlternates(filteredCorrectResponse);
|
|
250
|
-
const out = {
|
|
251
|
-
categories: categories || [],
|
|
252
|
-
categoriesPerRow: categoriesPerRow || 2,
|
|
253
|
-
maxChoicesPerCategory,
|
|
254
|
-
correctness: answerCorrectness,
|
|
255
|
-
choices: choices || [],
|
|
256
|
-
choicesLabel: choicesLabel || '',
|
|
257
|
-
choicesPosition,
|
|
258
|
-
disabled: mode !== 'gather',
|
|
259
|
-
feedback: fb,
|
|
260
|
-
lockChoiceOrder,
|
|
261
|
-
prompt: promptEnabled ? prompt : null,
|
|
262
|
-
rowLabels,
|
|
263
|
-
note,
|
|
264
|
-
env,
|
|
265
|
-
showNote: alternates && alternates.length > 0,
|
|
266
|
-
correctResponse: mode === 'evaluate' ? filteredCorrectResponse : undefined,
|
|
267
|
-
language,
|
|
268
|
-
extraCSSRules,
|
|
269
|
-
fontSizeFactor,
|
|
270
|
-
minRowHeight: minRowHeight,
|
|
271
|
-
autoplayAudioEnabled,
|
|
272
|
-
completeAudioEnabled,
|
|
273
|
-
customAudioButton
|
|
274
|
-
};
|
|
275
|
-
|
|
276
|
-
if (role === 'instructor' && (mode === 'view' || mode === 'evaluate')) {
|
|
277
|
-
out.rationale = rationaleEnabled ? rationale : null;
|
|
278
|
-
out.teacherInstructions = teacherInstructionsEnabled ? teacherInstructions : null;
|
|
279
|
-
} else {
|
|
280
|
-
out.rationale = null;
|
|
281
|
-
out.teacherInstructions = null;
|
|
282
|
-
}
|
|
283
|
-
|
|
284
|
-
resolve(out);
|
|
285
|
-
});
|
|
286
|
-
const outcome = (question, session, env) => {
|
|
287
|
-
if (env.mode !== 'evaluate') {
|
|
288
|
-
return Promise.reject(new Error('Can not call outcome when mode is not evaluate'));
|
|
289
|
-
} else {
|
|
290
|
-
return new Promise(resolve => {
|
|
291
|
-
resolve({
|
|
292
|
-
score: getTotalScore(question, session, env),
|
|
293
|
-
empty: !session || isEmpty(session)
|
|
294
|
-
});
|
|
295
|
-
});
|
|
296
|
-
}
|
|
297
|
-
};
|
|
298
|
-
const createCorrectResponseSession = (question, env) => {
|
|
299
|
-
return new Promise(resolve => {
|
|
300
|
-
const {
|
|
301
|
-
mode,
|
|
302
|
-
role
|
|
303
|
-
} = env || {};
|
|
304
|
-
|
|
305
|
-
if (mode !== 'evaluate' && role === 'instructor') {
|
|
306
|
-
const {
|
|
307
|
-
correctResponse
|
|
308
|
-
} = question;
|
|
309
|
-
resolve({
|
|
310
|
-
answers: correctResponse,
|
|
311
|
-
id: 1
|
|
312
|
-
});
|
|
313
|
-
} else {
|
|
314
|
-
return resolve(null);
|
|
315
|
-
}
|
|
316
|
-
});
|
|
317
|
-
}; // remove all html tags
|
|
318
|
-
|
|
319
|
-
const getInnerText = html => (html || '').replaceAll(/<[^>]*>/g, ''); // remove all html tags except img, iframe and source tag for audio
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
const getContent = html => (html || '').replace(/(<(?!img|iframe|source)([^>]+)>)/gi, '');
|
|
323
|
-
|
|
324
|
-
const validate = (model = {}, config = {}) => {
|
|
325
|
-
const {
|
|
326
|
-
categories,
|
|
327
|
-
choices,
|
|
328
|
-
correctResponse,
|
|
329
|
-
maxAnswerChoices
|
|
330
|
-
} = model;
|
|
331
|
-
const {
|
|
332
|
-
minChoices = 1,
|
|
333
|
-
minCategories = 1,
|
|
334
|
-
maxCategories = 12,
|
|
335
|
-
maxLengthPerChoice = 300,
|
|
336
|
-
maxLengthPerCategory = 150
|
|
337
|
-
} = config;
|
|
338
|
-
const reversedChoices = [...(choices || [])].reverse();
|
|
339
|
-
const errors = {};
|
|
340
|
-
const choicesErrors = {};
|
|
341
|
-
const categoriesErrors = {};
|
|
342
|
-
['teacherInstructions', 'prompt', 'rationale'].forEach(field => {
|
|
343
|
-
var _config$field;
|
|
344
|
-
|
|
345
|
-
if ((_config$field = config[field]) != null && _config$field.required && !getContent(model[field])) {
|
|
346
|
-
errors[field] = 'This field is required.';
|
|
347
|
-
}
|
|
348
|
-
});
|
|
349
|
-
(categories || []).forEach(category => {
|
|
350
|
-
const {
|
|
351
|
-
id,
|
|
352
|
-
label
|
|
353
|
-
} = category;
|
|
354
|
-
|
|
355
|
-
if (getInnerText(label).length > maxLengthPerCategory) {
|
|
356
|
-
categoriesErrors[id] = `Category labels should be no more than ${maxLengthPerCategory} characters long.`;
|
|
357
|
-
}
|
|
358
|
-
});
|
|
359
|
-
(reversedChoices || []).forEach((choice, index) => {
|
|
360
|
-
const {
|
|
361
|
-
id,
|
|
362
|
-
content
|
|
363
|
-
} = choice;
|
|
364
|
-
|
|
365
|
-
if (getInnerText(content).length > maxLengthPerChoice) {
|
|
366
|
-
choicesErrors[id] = `Tokens should be no more than ${maxLengthPerChoice} characters long.`;
|
|
367
|
-
}
|
|
368
|
-
|
|
369
|
-
if (!getContent(content)) {
|
|
370
|
-
choicesErrors[id] = 'Tokens should not be empty.';
|
|
371
|
-
} else {
|
|
372
|
-
const identicalAnswer = reversedChoices.slice(index + 1).some(c => c.content === content);
|
|
373
|
-
|
|
374
|
-
if (identicalAnswer) {
|
|
375
|
-
choicesErrors[id] = 'Tokens content should be unique.';
|
|
376
|
-
}
|
|
377
|
-
}
|
|
378
|
-
});
|
|
379
|
-
const nbOfCategories = (categories || []).length;
|
|
380
|
-
const nbOfChoices = (choices || []).length;
|
|
381
|
-
|
|
382
|
-
if (nbOfCategories > maxCategories) {
|
|
383
|
-
errors.categoriesError = `No more than ${maxCategories} categories should be defined.`;
|
|
384
|
-
} else if (nbOfCategories < minCategories) {
|
|
385
|
-
errors.categoriesError = `There should be at least ${minCategories} category defined.`;
|
|
386
|
-
}
|
|
387
|
-
|
|
388
|
-
if (nbOfChoices < minChoices) {
|
|
389
|
-
errors.choicesError = `There should be at least ${minChoices} choices defined.`;
|
|
390
|
-
} else if (nbOfChoices > maxAnswerChoices) {
|
|
391
|
-
errors.choicesError = `No more than ${maxAnswerChoices} choices should be defined.`;
|
|
392
|
-
}
|
|
393
|
-
|
|
394
|
-
if (nbOfChoices && nbOfCategories) {
|
|
395
|
-
let hasAssociations = false;
|
|
396
|
-
(correctResponse || []).forEach(response => {
|
|
397
|
-
const {
|
|
398
|
-
choices = [],
|
|
399
|
-
alternateResponses = []
|
|
400
|
-
} = response;
|
|
401
|
-
|
|
402
|
-
if (choices.length) {
|
|
403
|
-
hasAssociations = true;
|
|
404
|
-
} else {
|
|
405
|
-
alternateResponses.forEach(alternate => {
|
|
406
|
-
if ((alternate || []).length) {
|
|
407
|
-
hasAssociations = true;
|
|
408
|
-
}
|
|
409
|
-
});
|
|
410
|
-
}
|
|
411
|
-
});
|
|
412
|
-
let duplicateAlternateIndex = -1;
|
|
413
|
-
let duplicateCategory = '';
|
|
414
|
-
(correctResponse || []).forEach(response => {
|
|
415
|
-
const {
|
|
416
|
-
choices = [],
|
|
417
|
-
alternateResponses = [],
|
|
418
|
-
category
|
|
419
|
-
} = response;
|
|
420
|
-
|
|
421
|
-
if (duplicateAlternateIndex === -1) {
|
|
422
|
-
duplicateAlternateIndex = isCorrectResponseDuplicated(choices, alternateResponses);
|
|
423
|
-
|
|
424
|
-
if (duplicateAlternateIndex === -1) {
|
|
425
|
-
duplicateAlternateIndex = isAlternateDuplicated(alternateResponses);
|
|
426
|
-
}
|
|
427
|
-
|
|
428
|
-
duplicateCategory = category;
|
|
429
|
-
}
|
|
430
|
-
});
|
|
431
|
-
|
|
432
|
-
if (duplicateAlternateIndex > -1) {
|
|
433
|
-
errors.duplicateAlternate = {
|
|
434
|
-
index: duplicateAlternateIndex,
|
|
435
|
-
category: duplicateCategory
|
|
436
|
-
};
|
|
437
|
-
}
|
|
438
|
-
|
|
439
|
-
if (!hasAssociations) {
|
|
440
|
-
errors.associationError = 'At least one token should be assigned to at least one category.';
|
|
441
|
-
}
|
|
442
|
-
}
|
|
443
|
-
|
|
444
|
-
if (!isEmpty(choicesErrors)) {
|
|
445
|
-
errors.choicesErrors = choicesErrors;
|
|
446
|
-
}
|
|
447
|
-
|
|
448
|
-
if (!isEmpty(categoriesErrors)) {
|
|
449
|
-
errors.categoriesErrors = categoriesErrors;
|
|
450
|
-
}
|
|
451
|
-
|
|
452
|
-
return errors;
|
|
453
|
-
};
|
|
454
|
-
|
|
455
|
-
export { createCorrectResponseSession, createDefaultModel, getCorrectness, getPartialScore, getTotalScore, model, normalize, outcome, validate };
|
|
456
|
-
//# sourceMappingURL=controller.js.map
|
package/esm/controller.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"controller.js","sources":["../controller/src/utils.js","../controller/src/defaults.js","../controller/src/index.js"],"sourcesContent":["// used in configure too, for consistency modify it there too\nexport const multiplePlacements = { enabled: 'Yes', disabled: 'No', perChoice: 'Set Per Choice' };\n\n// used to validate the config\nexport const isCorrectResponseDuplicated = (choices,alternate) => {\n if (choices.length < 1 || alternate.length < 1){\n return -1;\n }\n\n const stringChoices = JSON.stringify(choices.sort());\n const stringAlternate = alternate.reduce((total, current) => current.length > 0 ? [...total, JSON.stringify(current.sort())] : total, []);\n const foundIndexDuplicate = stringAlternate.findIndex(alternate => alternate.length && alternate === stringChoices);\n\n return foundIndexDuplicate;\n};\n\nexport const isAlternateDuplicated = (alternate) => {\n if (alternate.length <= 1){\n return -1;\n }\n\n const elementSet = new Set();\n const stringAlternate = alternate.reduce((total, current) => current.length > 0 ? [...total, JSON.stringify(current.sort())] : total, []);\n\n for (let i = 0; i < stringAlternate.length; i++) {\n if (elementSet.has(stringAlternate[i]) && stringAlternate[i]) {\n return i;\n }\n\n elementSet.add(stringAlternate[i]);\n }\n\n return -1;\n};\n","import { multiplePlacements } from './utils';\n\nexport default {\n allowMultiplePlacementsEnabled: multiplePlacements.enabled,\n alternates: [],\n categories: [],\n categoriesPerRow: 2,\n choices: [],\n choicesLabel: '',\n choicesPosition: 'below',\n correctResponse: [],\n feedbackEnabled: false,\n lockChoiceOrder: true,\n maxAnswerChoices: 6,\n maxChoicesPerCategory: 0,\n partialScoring: true,\n prompt: '',\n promptEnabled: true,\n rationale: '',\n rationaleEnabled: true,\n rowLabels: [''],\n studentInstructionsEnabled: true,\n teacherInstructions: '',\n teacherInstructionsEnabled: true,\n toolbarEditorPosition: 'bottom',\n minRowHeight: '80px',\n};\n","import isEmpty from 'lodash/isEmpty';\nimport { buildState, score } from '@pie-lib/categorize';\nimport { getFeedbackForCorrectness } from '@pie-lib/feedback';\nimport { lockChoices, getShuffledChoices, partialScoring } from '@pie-lib/controller-utils';\nimport Translator from '@pie-lib/translator';\n\nconst { translator } = Translator;\nimport defaults from './defaults';\nimport { isAlternateDuplicated, isCorrectResponseDuplicated } from './utils';\n\n// eslint-disable-next-line no-console\n\nexport { score };\n\nexport const getPartialScore = (correctResponse, builtCategories) => {\n // in the resulted best scenario we make a sum with all the correct responses\n // and all the placements\n const { placements, score } = builtCategories.reduce(\n (acc, { choices = [] }) => ({\n placements: acc.placements + choices.length,\n score: acc.score + choices.filter((ch) => ch.correct).length,\n }),\n { placements: 0, score: 0 },\n );\n\n // in the correct response, we make a sum of the max possible score\n const { maxScore } = correctResponse.reduce(\n (acc, { choices }) => ({\n maxScore: acc.maxScore + choices.length,\n }),\n { maxScore: 0 },\n );\n\n // if there are any extra placements, we subtract from the obtained score\n const extraPlacements = placements > maxScore ? placements - maxScore : 0;\n const totalScore = (score - extraPlacements) / maxScore;\n\n return totalScore < 0 ? 0 : parseFloat(totalScore.toFixed(2));\n};\n\nconst getAlternates = (correctResponse) =>\n correctResponse.map((c) => c.alternateResponses).filter((alternate) => alternate);\n\nexport const getTotalScore = (question, session, env) => {\n if (!session) {\n return 0;\n }\n\n if (Object.keys(session).length === 0) {\n return 0;\n }\n const { categories, choices } = question || {};\n let { correctResponse } = question || {};\n let { answers } = session || {};\n answers = answers || [];\n correctResponse = correctResponse || [];\n\n // this function is used in pie-ui/categorize as well, in order to get the best scenario\n // so we get the best scenario and calculate the score\n const { categories: builtCategories, correct } = buildState(categories, choices, answers, correctResponse);\n\n const alternates = getAlternates(correctResponse);\n const enabled = partialScoring.enabled(question, env);\n\n // if there are any alternates, there will be no partial scoring!\n if (enabled && !alternates.length) {\n // we apply partial scoring\n return getPartialScore(correctResponse, builtCategories);\n }\n\n // else we apply dichotomous\n return correct ? 1 : 0;\n};\n\nexport const getCorrectness = (question, session, env) => {\n return new Promise((resolve) => {\n if (env.mode === 'evaluate') {\n const score = getTotalScore(question, session, env);\n if (score === 1) {\n resolve('correct');\n } else if (score === 0) {\n resolve('incorrect');\n } else {\n resolve('partially-correct');\n }\n } else {\n resolve(undefined);\n }\n });\n};\n\nexport const createDefaultModel = (model = {}) =>\n new Promise((resolve) => {\n resolve({\n ...defaults,\n ...model,\n });\n });\n\nexport const normalize = (question) => ({ ...defaults, ...question });\n\n/**\n *\n * @param {*} question\n * @param {*} session\n * @param {*} env\n * @param {*} updateSession - optional - a function that will set the properties passed into it on the session.\n */\nexport const model = (question, session, env, updateSession) =>\n new Promise(async (resolve) => {\n const normalizedQuestion = normalize(question);\n const answerCorrectness = await getCorrectness(normalizedQuestion, session, env);\n\n const { mode, role } = env || {};\n\n const {\n categories,\n categoriesPerRow,\n choicesLabel,\n choicesPosition,\n correctResponse,\n feedback,\n feedbackEnabled,\n promptEnabled,\n prompt,\n rowLabels,\n rationaleEnabled,\n rationale,\n teacherInstructionsEnabled,\n teacherInstructions,\n language,\n maxChoicesPerCategory,\n extraCSSRules,\n minRowHeight,\n fontSizeFactor,\n autoplayAudioEnabled,\n completeAudioEnabled,\n customAudioButton,\n } = normalizedQuestion;\n let { choices, note } = normalizedQuestion;\n let fb;\n\n const lockChoiceOrder = lockChoices(normalizedQuestion, session, env);\n\n const filteredCorrectResponse = correctResponse.map((response) => {\n const filteredChoices = (response.choices || []).filter((choice) => choice !== 'null');\n return { ...response, choices: filteredChoices };\n });\n\n if (mode === 'evaluate' && feedbackEnabled) {\n fb = await getFeedbackForCorrectness(answerCorrectness, feedback);\n }\n\n if (!lockChoiceOrder) {\n choices = await getShuffledChoices(choices, session, updateSession, 'id');\n }\n\n if (!note) {\n note = translator.t('common:commonCorrectAnswerWithAlternates', { lng: language });\n }\n\n const alternates = getAlternates(filteredCorrectResponse);\n const out = {\n categories: categories || [],\n categoriesPerRow: categoriesPerRow || 2,\n maxChoicesPerCategory,\n correctness: answerCorrectness,\n choices: choices || [],\n choicesLabel: choicesLabel || '',\n choicesPosition,\n disabled: mode !== 'gather',\n feedback: fb,\n lockChoiceOrder,\n prompt: promptEnabled ? prompt : null,\n rowLabels,\n note,\n env,\n showNote: alternates && alternates.length > 0,\n correctResponse: mode === 'evaluate' ? filteredCorrectResponse : undefined,\n language,\n extraCSSRules,\n fontSizeFactor,\n minRowHeight: minRowHeight,\n autoplayAudioEnabled,\n completeAudioEnabled,\n customAudioButton,\n };\n\n if (role === 'instructor' && (mode === 'view' || mode === 'evaluate')) {\n out.rationale = rationaleEnabled ? rationale : null;\n out.teacherInstructions = teacherInstructionsEnabled ? teacherInstructions : null;\n } else {\n out.rationale = null;\n out.teacherInstructions = null;\n }\n\n resolve(out);\n });\n\nexport const outcome = (question, session, env) => {\n if (env.mode !== 'evaluate') {\n return Promise.reject(new Error('Can not call outcome when mode is not evaluate'));\n } else {\n return new Promise((resolve) => {\n resolve({\n score: getTotalScore(question, session, env),\n empty: !session || isEmpty(session),\n });\n });\n }\n};\n\nexport const createCorrectResponseSession = (question, env) => {\n return new Promise((resolve) => {\n const { mode, role } = env || {};\n\n if (mode !== 'evaluate' && role === 'instructor') {\n const { correctResponse } = question;\n\n resolve({ answers: correctResponse, id: 1 });\n } else {\n return resolve(null);\n }\n });\n};\n\n// remove all html tags\nconst getInnerText = (html) => (html || '').replaceAll(/<[^>]*>/g, '');\n\n// remove all html tags except img, iframe and source tag for audio\nconst getContent = (html) => (html || '').replace(/(<(?!img|iframe|source)([^>]+)>)/gi, '');\n\nexport const validate = (model = {}, config = {}) => {\n const { categories, choices, correctResponse, maxAnswerChoices } = model;\n const {\n minChoices = 1,\n minCategories = 1,\n maxCategories = 12,\n maxLengthPerChoice = 300,\n maxLengthPerCategory = 150,\n } = config;\n const reversedChoices = [...(choices || [])].reverse();\n const errors = {};\n const choicesErrors = {};\n const categoriesErrors = {};\n\n ['teacherInstructions', 'prompt', 'rationale'].forEach((field) => {\n if (config[field]?.required && !getContent(model[field])) {\n errors[field] = 'This field is required.';\n }\n });\n\n (categories || []).forEach((category) => {\n const { id, label } = category;\n\n if (getInnerText(label).length > maxLengthPerCategory) {\n categoriesErrors[id] = `Category labels should be no more than ${maxLengthPerCategory} characters long.`;\n }\n });\n\n (reversedChoices || []).forEach((choice, index) => {\n const { id, content } = choice;\n\n if (getInnerText(content).length > maxLengthPerChoice) {\n choicesErrors[id] = `Tokens should be no more than ${maxLengthPerChoice} characters long.`;\n }\n\n if (!getContent(content)) {\n choicesErrors[id] = 'Tokens should not be empty.';\n } else {\n const identicalAnswer = reversedChoices.slice(index + 1).some((c) => c.content === content);\n\n if (identicalAnswer) {\n choicesErrors[id] = 'Tokens content should be unique.';\n }\n }\n });\n\n const nbOfCategories = (categories || []).length;\n const nbOfChoices = (choices || []).length;\n\n if (nbOfCategories > maxCategories) {\n errors.categoriesError = `No more than ${maxCategories} categories should be defined.`;\n } else if (nbOfCategories < minCategories) {\n errors.categoriesError = `There should be at least ${minCategories} category defined.`;\n }\n\n if (nbOfChoices < minChoices) {\n errors.choicesError = `There should be at least ${minChoices} choices defined.`;\n } else if (nbOfChoices > maxAnswerChoices) {\n errors.choicesError = `No more than ${maxAnswerChoices} choices should be defined.`;\n }\n\n if (nbOfChoices && nbOfCategories) {\n let hasAssociations = false;\n\n (correctResponse || []).forEach((response) => {\n const { choices = [], alternateResponses = [] } = response;\n\n if (choices.length) {\n hasAssociations = true;\n } else {\n alternateResponses.forEach((alternate) => {\n if ((alternate || []).length) {\n hasAssociations = true;\n }\n });\n }\n });\n\n let duplicateAlternateIndex = -1;\n let duplicateCategory = '';\n (correctResponse || []).forEach((response) => {\n const { choices = [], alternateResponses = [], category } = response;\n\n if (duplicateAlternateIndex === -1) {\n duplicateAlternateIndex = isCorrectResponseDuplicated(choices, alternateResponses);\n\n if (duplicateAlternateIndex === -1) {\n duplicateAlternateIndex = isAlternateDuplicated(alternateResponses);\n }\n\n duplicateCategory = category;\n }\n });\n\n if (duplicateAlternateIndex > -1) {\n errors.duplicateAlternate = { index: duplicateAlternateIndex, category: duplicateCategory };\n }\n\n if (!hasAssociations) {\n errors.associationError = 'At least one token should be assigned to at least one category.';\n }\n }\n\n if (!isEmpty(choicesErrors)) {\n errors.choicesErrors = choicesErrors;\n }\n\n if (!isEmpty(categoriesErrors)) {\n errors.categoriesErrors = categoriesErrors;\n }\n\n return errors;\n};\n"],"names":["multiplePlacements","enabled","disabled","perChoice","isCorrectResponseDuplicated","choices","alternate","length","stringChoices","JSON","stringify","sort","stringAlternate","reduce","total","current","foundIndexDuplicate","findIndex","isAlternateDuplicated","elementSet","Set","i","has","add","allowMultiplePlacementsEnabled","alternates","categories","categoriesPerRow","choicesLabel","choicesPosition","correctResponse","feedbackEnabled","lockChoiceOrder","maxAnswerChoices","maxChoicesPerCategory","partialScoring","prompt","promptEnabled","rationale","rationaleEnabled","rowLabels","studentInstructionsEnabled","teacherInstructions","teacherInstructionsEnabled","toolbarEditorPosition","minRowHeight","translator","Translator","getPartialScore","builtCategories","placements","score","acc","filter","ch","correct","maxScore","extraPlacements","totalScore","parseFloat","toFixed","getAlternates","map","c","alternateResponses","getTotalScore","question","session","env","Object","keys","answers","buildState","getCorrectness","Promise","resolve","mode","undefined","createDefaultModel","model","defaults","normalize","updateSession","normalizedQuestion","answerCorrectness","role","feedback","language","extraCSSRules","fontSizeFactor","autoplayAudioEnabled","completeAudioEnabled","customAudioButton","note","fb","lockChoices","filteredCorrectResponse","response","filteredChoices","choice","getFeedbackForCorrectness","getShuffledChoices","t","lng","out","correctness","showNote","outcome","reject","Error","empty","isEmpty","createCorrectResponseSession","id","getInnerText","html","replaceAll","getContent","replace","validate","config","minChoices","minCategories","maxCategories","maxLengthPerChoice","maxLengthPerCategory","reversedChoices","reverse","errors","choicesErrors","categoriesErrors","forEach","field","required","category","label","index","content","identicalAnswer","slice","some","nbOfCategories","nbOfChoices","categoriesError","choicesError","hasAssociations","duplicateAlternateIndex","duplicateCategory","duplicateAlternate","associationError"],"mappings":"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"}
|