web-dev-qa-db-ja.com

Angular 2.0 2.0 = Material Material MdDialog with Angular 2.0の実例

私はPOCアプリに取り組んでおり、MdDialogコンポーネントを機能させようとしています。 MdDialog openメソッドに渡すものの実用的な例はありますか?

Angular 2.0: https://github.com/angular/angular

Angular 2マテリアル: https://github.com/angular/material2

33
Earl Ferguson

angular v4および@ angular/material 2.0.0-beta.12に更新

mdプレフィックスはmatに変更されました

MatDialogModuleの代わりにMdDialogModuleをインポートします

@angular/materialは、ピアの依存関係として@angular/cdkに依存するようになりました。

要約Plunkr

材料ダイアログ+付録への8ステップ

ステップ1:パッケージをインストールする

npm i --save @angular/material @angular/cdk @angular/animations

ステップ2:systemjs.config.jsを設定

map: {
  ...
  '@angular/animations': 'npm:@angular/animations/bundles/animations.umd.js',
  '@angular/animations/browser': 'npm:@angular/animations/bundles/animations-browser.umd.js',
  '@angular/platform-browser/animations': 'npm:@angular/platform-browser/bundles/platform-browser-animations.umd.js',
  '@angular/material': 'npm:@angular/material/bundles/material.umd.js',
  '@angular/cdk': 'https://unpkg.com/@angular/cdk/bundles/cdk.umd.js',
  '@angular/cdk/a11y': 'https://unpkg.com/@angular/cdk/bundles/cdk-a11y.umd.js',
  '@angular/cdk/bidi': 'https://unpkg.com/@angular/cdk/bundles/cdk-bidi.umd.js',
  '@angular/cdk/coercion': 'https://unpkg.com/@angular/cdk/bundles/cdk-coercion.umd.js',
  '@angular/cdk/collections': 'https://unpkg.com/@angular/cdk/bundles/cdk-collections.umd.js',
  '@angular/cdk/keycodes': 'https://unpkg.com/@angular/cdk/bundles/cdk-keycodes.umd.js',
  '@angular/cdk/observers': 'https://unpkg.com/@angular/cdk/bundles/cdk-observers.umd.js',
  '@angular/cdk/overlay': 'https://unpkg.com/@angular/cdk/bundles/cdk-overlay.umd.js',
  '@angular/cdk/platform': 'https://unpkg.com/@angular/cdk/bundles/cdk-platform.umd.js',
  '@angular/cdk/portal': 'https://unpkg.com/@angular/cdk/bundles/cdk-portal.umd.js',
  '@angular/cdk/rxjs': 'https://unpkg.com/@angular/cdk/bundles/cdk-rxjs.umd.js',
  '@angular/cdk/scrolling': 'https://unpkg.com/@angular/cdk/bundles/cdk-scrolling.umd.js',
  '@angular/cdk/table': 'https://unpkg.com/@angular/cdk/bundles/cdk-table.umd.js',
  '@angular/cdk/stepper': 'https://unpkg.com/@angular/cdk/bundles/cdk-stepper.umd.js',
},

ステップ3:MatDialogModuleをモジュールにインポートします

import { MatDialogModule } from '@angular/material';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';

@NgModule({
  imports: [ 
    BrowserModule,
    BrowserAnimationsModule, <== required
    MatDialogModule <== here
  ],
  declarations: [ AppComponent],
  bootstrap: [ AppComponent ]
})
export class AppModule {}

ステップ4:次のような目的のダイアログコンポーネントを作成します:

@Component({
  selector: 'your-dialog-selector',
  template: `
  <h2>Hi! I am modal dialog!</h2>
  <button mat-raised-button (click)="dialogRef.close()">Close dialog</button>`
})
export class DialogComponent {
  constructor(public dialogRef: MdDialogRef<DialogComponent>) { }
}

ステップ5:ステップ4のコンポーネントをNgModuleデコレータのdeclarationsおよびentryComponents配列に追加します。

@NgModule({
  imports: [ BrowserModule, MatDialogModule ],
  declarations: [ AppComponent, DialogComponent ],
  entryComponents: [ DialogComponent ],
  bootstrap: [ AppComponent ]
})
export class AppModule {}

ステップ6:コンポーネントで使用:

@Component({
  selector: 'my-app',
  template: `<button mat-raised-button (click)="openDialog()">Open dialog</button>`,
})
export class App {

  constructor(public dialog: MatDialog) { }

  openDialog(key) {
    let dialogRef = this.dialog.open(DialogComponent);
  }
}

ステップ7目的のテーマを選択します。

<link href="https://unpkg.com/@angular/material/prebuilt-themes/deeppurple-amber.css" 
  rel="stylesheet">

あなたが見つけることができる他のテーマ here

ステップ8

モーダルにデータを渡す場合は、次を使用します( Plunker ):

dialogRef.componentInstance.param1 = "test value";

付録

ルーティングダイアログ: Plunkr

ドラッグ可能なダイアログ( MatDialogをドラッグ可能にする方法/ Angular Material


プランカーの例

こちらもご覧ください

67
yurzui