我有一个标准的垫子表,并应用了 angular/animation api 的动画,以便在加载表时让行从左侧滑入。
表.html
<table mat-table [dataSource]="dataSource" class="mat-elevation-z8" *ngIf="showTable === true"
matSort
matSortStart = "asc"
matSortDirection="asc"
matSortActive="brandName">
<ng-container matColumnDef="brandName">
<th mat-header-cell *matHeaderCellDef mat-sort-header><h5>Brand</h5></th>
<td mat-cell *matCellDef="let row">{{row.brandName}}</td>
</ng-container>
<ng-container matColumnDef="name">
<th mat-header-cell *matHeaderCellDef mat-sort-header><h5>Account Number</h5></th>
<td mat-cell *matCellDef="let row">{{row.name}}</td>
</ng-container>
<tr mat-header-row @rowsAnimation *matHeaderRowDef="displayedColumns"></tr>
<tr mat-row @rowsAnimation *matRowDef="let row; columns: displayedColumns;"></tr>
</table>
表格.ts
@Component({
selector: 'brand-account',
templateUrl: 'brand-account.component.html',
styleUrls: ['brand-account.component.scss'],
animations: [rowsAnimation],
})
export class BpDiscountsComponent implements OnInit {
displayedColumns: string[] = ['tradeAgreementGroupName', 'groupDiscount', 'definition'];
dataSource: MatTableDataSource<TradeAgreement> = new
MatTableDataSource<TradeAgreement>();
private sort: MatSort;
@ViewChild(MatSort) set matPaginator(st: MatSort) {
this.sort = st;
this.setDataSourceAttributes();
}
setDataSourceAttributes() {
this.dataSource.sort = this.sort;
}
rowsAnimation.ts
import { trigger, sequence, animate, transition, style } from '@angular/animations';
export const rowsAnimation =
trigger('rowsAnimation', [
transition('void => *', [
style({ height: '*', opacity: '0', transform: 'translateX(-550px)', 'box-shadow': 'none' }),
sequence([
animate(".25s ease", style({ height: '*', opacity: '.2', transform: 'translateX(0)', 'box-shadow': 'none' })),
animate(".25s ease", style({ height: '*', opacity: 1, transform: 'translateX(0)' }))
])
])
]);
现在,动画仅适用于表格加载时的随机几行,而其他行只是在没有应用动画的情况下出现。我一直试图弄清楚为什么它只适用于表中的几行。
任何帮助或建议将不胜感激。
更新 看起来 mat 排序是问题的原因,但我不知道如何解决它。使用我的排序代码更新文件。当表格加载时,我是否必须在我的行的排序和动画之间进行选择?