mirror of
https://github.com/finos/SymphonyElectron.git
synced 2025-01-07 22:53:14 -06:00
0dfa3339a3
* wip: notifications * wip: more notifications * wip: add getter to proxy * wip: add setter * wip: add static getter and method * wip: add event handlers * wip: add doc * wip: add api demo
42 lines
1010 B
JavaScript
42 lines
1010 B
JavaScript
'use strict';
|
|
|
|
// One animation at a time
|
|
const AnimationQueue = function(options) {
|
|
this.options = options;
|
|
this.queue = [];
|
|
this.running = false;
|
|
}
|
|
|
|
AnimationQueue.prototype.push = function(object) {
|
|
if (this.running) {
|
|
this.queue.push(object);
|
|
} else {
|
|
this.running = true;
|
|
this.animate(object);
|
|
}
|
|
}
|
|
|
|
AnimationQueue.prototype.animate = function(object) {
|
|
object.func.apply(null, object.args)
|
|
.then(function() {
|
|
if (this.queue.length > 0) {
|
|
// Run next animation
|
|
this.animate.call(this, this.queue.shift());
|
|
} else {
|
|
this.running = false;
|
|
}
|
|
}.bind(this))
|
|
.catch(function(err) {
|
|
/* eslint-disable no-console */
|
|
console.error('animation queue encountered an error: ' + err +
|
|
' with stack trace:' + err.stack);
|
|
/* eslint-enable no-console */
|
|
})
|
|
}
|
|
|
|
AnimationQueue.prototype.clear = function() {
|
|
this.queue = [];
|
|
}
|
|
|
|
module.exports = AnimationQueue;
|