You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.1 KiB
41 lines
1.1 KiB
import { Injectable } from '@angular/core';
|
|
import { ComponentType } from '@angular/cdk/portal';
|
|
import { MatSnackBar, MatSnackBarRef, MatSnackBarHorizontalPosition } from '@angular/material/snack-bar';
|
|
import { MediaService } from '@app/core/services/media.service';
|
|
|
|
@Injectable({
|
|
providedIn: 'root'
|
|
})
|
|
export class ToastService {
|
|
|
|
constructor(
|
|
private _snackBar: MatSnackBar,
|
|
private _mediaService: MediaService
|
|
) {
|
|
this._mediaService.onchange.subscribe((e: string) => {
|
|
switch (e) {
|
|
case 'mobile':
|
|
this._horizontalPosition = 'center';
|
|
break;
|
|
default:
|
|
this._horizontalPosition = 'right';
|
|
break;
|
|
}
|
|
});
|
|
}
|
|
|
|
private _horizontalPosition: MatSnackBarHorizontalPosition;
|
|
|
|
public show(message: string | ComponentType<any>): MatSnackBarRef<any> {
|
|
const config = {
|
|
duration: 3000,
|
|
horizontalPosition: this._horizontalPosition
|
|
};
|
|
if (typeof message == 'string') {
|
|
return this._snackBar.open(message, null, config);
|
|
}
|
|
else {
|
|
return this._snackBar.openFromComponent(message, config);
|
|
}
|
|
}
|
|
}
|