Skip to content
Snippets Groups Projects
text-edit-dialog.component.ts 752 B
Newer Older
  • Learn to ignore specific revisions
  • import { Component, Inject } from '@angular/core';
    import { MAT_DIALOG_DATA } from '@angular/material/dialog';
    
    @Component({
    
      selector: 'aspect-text-edit-dialog',
    
      template: `
        <mat-dialog-content>
          <mat-form-field>
            <mat-label>{{'text' | translate }}</mat-label>
            <input #inputElement matInput type="text" [value]="data.text">
          </mat-form-field>
        </mat-dialog-content>
        <mat-dialog-actions>
          <button mat-button [mat-dialog-close]="inputElement.value">{{'save' | translate }}</button>
          <button mat-button mat-dialog-close>{{'cancel' | translate }}</button>
        </mat-dialog-actions>
        `
    })
    export class TextEditDialogComponent {
      constructor(@Inject(MAT_DIALOG_DATA) public data: { text: string }) { }
    }