- Delete old Vite+Svelte frontend - Initialize new SvelteKit project with TypeScript - Configure Tailwind CSS v4 + DaisyUI - Implement JWT authentication with auto-refresh - Create login page with form validation (Zod) - Add protected route guards - Update Docker configuration for single-stage build - Add E2E tests with Playwright (6/11 passing) - Fix Svelte 5 reactivity with $state() runes Known issues: - 5 E2E tests failing (timing/async issues) - Token refresh implementation needs debugging - Validation error display timing
73 lines
2.7 KiB
TypeScript
73 lines
2.7 KiB
TypeScript
import * as PropertySymbol from '../PropertySymbol.js';
|
|
import Event from './Event.js';
|
|
import IEventListenerOptions from './IEventListenerOptions.js';
|
|
import TEventListener from './TEventListener.js';
|
|
import BrowserWindow from '../window/BrowserWindow.js';
|
|
/**
|
|
* Handles events.
|
|
*/
|
|
export default class EventTarget {
|
|
#private;
|
|
protected [PropertySymbol.window]: BrowserWindow;
|
|
readonly [PropertySymbol.listeners]: {
|
|
capturing: Map<string, TEventListener[]>;
|
|
bubbling: Map<string, TEventListener[]>;
|
|
};
|
|
readonly [PropertySymbol.listenerOptions]: {
|
|
capturing: Map<string, IEventListenerOptions[]>;
|
|
bubbling: Map<string, IEventListenerOptions[]>;
|
|
};
|
|
/**
|
|
* Return a default description for the EventTarget class.
|
|
*/
|
|
get [Symbol.toStringTag](): string;
|
|
/**
|
|
* 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
|
|
* @param options.signal An AbortSignal. The listener will be removed when the given AbortSignal object's abort() method is called.
|
|
*/
|
|
addEventListener(type: string, listener: TEventListener, options?: boolean | IEventListenerOptions): void;
|
|
/**
|
|
* Adds an event listener.
|
|
*
|
|
* @param type Event type.
|
|
* @param listener Listener.
|
|
*/
|
|
removeEventListener(type: string, listener: TEventListener): void;
|
|
/**
|
|
* Dispatches an event.
|
|
*
|
|
* @see https://www.w3.org/TR/DOM-Level-3-Events/#event-flow
|
|
* @see https://www.quirksmode.org/js/events_order.html#link4
|
|
* @param event Event.
|
|
* @returns The return value is false if event is cancelable and at least one of the event handlers which handled this event called Event.preventDefault().
|
|
*/
|
|
dispatchEvent(event: Event): boolean;
|
|
/**
|
|
* Adds an event listener.
|
|
*
|
|
* TODO:
|
|
* Was used by with IE8- and Opera. React believed Happy DOM was a legacy browser and used them, but that is no longer the case, so we should remove this method after that this is verified.
|
|
*
|
|
* @deprecated
|
|
* @param type Event type.
|
|
* @param listener Listener.
|
|
*/
|
|
attachEvent(type: string, listener: TEventListener): void;
|
|
/**
|
|
* Removes an event listener.
|
|
*
|
|
* TODO:
|
|
* Was used by IE8- and Opera. React believed Happy DOM was a legacy browser and used them, but that is no longer the case, so we should remove this method after that this is verified.
|
|
*
|
|
* @deprecated
|
|
* @param type Event type.
|
|
* @param listener Listener.
|
|
*/
|
|
detachEvent(type: string, listener: TEventListener): void;
|
|
}
|
|
//# sourceMappingURL=EventTarget.d.ts.map
|