私はAngular MaterialとAngular 6.を使用しています。私はMaterialダイアログで多くの作業をしており、次のようにしています:
openDialog3(key : string): void {
let dialogRef = this.dialog.open(PPSDialogRemoveComponent, {width: '1000px'});
dialogRef.componentInstance.key = key;
}
ここでangular materialbottomsheetを操作します。キーを渡すために、一番下のコンポーネントにこれを試します:
openBottomSheet(key: string): void {
let dialogRef = this.bottomSheet.open(BottomSheetOverviewExampleSheet);
dialogRef.componentInstance.key = key;
}
しかし、私はこのエラーがあります
Src/app/geo/geo.component.ts(568,15)のエラー:エラーTS2339:プロパティ 'componen Instance'はタイプ 'MatBottomSheetRef'に存在しません。
ご協力いただきありがとうございます
componentInstanceプロパティは、ComponentFactoryResolverメソッドを使用して作成され、ViewContainerRefを使用してDOMに挿入された動的コンポーネントにのみ適用されます。
Angular Material Docのように、dialog.openはモデルポップアップの参照を返します。 https://material.angular.io/components/dialog/api
コピー元 角度マテリアル :ボトムシートコンポーネントとデータを共有します。
下部のシートにデータを渡す場合は、dataプロパティを使用して行うことができます。
const bottomSheetRef = bottomSheet.open(HobbitSheet, {
data: { names: ['Frodo', 'Bilbo'] },
});
その後、MAT_BOTTOM_SHEET_DATAインジェクショントークンを使用して、インジェクトされたデータにアクセスできます。
import {Component, Inject} from '@angular/core';
import {MAT_BOTTOM_SHEET_DATA} from '@angular/material';
@Component({
selector: 'hobbit-sheet',
template: 'passed in {{ data.names }}',
})
export class HobbitSheet {
constructor(@Inject(MAT_BOTTOM_SHEET_DATA) public data: any) { }
}
注:Angularのバージョンマテリアルはv7.0.3です。
これを確認してください: ボトムシートコンポーネントとのデータの共有
これは誰かに役立つかもしれません。 @YenYeesの答えを拡張するために、下部のシートに小さなテーブルを追加する必要がありました。
import {Component, Inject} from '@angular/core';
import {MatBottomSheet, MatBottomSheetRef} from '@angular/material';
import {MAT_BOTTOM_SHEET_DATA} from '@angular/material';
@Component({
selector: 'bottom-sheet-overview-example',
templateUrl: 'bottom-sheet-overview-example.html',
styleUrls: ['bottom-sheet-overview-example.css'],
})
export class BottomSheetOverviewExample {
constructor(private bottomSheet: MatBottomSheet) {}
ELEMENT_DATA: PeriodicElement[] = [
{position: 1, name: 'Hydrogen', weight: 1.0079, symbol: 'H'},
{position: 2, name: 'Helium', weight: 4.0026, symbol: 'He'},
{position: 3, name: 'Lithium', weight: 6.941, symbol: 'Li'},
{position: 4, name: 'Beryllium', weight: 9.0122, symbol: 'Be'}
];
openBottomSheet(): void {
this.bottomSheet.open(BottomSheetOverviewExampleSheet, {
data: this.ELEMENT_DATA ,
});
}
}
@Component({
selector: 'bottom-sheet-overview-example-sheet',
templateUrl: 'bottom-sheet-overview-example-sheet.html',
styleUrls: ['bottom-sheet-overview-example-sheet.css'],
})
export class BottomSheetOverviewExampleSheet {
constructor(@Inject(MAT_BOTTOM_SHEET_DATA) public data: any, private bottomSheetRef: MatBottomSheetRef<BottomSheetOverviewExampleSheet>, ) {}
displayedColumns: string[] = ["position", "name", "weight", "symbol"];
dataSource = this.data;
openLink(event: MouseEvent): void {
this.bottomSheetRef.dismiss();
event.preventDefault();
}
}
export interface PeriodicElement {
name: string;
position: number;
weight: number;
symbol: string;
}
bottom-sheet-overview-example-sheet.htmlとして
<mat-table [dataSource]="dataSource" class="mat-elevation-z8">
<ng-container matColumnDef="position">
<mat-header-cell *matHeaderCellDef> No. </mat-header-cell>
<mat-cell *matCellDef="let element"> {{element.position}} </mat-cell>
</ng-container>
<ng-container matColumnDef="name">
<mat-header-cell *matHeaderCellDef> Name </mat-header-cell>
<mat-cell *matCellDef="let element"> {{element.name}} </mat-cell>
</ng-container>
<ng-container matColumnDef="weight">
<mat-header-cell *matHeaderCellDef> Weight </mat-header-cell>
<mat-cell *matCellDef="let element"> {{element.weight}} </mat-cell>
</ng-container>
<ng-container matColumnDef="symbol">
<mat-header-cell *matHeaderCellDef> Symbol </mat-header-cell>
<mat-cell *matCellDef="let element"> {{element.symbol}} </mat-cell>
</ng-container>
<mat-header-row *matHeaderRowDef="displayedColumns"></mat-header-row>
<mat-row *matRowDef="let row; columns: displayedColumns;"></mat-row>
</mat-table>