thelounge/client/js/eventbus.ts
Max Leiter dd05ee3a65
TypeScript and Vue 3 (#4559)
Co-authored-by: Eric Nemchik <eric@nemchik.com>
Co-authored-by: Pavel Djundik <xPaw@users.noreply.github.com>
2022-06-18 17:25:21 -07:00

52 lines
1.2 KiB
TypeScript

const events = new Map();
class EventBus {
/**
* Register an event handler for the given type.
*
* @param {String} type Type of event to listen for.
* @param {Function} handler Function to call in response to given event.
*/
on(type: string, handler: (...evt: any[]) => void) {
if (events.has(type)) {
events.get(type).push(handler);
} else {
events.set(type, [handler]);
}
}
/**
* Remove an event handler for the given type.
*
* @param {String} type Type of event to unregister `handler` from.
* @param {Function} handler Handler function to remove.
*/
off(type: string, handler: (...evt: any[]) => void) {
if (events.has(type)) {
events.set(
type,
events.get(type).filter((item: (...evt: any[]) => void) => item !== handler)
);
}
}
/**
* Invoke all handlers for the given type.
*
* @param {String} type The event type to invoke.
* @param {Any} [evt] Any value (object is recommended and powerful), passed to each handler.
*/
emit(type: string, ...evt: any) {
if (events.has(type)) {
events
.get(type)
.slice()
.map((handler: (...evts: any[]) => void) => {
handler(...evt);
});
}
}
}
export default new EventBus();