commit
b3fa5028bb
|
@ -27,9 +27,13 @@ H5P.RequestQueue = (function ($, EventDispatcher) {
|
||||||
* @returns {boolean}
|
* @returns {boolean}
|
||||||
*/
|
*/
|
||||||
RequestQueue.prototype.add = function (url, data) {
|
RequestQueue.prototype.add = function (url, data) {
|
||||||
|
try {
|
||||||
if (!window.localStorage) {
|
if (!window.localStorage) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
} catch(err) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
let storedStatements = this.getStoredRequests();
|
let storedStatements = this.getStoredRequests();
|
||||||
if (!storedStatements) {
|
if (!storedStatements) {
|
||||||
|
@ -56,9 +60,13 @@ H5P.RequestQueue = (function ($, EventDispatcher) {
|
||||||
* @returns {boolean|Array} Stored requests
|
* @returns {boolean|Array} Stored requests
|
||||||
*/
|
*/
|
||||||
RequestQueue.prototype.getStoredRequests = function () {
|
RequestQueue.prototype.getStoredRequests = function () {
|
||||||
|
try {
|
||||||
if (!window.localStorage) {
|
if (!window.localStorage) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
} catch(err) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
const item = window.localStorage.getItem(this.itemName);
|
const item = window.localStorage.getItem(this.itemName);
|
||||||
if (!item) {
|
if (!item) {
|
||||||
|
@ -74,9 +82,13 @@ H5P.RequestQueue = (function ($, EventDispatcher) {
|
||||||
* @returns {boolean} True if the storage was successfully cleared
|
* @returns {boolean} True if the storage was successfully cleared
|
||||||
*/
|
*/
|
||||||
RequestQueue.prototype.clearQueue = function () {
|
RequestQueue.prototype.clearQueue = function () {
|
||||||
|
try {
|
||||||
if (!window.localStorage) {
|
if (!window.localStorage) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
} catch(err) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
window.localStorage.removeItem(this.itemName);
|
window.localStorage.removeItem(this.itemName);
|
||||||
return true;
|
return true;
|
||||||
|
@ -89,9 +101,13 @@ H5P.RequestQueue = (function ($, EventDispatcher) {
|
||||||
*/
|
*/
|
||||||
RequestQueue.prototype.resumeQueue = function () {
|
RequestQueue.prototype.resumeQueue = function () {
|
||||||
// Not supported
|
// Not supported
|
||||||
|
try {
|
||||||
if (!H5PIntegration || !window.navigator || !window.localStorage) {
|
if (!H5PIntegration || !window.navigator || !window.localStorage) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
} catch(err) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
// Already processing
|
// Already processing
|
||||||
if (this.processingQueue) {
|
if (this.processingQueue) {
|
||||||
|
|
Loading…
Reference in New Issue