Last active
April 29, 2017 11:31
-
-
Save tieppt/f218867a4184f2d7b24c0ececad77f61 to your computer and use it in GitHub Desktop.
Event Emitter with RxJS
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { Subject } from 'rxjs/Subject'; | |
import { BehaviorSubject } from 'rxjs/BehaviorSubject'; | |
import { Subscription } from 'rxjs/Subscription'; | |
export default class RxEvent { | |
/** | |
* Hash map of subjects | |
* @type {Subject} | |
*/ | |
private subjects: { [key: string]: Subject<any> } = {}; | |
/** | |
* Constructor | |
* @param immediate {boolean} Immediate value or emit with the last value | |
*/ | |
constructor(private immediate = true) { } | |
/** | |
* Emits events through a subject to all subscribed broadcaster | |
* @param name {string} Name of an event | |
* @param data {any} Event data | |
*/ | |
next(name: string, data?: any) { | |
if (typeof this.subjects[name] === 'undefined') { | |
this.subjects[name] = (this.immediate ? new Subject() : new BehaviorSubject(null)); | |
} | |
this.subjects[name].next(data); | |
} | |
/** | |
* Subscribes a Observer (listener) to an event. | |
* @param name {string} Name of an event | |
* @param handler {any} Callback of the listener (subscriber) | |
* @returns {Subscription} | |
*/ | |
subscribe(name: string, handler: any): Subscription { | |
if (typeof this.subjects[name] === 'undefined') { | |
this.subjects[name] = (this.immediate ? new Subject() : new BehaviorSubject(null)); | |
} | |
return this.subjects[name].subscribe(handler); | |
} | |
/** | |
* Cleans up a Subject and remove all its observers. | |
* Also it removes the subject from subject map. | |
*/ | |
dispose(name: string) { | |
if (this.subjects[name]) { | |
this.subjects[name].unsubscribe(); | |
delete this.subjects[name]; | |
} | |
} | |
/** | |
* Clean up all Observers and clean up map of Subjects | |
*/ | |
disposeAll() { | |
var subjects = this.subjects; | |
var hasOwnProp: Function = {}.hasOwnProperty; | |
for (var prop in subjects) { | |
if (hasOwnProp.call(subjects, prop)) { | |
subjects[prop].unsubscribe(); | |
} | |
} | |
this.subjects = {}; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment