I am using dialog box of angular material2.
I want to pass data to the opened component. Here is how I am opening dialog box on click of a button
let
This answer is rather outdated. Take a look at epiphanatic's answer instead.
You can use dialogRef.componentInstance.myProperty = 'some data'
to set the data on your component.
You would need something like this:
let dialogRef = this.dialog.open(DialogComponent, {
disableClose: true,
});
dialogRef.componentInstance.name = 'Sunil';
Then in your DialogComponent
you need to add your name property
:
...
@Component({
...
})
export class DialogComponent {
public name: string;
...
}
I didn't find any documentation on this, so i started looking into the source code too. Because of that, this might not be the official way of to do.
I successfully located the data in dialogRef._containerInstance.dialogConfig.data
;
So what you can do is for example
let name = dialogRef._containerInstance.dialogConfig.data.name;
console.log(name); // Sunil
So I have add the method and it's working on one component but if I want to make a dialog box (another component), it doesn't work
component of the table and delete button
openDeleteDialog(user) {
this.dialog.open(DeleteUserDialogComponent, {
width: '30%', disableClose: true, data: user
});
}
Component dialog box
export class DeleteUserDialogComponent {
dataSource = new MatTableDataSource();
constructor(public dialog: MatDialog, public dialogRef: MatDialogRef<DeleteUserDialogComponent>, private userService: UserService, @Inject(MAT_DIALOG_DATA) public data: any) {}
deleteUser() {
this.dataSource.data.splice(this.dataSource.data.indexOf(this.data), 1);
this.dataSource.data = [...this.dataSource.data];
console.log(this.dataSource.data);
console.log(this.data)
}
click(): void {
this.dialogRef.close();
}
}
If you're using dialogs for HTTP data, remember RxJS and Observables is perfect for this issue.
Dialog service:
private _dialogDataSubj$ = new Subject<DialogData>();
dialogData$ = this._dialogDataSubj$.asObservable()
setDialogData(data: DialogData) {
this._dialogDataSubj$.next(data)
}
In dialog HTML:
<ng-container *ngIf="dialogData$ | async as data; else doneTmp">
I'm not sure if it's just me, but i couldn't update data in my material dialog with just dialog data reference (@Inject) ie.: dialogRef.data = newData
.
For the newest version of dialog (This is prior to Angular 5, for 5 see update below), you can do the following to pass data via the config which is much simpler and cleaner.
When you open the dialog, you can do it this way by adding data as a config param (just ignore the width and height which is there for illustration purposes):
this.dialogRef = this.dialog.open(someComponent, {
width: '330px',
height: '400px',
data: {
dataKey: yourData
}
});
Then in the component that is opened in the dialog, you can access it like:
import {MD_DIALOG_DATA} from '@angular/material';
import { Inject } from '@angular/core';
constructor(
@Inject(MD_DIALOG_DATA) public data: any
) { }
ngOnInit() {
// will log the entire data object
console.log(this.data)
}
Or you can use access it in the template or other methods, but you get the point.
UPDATE for Angular 5
Everything in the material has been changed from Md to Mat, so if on Angular 5, import like:
import {MAT_DIALOG_DATA} from '@angular/material'
Then inject like
@Inject(MAT_DIALOG_DATA) public data: any
UPDATE for Angular 9
MAT_DIALOG_DATA import location has changed to:
import {MAT_DIALOG_DATA} from '@angular/material/dialog';
I thought I'd give a fuller answer for those of us who are still learning:
Unlike the Material Examples I configured the dialog to have its own component files (html, css and ts) for ease of debugging.
Main component file "x.component.ts" (calling the dialog)
1) add the import statement
import { MatDialog} from '@angular/material';
2) add the property to the constructor params
public dialog: MatDialog
3) define the code to call the dialog box
openDialog(title: string, text: string): void {
const dialogRef = this.dialog.open(DialogComponent, {
width: '350px',
data: {dialogTitle: title, dialogText: text}
);
dialogRef.afterClosed().subscribe(result => {
});
const dialogSubmitSubscription =
dialogRef.componentInstance.submitClicked.subscribe(result => {
dialogSubmitSubscription.unsubscribe();
});
}
Call the function from your html file with openDialog(). I'm referencing DialogComponent so make sure its imported into your module.
import { DialogComponent } from './dialog/dialog.component';
also
entryComponents: [DialogComponent]
declare it in your entryComponents array
4) in your dialog.component.ts file, add the imports
import { Component, Output, EventEmitter, Inject, OnInit} from '@angular/core';
import { MatDialogRef, MAT_DIALOG_DATA } from '@angular/material';
5) define the properties & functions
dialogTitle: string;
dialogText: string;
@Output() submitClicked = new EventEmitter<any>();
constructor(
public dialogRef: MatDialogRef<DialogComponent>,
@Inject(MAT_DIALOG_DATA) public data: DialogData) {}
ngOnInit() {
this.dialogTitle = this.data.dialogTitle;
this.dialogText = this.data.dialogText;
}
saveMessage() {
const data = 'Your data';
this.submitClicked.emit(data);
this.dialogRef.close();
}
closeDialog() {
this.dialogRef.close();
}
6) and lastly the HTML
<h1 mat-dialog-title>{{dialogTitle}}"</h1>
<div mat-dialog-content>
<p>{{dialogText}}</p>
</div>
<div mat-dialog-actions>
<button mat-button (click)="saveMessage()" >Ok</button>
<button mat-button (click)="closeDialog()" cdkFocusInitial>No Thanks</button>
</div>
I hope it helps.