How to pass data to dialog of angular material 2

AngularTypescriptAngular Material

Angular Problem Overview


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 dialogRef = this.dialog.open(DialogComponent, {
            disableClose: true,
            data :{'name':'Sunil'}
        });

On the documentation page there is data property, But I checked MdDialogConfig in my installed packages

/**
 * Configuration for opening a modal dialog with the MdDialog service.
 */
export declare class MdDialogConfig {
    viewContainerRef?: ViewContainerRef;
    /** The ARIA role of the dialog element. */
    role?: DialogRole;
    /** Whether the user can use escape or clicking outside to close a modal. */
    disableClose?: boolean;
    /** Width of the dialog. */
    width?: string;
    /** Height of the dialog. */
    height?: string;
    /** Position overrides. */
    position?: DialogPosition;
}

there is no data property in configuration class.

Now How can I access that passed data?

Angular Solutions


Solution 1 - Angular

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';

Solution 2 - Angular

UPDATE 2 (Angular 5+)

This answer is rather outdated. Take a look at epiphanatic's answer instead.

UPDATE

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;
   
   ...

}

Text below is not valid in newer versions of @angular/material
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

Solution 3 - Angular

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

  1. 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';

  2. define the properties & functions

    dialogTitle: string; dialogText: string; @Output() submitClicked = new EventEmitter();

    constructor( public dialogRef: MatDialogRef, @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(); }

  3. and lastly the HTML

    {{dialogTitle}}"

    {{dialogText}}

I hope it helps.

Solution 4 - Angular

For anyone that's finding this for angular 10 or 11, the only difference is that you use:

import {MAT_DIALOG_DATA} from '@angular/material/dialog';

instead of:

import {MAT_DIALOG_DATA } from '@angular/material';

Official page is here.

Solution 5 - Angular

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

Solution 6 - Angular

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.

Solution 7 - Angular

For Angular 13, to pass an object into the dialog data structure I had to use the following:

const dialogRef = this.dialog.open(MyDialog, {
  data: { myObjectHolder: myObject }
});

Then in the dialog class use this:

private myObject: MyObjectClass;

constructor(@Inject(MAT_DIALOG_DATA) data: { myObjectHolder: MyObjectClass }) {
    this.myObject = data.myObjectHolder;
}

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionSunil GargView Question on Stackoverflow
Solution 1 - AngularJason SimpsonView Answer on Stackoverflow
Solution 2 - AngularFredrik LundinView Answer on Stackoverflow
Solution 3 - AngularDarren StreetView Answer on Stackoverflow
Solution 4 - AngularJack ClarkeView Answer on Stackoverflow
Solution 5 - AngularTheDevGuyView Answer on Stackoverflow
Solution 6 - AngularblixenkroneView Answer on Stackoverflow
Solution 7 - AngularjllangstonView Answer on Stackoverflow