| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140 |
- /**
- * @license Angular v8.1.0
- * (c) 2010-2019 Google LLC. https://angular.io/
- * License: MIT
- */
- import { __extends } from 'tslib';
- import { AUTO_STYLE, NoopAnimationPlayer } from '@angular/animations';
- import { ɵvalidateStyleProperty, ɵmatchesElement, ɵcontainsElement, ɵinvokeQuery, ɵallowPreviousPlayerStylesMerge } from '@angular/animations/browser';
- /**
- * @publicApi
- */
- var MockAnimationDriver = /** @class */ (function () {
- function MockAnimationDriver() {
- }
- MockAnimationDriver.prototype.validateStyleProperty = function (prop) { return ɵvalidateStyleProperty(prop); };
- MockAnimationDriver.prototype.matchesElement = function (element, selector) {
- return ɵmatchesElement(element, selector);
- };
- MockAnimationDriver.prototype.containsElement = function (elm1, elm2) { return ɵcontainsElement(elm1, elm2); };
- MockAnimationDriver.prototype.query = function (element, selector, multi) {
- return ɵinvokeQuery(element, selector, multi);
- };
- MockAnimationDriver.prototype.computeStyle = function (element, prop, defaultValue) {
- return defaultValue || '';
- };
- MockAnimationDriver.prototype.animate = function (element, keyframes, duration, delay, easing, previousPlayers) {
- if (previousPlayers === void 0) { previousPlayers = []; }
- var player = new MockAnimationPlayer(element, keyframes, duration, delay, easing, previousPlayers);
- MockAnimationDriver.log.push(player);
- return player;
- };
- MockAnimationDriver.log = [];
- return MockAnimationDriver;
- }());
- /**
- * @publicApi
- */
- var MockAnimationPlayer = /** @class */ (function (_super) {
- __extends(MockAnimationPlayer, _super);
- function MockAnimationPlayer(element, keyframes, duration, delay, easing, previousPlayers) {
- var _this = _super.call(this, duration, delay) || this;
- _this.element = element;
- _this.keyframes = keyframes;
- _this.duration = duration;
- _this.delay = delay;
- _this.easing = easing;
- _this.previousPlayers = previousPlayers;
- _this.__finished = false;
- _this.__started = false;
- _this.previousStyles = {};
- _this._onInitFns = [];
- _this.currentSnapshot = {};
- if (ɵallowPreviousPlayerStylesMerge(duration, delay)) {
- previousPlayers.forEach(function (player) {
- if (player instanceof MockAnimationPlayer) {
- var styles_1 = player.currentSnapshot;
- Object.keys(styles_1).forEach(function (prop) { return _this.previousStyles[prop] = styles_1[prop]; });
- }
- });
- }
- return _this;
- }
- /* @internal */
- MockAnimationPlayer.prototype.onInit = function (fn) { this._onInitFns.push(fn); };
- /* @internal */
- MockAnimationPlayer.prototype.init = function () {
- _super.prototype.init.call(this);
- this._onInitFns.forEach(function (fn) { return fn(); });
- this._onInitFns = [];
- };
- MockAnimationPlayer.prototype.finish = function () {
- _super.prototype.finish.call(this);
- this.__finished = true;
- };
- MockAnimationPlayer.prototype.destroy = function () {
- _super.prototype.destroy.call(this);
- this.__finished = true;
- };
- /* @internal */
- MockAnimationPlayer.prototype.triggerMicrotask = function () { };
- MockAnimationPlayer.prototype.play = function () {
- _super.prototype.play.call(this);
- this.__started = true;
- };
- MockAnimationPlayer.prototype.hasStarted = function () { return this.__started; };
- MockAnimationPlayer.prototype.beforeDestroy = function () {
- var _this = this;
- var captures = {};
- Object.keys(this.previousStyles).forEach(function (prop) {
- captures[prop] = _this.previousStyles[prop];
- });
- if (this.hasStarted()) {
- // when assembling the captured styles, it's important that
- // we build the keyframe styles in the following order:
- // {other styles within keyframes, ... previousStyles }
- this.keyframes.forEach(function (kf) {
- Object.keys(kf).forEach(function (prop) {
- if (prop != 'offset') {
- captures[prop] = _this.__finished ? kf[prop] : AUTO_STYLE;
- }
- });
- });
- }
- this.currentSnapshot = captures;
- };
- return MockAnimationPlayer;
- }(NoopAnimationPlayer));
- /**
- * @license
- * Copyright Google Inc. All Rights Reserved.
- *
- * Use of this source code is governed by an MIT-style license that can be
- * found in the LICENSE file at https://angular.io/license
- */
- /**
- * @license
- * Copyright Google Inc. All Rights Reserved.
- *
- * Use of this source code is governed by an MIT-style license that can be
- * found in the LICENSE file at https://angular.io/license
- */
- /**
- * @license
- * Copyright Google Inc. All Rights Reserved.
- *
- * Use of this source code is governed by an MIT-style license that can be
- * found in the LICENSE file at https://angular.io/license
- */
- /**
- * Generated bundle index. Do not edit.
- */
- export { MockAnimationDriver, MockAnimationPlayer };
- //# sourceMappingURL=testing.js.map
|