mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-04-03 07:01:38 +00:00
78 lines
1.7 KiB
TypeScript
78 lines
1.7 KiB
TypeScript
import { Injectable } from '@angular/core';
|
|
import { Observable, ReplaySubject } from 'rxjs';
|
|
|
|
@Injectable({
|
|
providedIn: 'root'
|
|
})
|
|
export class FuseAlertService
|
|
{
|
|
private readonly _onDismiss: ReplaySubject<string> = new ReplaySubject<string>(1);
|
|
private readonly _onShow: ReplaySubject<string> = new ReplaySubject<string>(1);
|
|
|
|
/**
|
|
* Constructor
|
|
*/
|
|
constructor()
|
|
{
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------------------------------
|
|
// @ Accessors
|
|
// -----------------------------------------------------------------------------------------------------
|
|
|
|
/**
|
|
* Getter for onDismiss
|
|
*/
|
|
get onDismiss(): Observable<any>
|
|
{
|
|
return this._onDismiss.asObservable();
|
|
}
|
|
|
|
/**
|
|
* Getter for onShow
|
|
*/
|
|
get onShow(): Observable<any>
|
|
{
|
|
return this._onShow.asObservable();
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------------------------------
|
|
// @ Public methods
|
|
// -----------------------------------------------------------------------------------------------------
|
|
|
|
/**
|
|
* Dismiss the alert
|
|
*
|
|
* @param name
|
|
*/
|
|
dismiss(name: string): void
|
|
{
|
|
// Return if the name is not provided
|
|
if ( !name )
|
|
{
|
|
return;
|
|
}
|
|
|
|
// Execute the observable
|
|
this._onDismiss.next(name);
|
|
}
|
|
|
|
/**
|
|
* Show the dismissed alert
|
|
*
|
|
* @param name
|
|
*/
|
|
show(name: string): void
|
|
{
|
|
// Return if the name is not provided
|
|
if ( !name )
|
|
{
|
|
return;
|
|
}
|
|
|
|
// Execute the observable
|
|
this._onShow.next(name);
|
|
}
|
|
|
|
}
|