UNPKG

@irrelon/emitter

Version:

Simple JavaScript event emitter with some powerful features.

941 lines (815 loc) 32.9 kB
/* The MIT License (MIT) Copyright (c) 2014 Irrelon Software Limited https://www.irrelon.com Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice, url and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. Source: https://github.com/irrelon/emitter Changelog: Version 6.0.0: Updated to allow event listeners to return data to the caller of the emit() function, e.g. `const results = emitter.emit("myEventName");` The results are an array of all return values from any listener functions that were called by the event "myEventName". This is useful if you want event listeners to act as data providers for particular events. Listeners that return `ListenerReturnFlag.cancel` will cancel the event call to any further listeners for that one event emit. Version 5.0.3 and 5.0.4: Updated to allow specifying an events type to the Emitter to allow complete type safety when registering listeners and emitting events. Updated the build and package to split between delivery of CJS and ESM module types so that this package can be eiter imported or required without having to jump through any hoops. Version 5.0.2: Removed some unnecessary code, updated to be in step with version that is being used in the new version of Isogenic Game Engine. Version 5.0.1: Further TypeScript updates. Version 5.0.0: Added TypeScript and prettier, removed babel etc Version 4.0.1: Updated library to use new ES6 functionality making Overload() less useful so it can be removed as a dependency. Version 4.0.0: Breaking change. Library now has named exports `Emitter` and `makeEmitter`. `Emitter` is an ES6 class that can be extended and `makeEmitter` is a function that takes an object or class and does what `Emitter(someObject)` used to do. This change is to support being able to extend `Emitter` as a base class. Version 3.1.0: Changed order of execution so that listeners that are listening against a specific ID get called before the general catch-all listeners. Renamed package to @irrelon/emitter. Version 2.0.11: Added cancelStatic method to allow cancelling a static event Version 2.0.7: Fixed UMD module support Version 2.0.6: Added UMD module support Version 2.0.5: Added bower version number Version 2.0.4: Allow instantiation as independent instance, updated unit tests Version 2.0.3: Documentation updates, published to bower Version 2.0.2: Documentation updates Version 2.0.1: Bug fix in this._emitters usage Version 2.0.0: Big update to bring in line with latest developments in other projects. Event emitter can now use deferEmit(), emitId(), emitStatic(), emitStaticId(), willEmit(), willEmitId(). Version 1.1.9: Updated changelog correctly Version 1.1.8: Removed tons of dependencies wrongly included in main dependencies, have moved to devDependencies section of package.json Version 1.1.0: Added support for overloaded methods Added support for events with ids Version 1.0.2: Removed AMD support, added browserify support Added package.json Added once() method Added hasListener() method Published to NPM as irrelon-emitter Version 1.0.1: Added ability to extend any object with eventing capability Added AMD / Require.js support Added Node.js support Version 1.0.0: First commit */ export type AnyFunction<ReturnType = any> = (...args: any[]) => ReturnType; export type AnyConstructor = new (...args: any[]) => any; export enum ListenerReturnFlag { none = "!+_NONE", cancel = "!+_CANCEL" } export type EventListenerCallback<EventCallbackFunctionSignature extends AnyFunction = AnyFunction> = ( ...args: Parameters<EventCallbackFunctionSignature> ) => ReturnType<EventCallbackFunctionSignature>; export interface EventStaticEmitterObject<EventCallbackFunctionSignature extends AnyFunction = AnyFunction> { id: string; args: Parameters<EventCallbackFunctionSignature>; } export interface EmitterAnyEventsInterface { [key: string]: AnyFunction; } export type EmitterEventsInterface<T> = { [K in keyof T]: T[K]; }; interface WithStar { "*"?: (eventName: string, ...args: any[]) => void; } export type EmitterEventsWithStar<T> = EmitterEventsInterface<T> & WithStar; /** * Creates a new class with the capability to emit events. */ export class Emitter<EventsInterface extends EmitterEventsWithStar<EventsInterface> = EmitterAnyEventsInterface> { _eventsEmitting: boolean = false; _eventRemovalQueue: any[] = []; _eventListeners?: { [EventName in keyof EventsInterface]?: Record<string, EventListenerCallback<EventsInterface[EventName]>[]>; } = {}; _eventStaticEmitters: { [EventName in keyof EventsInterface]?: EventStaticEmitterObject<EventsInterface[EventName]>[]; } = {}; _eventsAllowDefer: boolean = false; _eventsDeferTimeouts: Record<any, number> = {}; /** * Attach an event listener to the passed event only if the passed * id matches the id for the event being fired. * @param eventName The name of the event to listen for. * @param id The id to match against. * @param listener The method to call when the event is fired. * @returns The emitter instance. */ _on<EventName extends keyof EventsInterface> ( eventName: EventName, id: string, listener: EventListenerCallback<EventsInterface[EventName]> ) { const generateTimeout = (emitter: EventStaticEmitterObject<EventsInterface[EventName]>) => { setTimeout(() => { listener(...emitter.args); }, 1); }; this._eventListeners = this._eventListeners || {}; const nonNullableEventListeners = (this._eventListeners[eventName] = this._eventListeners[eventName] || {}); nonNullableEventListeners[id] = nonNullableEventListeners[id] || []; nonNullableEventListeners[id].push(listener); // Check for any static emitters, and fire the event if any exist if ( !this._eventStaticEmitters || !this._eventStaticEmitters[eventName] || !this._eventStaticEmitters[eventName]!.length ) return this; // Emit events for each emitter for (let i = 0; i < this._eventStaticEmitters[eventName]!.length; i++) { const emitter = this._eventStaticEmitters[eventName]![i]; if (id === "*" || emitter.id === id) { // Call the listener out of process so that any code that expects a listener // to be called at some point in the future rather than immediately on registration // will not fail generateTimeout(emitter); } } return this; } /** * Attach an event listener to the passed event only if the passed * id matches the document id for the event being fired. * @param eventName The name of the event to listen for. * @param id The id to match against. * @param listener The method to call when the event is fired. * @returns The emitter instance. */ _once<EventName extends keyof EventsInterface> ( eventName: EventName, id: string, listener: EventListenerCallback<EventsInterface[EventName]> ) { let fired = false; let originalReturnData: ReturnType<EventsInterface[EventName]>; const internalCallback: EventListenerCallback<EventsInterface[EventName]> = ( ...args: Parameters<EventsInterface[EventName]> ): ReturnType<EventsInterface[EventName]> => { if (fired) return originalReturnData; fired = true; this.off(eventName, id, internalCallback); originalReturnData = listener(...args); return originalReturnData; }; return this.on(eventName, id, internalCallback); } /** * Cancels an event listener based on an event name, id and listener function. * @param eventName The event to cancel listener for. * @param id The ID of the event to cancel listening for. * @param listener The event listener function used in the on() * or once() call to cancel. * @returns The emitter instance. */ _off<EventName extends keyof EventsInterface> ( eventName: EventName, id: string, listener?: EventListenerCallback<EventsInterface[EventName]> ): this { // If the event name doesn't have any listeners, exit early if (!this._eventListeners || !this._eventListeners[eventName] || !this._eventListeners[eventName]![id]) return this; // If we are emitting events at the moment, don't remove this listener // until the process has completed, so we queue for removal instead if (this._eventsEmitting) { this._eventRemovalQueue = this._eventRemovalQueue || []; this._eventRemovalQueue.push(() => { this.off(eventName, id, listener); }); return this; } // Check if we have no specific listener... in this case // we want to remove all listeners for an id if (!listener) { if (id === "*") { // The id is "all" and no listener was provided so delete all // event listeners for this event name delete this._eventListeners[eventName]; return this; } // No listener provided, delete all listeners for this id delete this._eventListeners[eventName]![id]; return this; } const arr = this._eventListeners[eventName]![id] || []; const index = arr.indexOf(listener); if (index > -1) { arr.splice(index, 1); } return this; } /** * Creates an event listener that listens for any and all events * emitted. */ onAny (listener: EventListenerCallback) { this.on("*", listener); } /** * Attach an event listener to the passed event only if the passed * id matches the document id for the event being fired. * @param eventName The name of the event to listen for. * @param id The id to match against. * @param listener The method to call when the event is fired. * @returns The emitter instance. */ on<EventName extends keyof EventsInterface>( eventName: EventName, id: string, listener: EventListenerCallback<EventsInterface[EventName]> ): this; on<EventName extends keyof EventsInterface>( eventName: EventName, listener: EventListenerCallback<EventsInterface[EventName]> ): this; on<EventName extends keyof EventsInterface> ( eventName: EventName, idOrListener: string | EventListenerCallback<EventsInterface[EventName]>, listener?: EventListenerCallback<EventsInterface[EventName]> ): this { if (typeof idOrListener === "string") { return this._on(eventName, idOrListener, listener as EventListenerCallback<EventsInterface[EventName]>); } return this._on(eventName, "*", idOrListener); } /** * Attach an event listener to the passed event only if the passed * id matches the document id for the event being fired. * @param eventName The name of the event to listen for. * @param id The id to match against. * @param listener * @returns The emitter instance. */ once<EventName extends keyof EventsInterface>( eventName: EventName, id: string, listener: EventListenerCallback<EventsInterface[EventName]> ): this; once<EventName extends keyof EventsInterface>( eventName: EventName, listener: EventListenerCallback<EventsInterface[EventName]> ): this; once<EventName extends keyof EventsInterface> (eventName: EventName, ...rest: any[]): this { const restTypes = rest.map((arg) => typeof arg); if (restTypes[0] === "function") { return this._once(eventName, "*", rest[0]); } return this._once(eventName, rest[0], rest[1]); } /** * Overwrites any previous event listeners so that if the event fires, only * the listener you pass will be called. If you pass an id along with the * listener, only listeners for the id will be overwritten. This is similar * to calling `.off(eventName)` then `on(eventName, listener)` since * `off(eventName)` will cancel any previous event listeners for the passed * event name. * @param eventName The name of the event to listen for. * @param id The id to match against. * @param listener The method to call when the event is fired. * @returns The emitter instance. */ overwrite<EventName extends keyof EventsInterface>( eventName: EventName, id: string, listener: EventListenerCallback<EventsInterface[EventName]> ): this; overwrite<EventName extends keyof EventsInterface>( eventName: EventName, listener: EventListenerCallback<EventsInterface[EventName]> ): this; overwrite<EventName extends keyof EventsInterface> (eventName: EventName, ...rest: any[]) { const restTypes = rest.map((arg) => typeof arg); if (restTypes[0] === "function") { this.off(eventName); return this._on(eventName, "*", rest[0]); } this.off(eventName, rest[0]); return this._on(eventName, rest[0], rest[1]); } /** * Removes an event listener that listens for any and all events * emitted. */ offAny (listener: EventListenerCallback) { this.off("*", listener); } /** * Cancels an event listener based on an event name, id and listener function. * @param eventName The event to cancel listener for. * @param id The ID of the event to cancel listening for. * @param listener The event listener function used in the on() * or once() call to cancel. * @returns The emitter instance. */ off<EventName extends keyof EventsInterface>( eventName: EventName, id: string, listener?: EventListenerCallback<EventsInterface[EventName]> ): this; off<EventName extends keyof EventsInterface>( eventName: EventName, listener?: EventListenerCallback<EventsInterface[EventName]> ): this; off<EventName extends keyof EventsInterface>(eventName: EventName): this; off<EventName extends keyof EventsInterface> (eventName: EventName, ...rest: any[]) { if (rest.length === 0) { // Only event was provided, use * as the id to mean "any without" // a specific id return this._off(eventName, "*"); } const restTypes = rest.map((arg) => typeof arg); if (restTypes[0] === "function") { // The first arg after the event name was a function (listener) // so remove listening for events for this specific listener return this._off(eventName, "*", rest[0]); } // Both id and listener were provided, remove for the specific id return this._off(eventName, rest[0], rest[1]); } _emitToSingleListener<EventName extends keyof EventsInterface> ( listener: EventListenerCallback<EventsInterface[EventName]>, data: Parameters<EventsInterface[EventName]> ): ReturnType<EventsInterface[EventName]> | ListenerReturnFlag { return listener(...data); } _emitToArrayOfListeners<EventName extends keyof EventsInterface> ( arr: EventListenerCallback<EventsInterface[EventName]>[], data: Parameters<EventsInterface[EventName]> ): (ReturnType<EventsInterface[EventName]> | ListenerReturnFlag)[] { const arrCount = arr.length; const resultArr: (ReturnType<EventsInterface[EventName]> | ListenerReturnFlag)[] = []; for (let arrIndex = 0; arrIndex < arrCount; arrIndex++) { // Check we have a function to execute const tmpFunc = arr[arrIndex]; if (typeof tmpFunc !== "function") { continue; } const eventListenerResponse = tmpFunc(...data); resultArr.push(eventListenerResponse); if (eventListenerResponse === ListenerReturnFlag.cancel) { // Cancel further event processing break; } } return resultArr; } /** * Call an event listener by name. The `rpc()` function differs from `emit()` in * that it will only call and return data from the first event listener for the * event rather than all event listeners. If you have more than one event listener * assigned to the event, all others except the first will be ignored and will * not receive the event. * @param eventName The name of the event to call the listener for. * @param {...any} data The arguments to send to the listening method. * If you are sending multiple arguments, separate them with a comma so * that they are received by the function as separate arguments. * @return {number} * @example #Call the Event Listener * // Emit the event named "hello" * myEntity.emit('hello'); * @example #Call the Event Listener With Data Object * // Emit the event named "hello" * myEntity.emit('hello', {moo: true}); * @example #Call the Event Listener With Multiple Data Values * // Emit the event named "hello" * myEntity.emit('hello', {moo: true}, 'someString'); * @example #Register the Listener for Event Data * // Set a listener to listen for the data (multiple values emitted * // from an event are passed as function arguments) * myEntity.on('hello', function (arg1, arg2) { * console.log("Arguments:", arg1, arg2); * return "foo"; * } * * // Emit the event named "hello" * const result = myEntity.emit('hello', 'data1', 'data2'); * console.log("Result:", result); * * // The console output is: * // Arguments: data1 data2 * // Result: "foo" */ rpc<EventName extends keyof EventsInterface> ( eventName: EventName, ...data: Parameters<EventsInterface[EventName]> ): ReturnType<EventsInterface[EventName]> | ListenerReturnFlag { return this.rpcId<EventName>(eventName, "*", ...data); } rpcId<EventName extends keyof EventsInterface> ( eventName: EventName, id: string, ...data: Parameters<EventsInterface[EventName]> ): ReturnType<EventsInterface[EventName]> | ListenerReturnFlag { if (!this._eventListeners || !this._eventListeners[eventName]) { throw new Error("Cannot make an rpc call without at least one event listener and none were found"); } let emitterResult: ReturnType<EventsInterface[EventName]> | ListenerReturnFlag; this._eventsEmitting = true; if (this._eventListeners[eventName]![id]) { // Handle id emit const arr = this._eventListeners[eventName]![id]; emitterResult = this._emitToSingleListener<EventName>(arr[0], data); } else if (id !== "*" && this._eventListeners[eventName]!["*"]) { // Handle wildcard emit if the id passed wasn't already a wildcard (*) id const arr = this._eventListeners[eventName]!["*"]; emitterResult = this._emitToSingleListener<EventName>(arr[0], data); } else { if (id === "*") { throw new Error( `Cannot make an rpc call to event "${eventName as string}" without at least one event listener and none were found, register a listener via on("${eventName as string}", () => { ...some listener code })` ); } throw new Error( `Cannot make an rpc call to event "${eventName as string}" and id "${id}" without at least one event listener and none were found, register a listener via on("${eventName as string}", "${id}", () => { ...some listener code })` ); } this._eventsEmitting = false; this._processRemovalQueue(); return emitterResult; } /** * Emit an event by name. * @param eventName The name of the event to emit. * @param {...any} data The arguments to send to any listening methods. * If you are sending multiple arguments, separate them with a comma so * that they are received by the function as separate arguments. * @return {number} * @example #Emit an Event * // Emit the event named "hello" * myEntity.emit('hello'); * @example #Emit an Event With Data Object * // Emit the event named "hello" * myEntity.emit('hello', {moo: true}); * @example #Emit an Event With Multiple Data Values * // Emit the event named "hello" * myEntity.emit('hello', {moo: true}, 'someString'); * @example #Listen for Event Data * // Set a listener to listen for the data (multiple values emitted * // from an event are passed as function arguments) * myEntity.on('hello', function (arg1, arg2) { * console.log("Arguments:", arg1, arg2); * return "foo"; * } * * // Emit the event named "hello" * // The result is returned as an array of all return values * // from all the listeners for the event * const result = myEntity.emit('hello', 'data1', 'data2'); * console.log("Result:", result); * * // The console output is: * // Arguments: data1 data2 * // Result: ["foo"] */ emit<EventName extends keyof EventsInterface> ( eventName: EventName, ...data: Parameters<EventsInterface[EventName]> ): (ReturnType<EventsInterface[EventName]> | ListenerReturnFlag)[] { return this.emitId<EventName>(eventName, "*", ...data); } emitId<EventName extends keyof EventsInterface> ( eventName: EventName, id: string, ...data: Parameters<EventsInterface[EventName]> ): (ReturnType<EventsInterface[EventName]> | ListenerReturnFlag)[] { if (!this._eventListeners || (!this._eventListeners[eventName] && !this._eventListeners["*"])) { return []; } let emitterResult: (ReturnType<EventsInterface[EventName]> | ListenerReturnFlag)[] = []; this._eventsEmitting = true; if (this._eventListeners[eventName]) { // Handle id emit if (this._eventListeners[eventName]![id]) { const arr = this._eventListeners[eventName]![id]; emitterResult = emitterResult.concat(this._emitToArrayOfListeners<EventName>(arr, data)); } // Handle id wildcard emit if the id passed wasn't already a wildcard (*) id if (id !== "*" && this._eventListeners[eventName]!["*"]) { const arr = this._eventListeners[eventName]!["*"]; emitterResult = emitterResult.concat(this._emitToArrayOfListeners<EventName>(arr, data)); } } if (this._eventListeners["*"]) { const arr = this._eventListeners["*"]!["*"]; emitterResult = emitterResult.concat( this._emitToArrayOfListeners<EventName>( arr as EventListenerCallback<EventsInterface[EventName]>[], [eventName, ...data] as Parameters<EventsInterface[EventName]> ) ); } this._eventsEmitting = false; this._processRemovalQueue(); return emitterResult; } /** * Creates a persistent emitter record that will fire a listener if * one is added for this event after the emitStatic() call has been * made. * @param eventName The name of the event to emit. * @param {...any} data Optional arguments to emit with the event. * @returns The emitter instance. * @private */ emitStatic<EventName extends keyof EventsInterface> ( eventName: EventName, ...data: Parameters<EventsInterface[EventName]> ) { const id = "*"; this._eventListeners = this._eventListeners || {}; this._eventsEmitting = true; if (this._eventListeners[eventName] && this._eventListeners[eventName]![id]) { // Handle id wildcard emit const arr = this._eventListeners[eventName]![id]; const arrCount = arr.length; for (let arrIndex = 0; arrIndex < arrCount; arrIndex++) { // Check we have a function to execute const tmpFunc = arr[arrIndex]; if (typeof tmpFunc === "function") { tmpFunc.call(this, ...data); } } } this._eventsEmitting = false; this._eventStaticEmitters = this._eventStaticEmitters || {}; this._eventStaticEmitters[eventName] = this._eventStaticEmitters[eventName] || []; this._eventStaticEmitters[eventName]!.push({ id: "*", args: data }); this._processRemovalQueue(); return this; } /** * Creates a persistent emitter record that will fire a listener if * one is added for this event after the emitStatic() call has been * made. * @param eventName The name of the event to emit. * @param id The id of the event to emit. * @param {...any} data Optional arguments to emit with the event. * @returns The emitter instance. * @private */ emitStaticId<EventName extends keyof EventsInterface> ( eventName: EventName, id: string, ...data: Parameters<EventsInterface[EventName]> ) { if (!id) throw new Error("Missing id from emitId call!"); this._eventListeners = this._eventListeners || {}; this._eventsEmitting = true; if (this._eventListeners[eventName]) { // Handle id emit if (this._eventListeners[eventName]![id]) { const arr = this._eventListeners[eventName]![id]; const arrCount = arr.length; for (let arrIndex = 0; arrIndex < arrCount; arrIndex++) { // Check we have a function to execute const tmpFunc = arr[arrIndex]; if (typeof tmpFunc === "function") { tmpFunc.call(this, ...data); } } } // Handle wildcard emit if (this._eventListeners[eventName]!["*"]) { const arr = this._eventListeners[eventName]!["*"]; const arrCount = arr.length; for (let arrIndex = 0; arrIndex < arrCount; arrIndex++) { // Check we have a function to execute const tmpFunc = arr[arrIndex]; if (typeof tmpFunc === "function") { tmpFunc.call(this, ...data); } } } } this._eventsEmitting = false; this._eventStaticEmitters = this._eventStaticEmitters || {}; this._eventStaticEmitters[eventName] = this._eventStaticEmitters[eventName] || []; this._eventStaticEmitters[eventName]!.push({ id, args: data }); this._processRemovalQueue(); return this; } /** * Handles removing emitters, is an internal method not called directly. * @param eventName The event to remove static emitter for. * @returns The emitter instance. * @private */ cancelStatic<EventName extends keyof EventsInterface> (eventName: EventName) { this._eventStaticEmitters = this._eventStaticEmitters || {}; this._eventStaticEmitters[eventName] = []; return this; } /** * Checks if an event has any event listeners or not. * @param eventName The name of the event to check for. * @returns True if one or more event listeners are registered for * the event. False if none are found. */ willEmit<EventName extends keyof EventsInterface> (eventName: EventName) { const id = "*"; if (!this._eventListeners || !this._eventListeners[eventName]) { return false; } const arr = this._eventListeners[eventName]![id]; const arrCount = arr.length; for (let arrIndex = 0; arrIndex < arrCount; arrIndex++) { // Check we have a function to execute const tmpFunc = arr[arrIndex]; if (typeof tmpFunc === "function") { return true; } } return false; } /** * Checks if an event has any event listeners or not based on the passed id. * @param eventName The name of the event to check for. * @param id The event ID to check for. * @returns True if one or more event listeners are registered for * the event. False if none are found. */ willEmitId<EventName extends keyof EventsInterface> (eventName: EventName, id: string) { if (!this._eventListeners || !this._eventListeners[eventName]) { return false; } // Handle id emit if (this._eventListeners[eventName]![id]) { const arr = this._eventListeners[eventName]![id]; const arrCount = arr.length; for (let arrIndex = 0; arrIndex < arrCount; arrIndex++) { // Check we have a function to execute const tmpFunc = arr[arrIndex]; if (typeof tmpFunc === "function") { return true; } } } // Handle wildcard emit if (this._eventListeners[eventName]!["*"]) { const arr = this._eventListeners[eventName]!["*"]; const arrCount = arr.length; for (let arrIndex = 0; arrIndex < arrCount; arrIndex++) { // Check we have a function to execute const tmpFunc = arr[arrIndex]; if (typeof tmpFunc === "function") { return true; } } } return false; } /** * Queues an event to be fired. This has automatic de-bouncing so that any * events of the same type that occur within 100 milliseconds of a previous * one will all be wrapped into a single emit rather than emitting tons of * events for lots of chained inserts etc. Only the data from the last * de-bounced event will be emitted. * @param eventName The name of the event to emit. * @param {...any} data Optional arguments to emit with the event. * @returns The emitter instance. */ deferEmit<EventName extends keyof EventsInterface> ( eventName: EventName, ...data: Parameters<EventsInterface[EventName]> ) { if (!this._eventsAllowDefer) { // Check for an existing timeout this._eventsDeferTimeouts = this._eventsDeferTimeouts || {}; if (this._eventsDeferTimeouts[eventName]) { clearTimeout(this._eventsDeferTimeouts[eventName]); } // Set a timeout this._eventsDeferTimeouts[eventName] = setTimeout(() => { void this.emit.call(this, eventName, ...data); }, 1) as unknown as number; } else { void this.emit.call(this, eventName, ...data); } return this; } /** * Returns true if the result from an emit() call passed as the first * argument contains a cancellation flag. * @param resultArr */ didCancel (resultArr: (unknown | ListenerReturnFlag)[]) { return resultArr.findIndex((result) => result === ListenerReturnFlag.cancel) > -1; } /** * If events are cleared with the off() method while the event emitter is * actively processing any events then the off() calls get added to a * queue to be executed after the event emitter is finished. This stops * errors that might occur by potentially mutating the event listener array * while the emitter is running through them. This method is called after * the event emitter is finished processing. * @private */ _processRemovalQueue () { if (!this._eventRemovalQueue || !this._eventRemovalQueue.length) { return; } // Execute each removal call for (let i = 0; i < this._eventRemovalQueue.length; i++) { this._eventRemovalQueue[i](); } // Clear the removal queue this._eventRemovalQueue = []; } } export function makeEmitter(obj: AnyConstructor, prototypeMode: boolean): Emitter; export function makeEmitter(obj: boolean): Emitter; export function makeEmitter(obj: Record<string, unknown>, prototypeMode: boolean): Emitter; export function makeEmitter (obj: any, prototypeMode?: any) { let operateOnObject; if (obj === undefined && prototypeMode === undefined) { obj = {}; prototypeMode = false; } if (typeof obj === "boolean" && prototypeMode === undefined) { prototypeMode = obj; obj = {}; } if (prototypeMode === undefined) { prototypeMode = true; } if (typeof obj !== "object" && typeof obj !== "function") { throw new Error("Cannot operate on a non-object / non-function passed as first argument!"); } if (prototypeMode) { if (obj.prototype === undefined) { throw new Error( "Cannot modify prototype of passed object, it has no prototype property! Was it instantiated with the new operator correctly?" ); } operateOnObject = obj.prototype; } else { operateOnObject = obj; } // Convert the object prototype to have eventing capability operateOnObject.on = Emitter.prototype.on; operateOnObject.onAny = Emitter.prototype.onAny; operateOnObject.off = Emitter.prototype.off; operateOnObject.offAny = Emitter.prototype.offAny; operateOnObject.once = Emitter.prototype.once; operateOnObject.emit = Emitter.prototype.emit; operateOnObject.emitId = Emitter.prototype.emitId; operateOnObject.emitStatic = Emitter.prototype.emitStatic; operateOnObject.emitStaticId = Emitter.prototype.emitStaticId; operateOnObject.cancelStatic = Emitter.prototype.cancelStatic; operateOnObject.deferEmit = Emitter.prototype.deferEmit; operateOnObject.willEmit = Emitter.prototype.willEmit; operateOnObject.willEmitId = Emitter.prototype.willEmitId; operateOnObject._processRemovalQueue = Emitter.prototype._processRemovalQueue; return obj; }