mirror of https://github.com/OpenVidu/openvidu.git
56 lines
1.5 KiB
TypeScript
56 lines
1.5 KiB
TypeScript
![]() |
import { Injectable } from '@angular/core';
|
||
|
import { MatDialog, MatDialogConfig, MatDialogRef } from '@angular/material/dialog';
|
||
|
import { MatSnackBar } from '@angular/material/snack-bar';
|
||
|
import { DialogTemplateComponent } from '../../components/material/dialog.component';
|
||
|
|
||
|
import { INotificationOptions } from '../../models/notification-options.model';
|
||
|
|
||
|
@Injectable({
|
||
|
providedIn: 'root'
|
||
|
})
|
||
|
export class ActionService {
|
||
|
|
||
|
private dialogRef: MatDialogRef<DialogTemplateComponent>;
|
||
|
constructor(private snackBar: MatSnackBar, public dialog: MatDialog) {}
|
||
|
|
||
|
launchNotification(options: INotificationOptions, callback): void {
|
||
|
if (!options.config) {
|
||
|
options.config = {
|
||
|
duration: 3000,
|
||
|
verticalPosition: 'top',
|
||
|
horizontalPosition: 'end'
|
||
|
};
|
||
|
}
|
||
|
|
||
|
const notification = this.snackBar.open(options.message, options.buttonActionText, options.config);
|
||
|
if (callback) {
|
||
|
notification.onAction().subscribe(() => {
|
||
|
callback();
|
||
|
});
|
||
|
}
|
||
|
}
|
||
|
|
||
|
openDialog(titleMessage: string, descriptionMessage: string, allowClose = true) {
|
||
|
try {
|
||
|
this.closeDialog();
|
||
|
|
||
|
} catch (error) {
|
||
|
|
||
|
} finally {
|
||
|
const config: MatDialogConfig = {
|
||
|
minWidth: '250px',
|
||
|
data: { title: titleMessage, description: descriptionMessage, showActionButtons: allowClose },
|
||
|
disableClose: !allowClose
|
||
|
};
|
||
|
this.dialogRef = this.dialog.open(DialogTemplateComponent, config);
|
||
|
this.dialogRef.afterClosed().subscribe((result) => {
|
||
|
this.dialogRef = null;
|
||
|
});
|
||
|
}
|
||
|
}
|
||
|
|
||
|
closeDialog() {
|
||
|
this.dialogRef.close();
|
||
|
}
|
||
|
}
|