Cdk virtual-scroll inside mat-select for mat-option

Cdk virtual-scroll inside mat-select for mat-option

有没有人能够在 mat-select 中使用虚拟滚动,如下所示?

<mat-form-field>
    <mat-select placeholder="State">
        <cdk-virtual-scroll-viewport autosize>
            <mat-option *cdkVirtualFor="let state of states" [value]="state">{{state}}</mat-option>
        </cdk-virtual-scroll-viewport>
    </mat-select>
</mat-form-field>

正如您所看到的 https://stackblitz.com/edit/angular-h4xptu?file=app%2Fselect-reset-example.html 它不起作用 - 在您滚动时导致奇怪的空白 space。

虚拟滚动视口需要一个大小才能知道滚动容器必须有多大。这可以通过指定 <cdk-virtual-scroll-viewport>[itemSize] 属性 及其高度来完成。

在您的示例中,一个 <option> 项目的高度是 48px。如果您想一次显示五个项目,则容器大小为 5 * 48 = 240:

<mat-form-field>
    <mat-select placeholder="State">
        <cdk-virtual-scroll-viewport [itemSize]="48" [style.height.px]=5*48>
            <mat-option *cdkVirtualFor="let state of states" [value]="state"> 
                {{state}}
            </mat-option>
        </cdk-virtual-scroll-viewport>
    </mat-select>
</mat-form-field>

我想我已经解决了这个问题:

https://stackblitz.com/edit/angular-gs4scp

关键是当 mat select 打开面板时,我们触发 cdkVirtualScrollViewPort 滚动并检查视口大小。

  openChange($event: boolean) {
    console.log("open change", $event);
    if ($event) {
      this.cdkVirtualScrollViewPort.scrollToIndex(0);
      this.cdkVirtualScrollViewPort.checkViewportSize();
    } else {
    }
  }

我们使用 @ViewChild

获取对虚拟滚动视口的引用
@ViewChild(CdkVirtualScrollViewport, { static: false })
  cdkVirtualScrollViewPort: CdkVirtualScrollViewport;

模板中的其他相关部分非常简单:-

<mat-form-field>
    <mat-select [formControl]="itemSelect"
  placeholder="Select Item"
  (openedChange)="openChange($event)">
    <mat-select-trigger>
      {{ itemTrigger }}
    </mat-select-trigger>
        <cdk-virtual-scroll-viewport itemSize="5" minBufferPx="200" maxBufferPx="400" class="example-viewport-select">
            <mat-option *cdkVirtualFor="let item of items" [value]="item"
                (onSelectionChange)="onSelectionChange($event)">{{item}}</mat-option>
        </cdk-virtual-scroll-viewport>
    </mat-select>
    <mat-hint>Justa hint</mat-hint>
</mat-form-field>

使用 *ngFor 添加额外的 mat-option,就好像您没有使用 cdk 虚拟滚动一样。这不会向您的 select 列表添加任何其他选项,但允许使用默认的 selected 值,同时还允许 cdk-virtual 滚动来完成它的事情。

<mat-select placeholder="State">
  <cdk-virtual-scroll-viewport itemSize="10" [style.height.px]=10*100>
        <mat-option *cdkVirtualFor="let state of states" [value]="state">{{state}}</mat-option>
  </cdk-virtual-scroll-viewport>
  <mat-option *ngFor="let state of states" [value]="state"> 
  {{state}}</mat-option>
 </mat-select>