4

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

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

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

有人对我的问题提出建议吗?

4

2 回答 2

0

我这样做的方式是使用(未记录的)“last”局部变量,该变量为表中的最后一行设置为 true。使用它,我将“最后一行”类添加到最后一行中的元素。然后使用 MutationObserver 我检测该元素何时插入 DOM。

即使这基本上是一个池,因为每次 DOM 发生变化时都会执行 MutationObserver 处理程序,但我们能够在最后一行插入 DOM 时执行一段代码。我还没有用 Paginator 尝试过。

我想到了使用“最后一个”局部变量,看到 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();
  }
于 2020-08-19T19:17:44.317 回答
0

In my opinion, the less hacky way to do this is to inject NgZone as a dependency in your component and to subscribe to the onStable observable.

Let's say you have a changePage function handling the page changing. You can then do this :

this.changePage(newPage);
this.zone.onStable.pipe(take(1)).subscribe(() => {
  console.log('Do whatever you want, the table is rendered');
});
于 2021-01-21T17:28:25.873 回答