SymphonyElectron/js/notify/AnimationQueue.js
Lynn 0dfa3339a3 notifications implementation (#34)
* 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
2017-03-21 09:15:18 -07:00

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;