Made content state saving more robust [HFJ-1450]
parent
5e45e7d7dd
commit
e83b213183
31
js/h5p.js
31
js/h5p.js
|
@ -1947,21 +1947,34 @@ H5P.createTitle = function (rawTitle, maxLength) {
|
||||||
}
|
}
|
||||||
|
|
||||||
if (H5PIntegration.saveFreq !== false) {
|
if (H5PIntegration.saveFreq !== false) {
|
||||||
|
// When was the last state stored
|
||||||
|
var lastStoredOn = 0;
|
||||||
// Store the current state of the H5P when leaving the page.
|
// Store the current state of the H5P when leaving the page.
|
||||||
var storeCurrentState = function () {
|
var storeCurrentState = function () {
|
||||||
for (var i = 0; i < H5P.instances.length; i++) {
|
// Make sure at least 250 ms has passed since last save
|
||||||
var instance = H5P.instances[i];
|
var currentTime = new Date().getTime();
|
||||||
if (instance.getCurrentState instanceof Function ||
|
if (currentTime - lastStoredOn > 250) {
|
||||||
typeof instance.getCurrentState === 'function') {
|
lastStoredOn = currentTime;
|
||||||
var state = instance.getCurrentState();
|
for (var i = 0; i < H5P.instances.length; i++) {
|
||||||
if (state !== undefined) {
|
var instance = H5P.instances[i];
|
||||||
// Async is not used to prevent the request from being cancelled.
|
if (instance.getCurrentState instanceof Function ||
|
||||||
H5P.setUserData(instance.contentId, 'state', state, {deleteOnChange: true, async: false});
|
typeof instance.getCurrentState === 'function') {
|
||||||
|
var state = instance.getCurrentState();
|
||||||
|
if (state !== undefined) {
|
||||||
|
// Async is not used to prevent the request from being cancelled.
|
||||||
|
H5P.setUserData(instance.contentId, 'state', state, {deleteOnChange: true, async: false});
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
H5P.$window.one('beforeunload unload', storeCurrentState);
|
// iPad does not support beforeunload, therefore using unload
|
||||||
|
H5P.$window.one('beforeunload unload', function () {
|
||||||
|
// Only want to do this once
|
||||||
|
H5P.$window.off('pagehide beforeunload unload');
|
||||||
|
storeCurrentState();
|
||||||
|
});
|
||||||
|
// pagehide is used on iPad when tabs are switched
|
||||||
H5P.$window.on('pagehide', storeCurrentState);
|
H5P.$window.on('pagehide', storeCurrentState);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue