在角度MatTable中排序后如何获取更新的Viewchildren参考

时间:2019-01-21 08:49:29

标签: angular sorting angular-material mat-table

我正在处理角形材料表,并希望使用ViewChildrenViewContainerRef获取tableRow参考。

此处是HTML片段

<tr mat-row *matRowDef="let row; columns: displayedColumns;" #tableRows ></tr>

和TS代码段

@ViewChildren('tableRows', {read: ViewContainerRef}) rowContainers

我能够获取表行的引用,但是问题是,当我进行排序时,我无法在rowContainers变量中获得更新的DOM引用。

我找不到任何刷新rowContainers变量的方法。

有人知道如何刷新ViewChildren变量吗?

您可以在stackblitz 中看到行为。

1 个答案:

答案 0 :(得分:1)

我想您要数组的第一个元素,而不是ViewChildren。 向rowContainers.changes过渡,不起作用,但是,当您使用MatTableDataSource时,您始终可以使用其methond _orderData(需要元素数组),例如,可以写类似

let orderData=this.dataSource._orderData(this.dataSource.data)
console.log(orderData[0])

更新 如果要订购ViewChildren,我们需要将viewChildren传递给数组,对数组进行排序并进行重置。如果我们的viewChildren是“ ViewContainerRef”

@ViewChildren('tableRows', {read: ViewContainerRef}) rowContainers: QueryList<any>
//We can access to the content using, e.g.
 rowContainers.first.element.nativeElement.textContent;

如果我们的ViewChildren是“ ElementRef”

@ViewChildren('tableRows', {read: ElementRef}) rowContainers: QueryList<any>
//We can access to the content using, e.g.
 rowContainers.first.nativeElement.textContent;

所以,当我们点击

  rowClick(table:any) {
    //get the order data
    const orderData=this.dataSource._orderData(this.dataSource.data);
    //convert rowContainers to array
    const array=this.rowContainers.toArray();
    //sort the array
    array.sort((a,b)=>{
      //the content of "a" and "b"
      //e.g. will be " 3 Lithium 6.941 Li"
      let contentA=a.element.nativeElement.textContent;
      let contentB=b.element.nativeElement.textContent;
      //get the index in our orderData
      let indexA=orderData.findIndex(d=>''+d.position==contentA.split(' ')[1])
      let indexB=orderData.findIndex(d=>''+d.position==contentB.split(' ')[1])
      //return 0 if equal, 1 if greater, -1 if less
      return indexA==indexB?0:indexA>indexB?1:-1;
    })
    //make a reset
    this.rowContainers.reset(array);
    console.log(this.rowContainers.first.element.nativeElement.textContent);
    this.firstElement = this.rowContainers.first;
  }

更新2 如果我们将表命名为ViewChild

@ViewChild(MatTable, {read:ElementRef}) table

我们可以使用其nativeElement.textContent,所以

  rowClick(table:any) {
    const array=this.rowContainers.toArray();

    //using context the table
    const tableArray=this.table.nativeElement.textContent.split(' ')
    let order:any[]=[]

    for (let i=9;i<tableArray.length;i+=8)
       order.push(tableArray[i])

    array.sort((a,b)=>{
      let contentA=a.element.nativeElement.textContent;
      let contentB=b.element.nativeElement.textContent;
      let indexA=order.findIndex(d=>d==contentA.split(' ')[1])
      let indexB=order.findIndex(d=>d==contentB.split(' ')[1])
      return indexA==indexB?0:indexA>indexB?1:-1;
    })
    this.rowContainers.reset(array);
    console.log(this.rowContainers.first.element.nativeElement.textContent);
    this.firstElement = this.rowContainers.first;
  }

您的forked stackblitz