是否可以通过ng-content将mat-options传递给我的自定义mat-select组件?

时间:2019-10-21 13:31:44

标签: angular typescript angular-material

我有一个自定义选择组件,想使用ng-content将我的选项传递给它,就像这样:

<lib-select [(selected)]="selected" (selectedChange)="onChange($event)">
            <mat-option [value]="0">Value 1</mat-option>
            <mat-option [value]="1">Value 2</mat-option>
            <mat-option [value]="2">Value 3</mat-option>
            <mat-option [value]="3">Value 4</mat-option>
            <mat-option [value]="4">Value 5</mat-option>
</lib-select>

这似乎不起作用。一开始它甚至没有显示选项。我发现了一个骇客让他们展示,但是我仍然什么也没选择。这是我的组件:

    <mat-select panelClass="select" disableRipple (selectionChange)="onChange()" [(value)]="selected" disableOptionCentering>
        <mat-select-trigger>{{selected}}</mat-select-trigger>
        <!-- mat-option below is required to render ng-content in mat-select. this is an ugly hack and there might be a better workaround for this -->
        <mat-option [value]="" style="display: none;"></mat-option>
        <ng-content></ng-content>
    </mat-select>

有什么方法可以使这项工作有效吗,或者mat-select根本不能与ng-content一起工作?

我知道我可以使用@Input()来将选项传递到组件中,但是我认为使用ng-content时代码看起来更简洁。

编辑:看来我实际上可以选择项目。问题是,即使disableRipple上存在mat-select,我也可以选择多个选项,并且会产生连锁反应。

1 个答案:

答案 0 :(得分:0)

有一个解决方法。将ng-content放在div中隐藏并创建询问ContentChildren(MatOption)的选项,请参见stackblitz

中的示例

组件是

import {Component, ContentChildren, AfterViewInit, QueryList} from "@angular/core";
import { MatOption } from "@angular/material/core";

@Component({
  selector: "custom-select",
  template: `
    <mat-form-field>
      <mat-label>Favorite food</mat-label>
      <mat-select>
        <ng-container *ngIf="yet">
          <mat-option *ngFor="let option of options" [value]="option.value">
            {{ option.viewValue }}
          </mat-option>
        </ng-container>
      </mat-select>
    </mat-form-field>
    <div style="display:none" *ngIf="!yet">
      <ng-content></ng-content>
    </div>
  `
})
export class CustomSelect implements AfterViewInit {
  @ContentChildren(MatOption) queryOptions: QueryList<MatOption>;
  options: any[];
  yet: boolean;
  ngAfterViewInit() {
    this.options = this.queryOptions.map(x => {
      return { value: x.value, viewValue: x.viewValue };
    });
    setTimeout(() => {
      this.yet = true;
    });
  }
}

用途

<custom-select>
    <mat-option *ngFor="let food of foods" [value]="food.value">
      {{food.viewValue}}
    </mat-option>
</custom-select>