UNPKG

@spotinst/spinnaker-deck

Version:

Spinnaker-Deck service, forked with support to Spotinst

26 lines (20 loc) 580 B
import React from 'react'; import { Subject } from 'rxjs'; export interface INotifier { key: string; action: 'remove' | 'create'; body?: string /* Deprecated in favor of `content` */; content?: React.ReactNode; } export class NotifierService { private static stream = new Subject<INotifier>(); public static get messageStream(): Subject<INotifier> { return this.stream; } public static publish(message: INotifier): void { this.stream.next(message); } public static clear(key: string): void { this.stream.next({ action: 'remove', key }); } }