From 08a98fd08a24e8a868dc2cecd0c81d73bbe5746e Mon Sep 17 00:00:00 2001 From: Jared Wray Date: Fri, 6 Sep 2024 08:14:19 -0700 Subject: [PATCH] adding in ability to send in multiple args --- src/index.ts | 6 +++--- test/index.test.ts | 24 ++++++++++++++++++++++++ 2 files changed, 27 insertions(+), 3 deletions(-) diff --git a/src/index.ts b/src/index.ts index 940720a..5788283 100644 --- a/src/index.ts +++ b/src/index.ts @@ -32,13 +32,13 @@ export class Hookified extends Emittery { } // Triggers all handlers for a specific event with provided data - async hook(event: string, data: any) { + async hook(event: string, ...data: any[]) { const eventHandlers = this._hooks.get(event); if (eventHandlers) { for (const handler of eventHandlers) { try { - // eslint-disable-next-line no-await-in-loop - await handler(data); + // eslint-disable-next-line no-await-in-loop, @typescript-eslint/no-unsafe-argument + await handler(...data); } catch (error) { // eslint-disable-next-line no-await-in-loop await this.emit('error', new Error(`Error in hook handler for event "${event}": ${(error as Error).message}`)); diff --git a/test/index.test.ts b/test/index.test.ts index 644d2b2..2c10869 100644 --- a/test/index.test.ts +++ b/test/index.test.ts @@ -61,6 +61,30 @@ describe('Hookified', () => { expect(handlerData.key).toBe('modified'); }); + test('execute hook and manipulate multiple data items', async () => { + const hookified = new Hookified(); + const data = {key: 'value'}; + const data2 = {key: 'value2'}; + const data3 = {key: 'value3'}; + const handlerData: Array<{key: string}> = []; + + const handler = (data: {key: string}, data2: {key: string}, data3: {key: string}) => { + data.key = 'modified'; + data2.key = 'foo'; + data3.key = 'bar'; + + handlerData.push(data, data2, data3); + + console.log(handlerData); + }; + + await hookified.onHook('event', handler); + await hookified.hook('event', data, data2, data3); + expect(handlerData[0].key).toBe('modified'); + expect(handlerData[1].key).toBe('foo'); + expect(handlerData[2].key).toBe('bar'); + }); + test('hook with error emitted', async () => { const hookified = new Hookified(); let errorMessage;