Made ContentUpgrade available outside the upgrade script. Also added support for triggering and listening for events
parent
0fb35a3f7c
commit
eb1e7c15d2
|
@ -66,9 +66,10 @@
|
||||||
* Start a new content upgrade.
|
* Start a new content upgrade.
|
||||||
*
|
*
|
||||||
* @param {Number} libraryId
|
* @param {Number} libraryId
|
||||||
|
* @param {Object} events
|
||||||
* @returns {_L1.ContentUpgrade}
|
* @returns {_L1.ContentUpgrade}
|
||||||
*/
|
*/
|
||||||
function ContentUpgrade(libraryId) {
|
function ContentUpgrade(libraryId, events) {
|
||||||
var self = this;
|
var self = this;
|
||||||
|
|
||||||
// Get selected version
|
// Get selected version
|
||||||
|
@ -84,7 +85,11 @@
|
||||||
// Track number of working
|
// Track number of working
|
||||||
self.working = 0;
|
self.working = 0;
|
||||||
|
|
||||||
|
self.events = events || {};
|
||||||
|
|
||||||
var start = function () {
|
var start = function () {
|
||||||
|
self.trigger('start');
|
||||||
|
|
||||||
// Get the next batch
|
// Get the next batch
|
||||||
self.nextBatch({
|
self.nextBatch({
|
||||||
libraryId: libraryId,
|
libraryId: libraryId,
|
||||||
|
@ -194,6 +199,9 @@
|
||||||
* @param {String} msg
|
* @param {String} msg
|
||||||
*/
|
*/
|
||||||
ContentUpgrade.prototype.setStatus = function (msg) {
|
ContentUpgrade.prototype.setStatus = function (msg) {
|
||||||
|
this.trigger('status', {
|
||||||
|
message: msg
|
||||||
|
});
|
||||||
$container.html(msg);
|
$container.html(msg);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -247,6 +255,10 @@
|
||||||
self.current++;
|
self.current++;
|
||||||
self.working++;
|
self.working++;
|
||||||
|
|
||||||
|
self.trigger('assign', {
|
||||||
|
id: id
|
||||||
|
});
|
||||||
|
|
||||||
if (worker) {
|
if (worker) {
|
||||||
worker.postMessage({
|
worker.postMessage({
|
||||||
action: 'newJob',
|
action: 'newJob',
|
||||||
|
@ -296,6 +308,12 @@
|
||||||
// Update progress message
|
// Update progress message
|
||||||
self.throbber.setProgress(Math.round((info.total - self.left + self.current) / (info.total / 100)) + ' %');
|
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
|
// Assign next job
|
||||||
if (self.assignWork(worker) === false && self.working === 0) {
|
if (self.assignWork(worker) === false && self.working === 0) {
|
||||||
// All workers have finsihed.
|
// All workers have finsihed.
|
||||||
|
@ -319,6 +337,8 @@
|
||||||
self.workers[i].terminate();
|
self.workers[i].terminate();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
self.trigger('terminate');
|
||||||
};
|
};
|
||||||
|
|
||||||
var librariesLoadedCallbacks = {};
|
var librariesLoadedCallbacks = {};
|
||||||
|
@ -417,7 +437,25 @@
|
||||||
error = info.errorScript.replace('%lib', error.library);
|
error = info.errorScript.replace('%lib', error.library);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
self.trigger('error', {
|
||||||
|
message: error,
|
||||||
|
infoError: info.error,
|
||||||
|
});
|
||||||
|
|
||||||
self.setStatus('<p>' + info.error + '<br/>' + error + '</p>');
|
self.setStatus('<p>' + info.error + '<br/>' + error + '</p>');
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 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);
|
})(H5P.jQuery, H5P.Version);
|
||||||
|
|
Loading…
Reference in New Issue