forked from h5p/h5p-image-hotspot-question
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimage-hotspot-question.js
509 lines (430 loc) · 14.3 KB
/
image-hotspot-question.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
/*global H5P*/
H5P.ImageHotspotQuestion = (function ($, Question) {
/**
* Initialize module.
*
* @class H5P.ImageHotspotQuestion
* @extends H5P.Question
* @param {Object} params Behavior settings
* @param {number} id Content identification
* @param {Object} contentData Task specific content data
*/
function ImageHotspotQuestion(params, id, contentData) {
var self = this;
var defaults = {
imageHotspotQuestion: {
backgroundImageSettings: {
backgroundImage: {
path: ''
}
},
hotspotSettings: {
hotspot: [],
showFeedbackAsPopup: true,
l10n: {
retryText: 'Retry',
closeText: 'Close'
}
}
},
behaviour: {
enableRetry: true
},
scoreBarLabel: 'You got :num out of :total points',
a11yRetry: 'Retry the task. Reset all responses and start the task over again.',
};
// Inheritance
Question.call(self, 'image-hotspot-question');
/**
* Keeps track of content id.
* @type {number}
*/
this.contentId = id;
/**
* Keeps track of current score.
* @type {number}
*/
this.score = 0;
/**
* Keeps track of max score.
* @type {number}
*/
this.maxScore = 1;
/**
* Keeps track of parameters
*/
this.params = $.extend(true, {}, defaults, params);
/**
* Easier access to image settings.
* H5P semantics doesn't treat Arrays with one element as arrays with one element
*/
this.imageSettings = this.params.imageHotspotQuestion.backgroundImageSettings;
/**
* Easier access to hotspot settings.
*/
this.hotspotSettings = this.params.imageHotspotQuestion.hotspotSettings;
/**
* Hotspot feedback object. Contains hotspot feedback specific parameters.
* @type {Object}
*/
this.hotspotFeedback = {
hotspotChosen: false
};
/**
* Keeps track of all hotspots in an array.
* @type {Array}
*/
this.$hotspots = [];
/**
* Keeps track of the content data. Specifically the previous state.
* @type {Object}
*/
this.contentData = contentData;
if (contentData !== undefined && contentData.previousState !== undefined) {
this.previousState = contentData.previousState;
}
// Start activity timer
if (this.isRoot()) {
this.setActivityStarted();
}
// Register resize listener with h5p
this.on('resize', this.resize);
}
// Inheritance
ImageHotspotQuestion.prototype = Object.create(Question.prototype);
ImageHotspotQuestion.prototype.constructor = ImageHotspotQuestion;
/**
* Registers this question types DOM elements before they are attached.
* Called from H5P.Question.
*/
ImageHotspotQuestion.prototype.registerDomElements = function () {
// Register task introduction text
if (this.hotspotSettings.taskDescription) {
this.setIntroduction(this.hotspotSettings.taskDescription);
}
// Register task content area
this.setContent(this.createContent());
// Register retry button
this.createRetryButton();
};
/**
* Create wrapper and main content for question.
* @returns {H5P.jQuery} Wrapper
*/
ImageHotspotQuestion.prototype.createContent = function () {
var self = this;
this.$wrapper = $('<div>', {
'class': 'image-hotspot-question'
});
this.$wrapper.ready(function () {
self.trigger('resize');
});
if (this.imageSettings && this.imageSettings.path) {
this.$imageWrapper = $('<div>', {
'class': 'image-wrapper'
}).appendTo(this.$wrapper);
// Image loader screen
var $loader = $('<div>', {
'class': 'image-loader'
}).appendTo(this.$imageWrapper)
.addClass('loading');
this.$img = $('<img>', {
'class': 'hotspot-image',
'src': H5P.getPath(this.imageSettings.path, this.contentId)
});
// Resize image once loaded
this.$img.on('load', function () {
$loader.replaceWith(self.$img);
self.trigger('resize');
});
this.attachHotspots();
this.initImageClickListener();
}
else {
const $message = $('<div>')
.text('No background image was added!')
.appendTo(this.$wrapper);
}
return this.$wrapper;
};
/**
* Initiate image click listener to capture clicks outside of defined hotspots.
*/
ImageHotspotQuestion.prototype.initImageClickListener = function () {
var self = this;
this.$imageWrapper.click(function (mouseEvent) {
// Create new hotspot feedback
self.createHotspotFeedback($(this), mouseEvent);
});
};
/**
* Attaches all hotspots.
*/
ImageHotspotQuestion.prototype.attachHotspots = function () {
var self = this;
this.hotspotSettings.hotspot.forEach(function (hotspot) {
self.attachHotspot(hotspot);
});
};
/**
* Attach single hotspot.
* @param {Object} hotspot Hotspot parameters
*/
ImageHotspotQuestion.prototype.attachHotspot = function (hotspot) {
var self = this;
var $hotspot = $('<div>', {
'class': 'image-hotspot ' + hotspot.computedSettings.figure
}).css({
left: hotspot.computedSettings.x + '%',
top: hotspot.computedSettings.y + '%',
width: hotspot.computedSettings.width + '%',
height: hotspot.computedSettings.height + '%'
}).click(function (mouseEvent) {
// Create new hotspot feedback
self.createHotspotFeedback($(this), mouseEvent, hotspot);
// Do not propagate
return false;
}).appendTo(this.$imageWrapper);
this.$hotspots.push($hotspot);
};
/**
* Create a feedback element for a click.
* @param {H5P.jQuery} $clickedElement The element that was clicked, a hotspot or the image wrapper.
* @param {Object} mouseEvent Mouse event containing mouse offsets within clicked element.
* @param {Object} hotspot Hotspot parameters.
*/
ImageHotspotQuestion.prototype.createHotspotFeedback = function ($clickedElement, mouseEvent, hotspot) {
// Do not create new hotspot if one exists
if (this.hotspotFeedback.hotspotChosen) {
return;
}
this.hotspotFeedback.$element = $('<div>', {
'class': 'hotspot-feedback'
}).appendTo(this.$imageWrapper);
this.hotspotFeedback.hotspotChosen = true;
// Center hotspot feedback on mouse click with fallback for firefox
var feedbackPosX = (mouseEvent.offsetX || mouseEvent.pageX - $(mouseEvent.target).offset().left);
var feedbackPosY = (mouseEvent.offsetY || mouseEvent.pageY - $(mouseEvent.target).offset().top);
// Apply clicked element offset if click was not in wrapper
if (!$clickedElement.hasClass('image-wrapper')) {
feedbackPosX += $clickedElement.position().left;
feedbackPosY += $clickedElement.position().top;
}
// Keep position and pixel offsets for resizing
this.hotspotFeedback.percentagePosX = feedbackPosX / (this.$imageWrapper.width() / 100);
this.hotspotFeedback.percentagePosY = feedbackPosY / (this.$imageWrapper.height() / 100);
this.hotspotFeedback.pixelOffsetX = (this.hotspotFeedback.$element.width() / 2);
this.hotspotFeedback.pixelOffsetY = (this.hotspotFeedback.$element.height() / 2);
// Position feedback
this.resizeHotspotFeedback();
// Style correct answers
if (hotspot && hotspot.userSettings.correct) {
this.hotspotFeedback.$element.addClass('correct');
this.finishQuestion();
} else {
// Wrong answer, show retry button
if (this.params.behaviour.enableRetry) {
this.showButton('retry-button');
}
}
var feedbackText = (hotspot && hotspot.userSettings.feedbackText ? hotspot.userSettings.feedbackText : this.params.imageHotspotQuestion.hotspotSettings.noneSelectedFeedback);
if (!feedbackText) {
feedbackText = ' ';
}
// Send these settings into setFeedback to turn feedback into a popup.
var popupSettings = {
showAsPopup: this.params.imageHotspotQuestion.hotspotSettings.showFeedbackAsPopup,
closeText: this.params.imageHotspotQuestion.hotspotSettings.l10n.closeText,
click: this.hotspotFeedback
};
this.setFeedback(feedbackText, this.score, this.maxScore, this.params.scoreBarLabel, undefined, popupSettings);
// Finally add fade in animation to hotspot feedback
this.hotspotFeedback.$element.addClass('fade-in');
// Trigger xAPI completed event
this.triggerAnswered();
};
/**
* Create retry button and add it to button bar.
*/
ImageHotspotQuestion.prototype.createRetryButton = function () {
var self = this;
this.addButton('retry-button', this.params.imageHotspotQuestion.hotspotSettings.l10n.retryText, function () {
self.resetTask();
}, false, {
'aria-label': this.params.a11yRetry,
});
};
/**
* Finish question and remove retry button.
*/
ImageHotspotQuestion.prototype.finishQuestion = function () {
this.score = 1;
// Remove button
this.hideButton('retry-button');
};
/**
* Checks if an answer for this question has been given.
* Used in contracts.
* @returns {boolean}
*/
ImageHotspotQuestion.prototype.getAnswerGiven = function () {
return this.hotspotFeedback.hotspotChosen;
};
/**
* Gets the current user score for this question.
* Used in contracts
* @returns {number}
*/
ImageHotspotQuestion.prototype.getScore = function () {
return this.score;
};
ImageHotspotQuestion.prototype.getTitle = function () {
return H5P.createTitle((this.contentData.metadata && this.contentData.metadata.title) ? this.contentData.metadata.title : 'Fill In');
};
/**
* Gets the max score for this question.
* Used in contracts.
* @returns {number}
*/
ImageHotspotQuestion.prototype.getMaxScore = function () {
return this.maxScore;
};
/**
* Trigger xAPI answered event
*/
ImageHotspotQuestion.prototype.triggerAnswered = function () {
var self = this;
var xAPIEvent = self.createXAPIEventTemplate('answered');
// Add score to xAPIEvent
const score = self.getScore();
const maxScore = self.getMaxScore();
xAPIEvent.setScoredResult(score, maxScore, self, true, score === maxScore);
self.addQuestionToXAPI(xAPIEvent);
self.trigger(xAPIEvent);
};
/**
* Get xAPI data.
* Contract used by report rendering engine.
*
* @see contract at {@link https://h5p.org/documentation/developers/contracts#guides-header-6}
*/
ImageHotspotQuestion.prototype.getXAPIData = function () {
var self = this;
var xAPIEvent = self.createXAPIEventTemplate('answered');
xAPIEvent.setScoredResult(self.getScore(), self.getMaxScore(), self, true, true);
self.addQuestionToXAPI(xAPIEvent);
return {
statement: xAPIEvent.data.statement
};
};
/**
* Add the question itselt to the definition part of an xAPIEvent
*/
ImageHotspotQuestion.prototype.addQuestionToXAPI = function (xAPIEvent) {
var definition = xAPIEvent.getVerifiedStatementValue(['object', 'definition']);
$.extend(true, definition, this.getxAPIDefinition());
};
/**
* Generate xAPI object definition used in xAPI statements.
* @return {Object}
*/
ImageHotspotQuestion.prototype.getxAPIDefinition = function () {
// Individual report not supported
if (this.isRoot()) {
return;
}
var definition = {};
definition.description = {
'en-US': this.getTitle()
};
definition.type = 'http://adlnet.gov/expapi/activities/cmi.interaction';
definition.interactionType = 'other';
return definition;
};
/**
* Display the first found solution for this question.
* Used in contracts
*/
ImageHotspotQuestion.prototype.showSolutions = function () {
var self = this;
var foundSolution = false;
this.hotspotSettings.hotspot.forEach(function (hotspot, index) {
if (hotspot.userSettings.correct && !foundSolution) {
var $correctHotspot = self.$hotspots[index];
self.createHotspotFeedback($correctHotspot, {offsetX: ($correctHotspot.width() / 2), offsetY: ($correctHotspot.height() / 2)}, hotspot);
foundSolution = true;
}
});
};
/**
* Resets the question.
* Used in contracts.
*/
ImageHotspotQuestion.prototype.resetTask = function () {
// Remove hotspot feedback
if (this.hotspotFeedback.$element) {
this.hotspotFeedback.$element.remove();
}
this.hotspotFeedback.hotspotChosen = false;
// Hide retry button
this.hideButton('retry-button');
// Clear feedback
this.removeFeedback();
};
/**
* Resize image and wrapper
*/
ImageHotspotQuestion.prototype.resize = function () {
this.resizeImage();
this.resizeHotspotFeedback();
};
/**
* Resize image to fit parent width.
*/
ImageHotspotQuestion.prototype.resizeImage = function () {
var self = this;
// Check that question has been attached
if (!(this.$wrapper && this.$img)) {
return;
}
// Resize image to fit new container width.
var parentWidth = this.$wrapper.width();
this.$img.width(parentWidth);
// Find required height for new width.
var naturalWidth = this.$img.get(0).naturalWidth;
var naturalHeight = this.$img.get(0).naturalHeight;
var imageRatio = naturalHeight / naturalWidth;
var neededHeight = -1;
if (parentWidth < naturalWidth) {
// Scale image down
neededHeight = parentWidth * imageRatio;
} else {
// Scale image to natural size
this.$img.width(naturalWidth);
neededHeight = naturalHeight;
}
if (neededHeight !== -1) {
this.$img.height(neededHeight);
// Resize wrapper to match image.
self.$wrapper.height(neededHeight);
}
};
/**
* Re-position hotspot feedback.
*/
ImageHotspotQuestion.prototype.resizeHotspotFeedback = function () {
// Check that hotspot is chosen
if (!this.hotspotFeedback.hotspotChosen) {
return;
}
// Calculate positions
var posX = (this.hotspotFeedback.percentagePosX * (this.$imageWrapper.width() / 100)) - this.hotspotFeedback.pixelOffsetX;
var posY = (this.hotspotFeedback.percentagePosY * (this.$imageWrapper.height() / 100)) - this.hotspotFeedback.pixelOffsetY;
// Apply new positions
this.hotspotFeedback.$element.css({
left: posX,
top: posY
});
};
return ImageHotspotQuestion;
}(H5P.jQuery, H5P.Question));