当前,我已经建立了一个MatTable
并带有可扩展行:
<!-- Hidden cell -->
<ng-container matColumnDef="expandedDetail">
<td mat-cell *matCellDef="let myModel" [attr.colspan]="displayedColumns.length">
<div
class="detail-cell"
[@detailExpand]="myModel.isExpanded ? 'expanded' : 'collapsed'"
>
<my-inner-component
...
></my-inner-component>
</div>
</td>
</ng-container>
行:
<!-- Hidden row -->
<tr
mat-row
*matRowDef="let myModel; columns: ['expandedDetail']"
></tr>
可展开的行附加了动画:
animations: [
trigger('detailExpand', [
state('collapsed, void', style({ height: '0px', minHeight: '0', display: 'none' })),
state('expanded', style({ height: '*' })),
transition('expanded <=> collapsed', animate('225ms cubic-bezier(0.4, 0.0, 0.2, 1)'))
])
]
由于我显示了很多行,并且my-inner-component
是一个繁重的组件,因此我希望仅在行扩展时才创建它。
所以我加了:
*ngIf="myModel.isExpanded"
到包含的div
。
但是动画显然会中断。
我怎么解决这个问题?我想尽可能保留动画。
答案 0 :(得分:2)
使用entry
/ leave
过渡:
ts文件中的动画
animations: [
trigger(
'detailExpand', [
transition(':enter', [
style({ height: '0px', minHeight: '0', display: 'none' }),
animate('225ms cubic-bezier(0.4, 0.0, 0.2, 1)', style({ height: '*' }))
]),
transition(':leave', [
style({ height: '*' }),
animate('225ms cubic-bezier(0.4, 0.0, 0.2, 1)', style({ height: '0px', minHeight: '0', display: 'none' }))
])
]
)
]
在模板中使用它:
<my-inner-component *ngIf="myModel.isExpanded" [@detailExpand]>
...
</my-inner-component>