import * as util from 'ionic/util/util'; export class Animation { constructor(el) { this._el = []; this._parent = null; this._children = []; this._players = []; this._from = null; this._to = null; this._duration = null; this._easing = null; this._rate = null; this._beforeAddCls = []; this._beforeRmvCls = []; this._afterAddCls = []; this._afterRmvCls = []; this.elements(el); } elements(el) { if (el) { if (typeof el === 'string') { el = document.querySelectorAll(ele); } if (el.length) { for (let i = 0; i < el.length; i++) { this._el.push(el[i]); } } else if (el.nodeType) { this._el.push(el); } } return this; } parent(parentAnimation) { this._parent = parentAnimation; return this; } addChild(childAnimation) { if (childAnimation) { childAnimation.parent(this); this._children.push(childAnimation); } return this; } children(arr) { arr = Array.isArray(arr) ? arr : arguments; for (let i = 0; i < arr.length; i++) { this.addChild(arr[i]); } return this; } duration(value) { if (arguments.length) { this._duration = value; return this; } return this._duration || (this._parent && this._parent.duration()); } easing(value) { if (arguments.length) { this._easing = value; return this; } return this._easing || (this._parent && this._parent.easing()); } playbackRate(value) { if (arguments.length) { this._rate = value; var i; for (i = 0; i < this._children.length; i++) { this._children[i].playbackRate(value); } for (i = 0; i < this._players.length; i++) { this._players[i].playbackRate(value); } return this; } return this._rate || (this._parent && this._parent.playbackRate()); } from(property, value) { if (!this._from) { this._from = {}; } this._from[property] = value; return this; } to(property, value) { if (!this._to) { this._to = {}; } this._to[property] = value; return this; } get beforePlay() { return { addClass: (className) => { this._beforeAddCls.push(className); return this; }, removeClass: (className) => { this._beforeRmvCls.push(className); return this; } } } get afterFinish() { return { addClass: (className) => { this._afterAddCls.push(className); return this; }, removeClass: (className) => { this._afterRmvCls.push(className); return this; } } } play() { var i; let promises = []; for (i = 0; i < this._children.length; i++) { promises.push( this._children[i].play() ); } if (!this._to) { // probably just add/removing classes, create bogus transition this._from = this._to = {'opacity': 1}; } if (!this._players.length) { // first time played for (i = 0; i < this._el.length; i++) { this._players.push( new Animate( this._el[i], this._from, this._to, this.duration(), this.easing(), this.playbackRate() ) ); } this._onReady(); } else { // has been paused, now play again for (i = 0; i < this._players.length; i++) { this._players[i].play(); } } for (i = 0; i < this._players.length; i++) { promises.push(this._players[i].promise); } let promise = Promise.all(promises); promise.then(() => { this._onFinish(); }); return promise; } pause() { this._hasFinished = false; var i; for (i = 0; i < this._children.length; i++) { this._children[i].pause(); } for (i = 0; i < this._players.length; i++) { this._players[i].pause(); } } progress(value) { var i; for (i = 0; i < this._children.length; i++) { this._children[i].progress(value); } if (!this._players.length) { this.play(); this.pause(); } for (i = 0; i < this._players.length; i++) { this._players[i].progress(value); } } _onReady() { if (!this._hasPlayed) { this._hasPlayed = true; var i, j, ele; for (i = 0; i < this._el.length; i++) { ele = this._el[i]; for (j = 0; j < this._beforeAddCls.length; j++) { ele.classList.add(this._beforeAddCls[j]); } for (j = 0; j < this._beforeRmvCls.length; j++) { ele.classList.remove(this._beforeRmvCls[j]); } } this.onReady && this.onReady(); } } _onFinish() { if (!this._hasFinished) { this._hasFinished = true; var i, j, ele; if (this.playbackRate() < 0) { // reverse direction for (i = 0; i < this._el.length; i++) { ele = this._el[i]; for (j = 0; j < this._beforeAddCls.length; j++) { ele.classList.remove(this._beforeAddCls[j]); } for (j = 0; j < this._beforeRmvCls.length; j++) { ele.classList.add(this._beforeRmvCls[j]); } } } else { // normal direction for (i = 0; i < this._el.length; i++) { ele = this._el[i]; for (j = 0; j < this._afterAddCls.length; j++) { ele.classList.add(this._afterAddCls[j]); } for (j = 0; j < this._afterRmvCls.length; j++) { ele.classList.remove(this._afterRmvCls[j]); } } } this.onFinish && this.onFinish(); } } dispose() { var i; for (i = 0; i < this._children.length; i++) { this._children[i].dispose(); } for (i = 0; i < this._players.length; i++) { this._players[i].dispose(); } this._el = this._parent = this._children = this._players = null; } } class Animate { constructor(ele, fromEffect, toEffect, duration, easing, playbackRate) { // https://w3c.github.io/web-animations/ // not using the direct API methods because they're still in flux // however, element.animate() seems locked in and uses the latest // and correct API methods under the hood, so really doesn't matter fromEffect = parseEffect(fromEffect); toEffect = parseEffect(toEffect); this._duration = duration; var effects; if (easing in EASING_FN) { effects = createEasingEffects(fromEffect, toEffect, easing); } else { effects = [ convertProperties(fromEffect), convertProperties(toEffect) ]; if (easing in CUBIC_BEZIERS) { easing = 'cubic-bezier(' + CUBIC_BEZIERS[easing] + ')'; } } this.player = ele.animate(effects, { duration: duration, easing: easing, playbackRate: playbackRate || 1 }); this.promise = new Promise(resolve => { this.player.onfinish = () => { resolve(); }; }); } play() { this.player.play(); } pause() { this.player.pause(); } progress(value) { let player = this.player; // passed a number between 0 and 1 value = Math.max(0, Math.min(1, value)); if (value === 1) { player.currentTime = (this._duration * 0.9999); player.play(); return; } if (player.playState !== 'paused') { player.pause(); } player.currentTime = (this._duration * value); } playbackRate(value) { this.player.playbackRate = value; } dispose() { this.player = null; } } function roundValue(val) { return Math.round(val * 10000) / 10000; } function convertProperties(inputEffect) { var outputEffect = {}; var transforms = []; for (var property in inputEffect) { var value = inputEffect[property].value; if (TRANSFORMS.indexOf(property) > -1) { transforms.push(property + '(' + value + ')'); } else { outputEffect[property] = value; } } if (transforms.length) { outputEffect.transform = transforms.join(' '); } return outputEffect; } function createEasingEffects(fromEffect, toEffect, easing) { var inputEffects = buildEffects(fromEffect, toEffect, easing); var outputEffects = []; inputEffects.forEach(function(effect) { outputEffects.push( convertProperties(effect) ); }); return outputEffects; } function buildEffects(fromEffect, toEffect, easing) { var increment = 0.04; var outputEffects = [fromEffect]; var easingFn = EASING_FN[easing]; for(var pos = increment; pos <= (1 - increment); pos += increment) { var tweenEffect = {}; var addEffect = false; for (var property in toEffect) { var toProperty = toEffect[property]; if (toProperty.tween) { var fromValue = fromEffect[property].num var diffValue = toProperty.num - fromValue; tweenEffect[property] = { value: roundValue( (easingFn(pos) * diffValue) + fromValue ) + toProperty.unit }; addEffect = true; } } if (addEffect) { outputEffects.push(tweenEffect); } } outputEffects.push(toEffect); return outputEffects; } function parseEffect(inputEffect) { var val, r, num, property; var outputEffect = {}; for (property in inputEffect) { val = inputEffect[property]; r = val.toString().match(/(\d*\.?\d*)(.*)/); num = parseFloat(r[1]); outputEffect[property] = { value: val, num: num, unit: (r[0] != r[2] ? r[2] : ''), tween: !isNaN(num) && (ANIMATE_PROPERTIES.indexOf(property) > -1) } } return outputEffect; } const TRANSFORMS = ['translateX', 'translateY', 'translateZ', 'scale', 'scaleX', 'scaleY', 'scaleZ', 'rotate', 'rotateX', 'rotateY', 'rotateZ', 'skewX', 'skewY', 'perspective']; const ANIMATE_PROPERTIES = TRANSFORMS.concat('opacity'); // Default easings built into the browsers const BUILTIN_EASING = ['linear', 'ease', 'ease-in', 'ease-out', 'ease-in-out']; // Robert Penner's Easing Functions // http://robertpenner.com/easing/ const CUBIC_BEZIERS = { // Cubic easeInCubic: '0.55,0.055,0.675,0.19', easeOutCubic: '0.215,0.61,0.355,1', easeInOutCubic: '0.645,0.045,0.355,1', // Circ easeInCirc: '0.6,0.04,0.98,0.335', easeOutCirc: '0.075,0.82,0.165,1', easeInOutCirc: '0.785,0.135,0.15,0.86', // Expo easeInExpo: '0.95,0.05,0.795,0.035', easeOutExpo: '0.19,1,0.22,1', easeInOutExpo: '1,0,0,1', // Quad easeInQuad: '0.55,0.085,0.68,0.53', easeOutQuad: '0.25,0.46,0.45,0.94', easeInOutQuad: '0.455,0.03,0.515,0.955', // Quart easeInQuart: '0.895,0.03,0.685,0.22', easeOutQuart: '0.165,0.84,0.44,1', easeInOutQuart: '0.77,0,0.175,1', // Quint easeInQuint: '0.755,0.05,0.855,0.06', easeOutQuint: '0.23,1,0.32,1', easeInOutQuint: '0.86,0,0.07,1', // Sine easeInSine: '0.47,0,0.745,0.715', easeOutSine: '0.39,0.575,0.565,1', easeInOutSine : '0.445,0.05,0.55,0.95', // Back easeInBack: '0.6,-0.28,0.735,0.045', easeOutBack: '0.175, 0.885,0.32,1.275', easeInOutBack: '0.68,-0.55,0.265,1.55', }; const EASING_FN = { easeOutBounce: function(pos) { if ((pos) < (1/2.75)) { return (7.5625*pos*pos); } else if (pos < (2/2.75)) { return (7.5625*(pos-=(1.5/2.75))*pos + .75); } else if (pos < (2.5/2.75)) { return (7.5625*(pos-=(2.25/2.75))*pos + .9375); } return (7.5625*(pos-=(2.625/2.75))*pos + .984375); }, elastic: function(pos) { return -1 * Math.pow(4,-8*pos) * Math.sin((pos*6-1)*(2*Math.PI)/2) + 1; }, swingFromTo: function(pos) { var s = 1.70158; return ((pos/=0.5) < 1) ? 0.5*(pos*pos*(((s*=(1.525))+1)*pos - s)) : 0.5*((pos-=2)*pos*(((s*=(1.525))+1)*pos + s) + 2); }, swingFrom: function(pos) { var s = 1.70158; return pos*pos*((s+1)*pos - s); }, swingTo: function(pos) { var s = 1.70158; return (pos-=1)*pos*((s+1)*pos + s) + 1; }, bounce: function(pos) { if (pos < (1/2.75)) { return (7.5625*pos*pos); } else if (pos < (2/2.75)) { return (7.5625*(pos-=(1.5/2.75))*pos + .75); } else if (pos < (2.5/2.75)) { return (7.5625*(pos-=(2.25/2.75))*pos + .9375); } return (7.5625*(pos-=(2.625/2.75))*pos + .984375); }, bouncePast: function(pos) { if (pos < (1/2.75)) { return (7.5625*pos*pos); } else if (pos < (2/2.75)) { return 2 - (7.5625*(pos-=(1.5/2.75))*pos + .75); } else if (pos < (2.5/2.75)) { return 2 - (7.5625*(pos-=(2.25/2.75))*pos + .9375); } return 2 - (7.5625*(pos-=(2.625/2.75))*pos + .984375); }, easeFromTo: function(pos) { if ((pos/=0.5) < 1) return 0.5*Math.pow(pos,4); return -0.5 * ((pos-=2)*Math.pow(pos,3) - 2); }, easeFrom: function(pos) { return Math.pow(pos, 4) }, easeTo: function(pos) { return Math.pow(pos, 0.25) }, /* * scripty2, Thomas Fuchs (MIT Licence) * https://raw.github.com/madrobby/scripty2/master/src/effects/transitions/transitions.js */ spring: function(pos) { return 1 - (Math.cos(pos * 4.5 * Math.PI) * Math.exp(-pos * 6)); }, sinusoidal: function(pos) { return (-Math.cos(pos*Math.PI)/2) + 0.5; } };