Merge pull request #1 from pressbooks/cagp-dev-mtl-patch-1

Update request-queue.js
pull/80/head
Carlos Gutiérrez 2020-02-27 00:11:51 -06:00 committed by GitHub
commit b3fa5028bb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 20 additions and 4 deletions

View File

@ -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) {