| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- (function (factory) {
- if (typeof module === "object" && typeof module.exports === "object") {
- var v = factory(require, exports);
- if (v !== undefined) module.exports = v;
- }
- else if (typeof define === "function" && define.amd) {
- define(["require", "exports", "@angular/core", "../config/config", "../util/util", "../platform/platform"], factory);
- }
- })(function (require, exports) {
- "use strict";
- Object.defineProperty(exports, "__esModule", { value: true });
- var core_1 = require("@angular/core");
- var config_1 = require("../config/config");
- var util_1 = require("../util/util");
- var platform_1 = require("../platform/platform");
- /**
- * @hidden
- */
- var TransitionController = (function () {
- function TransitionController(plt, _config) {
- this.plt = plt;
- this._config = _config;
- this._ids = 0;
- this._trns = {};
- }
- TransitionController.prototype.getRootTrnsId = function (nav) {
- nav = nav.parent;
- while (nav) {
- if (util_1.isPresent(nav._trnsId)) {
- return nav._trnsId;
- }
- nav = nav.parent;
- }
- return null;
- };
- TransitionController.prototype.nextId = function () {
- return this._ids++;
- };
- TransitionController.prototype.get = function (trnsId, enteringView, leavingView, opts) {
- var TransitionClass = this._config.getTransition(opts.animation);
- if (!TransitionClass) {
- // didn't find a transition animation, default to ios-transition
- TransitionClass = this._config.getTransition('ios-transition');
- }
- var trns = new TransitionClass(this.plt, enteringView, leavingView, opts);
- trns.trnsId = trnsId;
- if (!this._trns[trnsId]) {
- // we haven't created the root transition yet
- this._trns[trnsId] = trns;
- }
- else {
- // we already have a root transition created
- // add this new transition as a child to the root
- this._trns[trnsId].add(trns);
- }
- return trns;
- };
- TransitionController.prototype.destroy = function (trnsId) {
- var trans = this._trns[trnsId];
- if (trans) {
- trans.destroy();
- delete this._trns[trnsId];
- }
- };
- TransitionController.decorators = [
- { type: core_1.Injectable },
- ];
- /** @nocollapse */
- TransitionController.ctorParameters = function () { return [
- { type: platform_1.Platform, },
- { type: config_1.Config, },
- ]; };
- return TransitionController;
- }());
- exports.TransitionController = TransitionController;
- });
- //# sourceMappingURL=transition-controller.js.map
|