2017-02-22 18:14:49 -05:00
|
|
|
/**
|
|
|
|
* @license
|
2020-05-19 15:08:49 -04:00
|
|
|
* Copyright Google LLC All Rights Reserved.
|
2017-02-22 18:14:49 -05:00
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*/
|
2020-04-13 19:40:21 -04:00
|
|
|
import {animate, AnimationPlayer, AnimationTriggerMetadata, state, style, transition, trigger} from '@angular/animations';
|
2017-04-26 13:44:28 -04:00
|
|
|
import {ɵAnimationEngine as AnimationEngine} from '@angular/animations/browser';
|
fix(animations): cleanup DOM elements when the root view is removed (#41059)
Currently, when importing `BrowserAnimationsModule`, Angular uses `AnimationRenderer`
as the renderer. When the root view is removed, the `AnimationRenderer` defers the actual
work to the `TransitionAnimationEngine` to do this, and the `TransitionAnimationEngine`
doesn't actually remove the DOM node, but just calls `markElementAsRemoved()`.
The actual DOM node is not removed until `TransitionAnimationEngine` "flushes".
Unfortunately, though, that "flush" will never happen, since the root view is being
destroyed and there will be no more flushes.
This commit adds `flush()` call when the root view is being destroyed.
BREAKING CHANGE:
DOM elements are now correctly removed when the root view is removed.
If you are using SSR and use the app's HTML for rendering, you will need
to ensure that you save the HTML to a variable before destorying the
app.
It is also possible that tests could be accidentally relying on the old behavior by
trying to find an element that was not removed in a previous test. If
this is the case, the failing tests should be updated to ensure they
have proper setup code which initializes elements they rely on.
PR Close #41059
2021-03-02 18:41:06 -05:00
|
|
|
import {Component, destroyPlatform, Injectable, NgModule, NgZone, RendererFactory2, RendererType2, ViewChild} from '@angular/core';
|
2017-02-22 18:14:49 -05:00
|
|
|
import {TestBed} from '@angular/core/testing';
|
fix(animations): cleanup DOM elements when the root view is removed (#41059)
Currently, when importing `BrowserAnimationsModule`, Angular uses `AnimationRenderer`
as the renderer. When the root view is removed, the `AnimationRenderer` defers the actual
work to the `TransitionAnimationEngine` to do this, and the `TransitionAnimationEngine`
doesn't actually remove the DOM node, but just calls `markElementAsRemoved()`.
The actual DOM node is not removed until `TransitionAnimationEngine` "flushes".
Unfortunately, though, that "flush" will never happen, since the root view is being
destroyed and there will be no more flushes.
This commit adds `flush()` call when the root view is being destroyed.
BREAKING CHANGE:
DOM elements are now correctly removed when the root view is removed.
If you are using SSR and use the app's HTML for rendering, you will need
to ensure that you save the HTML to a variable before destorying the
app.
It is also possible that tests could be accidentally relying on the old behavior by
trying to find an element that was not removed in a previous test. If
this is the case, the failing tests should be updated to ensure they
have proper setup code which initializes elements they rely on.
PR Close #41059
2021-03-02 18:41:06 -05:00
|
|
|
import {platformBrowserDynamic} from '@angular/platform-browser-dynamic';
|
2018-12-05 08:39:54 -05:00
|
|
|
import {BrowserAnimationsModule, ɵAnimationRendererFactory as AnimationRendererFactory, ɵInjectableAnimationEngine as InjectableAnimationEngine} from '@angular/platform-browser/animations';
|
2017-04-26 13:44:28 -04:00
|
|
|
import {DomRendererFactory2} from '@angular/platform-browser/src/dom/dom_renderer';
|
fix(animations): cleanup DOM elements when the root view is removed (#41059)
Currently, when importing `BrowserAnimationsModule`, Angular uses `AnimationRenderer`
as the renderer. When the root view is removed, the `AnimationRenderer` defers the actual
work to the `TransitionAnimationEngine` to do this, and the `TransitionAnimationEngine`
doesn't actually remove the DOM node, but just calls `markElementAsRemoved()`.
The actual DOM node is not removed until `TransitionAnimationEngine` "flushes".
Unfortunately, though, that "flush" will never happen, since the root view is being
destroyed and there will be no more flushes.
This commit adds `flush()` call when the root view is being destroyed.
BREAKING CHANGE:
DOM elements are now correctly removed when the root view is removed.
If you are using SSR and use the app's HTML for rendering, you will need
to ensure that you save the HTML to a variable before destorying the
app.
It is also possible that tests could be accidentally relying on the old behavior by
trying to find an element that was not removed in a previous test. If
this is the case, the failing tests should be updated to ensure they
have proper setup code which initializes elements they rely on.
PR Close #41059
2021-03-02 18:41:06 -05:00
|
|
|
import {onlyInIvy, withBody} from '@angular/private/testing';
|
2018-10-16 02:24:22 -04:00
|
|
|
|
2017-03-02 15:12:46 -05:00
|
|
|
import {el} from '../../testing/src/browser_util';
|
2017-02-22 18:14:49 -05:00
|
|
|
|
2017-12-18 01:18:50 -05:00
|
|
|
(function() {
|
2020-04-13 19:40:21 -04:00
|
|
|
if (isNode) return;
|
|
|
|
describe('AnimationRenderer', () => {
|
|
|
|
let element: any;
|
|
|
|
beforeEach(() => {
|
|
|
|
element = el('<div></div>');
|
|
|
|
|
|
|
|
TestBed.configureTestingModule({
|
|
|
|
providers: [{provide: AnimationEngine, useClass: MockAnimationEngine}],
|
|
|
|
imports: [BrowserAnimationsModule]
|
2017-02-22 18:14:49 -05:00
|
|
|
});
|
2020-04-13 19:40:21 -04:00
|
|
|
});
|
2017-02-22 18:14:49 -05:00
|
|
|
|
2020-04-13 19:40:21 -04:00
|
|
|
function makeRenderer(animationTriggers: any[] = []) {
|
|
|
|
const type = <RendererType2>{
|
|
|
|
id: 'id',
|
|
|
|
encapsulation: null!,
|
|
|
|
styles: [],
|
|
|
|
data: {'animation': animationTriggers}
|
|
|
|
};
|
|
|
|
return (TestBed.inject(RendererFactory2) as AnimationRendererFactory)
|
|
|
|
.createRenderer(element, type);
|
|
|
|
}
|
2017-02-22 18:14:49 -05:00
|
|
|
|
2020-04-13 19:40:21 -04:00
|
|
|
it('should hook into the engine\'s insert operations when appending children', () => {
|
|
|
|
const renderer = makeRenderer();
|
|
|
|
const engine = TestBed.inject(AnimationEngine) as MockAnimationEngine;
|
|
|
|
const container = el('<div></div>');
|
2017-02-22 18:14:49 -05:00
|
|
|
|
2020-04-13 19:40:21 -04:00
|
|
|
renderer.appendChild(container, element);
|
|
|
|
expect(engine.captures['onInsert'].pop()).toEqual([element]);
|
|
|
|
});
|
2017-02-22 18:14:49 -05:00
|
|
|
|
2020-04-13 19:40:21 -04:00
|
|
|
it('should hook into the engine\'s insert operations when inserting a child before another',
|
|
|
|
() => {
|
|
|
|
const renderer = makeRenderer();
|
|
|
|
const engine = TestBed.inject(AnimationEngine) as MockAnimationEngine;
|
|
|
|
const container = el('<div></div>');
|
|
|
|
const element2 = el('<div></div>');
|
|
|
|
container.appendChild(element2);
|
|
|
|
|
|
|
|
renderer.insertBefore(container, element, element2);
|
|
|
|
expect(engine.captures['onInsert'].pop()).toEqual([element]);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should hook into the engine\'s insert operations when removing children', () => {
|
|
|
|
const renderer = makeRenderer();
|
|
|
|
const engine = TestBed.inject(AnimationEngine) as MockAnimationEngine;
|
|
|
|
const container = el('<div></div>');
|
|
|
|
|
|
|
|
renderer.removeChild(container, element);
|
|
|
|
expect(engine.captures['onRemove'].pop()).toEqual([element]);
|
|
|
|
});
|
2017-02-22 18:14:49 -05:00
|
|
|
|
2020-04-13 19:40:21 -04:00
|
|
|
it('should hook into the engine\'s setProperty call if the property begins with `@`', () => {
|
|
|
|
const renderer = makeRenderer();
|
|
|
|
const engine = TestBed.inject(AnimationEngine) as MockAnimationEngine;
|
2017-02-22 18:14:49 -05:00
|
|
|
|
2020-04-13 19:40:21 -04:00
|
|
|
renderer.setProperty(element, 'prop', 'value');
|
|
|
|
expect(engine.captures['setProperty']).toBeFalsy();
|
2017-02-22 18:14:49 -05:00
|
|
|
|
2020-04-13 19:40:21 -04:00
|
|
|
renderer.setProperty(element, '@prop', 'value');
|
|
|
|
expect(engine.captures['setProperty'].pop()).toEqual([element, 'prop', 'value']);
|
|
|
|
});
|
2017-02-22 18:14:49 -05:00
|
|
|
|
2020-04-13 19:40:21 -04:00
|
|
|
// https://github.com/angular/angular/issues/32794
|
|
|
|
it('should support nested animation triggers', () => {
|
|
|
|
makeRenderer([[trigger('myAnimation', [])]]);
|
2017-02-22 18:14:49 -05:00
|
|
|
|
2020-04-13 19:40:21 -04:00
|
|
|
const {triggers} = TestBed.inject(AnimationEngine) as MockAnimationEngine;
|
2017-02-22 18:14:49 -05:00
|
|
|
|
2020-04-13 19:40:21 -04:00
|
|
|
expect(triggers.length).toEqual(1);
|
|
|
|
expect(triggers[0].name).toEqual('myAnimation');
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('listen', () => {
|
|
|
|
it('should hook into the engine\'s listen call if the property begins with `@`', () => {
|
|
|
|
const renderer = makeRenderer();
|
|
|
|
const engine = TestBed.inject(AnimationEngine) as MockAnimationEngine;
|
2017-02-22 18:14:49 -05:00
|
|
|
|
2020-04-13 19:40:21 -04:00
|
|
|
const cb = (event: any): boolean => {
|
|
|
|
return true;
|
|
|
|
};
|
2019-09-23 14:31:09 -04:00
|
|
|
|
2020-04-13 19:40:21 -04:00
|
|
|
renderer.listen(element, 'event', cb);
|
|
|
|
expect(engine.captures['listen']).toBeFalsy();
|
2019-09-23 14:31:09 -04:00
|
|
|
|
2020-04-13 19:40:21 -04:00
|
|
|
renderer.listen(element, '@event.phase', cb);
|
|
|
|
expect(engine.captures['listen'].pop()).toEqual([element, 'event', 'phase']);
|
2019-09-23 14:31:09 -04:00
|
|
|
});
|
|
|
|
|
2020-04-13 19:40:21 -04:00
|
|
|
it('should resolve the body|document|window nodes given their values as strings as input',
|
|
|
|
() => {
|
|
|
|
const renderer = makeRenderer();
|
|
|
|
const engine = TestBed.inject(AnimationEngine) as MockAnimationEngine;
|
2017-02-22 18:14:49 -05:00
|
|
|
|
2020-04-13 19:40:21 -04:00
|
|
|
const cb = (event: any): boolean => {
|
|
|
|
return true;
|
|
|
|
};
|
2017-02-22 18:14:49 -05:00
|
|
|
|
2020-04-13 19:40:21 -04:00
|
|
|
renderer.listen('body', '@event', cb);
|
|
|
|
expect(engine.captures['listen'].pop()[0]).toBe(document.body);
|
2017-02-22 18:14:49 -05:00
|
|
|
|
2020-04-13 19:40:21 -04:00
|
|
|
renderer.listen('document', '@event', cb);
|
|
|
|
expect(engine.captures['listen'].pop()[0]).toBe(document);
|
2017-02-22 18:14:49 -05:00
|
|
|
|
2020-04-13 19:40:21 -04:00
|
|
|
renderer.listen('window', '@event', cb);
|
|
|
|
expect(engine.captures['listen'].pop()[0]).toBe(window);
|
|
|
|
});
|
|
|
|
});
|
2017-02-22 18:14:49 -05:00
|
|
|
|
2020-04-13 19:40:21 -04:00
|
|
|
describe('registering animations', () => {
|
|
|
|
it('should only create a trigger definition once even if the registered multiple times');
|
|
|
|
});
|
2017-02-22 18:14:49 -05:00
|
|
|
|
2020-04-13 19:40:21 -04:00
|
|
|
describe('flushing animations', () => {
|
|
|
|
// these tests are only mean't to be run within the DOM
|
|
|
|
if (isNode) return;
|
2017-02-22 18:14:49 -05:00
|
|
|
|
2020-04-13 19:40:21 -04:00
|
|
|
it('should flush and fire callbacks when the zone becomes stable', (async) => {
|
|
|
|
@Component({
|
|
|
|
selector: 'my-cmp',
|
|
|
|
template: '<div [@myAnimation]="exp" (@myAnimation.start)="onStart($event)"></div>',
|
|
|
|
animations: [trigger(
|
|
|
|
'myAnimation',
|
|
|
|
[transition(
|
|
|
|
'* => state', [style({'opacity': '0'}), animate(500, style({'opacity': '1'}))])])],
|
|
|
|
})
|
|
|
|
class Cmp {
|
|
|
|
exp: any;
|
|
|
|
event: any;
|
|
|
|
onStart(event: any) {
|
|
|
|
this.event = event;
|
|
|
|
}
|
|
|
|
}
|
2017-02-22 18:14:49 -05:00
|
|
|
|
2020-04-13 19:40:21 -04:00
|
|
|
TestBed.configureTestingModule({
|
|
|
|
providers: [{provide: AnimationEngine, useClass: InjectableAnimationEngine}],
|
|
|
|
declarations: [Cmp]
|
|
|
|
});
|
2017-02-23 11:51:00 -05:00
|
|
|
|
2020-04-13 19:40:21 -04:00
|
|
|
const engine = TestBed.inject(AnimationEngine);
|
|
|
|
const fixture = TestBed.createComponent(Cmp);
|
|
|
|
const cmp = fixture.componentInstance;
|
|
|
|
cmp.exp = 'state';
|
|
|
|
fixture.detectChanges();
|
|
|
|
fixture.whenStable().then(() => {
|
|
|
|
expect(cmp.event.triggerName).toEqual('myAnimation');
|
|
|
|
expect(cmp.event.phaseName).toEqual('start');
|
|
|
|
cmp.event = null;
|
|
|
|
|
|
|
|
engine.flush();
|
|
|
|
expect(cmp.event).toBeFalsy();
|
|
|
|
async();
|
|
|
|
});
|
2017-04-26 13:44:28 -04:00
|
|
|
});
|
|
|
|
|
2020-04-13 19:40:21 -04:00
|
|
|
it('should properly insert/remove nodes through the animation renderer that do not contain animations',
|
|
|
|
(async) => {
|
|
|
|
@Component({
|
|
|
|
selector: 'my-cmp',
|
|
|
|
template: '<div #elm *ngIf="exp"></div>',
|
|
|
|
animations: [trigger(
|
|
|
|
'someAnimation',
|
|
|
|
[transition(
|
|
|
|
'* => *', [style({'opacity': '0'}), animate(500, style({'opacity': '1'}))])])],
|
|
|
|
})
|
|
|
|
class Cmp {
|
|
|
|
exp: any;
|
|
|
|
@ViewChild('elm') public element: any;
|
|
|
|
}
|
|
|
|
|
|
|
|
TestBed.configureTestingModule({
|
|
|
|
providers: [{provide: AnimationEngine, useClass: InjectableAnimationEngine}],
|
|
|
|
declarations: [Cmp]
|
|
|
|
});
|
2018-12-06 18:57:52 -05:00
|
|
|
|
2020-04-13 19:40:21 -04:00
|
|
|
const fixture = TestBed.createComponent(Cmp);
|
|
|
|
const cmp = fixture.componentInstance;
|
|
|
|
cmp.exp = true;
|
|
|
|
fixture.detectChanges();
|
2017-02-23 14:34:14 -05:00
|
|
|
|
2020-04-13 19:40:21 -04:00
|
|
|
fixture.whenStable().then(() => {
|
|
|
|
cmp.exp = false;
|
|
|
|
const element = cmp.element;
|
|
|
|
expect(element.nativeElement.parentNode).toBeTruthy();
|
2017-02-23 14:34:14 -05:00
|
|
|
|
|
|
|
fixture.detectChanges();
|
|
|
|
fixture.whenStable().then(() => {
|
2020-04-13 19:40:21 -04:00
|
|
|
expect(element.nativeElement.parentNode).toBeFalsy();
|
|
|
|
async();
|
2017-02-23 14:34:14 -05:00
|
|
|
});
|
|
|
|
});
|
2020-04-13 19:40:21 -04:00
|
|
|
});
|
2017-02-23 15:52:41 -05:00
|
|
|
|
2020-04-13 19:40:21 -04:00
|
|
|
it('should only queue up dom removals if the element itself contains a valid leave animation',
|
|
|
|
() => {
|
|
|
|
@Component({
|
|
|
|
selector: 'my-cmp',
|
|
|
|
template: `
|
2017-02-23 15:52:41 -05:00
|
|
|
<div #elm1 *ngIf="exp1"></div>
|
|
|
|
<div #elm2 @animation1 *ngIf="exp2"></div>
|
|
|
|
<div #elm3 @animation2 *ngIf="exp3"></div>
|
|
|
|
`,
|
2020-04-13 19:40:21 -04:00
|
|
|
animations: [
|
|
|
|
trigger('animation1', [transition('a => b', [])]),
|
|
|
|
trigger('animation2', [transition(':leave', [])]),
|
|
|
|
]
|
|
|
|
})
|
|
|
|
class Cmp {
|
|
|
|
exp1: any = true;
|
|
|
|
exp2: any = true;
|
|
|
|
exp3: any = true;
|
|
|
|
|
|
|
|
@ViewChild('elm1') public elm1: any;
|
|
|
|
|
|
|
|
@ViewChild('elm2') public elm2: any;
|
|
|
|
|
|
|
|
@ViewChild('elm3') public elm3: any;
|
|
|
|
}
|
|
|
|
|
|
|
|
TestBed.configureTestingModule({
|
|
|
|
providers: [{provide: AnimationEngine, useClass: InjectableAnimationEngine}],
|
|
|
|
declarations: [Cmp]
|
2018-12-11 02:40:19 -05:00
|
|
|
});
|
2017-04-26 13:44:28 -04:00
|
|
|
|
2020-04-13 19:40:21 -04:00
|
|
|
const engine = TestBed.inject(AnimationEngine);
|
|
|
|
const fixture = TestBed.createComponent(Cmp);
|
|
|
|
const cmp = fixture.componentInstance;
|
|
|
|
|
|
|
|
fixture.detectChanges();
|
|
|
|
const elm1 = cmp.elm1;
|
|
|
|
const elm2 = cmp.elm2;
|
|
|
|
const elm3 = cmp.elm3;
|
|
|
|
assertHasParent(elm1);
|
|
|
|
assertHasParent(elm2);
|
|
|
|
assertHasParent(elm3);
|
|
|
|
engine.flush();
|
|
|
|
finishPlayers(engine.players);
|
|
|
|
|
|
|
|
cmp.exp1 = false;
|
|
|
|
fixture.detectChanges();
|
|
|
|
assertHasParent(elm1, false);
|
|
|
|
assertHasParent(elm2);
|
|
|
|
assertHasParent(elm3);
|
|
|
|
engine.flush();
|
|
|
|
expect(engine.players.length).toEqual(0);
|
|
|
|
|
|
|
|
cmp.exp2 = false;
|
|
|
|
fixture.detectChanges();
|
|
|
|
assertHasParent(elm1, false);
|
|
|
|
assertHasParent(elm2, false);
|
|
|
|
assertHasParent(elm3);
|
|
|
|
engine.flush();
|
|
|
|
expect(engine.players.length).toEqual(0);
|
|
|
|
|
|
|
|
cmp.exp3 = false;
|
|
|
|
fixture.detectChanges();
|
|
|
|
assertHasParent(elm1, false);
|
|
|
|
assertHasParent(elm2, false);
|
|
|
|
assertHasParent(elm3);
|
|
|
|
engine.flush();
|
|
|
|
expect(engine.players.length).toEqual(1);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('AnimationRendererFactory', () => {
|
|
|
|
beforeEach(() => {
|
|
|
|
TestBed.configureTestingModule({
|
|
|
|
providers: [{
|
|
|
|
provide: RendererFactory2,
|
|
|
|
useClass: ExtendedAnimationRendererFactory,
|
|
|
|
deps: [DomRendererFactory2, AnimationEngine, NgZone]
|
|
|
|
}],
|
|
|
|
imports: [BrowserAnimationsModule]
|
2017-04-26 13:44:28 -04:00
|
|
|
});
|
2020-04-13 19:40:21 -04:00
|
|
|
});
|
2017-04-26 13:44:28 -04:00
|
|
|
|
2020-04-13 19:40:21 -04:00
|
|
|
it('should provide hooks at the start and end of change detection', () => {
|
|
|
|
@Component({
|
|
|
|
selector: 'my-cmp',
|
|
|
|
template: `
|
2018-10-16 02:24:22 -04:00
|
|
|
<div [@myAnimation]="exp"></div>
|
2017-04-26 13:44:28 -04:00
|
|
|
`,
|
2020-04-13 19:40:21 -04:00
|
|
|
animations: [trigger('myAnimation', [])]
|
|
|
|
})
|
|
|
|
class Cmp {
|
|
|
|
public exp: any;
|
|
|
|
}
|
2018-12-21 14:53:18 -05:00
|
|
|
|
2020-04-13 19:40:21 -04:00
|
|
|
TestBed.configureTestingModule({
|
|
|
|
providers: [{provide: AnimationEngine, useClass: InjectableAnimationEngine}],
|
|
|
|
declarations: [Cmp]
|
|
|
|
});
|
2018-12-21 14:53:18 -05:00
|
|
|
|
2020-04-13 19:40:21 -04:00
|
|
|
const renderer = TestBed.inject(RendererFactory2) as ExtendedAnimationRendererFactory;
|
|
|
|
const fixture = TestBed.createComponent(Cmp);
|
|
|
|
const cmp = fixture.componentInstance;
|
2018-12-21 14:53:18 -05:00
|
|
|
|
2020-04-13 19:40:21 -04:00
|
|
|
renderer.log = [];
|
|
|
|
fixture.detectChanges();
|
|
|
|
expect(renderer.log).toEqual(['begin', 'end']);
|
2018-12-21 14:53:18 -05:00
|
|
|
|
2020-04-13 19:40:21 -04:00
|
|
|
renderer.log = [];
|
|
|
|
fixture.detectChanges();
|
|
|
|
expect(renderer.log).toEqual(['begin', 'end']);
|
2017-04-26 13:44:28 -04:00
|
|
|
});
|
2020-04-13 19:40:21 -04:00
|
|
|
});
|
fix(animations): cleanup DOM elements when the root view is removed (#41059)
Currently, when importing `BrowserAnimationsModule`, Angular uses `AnimationRenderer`
as the renderer. When the root view is removed, the `AnimationRenderer` defers the actual
work to the `TransitionAnimationEngine` to do this, and the `TransitionAnimationEngine`
doesn't actually remove the DOM node, but just calls `markElementAsRemoved()`.
The actual DOM node is not removed until `TransitionAnimationEngine` "flushes".
Unfortunately, though, that "flush" will never happen, since the root view is being
destroyed and there will be no more flushes.
This commit adds `flush()` call when the root view is being destroyed.
BREAKING CHANGE:
DOM elements are now correctly removed when the root view is removed.
If you are using SSR and use the app's HTML for rendering, you will need
to ensure that you save the HTML to a variable before destorying the
app.
It is also possible that tests could be accidentally relying on the old behavior by
trying to find an element that was not removed in a previous test. If
this is the case, the failing tests should be updated to ensure they
have proper setup code which initializes elements they rely on.
PR Close #41059
2021-03-02 18:41:06 -05:00
|
|
|
|
|
|
|
onlyInIvy('View Engine uses another mechanism of removing DOM nodes').describe('destroy', () => {
|
|
|
|
beforeEach(destroyPlatform);
|
|
|
|
afterEach(destroyPlatform);
|
|
|
|
|
|
|
|
it('should clear bootstrapped component contents',
|
|
|
|
withBody('<div>before</div><app-root></app-root><div>after</div>', async () => {
|
|
|
|
@Component({selector: 'app-root', template: 'app-root content'})
|
|
|
|
class AppComponent {
|
|
|
|
}
|
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
imports: [BrowserAnimationsModule],
|
|
|
|
declarations: [AppComponent],
|
|
|
|
bootstrap: [AppComponent]
|
|
|
|
})
|
|
|
|
class AppModule {
|
|
|
|
}
|
|
|
|
|
|
|
|
const ngModuleRef = await platformBrowserDynamic().bootstrapModule(AppModule);
|
|
|
|
|
|
|
|
const root = document.body.querySelector('app-root')!;
|
|
|
|
expect(root.textContent).toEqual('app-root content');
|
|
|
|
expect(document.body.childNodes.length).toEqual(3);
|
|
|
|
|
|
|
|
ngModuleRef.destroy();
|
|
|
|
|
|
|
|
expect(document.body.querySelector('app-root')).toBeFalsy(); // host element is removed
|
|
|
|
expect(document.body.childNodes.length).toEqual(2); // other elements are preserved
|
|
|
|
}));
|
|
|
|
});
|
2017-12-18 01:18:50 -05:00
|
|
|
})();
|
2017-02-22 18:14:49 -05:00
|
|
|
|
|
|
|
@Injectable()
|
2017-05-02 18:45:48 -04:00
|
|
|
class MockAnimationEngine extends InjectableAnimationEngine {
|
2017-02-22 18:14:49 -05:00
|
|
|
captures: {[method: string]: any[]} = {};
|
|
|
|
triggers: AnimationTriggerMetadata[] = [];
|
|
|
|
|
|
|
|
private _capture(name: string, args: any[]) {
|
|
|
|
const data = this.captures[name] = this.captures[name] || [];
|
|
|
|
data.push(args);
|
|
|
|
}
|
|
|
|
|
2019-09-23 14:31:09 -04:00
|
|
|
registerTrigger(
|
|
|
|
componentId: string, namespaceId: string, hostElement: any, name: string,
|
|
|
|
metadata: AnimationTriggerMetadata): void {
|
|
|
|
this.triggers.push(metadata);
|
2017-04-26 13:44:28 -04:00
|
|
|
}
|
2017-02-22 18:14:49 -05:00
|
|
|
|
2020-04-13 19:40:21 -04:00
|
|
|
onInsert(namespaceId: string, element: any): void {
|
|
|
|
this._capture('onInsert', [element]);
|
|
|
|
}
|
2017-02-22 18:14:49 -05:00
|
|
|
|
2017-04-26 13:44:28 -04:00
|
|
|
onRemove(namespaceId: string, element: any, domFn: () => any): void {
|
|
|
|
this._capture('onRemove', [element]);
|
|
|
|
}
|
2017-02-22 18:14:49 -05:00
|
|
|
|
2017-07-06 13:32:32 -04:00
|
|
|
process(namespaceId: string, element: any, property: string, value: any): boolean {
|
2017-02-22 18:14:49 -05:00
|
|
|
this._capture('setProperty', [element, property, value]);
|
2017-05-02 18:45:48 -04:00
|
|
|
return true;
|
2017-02-22 18:14:49 -05:00
|
|
|
}
|
|
|
|
|
2017-04-26 13:44:28 -04:00
|
|
|
listen(
|
|
|
|
namespaceId: string, element: any, eventName: string, eventPhase: string,
|
|
|
|
callback: (event: any) => any): () => void {
|
2017-02-23 11:51:00 -05:00
|
|
|
// we don't capture the callback here since the renderer wraps it in a zone
|
|
|
|
this._capture('listen', [element, eventName, eventPhase]);
|
2017-02-22 18:14:49 -05:00
|
|
|
return () => {};
|
|
|
|
}
|
2017-02-23 11:51:00 -05:00
|
|
|
|
|
|
|
flush() {}
|
2017-04-26 13:44:28 -04:00
|
|
|
|
|
|
|
destroy(namespaceId: string) {}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Injectable()
|
|
|
|
class ExtendedAnimationRendererFactory extends AnimationRendererFactory {
|
|
|
|
public log: string[] = [];
|
|
|
|
|
|
|
|
begin() {
|
|
|
|
super.begin();
|
|
|
|
this.log.push('begin');
|
|
|
|
}
|
|
|
|
|
|
|
|
end() {
|
|
|
|
super.end();
|
|
|
|
this.log.push('end');
|
|
|
|
}
|
2017-02-22 18:14:49 -05:00
|
|
|
}
|
2017-02-23 15:52:41 -05:00
|
|
|
|
|
|
|
|
|
|
|
function assertHasParent(element: any, yes: boolean = true) {
|
|
|
|
const parent = element.nativeElement.parentNode;
|
|
|
|
if (yes) {
|
|
|
|
expect(parent).toBeTruthy();
|
|
|
|
} else {
|
|
|
|
expect(parent).toBeFalsy();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function finishPlayers(players: AnimationPlayer[]) {
|
|
|
|
players.forEach(player => player.finish());
|
|
|
|
}
|