mirror of
https://github.com/jaandrle/deka-dom-el
synced 2025-04-06 05:35:54 +02:00
⚡ todos
This commit is contained in:
parent
bc2398a005
commit
104837500d
@ -36,11 +36,6 @@ const references= {
|
|||||||
mdn_mutation: {
|
mdn_mutation: {
|
||||||
href: "https://developer.mozilla.org/en-US/docs/Web/API/MutationObserver",
|
href: "https://developer.mozilla.org/en-US/docs/Web/API/MutationObserver",
|
||||||
},
|
},
|
||||||
/** TODO Readding the element to the DOM fix by Vue */
|
|
||||||
vue_fix: {
|
|
||||||
title: t`Vue and Web Components, lifecycle implementation readding the element to the DOM`,
|
|
||||||
href: "https://vuejs.org/guide/extras/web-components.html#lifecycle",
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
/** @param {import("./types.d.ts").PageAttrs} attrs */
|
/** @param {import("./types.d.ts").PageAttrs} attrs */
|
||||||
export function page({ pkg, info }){
|
export function page({ pkg, info }){
|
||||||
|
@ -214,6 +214,7 @@ function connectionsChangesObserverConstructor(){
|
|||||||
|
|
||||||
const ls= store.get(element);
|
const ls= store.get(element);
|
||||||
if(!ls.length_d) continue;
|
if(!ls.length_d) continue;
|
||||||
|
// support for S.el, see https://vuejs.org/guide/extras/web-components.html#lifecycle
|
||||||
(globalThis.queueMicrotask || setTimeout)(dispatchRemove(element));
|
(globalThis.queueMicrotask || setTimeout)(dispatchRemove(element));
|
||||||
out= true;
|
out= true;
|
||||||
}
|
}
|
||||||
|
@ -47,7 +47,6 @@ import { c_ch_o } from "./events-observer.js";
|
|||||||
const lifeOptions= obj=> oAssign({}, typeof obj==="object" ? obj : null, { once: true });
|
const lifeOptions= obj=> oAssign({}, typeof obj==="object" ? obj : null, { once: true });
|
||||||
|
|
||||||
//TODO: cleanUp when event before abort?
|
//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
|
* Creates a function to register connected lifecycle event listeners
|
||||||
|
@ -170,7 +170,6 @@ export function cache(store= oCreate()){
|
|||||||
/**
|
/**
|
||||||
* Creates a reactive DOM element that re-renders when signal changes
|
* Creates a reactive DOM element that re-renders when signal changes
|
||||||
*
|
*
|
||||||
* @TODO Third argument for handle `cache_tmp` in re-render
|
|
||||||
* @param {Object} s - Signal object to watch
|
* @param {Object} s - Signal object to watch
|
||||||
* @param {Function} map - Function mapping signal value to DOM elements
|
* @param {Function} map - Function mapping signal value to DOM elements
|
||||||
* @returns {DocumentFragment} Fragment containing reactive elements
|
* @returns {DocumentFragment} Fragment containing reactive elements
|
||||||
|
Loading…
x
Reference in New Issue
Block a user