2018-03-27 16:20:35 +02:00
|
|
|
var H5PPresave = H5PPresave || {};
|
|
|
|
|
2018-03-28 11:44:54 +02:00
|
|
|
/**
|
|
|
|
* Resolve the presave logic for the content type Question Set
|
|
|
|
*
|
|
|
|
* @param {object} content
|
|
|
|
* @param finished
|
|
|
|
* @constructor
|
|
|
|
*/
|
2018-03-27 16:20:35 +02:00
|
|
|
H5PPresave['H5P.QuestionSet'] = function (content, finished) {
|
|
|
|
var presave = H5PEditor.Presave;
|
|
|
|
|
2018-08-21 09:43:43 +02:00
|
|
|
if (isContentInvalid()) {
|
2018-08-21 13:52:11 +02:00
|
|
|
throw new presave.exceptions.InvalidContentSemanticsException('Invalid Question Set Error');
|
2018-03-27 16:20:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
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);
|
|
|
|
|
2018-08-21 13:52:11 +02:00
|
|
|
finished({maxScore: score});
|
2018-03-27 16:20:35 +02:00
|
|
|
|
2018-03-28 11:44:54 +02:00
|
|
|
/**
|
|
|
|
* Check if required parameters is present
|
|
|
|
* @return {boolean}
|
|
|
|
*/
|
2018-08-21 09:43:43 +02:00
|
|
|
function isContentInvalid() {
|
2018-03-27 16:20:35 +02:00
|
|
|
return !presave.checkNestedRequirements(content, 'content.questions') || !Array.isArray(content.questions);
|
|
|
|
}
|
|
|
|
};
|