web-dev-qa-db-fra.com

Exemple de travail de Angular 2.0 Material MdDialog with Angular 2.0

Je travaille sur une application POC et j'essaie de faire fonctionner le composant MdDialog. Quelqu'un a-t-il un exemple de travail à transmettre à la méthode ouverte MdDialog?

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

Matériel angulaire 2: https://github.com/angular/material2

33
Earl Ferguson

Mise à jour vers angular v4 et @ angular/material 2.0.0-beta.12

md le préfixe a été changé en mat

Importer MatDialogModule au lieu de MdDialogModule

@angular/material dépend maintenant de @angular/cdk comme dépendance de pair.

Récapitulatif : Plunkr

8 étapes vers la boîte de dialogue Matériel + Annexe

Étape 1: Installer le package

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

Étape 2: Configurer 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',
},

Étape 3: Importez MatDialogModule dans votre module

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 {}

Étape 4: Créez le composant de dialogue souhaité comme:

@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>) { }
}

Étape 5: Ajoutez le composant de l'étape 4 aux tableaux declarations et entryComponents de votre décorateur NgModule:

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

Étape 6: Utilisez-le dans votre composant:

@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);
  }
}

Étape 7 Choisissez le thème souhaité:

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

D'autres thèmes que vous pouvez trouver ici

Étape 8

Si vous souhaitez transmettre des données à modal, utilisez ce qui suit ( Plunker ):

dialogRef.componentInstance.param1 = "test value";

Annexe

Boîte de dialogue routée: Plunkr

Boîte de dialogue glissable ( Comment puis-je faire un MatDialog glissable/Angular Material )


Exemple Plunker

Voir également

67
yurzui