44 lines
1.0 KiB
JavaScript
44 lines
1.0 KiB
JavaScript
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, handler) {
|
|
if (events.has(type)) {
|
|
events[type].push(handler);
|
|
} else {
|
|
events[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, handler) {
|
|
if (events.has(type)) {
|
|
events[type] = events[type].filter((item) => 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, evt) {
|
|
if (events.has(type)) {
|
|
events[type].slice().map((handler) => handler(evt));
|
|
}
|
|
}
|
|
}
|
|
|
|
export default new EventBus();
|