From eb1e7c15d297d126ec1458e5a84588eaeed8fbae Mon Sep 17 00:00:00 2001 From: Thomas Horn Sivertsen Date: Thu, 15 Mar 2018 13:49:59 +0100 Subject: [PATCH] Made ContentUpgrade available outside the upgrade script. Also added support for triggering and listening for events --- js/h5p-content-upgrade.js | 40 ++++++++++++++++++++++++++++++++++++++- 1 file changed, 39 insertions(+), 1 deletion(-) diff --git a/js/h5p-content-upgrade.js b/js/h5p-content-upgrade.js index 9c1e4ce..03f04a0 100644 --- a/js/h5p-content-upgrade.js +++ b/js/h5p-content-upgrade.js @@ -66,9 +66,10 @@ * Start a new content upgrade. * * @param {Number} libraryId + * @param {Object} events * @returns {_L1.ContentUpgrade} */ - function ContentUpgrade(libraryId) { + function ContentUpgrade(libraryId, events) { var self = this; // Get selected version @@ -84,7 +85,11 @@ // Track number of working self.working = 0; + self.events = events || {}; + var start = function () { + self.trigger('start'); + // Get the next batch self.nextBatch({ libraryId: libraryId, @@ -194,6 +199,9 @@ * @param {String} msg */ ContentUpgrade.prototype.setStatus = function (msg) { + this.trigger('status', { + message: msg + }); $container.html(msg); }; @@ -247,6 +255,10 @@ self.current++; self.working++; + self.trigger('assign', { + id: id + }); + if (worker) { worker.postMessage({ action: 'newJob', @@ -296,6 +308,12 @@ // Update progress message self.throbber.setProgress(Math.round((info.total - self.left + self.current) / (info.total / 100)) + ' %'); + self.trigger('upgraded', { + id: id, + params: result, + percentComplete: percentComplete, + }); + // Assign next job if (self.assignWork(worker) === false && self.working === 0) { // All workers have finsihed. @@ -319,6 +337,8 @@ self.workers[i].terminate(); } } + + self.trigger('terminate'); }; var librariesLoadedCallbacks = {}; @@ -417,7 +437,25 @@ error = info.errorScript.replace('%lib', error.library); } + self.trigger('error', { + message: error, + infoError: info.error, + }); + self.setStatus('

' + info.error + '
' + error + '

'); }; + /** + * Trigger + * @param action + * @param data + */ + ContentUpgrade.prototype.trigger = function (action, data) { + if( typeof this.events[action] !== "undefined"){ + this.events[action].call(this, data); + } + }; + + H5P.ContentUpgrade = ContentUpgrade; + })(H5P.jQuery, H5P.Version);