h5p-question-set/js/questionset.js

530 lines
17 KiB
JavaScript
Raw Normal View History

2013-04-04 15:44:06 +02:00
var H5P = H5P || {};
2013-04-26 17:27:35 +02:00
/**
* Will render a Question with multiple choices for answers.
*
* Events provided:
* - h5pQuestionSetFinished: Triggered when a question is finished. (User presses Finish-button)
*
* @param {Array} options
* @param {int} contentId
* @returns {H5P.QuestionSet} Instance
*/
2013-04-04 15:44:06 +02:00
H5P.QuestionSet = function (options, contentId) {
2013-04-26 17:27:35 +02:00
if (!(this instanceof H5P.QuestionSet)) {
2013-04-04 15:44:06 +02:00
return new H5P.QuestionSet(options, contentId);
2013-04-26 17:27:35 +02:00
}
2015-02-04 16:40:29 +01:00
H5P.EventDispatcher.call(this);
2013-04-04 15:44:06 +02:00
var $ = H5P.jQuery;
2014-10-13 21:51:36 +02:00
var self = this;
2015-02-04 16:40:29 +01:00
this.contentId = contentId;
2013-04-04 15:44:06 +02:00
2013-04-26 17:27:35 +02:00
var texttemplate =
'<% if (introPage.showIntroPage) { %>' +
'<div class="intro-page">' +
' <% if (introPage.title) { %>' +
' <div class="title"><span><%= introPage.title %></span></div>' +
' <% } %>' +
' <% if (introPage.introduction) { %>' +
' <div class="introduction"><%= introPage.introduction %></div>' +
' <% } %>' +
' <div class="buttons"><a class="qs-startbutton h5p-joubelui-button h5p-button"><%= introPage.startButtonText %></a></div>' +
2013-04-26 17:27:35 +02:00
'</div>' +
2013-05-03 10:05:49 +02:00
'<% } %>' +
'<div class="questionset<% if (introPage.showIntroPage) { %> hidden<% } %>">' +
2013-04-26 17:27:35 +02:00
' <% for (var i=0; i<questions.length; i++) { %>' +
' <div class="question-container"></div>' +
2013-04-26 17:27:35 +02:00
' <% } %>' +
' <div class="qs-footer">' +
' <div class="qs-progress">' +
' <% if (progressType == "dots") { %>' +
' <div class="dots-container">' +
' <% for (var i=0; i<questions.length; i++) { %>' +
' <span class="progress-dot unanswered"></span>' +
2013-04-26 17:27:35 +02:00
' <%} %>' +
' </div>' +
' <% } else if (progressType == "textual") { %>' +
' <span class="progress-text"></span>' +
' <% } %>' +
' </div>' +
' </div>' +
'</div>';
var resulttemplate =
'<div class="questionset-results">' +
2015-08-18 13:58:33 +02:00
' <div class="feedback-section">' +
' <div class="feedback-scorebar"></div>' +
' <div class="feedback-text"></div>' +
' </div>' +
' <div class="buttons">' +
' <a class="h5p-joubelui-button h5p-button qs-finishbutton"><%= finishButtonText %></a>' +
' <a class="h5p-joubelui-button h5p-button qs-solutionbutton"><%= solutionButtonText %></a>' +
' <a class="h5p-joubelui-button h5p-button qs-retrybutton"></a>' +
' </div>' +
2013-04-26 17:27:35 +02:00
'</div>';
2013-04-04 15:44:06 +02:00
var defaults = {
randomOrder: false,
initialQuestion: 0,
progressType: 'dots',
passPercentage: 50,
questions: [],
introPage: {
showIntroPage: false,
title: '',
introduction: '',
2013-04-26 17:27:35 +02:00
startButtonText: 'Start'
2013-04-04 15:44:06 +02:00
},
texts: {
2013-04-26 17:27:35 +02:00
prevButton: 'Previous',
nextButton: 'Next',
finishButton: 'Finish',
textualProgress: 'Question: @current of @total questions'
2013-04-04 15:44:06 +02:00
},
endGame: {
showResultPage: true,
message: 'Your result:',
successGreeting: 'Congratulations!',
successComment: 'You have enough correct answers to pass the test.',
failGreeting: 'Sorry!',
failComment: "You don't have enough correct answers to pass this test.",
scoreString: 'You got @score points of @total possible.',
finishButtonText: 'Finish',
2013-05-03 10:05:49 +02:00
solutionButtonText: 'Show solution',
2014-11-27 11:01:47 +01:00
retryButtonText: 'Retry',
showAnimations: false
},
2014-11-27 11:01:47 +01:00
override: {
overrideButtons: false,
overrideShowSolutionButton: false,
overrideRetry: false
},
questionLabel: 'Question'
2013-04-04 15:44:06 +02:00
};
var template = new EJS({text: texttemplate});
var endTemplate = new EJS({text: resulttemplate});
2013-04-26 17:27:35 +02:00
var params = $.extend(true, {}, defaults, options);
2013-04-04 15:44:06 +02:00
var currentQuestion = 0;
var questionInstances = [];
2013-04-04 15:44:06 +02:00
var $myDom;
2015-08-18 13:58:33 +02:00
var scoreBar;
2013-05-03 10:05:49 +02:00
renderSolutions = false;
2013-04-04 15:44:06 +02:00
// Instantiate question instances
2013-04-26 17:27:35 +02:00
for (var i = 0; i < params.questions.length; i++) {
2013-04-04 15:44:06 +02:00
var question = params.questions[i];
// TODO: Render on init, inject in template.
2014-11-27 11:01:47 +01:00
// override content parameters.
if (params.override.overrideButtons) {
// Extend subcontent with the overrided settings.
$.extend(question.params.behaviour, {
enableRetry: params.override.overrideRetry,
enableSolutionsButton: params.override.overrideShowSolutionButton
2014-11-27 11:01:47 +01:00
});
}
var questionInstance = H5P.newRunnable(question, contentId, undefined, undefined, {parent: self});
2015-02-04 16:40:29 +01:00
questionInstances.push(questionInstance);
2013-04-04 15:44:06 +02:00
}
// Resize all interactions on resize
self.on('resize', function () {
for (var i = 0; i < questionInstances.length; i++) {
questionInstances[i].trigger('resize');
}
});
2013-04-04 15:44:06 +02:00
// Update button state.
var _updateButtons = function () {
var answered = true;
for (var i = questionInstances.length - 1; i >= 0; i--) {
answered = answered && (questionInstances[i]).getAnswerGiven();
}
if (currentQuestion === (params.questions.length - 1) && answered) {
questionInstances[currentQuestion].showButton('finish');
2013-04-04 15:44:06 +02:00
}
};
var _showQuestion = function (questionNumber) {
// Sanitize input.
2013-04-26 17:27:35 +02:00
if (questionNumber < 0) {
questionNumber = 0;
}
if (questionNumber >= params.questions.length) {
questionNumber = params.questions.length - 1;
}
2013-04-04 15:44:06 +02:00
// Hide all questions
$('.question-container', $myDom).hide().eq(questionNumber).show();
2013-04-04 15:44:06 +02:00
// Trigger resize on question in case the size of the QS has changed.
var instance = questionInstances[questionNumber];
if (instance.$ !== undefined) {
2014-10-26 22:14:26 +01:00
instance.trigger('resize');
}
2013-04-04 15:44:06 +02:00
// Update progress indicator
// Test if current has been answered.
2013-04-26 17:27:35 +02:00
if (params.progressType === 'textual') {
2013-04-04 15:44:06 +02:00
$('.progress-text', $myDom).text(params.texts.textualProgress.replace("@current", questionNumber+1).replace("@total", params.questions.length));
2013-04-26 17:27:35 +02:00
}
else {
2013-04-04 15:44:06 +02:00
// Set currentNess
$('.progress-dot.current', $myDom).removeClass('current');
$('.progress-dot:eq(' + questionNumber +')', $myDom).addClass('current');
2013-04-04 15:44:06 +02:00
}
// Remember where we are
currentQuestion = questionNumber;
_updateButtons();
2015-02-04 16:40:29 +01:00
self.trigger('resize');
2013-04-04 15:44:06 +02:00
return currentQuestion;
};
2014-11-27 11:01:47 +01:00
/**
* Show solutions for subcontent, and hide subcontent buttons.
* Used for contracts with integrated content.
* @public
*/
2013-05-03 10:05:49 +02:00
var showSolutions = function () {
for (var i = 0; i < questionInstances.length; i++) {
2014-11-27 11:01:47 +01:00
try {
questionInstances[i].showSolutions();
}
catch(error) {
H5P.error("subcontent does not contain a valid showSolutions function");
2014-11-27 11:01:47 +01:00
}
2013-05-03 10:05:49 +02:00
}
};
2014-11-27 11:01:47 +01:00
/**
* Resets the task and every subcontent task.
* Used for contracts with integrated content.
* @public
*/
var resetTask = function () {
for (var i = 0; i < questionInstances.length; i++) {
try {
questionInstances[i].resetTask();
}
catch(error) {
H5P.error("subcontent does not contain a valid resetTask function");
2014-11-27 11:01:47 +01:00
}
2013-05-03 10:05:49 +02:00
}
// Hide finish button
questionInstances[questionInstances.length - 1].hideButton('finish');
2014-11-27 11:01:47 +01:00
//Force the last page to be reRendered
rendered = false;
2013-05-03 10:05:49 +02:00
};
var rendered = false;
2015-02-04 16:40:29 +01:00
this.reRender = function () {
2013-05-03 10:05:49 +02:00
rendered = false;
};
2013-04-04 15:44:06 +02:00
var _displayEndGame = function () {
2013-05-03 10:05:49 +02:00
if (rendered) {
$myDom.children().hide().filter('.questionset-results').show();
self.trigger('resize');
2013-05-03 10:05:49 +02:00
return;
}
2014-11-27 11:01:47 +01:00
//Remove old score screen.
$myDom.children().hide().filter('.questionset-results').remove();
2013-05-03 10:05:49 +02:00
rendered = true;
2013-04-04 15:44:06 +02:00
// Get total score.
2015-02-04 16:40:29 +01:00
var finals = self.getScore();
var totals = self.totalScore();
var scoreString = params.endGame.scoreString.replace("@score", finals).replace("@total", totals);
2013-04-04 15:44:06 +02:00
var success = ((100 * finals / totals) >= params.passPercentage);
var eventData = {
score: scoreString,
passed: success
};
var displayResults = function () {
2015-02-04 16:40:29 +01:00
self.triggerXAPICompleted(self.getScore(), self.totalScore());
2013-04-04 15:44:06 +02:00
if (!params.endGame.showResultPage) {
2015-02-04 16:40:29 +01:00
self.trigger('h5pQuestionSetFinished', eventData);
2013-04-04 15:44:06 +02:00
return;
}
var eparams = {
comment: (success ? params.endGame.successGreeting : params.endGame.failGreeting),
2013-05-03 10:05:49 +02:00
finishButtonText: params.endGame.finishButtonText,
solutionButtonText: params.endGame.solutionButtonText
2013-04-04 15:44:06 +02:00
};
// Show result page.
$myDom.children().hide();
$myDom.append(endTemplate.render(eparams));
2015-08-18 13:58:33 +02:00
$('.qs-finishbutton', $myDom).click(function () {
2015-02-04 16:40:29 +01:00
self.trigger('h5pQuestionSetFinished', eventData);
2013-04-04 15:44:06 +02:00
});
2013-05-03 10:05:49 +02:00
$('.qs-solutionbutton', $myDom).click(function () {
showSolutions();
$myDom.children().hide().filter('.questionset').show();
_showQuestion(params.initialQuestion);
});
2014-11-27 11:01:47 +01:00
$('.qs-retrybutton', $myDom)
.html(params.endGame.retryButtonText)
.click(function () {
resetTask();
$myDom.children().hide().filter('.questionset').show();
_showQuestion(params.initialQuestion);});
2015-08-18 13:58:33 +02:00
if (scoreBar === undefined) {
scoreBar = H5P.JoubelUI.createScoreBar(totals);
}
scoreBar.appendTo($('.feedback-scorebar', $myDom));
scoreBar.setScore(finals);
$('.feedback-text', $myDom).html(scoreString);
2013-04-04 15:44:06 +02:00
};
if (params.endGame.showAnimations) {
var videoData = success ? params.endGame.successVideo : params.endGame.failVideo;
2013-04-04 15:44:06 +02:00
if (videoData) {
$myDom.children().hide();
2013-04-26 17:27:35 +02:00
var $videoContainer = $('<div class="video-container"></div>').appendTo($myDom);
var video = new H5P.Video({
2015-02-17 11:14:49 +01:00
sources: videoData,
2013-04-26 17:27:35 +02:00
fitToWrapper: true,
controls: false,
autoplay: false
}, contentId);
2015-02-17 11:14:49 +01:00
video.on('stateChange', function (event) {
if (event.data === H5P.Video.ENDED) {
displayResults();
$videoContainer.hide();
}
});
2013-04-26 17:27:35 +02:00
video.attach($videoContainer);
// Resize on video loaded
video.on('loaded', function () {
self.trigger('resize');
});
video.play();
2013-04-26 17:27:35 +02:00
if (params.endGame.skipButtonText) {
$('<a class="h5p-joubelui-button h5p-button skip">' + params.endGame.skipButtonText + '</a>').click(function () {
2015-02-17 11:14:49 +01:00
video.pause();
2013-04-26 17:27:35 +02:00
$videoContainer.hide();
displayResults();
}).appendTo($videoContainer);
}
2013-04-04 15:44:06 +02:00
return;
}
}
// Trigger finished event.
displayResults();
2015-02-18 18:08:57 +01:00
self.trigger('resize');
2013-04-04 15:44:06 +02:00
};
// Function for attaching the multichoice to a DOM element.
2015-02-04 16:40:29 +01:00
this.attach = function (target) {
2015-07-20 13:22:22 +02:00
this.setActivityStarted();
2013-04-26 17:27:35 +02:00
if (typeof(target) === "string") {
$myDom = $('#' + target);
}
else {
2013-04-04 15:44:06 +02:00
$myDom = $(target);
}
// Render own DOM into target.
$myDom.html(template.render(params));
if (params.backgroundImage !== undefined) {
$myDom.css({
overflow: 'hidden',
background: '#fff url("' + H5P.getPath(params.backgroundImage.path, contentId) + '") no-repeat 50% 50%',
backgroundSize: '100% auto'
});
}
if (params.introPage.backgroundImage !== undefined) {
var $intro = $myDom.find('.intro-page');
if ($intro.length) {
$intro.css({
background: '#fff url("' + H5P.getPath(params.introPage.backgroundImage.path, contentId) + '") no-repeat 50% 50%',
backgroundSize: '100% auto'
});
}
}
2013-04-04 15:44:06 +02:00
// Attach questions
2013-04-26 17:27:35 +02:00
for (var i = 0; i < questionInstances.length; i++) {
2013-04-04 15:44:06 +02:00
var question = questionInstances[i];
question.attach($('.question-container:eq(' + i + ')', $myDom));
// Disable feedback for question
question.setBehaviour({disableFeedback: true});
// Add next/finish button
if (questionInstances[questionInstances.length -1] === question) {
// Add finish question set button
question.addButton('finish', params.texts.finishButton, function () {
_displayEndGame();
});
} else {
// Add next question button
question.addButton('next', '', function () {
_showQuestion(currentQuestion + 1);
});
}
// Add previous question button
if (questionInstances[0] !== question) {
question.addButton('prev', '', function () {
_showQuestion(currentQuestion - 1);
});
}
2015-02-04 16:40:29 +01:00
question.on('xAPI', function (event) {
var shortVerb = event.getVerb();
if (shortVerb === 'interacted' ||
shortVerb === 'answered' ||
shortVerb === 'attempted') {
2014-10-13 21:51:36 +02:00
$('.progress-dot:eq(' + currentQuestion +')', $myDom).removeClass('unanswered').addClass('answered');
_updateButtons();
}
if (shortVerb === 'completed') {
// An activity within this activity is not allowed to send completed events
event.setVerb('answered');
}
2013-04-04 15:44:06 +02:00
});
if (question.getAnswerGiven()) {
$('.progress-dot:eq(' + i +')', $myDom).removeClass('unanswered').addClass('answered');
2013-04-04 15:44:06 +02:00
}
}
// Allow other libraries to add transitions after the questions have been inited
$('.questionset', $myDom).addClass('started');
2013-04-04 15:44:06 +02:00
2013-05-03 10:05:49 +02:00
$('.qs-startbutton', $myDom).click(function () {
2013-04-04 15:44:06 +02:00
$(this).parents('.intro-page').hide();
$('.questionset', $myDom).removeClass('hidden');
_showQuestion(currentQuestion);
2013-04-04 15:44:06 +02:00
});
// Set event listeners.
2013-04-26 17:27:35 +02:00
$('.progress-dot', $myDom).click(function () {
_showQuestion($(this).index());
2013-04-04 15:44:06 +02:00
});
// Hide all but initial Question.
_showQuestion(params.initialQuestion);
_updateButtons();
2013-05-03 10:05:49 +02:00
if (renderSolutions) {
showSolutions();
}
2014-10-26 22:14:26 +01:00
this.trigger('resize');
2013-04-04 15:44:06 +02:00
return this;
};
// Get current score for questionset.
2015-02-04 16:40:29 +01:00
this.getScore = function () {
2013-04-04 15:44:06 +02:00
var score = 0;
for (var i = questionInstances.length - 1; i >= 0; i--) {
score += questionInstances[i].getScore();
}
return score;
};
// Get total score possible for questionset.
2015-02-04 16:40:29 +01:00
this.totalScore = function () {
2013-04-04 15:44:06 +02:00
var score = 0;
for (var i = questionInstances.length - 1; i >= 0; i--) {
2013-04-26 17:27:35 +02:00
score += questionInstances[i].getMaxScore();
2013-04-04 15:44:06 +02:00
}
return score;
};
/**
* Gather copyright information for the current content.
*
* @returns {H5P.ContentCopyrights}
*/
2015-02-04 16:40:29 +01:00
this.getCopyrights = function () {
var info = new H5P.ContentCopyrights();
// Background
if (params.backgroundImage !== undefined && params.backgroundImage.copyright !== undefined) {
var background = new H5P.MediaCopyright(params.backgroundImage.copyright);
background.setThumbnail(new H5P.Thumbnail(H5P.getPath(params.backgroundImage.path, contentId), params.backgroundImage.width, params.backgroundImage.height));
info.addMedia(background);
}
// Questions
var questionCopyrights;
for (var i = 0; i < questionInstances.length; i++) {
var instance = questionInstances[i];
var qParams = params.questions[i].params;
questionCopyrights = undefined;
if (instance.getCopyrights !== undefined) {
// Use the instance's own copyright generator
questionCopyrights = instance.getCopyrights();
}
if (questionCopyrights === undefined) {
// Create a generic flat copyright list
questionCopyrights = new H5P.ContentCopyrights();
H5P.findCopyrights(questionCopyrights, qParams, contentId);
}
// Determine label
var label = (params.questionLabel + ' ' + (i + 1));
if (qParams.contentName !== undefined) {
label += ': ' + qParams.contentName;
}
else if (instance.getTitle !== undefined) {
label += ': ' + instance.getTitle();
}
questionCopyrights.setLabel(label);
// Add info
info.addContent(questionCopyrights);
}
// Success video
var video;
if (params.endGame.successVideo !== undefined && params.endGame.successVideo.length > 0) {
video = params.endGame.successVideo[0];
if (video.copyright !== undefined) {
info.addMedia(new H5P.MediaCopyright(video.copyright));
}
}
// Fail video
if (params.endGame.failVideo !== undefined && params.endGame.failVideo.length > 0) {
video = params.endGame.failVideo[0];
if (video.copyright !== undefined) {
info.addMedia(new H5P.MediaCopyright(video.copyright));
}
}
return info;
2014-06-26 16:23:12 +02:00
};
2015-02-04 16:40:29 +01:00
this.getQuestions = function() {
return questionInstances;
2013-04-04 15:44:06 +02:00
};
2015-02-04 16:40:29 +01:00
this.showSolutions = function() {
renderSolutions = true;
};
};
2015-02-04 16:40:29 +01:00
H5P.QuestionSet.prototype = Object.create(H5P.EventDispatcher.prototype);
H5P.QuestionSet.prototype.constructor = H5P.QuestionSet;