Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: capricorn86/happy-dom
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v8.5.0
Choose a base ref
...
head repository: capricorn86/happy-dom
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v8.6.0
Choose a head ref
  • 5 commits
  • 3 files changed
  • 2 contributors

Commits on Feb 18, 2023

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    722c0ec View commit details
  2. Copy the full SHA
    6d2c6d5 View commit details

Commits on Feb 19, 2023

  1. Copy the full SHA
    51c8999 View commit details
  2. Copy the full SHA
    44788ce View commit details
  3. Merge pull request #763 from btea/task/700-add-event-listener-option

    #700@minor: Add event listener options.
    capricorn86 authored Feb 19, 2023
    Copy the full SHA
    71b3286 View commit details
Showing with 44 additions and 2 deletions.
  1. +24 −2 packages/happy-dom/src/event/EventTarget.ts
  2. +8 −0 packages/happy-dom/src/event/IEventListenerOptions.ts
  3. +12 −0 packages/happy-dom/test/event/EventTarget.test.ts
26 changes: 24 additions & 2 deletions packages/happy-dom/src/event/EventTarget.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import IEventListener from './IEventListener';
import Event from './Event';
import IEventTarget from './IEventTarget';
import IEventListenerOptions from './IEventListenerOptions';

/**
* Handles events.
@@ -9,16 +10,28 @@ export default abstract class EventTarget implements IEventTarget {
public readonly _listeners: {
[k: string]: (((event: Event) => void) | IEventListener)[];
} = {};
public readonly _listenerOptions: {
[k: string]: (IEventListenerOptions | null)[];
} = {};

/**
* Adds an event listener.
*
* @param type Event type.
* @param listener Listener.
* @param options An object that specifies characteristics about the event listener.(currently only once)
* @param options.once
*/
public addEventListener(type: string, listener: ((event: Event) => void) | IEventListener): void {
public addEventListener(
type: string,
listener: ((event: Event) => void) | IEventListener,
options?: IEventListenerOptions
): void {
this._listeners[type] = this._listeners[type] || [];
this._listenerOptions[type] = this._listenerOptions[type] || [];

this._listeners[type].push(listener);
this._listenerOptions[type].push(options || null);
}

/**
@@ -35,6 +48,7 @@ export default abstract class EventTarget implements IEventTarget {
const index = this._listeners[type].indexOf(listener);
if (index !== -1) {
this._listeners[type].splice(index, 1);
this._listenerOptions[type].splice(index, 1);
}
}
}
@@ -59,12 +73,20 @@ export default abstract class EventTarget implements IEventTarget {
}

if (this._listeners[event.type]) {
for (const listener of this._listeners[event.type]) {
for (let i = 0, max = this._listeners[event.type].length; i < max; i++) {
const listener = this._listeners[event.type][i];
const options = this._listenerOptions[event.type][i];

if ((<IEventListener>listener).handleEvent) {
(<IEventListener>listener).handleEvent(event);
} else {
(<(event: Event) => void>listener).call(this, event);
}

if (options?.once) {
this.removeEventListener(event.type, listener);
}

if (event._immediatePropagationStopped) {
return !(event.cancelable && event.defaultPrevented);
}
8 changes: 8 additions & 0 deletions packages/happy-dom/src/event/IEventListenerOptions.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
export default interface IEventListenerOptions {
once?: boolean;

// TODO: Not implemented yet.
capture?: boolean;
passive?: boolean;
signal?: unknown;
}
12 changes: 12 additions & 0 deletions packages/happy-dom/test/event/EventTarget.test.ts
Original file line number Diff line number Diff line change
@@ -29,6 +29,18 @@ describe('EventTarget', () => {
expect(recievedEvent.currentTarget).toBe(eventTarget);
});

it('Adds an event listener and set options once', () => {
let count = 0;
const listener = (): void => {
count++;
};
const dispatchedEvent = new Event(EVENT_TYPE);
eventTarget.addEventListener(EVENT_TYPE, listener, { once: true });
eventTarget.dispatchEvent(dispatchedEvent);
eventTarget.dispatchEvent(dispatchedEvent);
expect(count).toBe(1);
});

it('Adds a custom event listener and triggers it when calling dispatchEvent().', () => {
let recievedEvent: CustomEvent = null;
const DETAIL = {};