feat(animations): support disabling animations for sub elements
Closes #16483
This commit is contained in:

committed by
Jason Aden

parent
3203639d7d
commit
8e28382e4a
@ -1904,6 +1904,258 @@ export function main() {
|
||||
}));
|
||||
});
|
||||
|
||||
describe('animation control flags', () => {
|
||||
describe('[@.disabled]', () => {
|
||||
it('should disable child animations when set to true', () => {
|
||||
@Component({
|
||||
selector: 'if-cmp',
|
||||
template: `
|
||||
<div [@.disabled]="disableExp">
|
||||
<div [@myAnimation]="exp"></div>
|
||||
</div>
|
||||
`,
|
||||
animations: [
|
||||
trigger(
|
||||
'myAnimation',
|
||||
[
|
||||
transition(
|
||||
'* => 1, * => 2',
|
||||
[
|
||||
animate(1234, style({width: '100px'})),
|
||||
]),
|
||||
]),
|
||||
]
|
||||
})
|
||||
class Cmp {
|
||||
exp: any = false;
|
||||
disableExp = false;
|
||||
}
|
||||
|
||||
TestBed.configureTestingModule({declarations: [Cmp]});
|
||||
|
||||
const fixture = TestBed.createComponent(Cmp);
|
||||
const cmp = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
resetLog();
|
||||
|
||||
cmp.disableExp = true;
|
||||
cmp.exp = '1';
|
||||
fixture.detectChanges();
|
||||
|
||||
let players = getLog();
|
||||
expect(players.length).toEqual(0);
|
||||
|
||||
cmp.disableExp = false;
|
||||
cmp.exp = '2';
|
||||
fixture.detectChanges();
|
||||
|
||||
players = getLog();
|
||||
expect(players.length).toEqual(1);
|
||||
expect(players[0].totalTime).toEqual(1234);
|
||||
});
|
||||
|
||||
it('should not disable animations for the element that they are disabled on', () => {
|
||||
@Component({
|
||||
selector: 'if-cmp',
|
||||
template: `
|
||||
<div [@.disabled]="disableExp" [@myAnimation]="exp"></div>
|
||||
`,
|
||||
animations: [
|
||||
trigger(
|
||||
'myAnimation',
|
||||
[
|
||||
transition(
|
||||
'* => 1, * => 2',
|
||||
[
|
||||
animate(1234, style({width: '100px'})),
|
||||
]),
|
||||
]),
|
||||
]
|
||||
})
|
||||
class Cmp {
|
||||
exp: any = false;
|
||||
disableExp = false;
|
||||
}
|
||||
|
||||
TestBed.configureTestingModule({declarations: [Cmp]});
|
||||
|
||||
const fixture = TestBed.createComponent(Cmp);
|
||||
const cmp = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
resetLog();
|
||||
|
||||
cmp.disableExp = true;
|
||||
cmp.exp = '1';
|
||||
fixture.detectChanges();
|
||||
|
||||
let players = getLog();
|
||||
expect(players.length).toEqual(1);
|
||||
expect(players[0].totalTime).toEqual(1234);
|
||||
resetLog();
|
||||
|
||||
cmp.disableExp = false;
|
||||
cmp.exp = '2';
|
||||
fixture.detectChanges();
|
||||
|
||||
players = getLog();
|
||||
expect(players.length).toEqual(1);
|
||||
expect(players[0].totalTime).toEqual(1234);
|
||||
});
|
||||
|
||||
it('should respect inner disabled nodes once a parent becomes enabled', () => {
|
||||
@Component({
|
||||
selector: 'if-cmp',
|
||||
template: `
|
||||
<div [@.disabled]="disableParentExp">
|
||||
<div [@.disabled]="disableChildExp">
|
||||
<div [@myAnimation]="exp"></div>
|
||||
</div>
|
||||
</div>
|
||||
`,
|
||||
animations: [trigger(
|
||||
'myAnimation',
|
||||
[transition('* => 1, * => 2, * => 3', [animate(1234, style({width: '100px'}))])])]
|
||||
})
|
||||
class Cmp {
|
||||
disableParentExp = false;
|
||||
disableChildExp = false;
|
||||
exp = '';
|
||||
}
|
||||
|
||||
TestBed.configureTestingModule({declarations: [Cmp]});
|
||||
|
||||
const fixture = TestBed.createComponent(Cmp);
|
||||
const cmp = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
resetLog();
|
||||
|
||||
cmp.disableParentExp = true;
|
||||
cmp.disableChildExp = true;
|
||||
cmp.exp = '1';
|
||||
fixture.detectChanges();
|
||||
|
||||
let players = getLog();
|
||||
expect(players.length).toEqual(0);
|
||||
|
||||
cmp.disableParentExp = false;
|
||||
cmp.exp = '2';
|
||||
fixture.detectChanges();
|
||||
|
||||
players = getLog();
|
||||
expect(players.length).toEqual(0);
|
||||
|
||||
cmp.disableChildExp = false;
|
||||
cmp.exp = '3';
|
||||
fixture.detectChanges();
|
||||
|
||||
players = getLog();
|
||||
expect(players.length).toEqual(1);
|
||||
});
|
||||
|
||||
it('should properly handle dom operations when disabled', () => {
|
||||
@Component({
|
||||
selector: 'if-cmp',
|
||||
template: `
|
||||
<div [@.disabled]="disableExp" #parent>
|
||||
<div *ngIf="exp" @myAnimation></div>
|
||||
</div>
|
||||
`,
|
||||
animations: [
|
||||
trigger(
|
||||
'myAnimation',
|
||||
[
|
||||
transition(
|
||||
':enter',
|
||||
[
|
||||
style({opacity: 0}),
|
||||
animate(1234, style({opacity: 1})),
|
||||
]),
|
||||
transition(
|
||||
':leave',
|
||||
[
|
||||
animate(1234, style({opacity: 0})),
|
||||
]),
|
||||
]),
|
||||
]
|
||||
})
|
||||
class Cmp {
|
||||
@ViewChild('parent') public parentElm: any;
|
||||
disableExp = false;
|
||||
exp = false;
|
||||
}
|
||||
|
||||
TestBed.configureTestingModule({declarations: [Cmp]});
|
||||
|
||||
const fixture = TestBed.createComponent(Cmp);
|
||||
const cmp = fixture.componentInstance;
|
||||
cmp.disableExp = true;
|
||||
fixture.detectChanges();
|
||||
resetLog();
|
||||
|
||||
const parent = cmp.parentElm !.nativeElement;
|
||||
|
||||
cmp.exp = true;
|
||||
fixture.detectChanges();
|
||||
expect(getLog().length).toEqual(0);
|
||||
expect(parent.childElementCount).toEqual(1);
|
||||
|
||||
cmp.exp = false;
|
||||
fixture.detectChanges();
|
||||
expect(getLog().length).toEqual(0);
|
||||
expect(parent.childElementCount).toEqual(0);
|
||||
});
|
||||
|
||||
it('should properly resolve animation event listeners when disabled', fakeAsync(() => {
|
||||
@Component({
|
||||
selector: 'if-cmp',
|
||||
template: `
|
||||
<div [@.disabled]="disableExp">
|
||||
<div [@myAnimation]="exp" (@myAnimation.start)="startEvent=$event" (@myAnimation.done)="doneEvent=$event"></div>
|
||||
</div>
|
||||
`,
|
||||
animations: [
|
||||
trigger(
|
||||
'myAnimation',
|
||||
[
|
||||
transition(
|
||||
'* => 1, * => 2',
|
||||
[style({opacity: 0}), animate(9876, style({opacity: 1}))]),
|
||||
]),
|
||||
]
|
||||
})
|
||||
class Cmp {
|
||||
disableExp = false;
|
||||
exp = '';
|
||||
startEvent: any;
|
||||
doneEvent: any;
|
||||
}
|
||||
|
||||
TestBed.configureTestingModule({declarations: [Cmp]});
|
||||
|
||||
const fixture = TestBed.createComponent(Cmp);
|
||||
const cmp = fixture.componentInstance;
|
||||
cmp.disableExp = true;
|
||||
fixture.detectChanges();
|
||||
resetLog();
|
||||
expect(cmp.startEvent).toBeFalsy();
|
||||
expect(cmp.doneEvent).toBeFalsy();
|
||||
|
||||
cmp.exp = '1';
|
||||
fixture.detectChanges();
|
||||
flushMicrotasks();
|
||||
expect(cmp.startEvent.totalTime).toEqual(0);
|
||||
expect(cmp.doneEvent.totalTime).toEqual(0);
|
||||
|
||||
cmp.exp = '2';
|
||||
cmp.disableExp = false;
|
||||
fixture.detectChanges();
|
||||
flushMicrotasks();
|
||||
expect(cmp.startEvent.totalTime).toEqual(9876);
|
||||
// the done event isn't fired because it's an actual animation
|
||||
}));
|
||||
});
|
||||
});
|
||||
|
||||
it('should throw neither state() or transition() are used inside of trigger()', () => {
|
||||
@Component({
|
||||
selector: 'if-cmp',
|
||||
|
@ -2647,6 +2647,115 @@ export function main() {
|
||||
]);
|
||||
});
|
||||
});
|
||||
|
||||
describe('animation control flags', () => {
|
||||
describe('[@.disabled]', () => {
|
||||
it('should allow a parent animation to query and animate inner nodes that are in a disabled region',
|
||||
() => {
|
||||
@Component({
|
||||
selector: 'some-cmp',
|
||||
template: `
|
||||
<div [@myAnimation]="exp">
|
||||
<div [@.disabled]="disabledExp">
|
||||
<div class="header"></div>
|
||||
<div class="footer"></div>
|
||||
</div>
|
||||
</div>
|
||||
`,
|
||||
animations: [
|
||||
trigger(
|
||||
'myAnimation',
|
||||
[
|
||||
transition(
|
||||
'* => go',
|
||||
[
|
||||
query('.header', animate(750, style({opacity: 0}))),
|
||||
query('.footer', animate(250, style({opacity: 0}))),
|
||||
]),
|
||||
]),
|
||||
]
|
||||
})
|
||||
class Cmp {
|
||||
exp: any = '';
|
||||
disableExp = false;
|
||||
}
|
||||
|
||||
TestBed.configureTestingModule({declarations: [Cmp]});
|
||||
|
||||
const fixture = TestBed.createComponent(Cmp);
|
||||
const cmp = fixture.componentInstance;
|
||||
cmp.disableExp = true;
|
||||
fixture.detectChanges();
|
||||
resetLog();
|
||||
|
||||
cmp.exp = 'go';
|
||||
fixture.detectChanges();
|
||||
const players = getLog();
|
||||
expect(players.length).toEqual(2);
|
||||
|
||||
const [p1, p2] = players;
|
||||
expect(p1.duration).toEqual(750);
|
||||
expect(p1.element.classList.contains('header'));
|
||||
expect(p2.duration).toEqual(250);
|
||||
expect(p2.element.classList.contains('footer'));
|
||||
});
|
||||
|
||||
it('should allow a parent animation to query and animate sub animations that are in a disabled region',
|
||||
() => {
|
||||
@Component({
|
||||
selector: 'some-cmp',
|
||||
template: `
|
||||
<div class="parent" [@parentAnimation]="exp">
|
||||
<div [@.disabled]="disabledExp">
|
||||
<div class="child" [@childAnimation]="exp"></div>
|
||||
</div>
|
||||
</div>
|
||||
`,
|
||||
animations: [
|
||||
trigger(
|
||||
'parentAnimation',
|
||||
[
|
||||
transition(
|
||||
'* => go',
|
||||
[
|
||||
query('@childAnimation', animateChild()),
|
||||
animate(1000, style({opacity: 0}))
|
||||
]),
|
||||
]),
|
||||
trigger(
|
||||
'childAnimation',
|
||||
[
|
||||
transition('* => go', [animate(500, style({opacity: 0}))]),
|
||||
]),
|
||||
]
|
||||
})
|
||||
class Cmp {
|
||||
exp: any = '';
|
||||
disableExp = false;
|
||||
}
|
||||
|
||||
TestBed.configureTestingModule({declarations: [Cmp]});
|
||||
|
||||
const fixture = TestBed.createComponent(Cmp);
|
||||
const cmp = fixture.componentInstance;
|
||||
cmp.disableExp = true;
|
||||
fixture.detectChanges();
|
||||
resetLog();
|
||||
|
||||
cmp.exp = 'go';
|
||||
fixture.detectChanges();
|
||||
|
||||
const players = getLog();
|
||||
expect(players.length).toEqual(2);
|
||||
|
||||
const [p1, p2] = players;
|
||||
expect(p1.duration).toEqual(500);
|
||||
expect(p1.element.classList.contains('child'));
|
||||
expect(p2.duration).toEqual(1000);
|
||||
expect(p2.element.classList.contains('parent'));
|
||||
});
|
||||
});
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user