generated from shgysk8zer0/npm-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathevents.js
601 lines (561 loc) · 18.2 KB
/
events.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
import { hasCallback, getCallback } from './callbacks.js';
const PREFIX = 'data-aegis-event-';
const EVENT_PREFIX = PREFIX + 'on-';
const EVENT_PREFIX_LENGTH = EVENT_PREFIX.length;
const DATA_PREFIX = 'aegisEventOn';
const DATA_PREFIX_LENGTH = DATA_PREFIX.length;
const signalSymbol = Symbol('aegis:signal');
const controllerSymbol = Symbol('aegis:controller');
const signalRegistry = new Map();
const controllerRegistry = new Map();
export const once = PREFIX + 'once';
export const passive = PREFIX + 'passive';
export const capture = PREFIX + 'capture';
export const signal = PREFIX + 'signal';
export const controller = PREFIX + 'controller';
export const onAbort = EVENT_PREFIX + 'abort';
export const onBlur = EVENT_PREFIX + 'blur';
export const onFocus = EVENT_PREFIX + 'focus';
export const onCancel = EVENT_PREFIX + 'cancel';
export const onAuxclick = EVENT_PREFIX + 'auxclick';
export const onBeforeinput = EVENT_PREFIX + 'beforeinput';
export const onBeforetoggle = EVENT_PREFIX + 'beforetoggle';
export const onCanplay = EVENT_PREFIX + 'canplay';
export const onCanplaythrough = EVENT_PREFIX + 'canplaythrough';
export const onChange = EVENT_PREFIX + 'change';
export const onClick = EVENT_PREFIX + 'click';
export const onClose = EVENT_PREFIX + 'close';
export const onContextmenu = EVENT_PREFIX + 'contextmenu';
export const onCopy = EVENT_PREFIX + 'copy';
export const onCuechange = EVENT_PREFIX + 'cuechange';
export const onCut = EVENT_PREFIX + 'cut';
export const onDblclick = EVENT_PREFIX + 'dblclick';
export const onDrag = EVENT_PREFIX + 'drag';
export const onDragend = EVENT_PREFIX + 'dragend';
export const onDragenter = EVENT_PREFIX + 'dragenter';
export const onDragexit = EVENT_PREFIX + 'dragexit';
export const onDragleave = EVENT_PREFIX + 'dragleave';
export const onDragover = EVENT_PREFIX + 'dragover';
export const onDragstart = EVENT_PREFIX + 'dragstart';
export const onDrop = EVENT_PREFIX + 'drop';
export const onDurationchange = EVENT_PREFIX + 'durationchange';
export const onEmptied = EVENT_PREFIX + 'emptied';
export const onEnded = EVENT_PREFIX + 'ended';
export const onFormdata = EVENT_PREFIX + 'formdata';
export const onInput = EVENT_PREFIX + 'input';
export const onInvalid = EVENT_PREFIX + 'invalid';
export const onKeydown = EVENT_PREFIX + 'keydown';
export const onKeypress = EVENT_PREFIX + 'keypress';
export const onKeyup = EVENT_PREFIX + 'keyup';
export const onLoad = EVENT_PREFIX + 'load';
export const onLoadeddata = EVENT_PREFIX + 'loadeddata';
export const onLoadedmetadata = EVENT_PREFIX + 'loadedmetadata';
export const onLoadstart = EVENT_PREFIX + 'loadstart';
export const onMousedown = EVENT_PREFIX + 'mousedown';
export const onMouseenter = EVENT_PREFIX + 'mouseenter';
export const onMouseleave = EVENT_PREFIX + 'mouseleave';
export const onMousemove = EVENT_PREFIX + 'mousemove';
export const onMouseout = EVENT_PREFIX + 'mouseout';
export const onMouseover = EVENT_PREFIX + 'mouseover';
export const onMouseup = EVENT_PREFIX + 'mouseup';
export const onWheel = EVENT_PREFIX + 'wheel';
export const onPaste = EVENT_PREFIX + 'paste';
export const onPause = EVENT_PREFIX + 'pause';
export const onPlay = EVENT_PREFIX + 'play';
export const onPlaying = EVENT_PREFIX + 'playing';
export const onProgress = EVENT_PREFIX + 'progress';
export const onRatechange = EVENT_PREFIX + 'ratechange';
export const onReset = EVENT_PREFIX + 'reset';
export const onResize = EVENT_PREFIX + 'resize';
export const onScroll = EVENT_PREFIX + 'scroll';
export const onScrollend = EVENT_PREFIX + 'scrollend';
export const onSecuritypolicyviolation = EVENT_PREFIX + 'securitypolicyviolation';
export const onSeeked = EVENT_PREFIX + 'seeked';
export const onSeeking = EVENT_PREFIX + 'seeking';
export const onSelect = EVENT_PREFIX + 'select';
export const onSlotchange = EVENT_PREFIX + 'slotchange';
export const onStalled = EVENT_PREFIX + 'stalled';
export const onSubmit = EVENT_PREFIX + 'submit';
export const onSuspend = EVENT_PREFIX + 'suspend';
export const onTimeupdate = EVENT_PREFIX + 'timeupdate';
export const onVolumechange = EVENT_PREFIX + 'volumechange';
export const onWaiting = EVENT_PREFIX + 'waiting';
export const onSelectstart = EVENT_PREFIX + 'selectstart';
export const onSelectionchange = EVENT_PREFIX + 'selectionchange';
export const onToggle = EVENT_PREFIX + 'toggle';
export const onPointercancel = EVENT_PREFIX + 'pointercancel';
export const onPointerdown = EVENT_PREFIX + 'pointerdown';
export const onPointerup = EVENT_PREFIX + 'pointerup';
export const onPointermove = EVENT_PREFIX + 'pointermove';
export const onPointerout = EVENT_PREFIX + 'pointerout';
export const onPointerover = EVENT_PREFIX + 'pointerover';
export const onPointerenter = EVENT_PREFIX + 'pointerenter';
export const onPointerleave = EVENT_PREFIX + 'pointerleave';
export const onGotpointercapture = EVENT_PREFIX + 'gotpointercapture';
export const onLostpointercapture = EVENT_PREFIX + 'lostpointercapture';
export const onMozfullscreenchange = EVENT_PREFIX + 'mozfullscreenchange';
export const onMozfullscreenerror = EVENT_PREFIX + 'mozfullscreenerror';
export const onAnimationcancel = EVENT_PREFIX + 'animationcancel';
export const onAnimationend = EVENT_PREFIX + 'animationend';
export const onAnimationiteration = EVENT_PREFIX + 'animationiteration';
export const onAnimationstart = EVENT_PREFIX + 'animationstart';
export const onTransitioncancel = EVENT_PREFIX + 'transitioncancel';
export const onTransitionend = EVENT_PREFIX + 'transitionend';
export const onTransitionrun = EVENT_PREFIX + 'transitionrun';
export const onTransitionstart = EVENT_PREFIX + 'transitionstart';
export const onWebkitanimationend = EVENT_PREFIX + 'webkitanimationend';
export const onWebkitanimationiteration = EVENT_PREFIX + 'webkitanimationiteration';
export const onWebkitanimationstart = EVENT_PREFIX + 'webkitanimationstart';
export const onWebkittransitionend = EVENT_PREFIX + 'webkittransitionend';
export const onError = EVENT_PREFIX + 'error';
export const eventAttrs = [
onAbort,
onBlur,
onFocus,
onCancel,
onAuxclick,
onBeforeinput,
onBeforetoggle,
onCanplay,
onCanplaythrough,
onChange,
onClick,
onClose,
onContextmenu,
onCopy,
onCuechange,
onCut,
onDblclick,
onDrag,
onDragend,
onDragenter,
onDragexit,
onDragleave,
onDragover,
onDragstart,
onDrop,
onDurationchange,
onEmptied,
onEnded,
onFormdata,
onInput,
onInvalid,
onKeydown,
onKeypress,
onKeyup,
onLoad,
onLoadeddata,
onLoadedmetadata,
onLoadstart,
onMousedown,
onMouseenter,
onMouseleave,
onMousemove,
onMouseout,
onMouseover,
onMouseup,
onWheel,
onPaste,
onPause,
onPlay,
onPlaying,
onProgress,
onRatechange,
onReset,
onResize,
onScroll,
onScrollend,
onSecuritypolicyviolation,
onSeeked,
onSeeking,
onSelect,
onSlotchange,
onStalled,
onSubmit,
onSuspend,
onTimeupdate,
onVolumechange,
onWaiting,
onSelectstart,
onSelectionchange,
onToggle,
onPointercancel,
onPointerdown,
onPointerup,
onPointermove,
onPointerout,
onPointerover,
onPointerenter,
onPointerleave,
onGotpointercapture,
onLostpointercapture,
onMozfullscreenchange,
onMozfullscreenerror,
onAnimationcancel,
onAnimationend,
onAnimationiteration,
onAnimationstart,
onTransitioncancel,
onTransitionend,
onTransitionrun,
onTransitionstart,
onWebkitanimationend,
onWebkitanimationiteration,
onWebkitanimationstart,
onWebkittransitionend,
onError,
];
let selector = eventAttrs.map(attr => `[${CSS.escape(attr)}]`).join(', ');
const attrToProp = attr => `on${attr[EVENT_PREFIX_LENGTH].toUpperCase()}${attr.substring(EVENT_PREFIX_LENGTH + 1)}`;
export const eventToProp = event => EVENT_PREFIX + event;
export const hasEventAttribute = event => eventAttrs.includes(EVENT_PREFIX + event);
const isEventDataAttr = ([name]) => name.startsWith(DATA_PREFIX);
function _addListeners(el, { signal, attrFilter = EVENTS } = {}) {
const dataset = el.dataset;
for (const [attr, val] of Object.entries(dataset).filter(isEventDataAttr)) {
try {
const event = 'on' + attr.substring(DATA_PREFIX_LENGTH);
if (attrFilter.hasOwnProperty(event) && hasCallback(val)) {
el.addEventListener(event.substring(2).toLowerCase(), getCallback(val), {
passive: dataset.hasOwnProperty('aegisEventPassive'),
capture: dataset.hasOwnProperty('aegisEventCapture'),
once: dataset.hasOwnProperty('aegisEventOnce'),
signal: dataset.hasOwnProperty('aegisEventSignal') ? getSignal(dataset.aegisEventSignal) : signal,
});
}
} catch(err) {
reportError(err);
}
}
}
const observer = new MutationObserver(records => {
records.forEach(record => {
switch(record.type) {
case 'childList':
[...record.addedNodes]
.filter(node => node.nodeType === Node.ELEMENT_NODE)
.forEach(node => attachListeners(node));
break;
case 'attributes':
if (typeof record.oldValue === 'string' && hasCallback(record.oldValue)) {
record.target.removeEventListener(
record.attributeName.substring(EVENT_PREFIX_LENGTH),
getCallback(record.oldValue), {
once: record.target.hasAttribute(once),
capture: record.target.hasAttribute(capture),
passive: record.target.hasAttribute(passive),
}
);
}
if (
record.target.hasAttribute(record.attributeName)
&& hasCallback(record.target.getAttribute(record.attributeName))
) {
record.target.addEventListener(
record.attributeName.substring(EVENT_PREFIX_LENGTH),
getCallback(record.target.getAttribute(record.attributeName)), {
once: record.target.hasAttribute(once),
capture: record.target.hasAttribute(capture),
passive: record.target.hasAttribute(passive),
signal: record.target.hasAttribute(signal) ? getSignal(record.target.getAttribute(signal)) : undefined,
}
);
}
break;
}
});
});
export const EVENTS = {
onAbort,
onBlur,
onFocus,
onCancel,
onAuxclick,
onBeforeinput,
onBeforetoggle,
onCanplay,
onCanplaythrough,
onChange,
onClick,
onClose,
onContextmenu,
onCopy,
onCuechange,
onCut,
onDblclick,
onDrag,
onDragend,
onDragenter,
onDragexit,
onDragleave,
onDragover,
onDragstart,
onDrop,
onDurationchange,
onEmptied,
onEnded,
onFormdata,
onInput,
onInvalid,
onKeydown,
onKeypress,
onKeyup,
onLoad,
onLoadeddata,
onLoadedmetadata,
onLoadstart,
onMousedown,
onMouseenter,
onMouseleave,
onMousemove,
onMouseout,
onMouseover,
onMouseup,
onWheel,
onPaste,
onPause,
onPlay,
onPlaying,
onProgress,
onRatechange,
onReset,
onResize,
onScroll,
onScrollend,
onSecuritypolicyviolation,
onSeeked,
onSeeking,
onSelect,
onSlotchange,
onStalled,
onSubmit,
onSuspend,
onTimeupdate,
onVolumechange,
onWaiting,
onSelectstart,
onSelectionchange,
onToggle,
onPointercancel,
onPointerdown,
onPointerup,
onPointermove,
onPointerout,
onPointerover,
onPointerenter,
onPointerleave,
onGotpointercapture,
onLostpointercapture,
onMozfullscreenchange,
onMozfullscreenerror,
onAnimationcancel,
onAnimationend,
onAnimationiteration,
onAnimationstart,
onTransitioncancel,
onTransitionend,
onTransitionrun,
onTransitionstart,
onWebkitanimationend,
onWebkitanimationiteration,
onWebkitanimationstart,
onWebkittransitionend,
onError,
once,
passive,
capture,
};
/**
* Register an attribute to observe for adding/removing event listeners
*
* @param {string} attr Name of the attribute to observe
* @param {object} options
* @param {boolean} [options.addListeners=false] Whether or not to automatically add listeners
* @param {Document|Element} [options.base=document.body] Root node to observe
* @param {AbortSignal} [options.signal] An abort signal to remove any listeners when aborted
* @returns {string} The resulting `data-*` attribute name
*/
export function registerEventAttribute(attr, {
addListeners = false,
base = document.body,
signal,
} = {}) {
const fullAttr = EVENT_PREFIX + attr.toLowerCase();
if (! eventAttrs.includes(fullAttr)) {
const sel = `[${CSS.escape(fullAttr)}]`;
const prop = attrToProp(fullAttr);
eventAttrs.push(fullAttr);
EVENTS[prop] = fullAttr;
selector += `, ${sel}`;
if (addListeners) {
requestAnimationFrame(() => {
const config = { attrFilter: { [prop]: sel }, signal };
[base, ...base.querySelectorAll(sel)].forEach(el => _addListeners(el, config));
});
}
}
return fullAttr;
}
/**
* Registers an `AbortController` in the controller registry and returns the key for it
*
* @param {AbortController} controller
* @returns {string} The randomly generated key with which the controller is registered
* @throws {TypeError} If controller is not an `AbortController`
* @throws {Error} Any `reason` if controller is already aborted
*/
export function registerController(controller) {
if (! (controller instanceof AbortController)) {
throw new TypeError('Controller is not an `AbortSignal.');
} else if (controller.signal.aborted) {
throw controller.signal.reason;
} else if (typeof controller.signal[controllerSymbol] === 'string') {
return controller.signal[controllerSymbol];
} else {
const key = 'aegis:event:controller:' + crypto.randomUUID();
Object.defineProperty(controller.signal, controllerSymbol, { value: key, writable: false, enumerable: false });
controllerRegistry.set(key, controller);
controller.signal.addEventListener('abort', unregisterController, { once: true });
return key;
}
}
/**
* Removes a controller from the registry
*
* @param {AbortController|AbortSignal|string} key The registed key or the controller or signal it corresponds to
* @returns {boolean} Whether or not the controller was successfully unregistered
*/
export function unregisterController(key) {
if (key instanceof AbortController) {
return controllerRegistry.delete(key.signal[controllerSymbol]);
} else if (key instanceof AbortSignal) {
return controllerRegistry.delete(key[controllerSymbol]);
} else {
return controllerRegistry.delete(key);
}
}
/**
* Creates and registers an `AbortController` in the controller registry and returns the key for it
*
* @param {object} options
* @param {AbortSignal} [options.signal] An optional `AbortSignal` to externally abort the controller with
* @returns {string} The randomly generated key with which the controller is registered
*/
export function createController({ signal } = {}) {
const controller = new AbortController();
if (signal instanceof AbortSignal) {
signal.addEventListener('abort', ({ target }) => controller.abort(target.reason), { signal: controller.signal});
}
return registerController(controller);
}
/**
* Get a registetd controller from the registry
*
* @param {string} key Generated key with which the controller was registered
* @returns {AbortController|void} Any registered controller, if any
*/
export const getController = key => controllerRegistry.get(key);
export function abortController(key, reason) {
const controller = getController(key);
if (! (controller instanceof AbortController)) {
return false;
} else if (typeof reason === 'string') {
controller.abort(new Error(reason));
return true;
} else {
controller.abort(reason);
return true;
}
}
/**
* Register an `AbortSignal` to be used in declarative HTML as a value for `data-aegis-event-signal`
*
* @param {AbortSignal} signal The signal to register
* @returns {string} The registered key
* @throws {TypeError} Thrown if not an `AbortSignal`
*/
export function registerSignal(signal) {
if (! (signal instanceof AbortSignal)) {
throw new TypeError('Signal must be an `AbortSignal`.');
} else if (typeof signal[signalSymbol] === 'string') {
return signal[signalSymbol];
} else {
const key = 'aegis:event:signal:' + crypto.randomUUID();
Object.defineProperty(signal, signalSymbol, { value: key, writable: false, enumerable: false });
signalRegistry.set(key, signal);
signal.addEventListener('abort', ({ target }) => unregisterSignal(target[signalSymbol]), { once: true });
return key;
}
}
/**
* Gets and `AbortSignal` from the registry
*
* @param {string} key The registered key for the signal
* @returns {AbortSignal|void} The corresponding `AbortSignal`, if any
*/
export const getSignal = key => signalRegistry.get(key);
/**
* Removes an `AbortSignal` from the registry
*
* @param {AbortSignal|string} signal An `AbortSignal` or the registered key for one
* @returns {boolean} Whether or not the signal was sucessfully unregistered
* @throws {TypeError} Throws if `signal` is not an `AbortSignal` or the key for a registered signal
*/
export function unregisterSignal(signal) {
if (signal instanceof AbortSignal) {
return signalRegistry.delete(signal[signalSymbol]);
} else if (typeof signal === 'string') {
return signalRegistry.delete(signal);
} else {
throw new TypeError('Signal must be an `AbortSignal` or registered key/attribute.');
}
}
/**
* Add listeners to an element and its children, matching a generated query based on registered attributes
*
* @param {Element|Document} target Root node to add listeners from
* @param {object} options
* @param {AbortSignal} [options.signal] Optional signal to remove event listeners
* @returns {Element|Document} Returns the passed target node
*/
export function attachListeners(target, { signal } = {}) {
const nodes = target instanceof Element && target.matches(selector)
? [target, ...target.querySelectorAll(selector)]
: target.querySelectorAll(selector);
nodes.forEach(el => _addListeners(el, { signal }));
return target;
}
/**
* Add a node to the `MutationObserver` to observe attributes and add/remove event listeners
*
* @param {Document|Element} root Element to observe attributes on
*/
export function observeEvents(root = document) {
attachListeners(root);
observer.observe(root, {
subtree: true,
childList:true,
attributes: true,
attributeOldValue: true,
attributeFilter: eventAttrs,
});
}
/**
* Disconnects the `MutationObserver`, disabling observing of all attribute changes
*
* @returns {void}
*/
export const disconnectEventsObserver = () => observer.disconnect();
/**
* Register a global error handler callback
*
* @param {Function} callback Callback to register as a global error handler
* @param {EventInit} config Typical event listener config object
*/
export function setGlobalErrorHandler(callback, { capture, once, passive, signal } = {}) {
if (callback instanceof Function) {
globalThis.addEventListener('error', callback, { capture, once, passive, signal });
} else {
throw new TypeError('Callback is not a function.');
}
}