Added/modified calculation of max score
parent
b102a2fd9f
commit
31780324ff
|
@ -0,0 +1,33 @@
|
||||||
|
var H5PPresave = H5PPresave || {};
|
||||||
|
|
||||||
|
H5PPresave['H5P.QuestionSet'] = function (content, finished) {
|
||||||
|
var presave = H5PEditor.Presave;
|
||||||
|
|
||||||
|
if (isContentInValid()) {
|
||||||
|
throw new presave.exceptions.InvalidContentSemanticsException('Invalid Question Set Error')
|
||||||
|
}
|
||||||
|
|
||||||
|
var score = content.questions
|
||||||
|
.filter(function (action) {
|
||||||
|
return action.hasOwnProperty('library') && action.hasOwnProperty('params');
|
||||||
|
})
|
||||||
|
.map(function (action) {
|
||||||
|
return (new presave).process(action.library, action.params).maxScore;
|
||||||
|
})
|
||||||
|
.reduce(function (currentScore, scoreToAdd) {
|
||||||
|
if (presave.isInt(scoreToAdd)) {
|
||||||
|
currentScore += scoreToAdd;
|
||||||
|
}
|
||||||
|
return currentScore;
|
||||||
|
}, 0);
|
||||||
|
|
||||||
|
presave.validateScore(score);
|
||||||
|
|
||||||
|
if (finished) {
|
||||||
|
finished({maxScore: score});
|
||||||
|
}
|
||||||
|
|
||||||
|
function isContentInValid() {
|
||||||
|
return !presave.checkNestedRequirements(content, 'content.questions') || !Array.isArray(content.questions);
|
||||||
|
}
|
||||||
|
};
|
Loading…
Reference in New Issue