Of all of the Angular Materials elements, the MatDialog simply often is the most advanced. On the similar time, it’s in all probability additionally essentially the most versatile of the bunch. A part of the reason being that itβs not a element a lot as a service that may be utilized to open modal dialogs with Materials Design styling and animations. On this tutorial, weβll exchange the usual JavaScript affirm dialog that we applied within theΒ Stopping Knowledge Loss In Angular Functions utilizing a CanDeactivate Route GuardΒ tutorial with a MatDialog:
JavaScript Verify Dialog
Angular Verify Dialog
Including MatDialog to the Materials Module File
Recall that we positioned all of our Angular Materials imports within theΒ srcappsharedmodules
import {MatDialogModule} from '@angular/materials/dialog'; const materialModules = [ //... MatToolbarModule, MatDialogModule ];
Creating the ConfirmDialog Element
A part of what makes MatDialog so versatile is that its open() methodology accepts a element to point out within the physique of the dialog. You could be tempted to create the element as a toddler to the one that can name it, but it surely could be smart to assume twice earlier than doing in order we might wish to reuse the identical dialog in different places inside out software sooner or later. For that purpose, I might suggest producing it throughout the app listing:
ng g c confirm-dialog
Within the confirm-dialog.element.ts file, we are going to modify the constructor to simply accept a reference to the dialog in addition to the info that we’ll move to it:
import { Element, Inject, ViewEncapsulation } from '@angular/core'; import { MatDialogRef, MAT_DIALOG_DATA } from '@angular/materials/dialog'; @Element({ selector: 'app-confirm-dialog', templateUrl: './confirm-dialog.element.html', styleUrls: ['./confirm-dialog.component. css'], // this can enable us to override the mat-dialog-container CSS class encapsulation: ViewEncapsulation.None }) export class ConfirmDialogComponent { constructor( public dialogRef: MatDialogRefConfirmDialogComponent>, @Inject(MAT_DIALOG_DATA) public information: any) { } }
Subsequent, weβll add the contents of the dialog to the confirm-dialog.element.html file:
{{information.dialogMessageLine1}}
{{information.dialogMessageLine2}}p>
Invoking the MatDialog Service
Again within the survey.element.ts file, weβre able to replace the canExit() methodology to current our customized dialog as a substitute of the native JavaScript affirm dialog. There are three issues we have to do to make that occur:
- Add a constructor that accepts a MatDialog reference.
- Add the openUnsavedChangesDialog() methodology. Itβs accountable for exhibiting the dialog.
- Invoke the openUnsavedChangesDialog() methodology from canExit().
Right here is the up to date supply code for the survey.element.ts file that exhibits the related adjustments:
// imports import { MatDialog } from "@angular/materials/dialog"; import { ConfirmDialogComponent } from "../confirm-dialog/confirm-dialog.element"; // SatisfactionRatings enum @Element({ selector: "app-survey", templateUrl: "./survey.element.html", styleUrls: ["./survey.component.css"] }) export class SurveyComponent implements IDeactivateComponent { // declarations constructor(public dialog: MatDialog) { } //strategies... public canExit(): boolean | Observable { return this.ngFormRef.soiled ? this.openUnsavedChangesDialog( ) : true; }; non-public openUnsavedChangesDialog(): Observable { const dialogRef = this.dialog.open( ConfirmDialogComponent, { width: '26.5rem', information: { dialogTitle: 'Unsaved Modifications', dialogMessageLine1: 'You might have unsaved adjustments.', dialogMessageLine2: 'Are you positive you wish to depart the web page?', yesButtonText: 'Go away this Web page', noButtonText: 'Keep on this Web page' } }); return dialogRef.afterClosed(); } }
The openUnsavedChangesDialog() Technique Defined
Thereβs loads happening on this little methodology, so letβs unpack it.
The dialog reference that we injected through the constructor supplies quite a few strategies, properties, and occasion hooks for working with it, a very powerful of which being the open() methodology. It accepts the element to show in addition to a MatDialogConfig object. Thatβs the place we set the dialogβs look and move alongside the info object that populates the dialog element.
Organizations should transcend a piecemeal strategy to networking and safety. A broad, built-in, and automatic platform that secures all edges addresses challenges now and sooner or later.
The afterClosed() occasion hook receives an observable that’s notified when the dialog is completed closing. We are able to do no matter processing we have to do after the dialog is closed. In our case, we donβt have to do something however move alongside the worth returned by the dialog. That will get set by the 2 buttons within the footer through the sure [mat-dialog-close] attribute:
We then want so as to add the Observable
Right hereβs the tip results of immediatelyβs updates to theΒ Stopping Knowledge Loss In Angular Functions utilizing a CanDeactivate Route GuardΒ demo. To check it, navigate to the Survey web page, work together with the shape in order to replace the underlying mannequin, after which click on the Dwelling hyperlink:
Conclusion
On this tutorial, we realized tips on how to use the MatDialog, essentially the most advanced, and but most versatile Angular Materials element. To try this, we changed the usual JavaScript affirm dialog that we applied within theΒ Stopping Knowledge Loss In Angular Functions utilizing a CanDeactivate Route GuardΒ demo with a MatDialog.