mirror of
https://github.com/Tzahi12345/YoutubeDL-Material.git
synced 2026-03-19 11:10:57 +03:00
45 lines
1.3 KiB
TypeScript
45 lines
1.3 KiB
TypeScript
import { Component, OnInit, Inject, EventEmitter } from '@angular/core';
|
|
import { MAT_DIALOG_DATA, MatDialogRef } from '@angular/material/dialog';
|
|
|
|
@Component({
|
|
selector: 'app-confirm-dialog',
|
|
templateUrl: './confirm-dialog.component.html',
|
|
styleUrls: ['./confirm-dialog.component.scss']
|
|
})
|
|
export class ConfirmDialogComponent implements OnInit {
|
|
|
|
dialogTitle = 'Confirm';
|
|
dialogText = 'Would you like to confirm?';
|
|
submitText = 'Yes'
|
|
submitClicked = false;
|
|
|
|
doneEmitter: EventEmitter<any> = null;
|
|
onlyEmitOnDone = false;
|
|
|
|
|
|
constructor(@Inject(MAT_DIALOG_DATA) public data: any, public dialogRef: MatDialogRef<ConfirmDialogComponent>) {
|
|
if (this.data.dialogTitle) { this.dialogTitle = this.data.dialogTitle };
|
|
if (this.data.dialogText) { this.dialogText = this.data.dialogText };
|
|
if (this.data.submitText) { this.submitText = this.data.submitText };
|
|
|
|
// checks if emitter exists, if so don't autoclose as it should be handled by caller
|
|
if (this.data.doneEmitter) {
|
|
this.doneEmitter = this.data.doneEmitter;
|
|
this.onlyEmitOnDone = true;
|
|
}
|
|
}
|
|
|
|
confirmClicked() {
|
|
if (this.onlyEmitOnDone) {
|
|
this.doneEmitter.emit(true);
|
|
this.submitClicked = true;
|
|
} else {
|
|
this.dialogRef.close(true);
|
|
}
|
|
}
|
|
|
|
ngOnInit(): void {
|
|
}
|
|
|
|
}
|