mirror of
https://github.com/jaandrle/deka-dom-el
synced 2025-04-06 05:35:54 +02:00
90 lines
2.9 KiB
JavaScript
90 lines
2.9 KiB
JavaScript
import { keyLTE, evc, evd } from './dom-common.js';
|
|
import { oAssign, onAbort } from './helpers.js';
|
|
|
|
/**
|
|
* Creates a function to dispatch events on elements
|
|
*
|
|
* @param {string} name - Event name
|
|
* @param {Object} [options] - Event options
|
|
* @param {Element|Function} [host] - Host element or function returning host element
|
|
* @returns {Function} Function that dispatches the event
|
|
*/
|
|
export function dispatchEvent(name, options, host){
|
|
if(typeof options==="function"){ host= options; options= null; }
|
|
if(!options) options= {};
|
|
return function dispatch(element, ...d){
|
|
if(host){
|
|
d.unshift(element);
|
|
element= typeof host==="function"? host() : host;
|
|
}
|
|
//TODO: what about re-emmitting?
|
|
const event= d.length ? new CustomEvent(name, oAssign({ detail: d[0] }, options)) : new Event(name, options);
|
|
return element.dispatchEvent(event);
|
|
};
|
|
}
|
|
|
|
/**
|
|
* Creates a function to register event listeners on elements
|
|
*
|
|
* @param {string} event - Event name
|
|
* @param {Function} listener - Event handler
|
|
* @param {Object} [options] - Event listener options
|
|
* @returns {Function} Function that registers the listener
|
|
*/
|
|
export function on(event, listener, options){
|
|
return function registerElement(element){
|
|
element.addEventListener(event, listener, options);
|
|
return element;
|
|
};
|
|
}
|
|
|
|
import { c_ch_o } from "./events-observer.js";
|
|
|
|
/**
|
|
* Prepares lifecycle event options with once:true default
|
|
* @private
|
|
*/
|
|
const lifeOptions= obj=> oAssign({}, typeof obj==="object" ? obj : null, { once: true });
|
|
|
|
//TODO: cleanUp when event before abort?
|
|
//TODO: docs (e.g.) https://nolanlawson.com/2024/01/13/web-component-gotcha-constructor-vs-connectedcallback/
|
|
|
|
/**
|
|
* Creates a function to register connected lifecycle event listeners
|
|
*
|
|
* @param {Function} listener - Event handler
|
|
* @param {Object} [options] - Event listener options
|
|
* @returns {Function} Function that registers the connected listener
|
|
*/
|
|
on.connected= function(listener, options){
|
|
options= lifeOptions(options);
|
|
return function registerElement(element){
|
|
element.addEventListener(evc, listener, options);
|
|
if(element[keyLTE]) return element;
|
|
if(element.isConnected) return ( element.dispatchEvent(new Event(evc)), element );
|
|
|
|
const c= onAbort(options.signal, ()=> c_ch_o.offConnected(element, listener));
|
|
if(c) c_ch_o.onConnected(element, listener);
|
|
return element;
|
|
};
|
|
};
|
|
|
|
/**
|
|
* Creates a function to register disconnected lifecycle event listeners
|
|
*
|
|
* @param {Function} listener - Event handler
|
|
* @param {Object} [options] - Event listener options
|
|
* @returns {Function} Function that registers the disconnected listener
|
|
*/
|
|
on.disconnected= function(listener, options){
|
|
options= lifeOptions(options);
|
|
return function registerElement(element){
|
|
element.addEventListener(evd, listener, options);
|
|
if(element[keyLTE]) return element;
|
|
|
|
const c= onAbort(options.signal, ()=> c_ch_o.offDisconnected(element, listener));
|
|
if(c) c_ch_o.onDisconnected(element, listener);
|
|
return element;
|
|
};
|
|
};
|