gpt4 book ai didi

Angular Mat-Table 完成渲染事件/Mat Paginator Loading Spinner

转载 作者:行者123 更新时间:2023-12-03 21:00:09 28 4
gpt4 key购买 nike

我正在使用带有相当大的预查询数据源的 Angular Material Table。现在,每次我使用内置分页器更改表格页面时,在呈现新表格行之前我都会有一个短暂的延迟,同时我想显示一个加载微调器。

问题是,当表页开始更改时,分页器只会触发一个事件,到目前为止,当新行完全呈现时,我没有找到解决方案。 (这将是我隐藏加载 Spinner 的时刻)

我知道服务器端分页会解决这个问题,但我更喜欢另一种可能性..

有人对我的问题有什么建议吗?

最佳答案

我这样做的方法是使用(未记录的)“last”局部变量,该变量为表中的最后一行设置为 true。使用它,我将“最后一行”类添加到最后一行的元素中。然后使用 MutationObserver 检测该元素何时插入到 DOM 中。
即使这基本上是一个池,因为每次发生 DOM 更改时都会执行 MutationObserver 处理程序,我们也可以在 DOM 中插入最后一行时执行一段代码。我还没有用分页器尝试过。
我有了使用“最后一个”局部变量的想法,看到 ngFor 有它,我认为该表应该作为 ngFor 来实现,或者它应该使用一个......

<table mat-table [dataSource]="(results$ | async)?.drivers" class="mat-elevation-z8">
<ng-container matColumnDef="colId">
<th mat-header-cell *matHeaderCellDef> ID </th>
<td class="cell-id" mat-cell *matCellDef="let driver; let i = index; let isLastRow = last">
<div class="no-wrap-ellipsis" [ngClass]="{'last-row': isLastRow}">{{driver.driverId}}</div>
</td>
</ng-container>
<tr mat-header-row *matHeaderRowDef="scheduleTable_displayedColumns; sticky: true;"></tr>
<tr mat-row *matRowDef="let row; columns: scheduleTable_displayedColumns;"></tr>
  protected mutationObserverToDetectLastRow: MutationObserver;

ngOnInit(): void {
this.initMutationObserverToDetectLastRow();
}

private initMutationObserverToDetectLastRow = () => {
this.mutationObserverToDetectLastRow = new MutationObserver(_ => this.mutationObserverToDetectLastRowHandler());
this.mutationObserverToDetectLastRow.observe(document, { attributes: false, childList: true, characterData: false, subtree: true });
}

protected mutationObserverToDetectLastRowHandler = () => {
if (document.body.contains(document.body.querySelector(".last-row"))) {
console.log("Last row was displayed");
}

this.mutationObserverToDetectLastRow.disconnect();
}

ngOnDestroy(): void {
this.mutationObserverToDetectLastRow.disconnect();
}

关于Angular Mat-Table 完成渲染事件/Mat Paginator Loading Spinner,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58593059/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com