У меня есть дочерний компонент, который удален с помощью излучателя событий, и я хочу добавить анимацию на удаление. Мое мышление было анимировать из состояния подстановочного к мочеиспусканию:Angular2 animate event emitter удаление дочернего компонента
@Component({
selector: 'content-attendee',
styleUrls: ['content-attendee.component.scss'],
template: `
<div class="px1 item">
testing 123
<a class="btn-remove ion-close-circled md fnt--mid-gray" (click)="handleRemoval()"></a>
</div>
</div>
`,
animations: [
trigger('item', [
transition('* => void', [
animate(100, style({ transform: 'scale3d(0, 0, 0)' }))
])
])
]
})
export class ContentAttendeeComponent {
@Input() contentAttendee: AttendeeModel;
@Output()
delete: EventEmitter<AttendeeModel> = new EventEmitter<AttendeeModel>();
handleRemoval(contentAttendee: AttendeeModel) {
this.delete.emit(this.contentAttendee);
}
}
Однако анимация удаления не работает, любая помощь очень ценна.
Спасибо за вашу помощь, как оказалось, состояние анимации * => void не запускается, я в конечном итоге меняю его на: '* => неактивный' – rhysclay