░▒▓████████████████████████████████▓▒░ ░▒▓█ ▓▒░ ░▒▓█ ~ S W A M P ~ ▓▒░ ░▒▓█ ▓▒░ ░▒▓████████████████████████████████▓▒░
pplmvsvm
LOCATION:
/datadrive/moodledata/filedir/09/e2
☗ ROOT
↻ REFRESH
✎ CARVE FLESH
EDITING: 09e204b8163e5868cae66221e23728c98b60015c
var H5PPresave = H5PPresave || {}; var H5PEditor = H5PEditor || {}; /** * Function to go through all elements of a Course Presentation and perform the separate calculations before returning a aggregated result * * @param {object} content * @param finished * @constructor */ H5PPresave['H5P.InteractiveVideo'] = function (content, finished) { var presave = H5PEditor.Presave; if (isContentInvalid()) { throw new presave.exceptions.InvalidContentSemanticsException('Invalid Interactive Video Error'); } var librariesToCheck = [].concat(content.interactiveVideo.assets.interactions); if (hasSummary()) { librariesToCheck.push({action: content.interactiveVideo.summary.task}); } var score = librariesToCheck .map(function (element) { if (element.hasOwnProperty('action')) { return element.action; } return {}; }) .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); finished({maxScore: score}); /** * Check if required parameters is present * @return {boolean} */ function isContentInvalid() { return !presave.checkNestedRequirements(content, 'content.interactiveVideo.assets.interactions') || !Array.isArray(content.interactiveVideo.assets.interactions); } /** * Check if required summary is present * @return {boolean} */ function hasSummary() { return presave.checkNestedRequirements(content, 'content.interactiveVideo.summary.task.library') && presave.checkNestedRequirements(content, 'content.interactiveVideo.summary.task.params'); } };
CANCEL
Name
Type
Size
Modified
Actions
↩ ..
DIR
—
—
📄 09e204b8163e5868cae66221e23728c98b60015c
?
1.9 KB
2024-01-01 09:51
EDIT