1
0
mirror of https://github.com/jaandrle/deka-dom-el synced 2025-04-05 13:15:53 +02:00

todos

This commit is contained in:
Jan Andrle 2025-03-10 16:42:41 +01:00
parent bc2398a005
commit 104837500d
Signed by: jaandrle
GPG Key ID: B3A25AED155AFFAB
4 changed files with 1 additions and 7 deletions

View File

@ -36,11 +36,6 @@ const references= {
mdn_mutation: {
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 */
export function page({ pkg, info }){

View File

@ -214,6 +214,7 @@ function connectionsChangesObserverConstructor(){
const ls= store.get(element);
if(!ls.length_d) continue;
// support for S.el, see https://vuejs.org/guide/extras/web-components.html#lifecycle
(globalThis.queueMicrotask || setTimeout)(dispatchRemove(element));
out= true;
}

View File

@ -47,7 +47,6 @@ import { c_ch_o } from "./events-observer.js";
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

View File

@ -170,7 +170,6 @@ export function cache(store= oCreate()){
/**
* 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 {Function} map - Function mapping signal value to DOM elements
* @returns {DocumentFragment} Fragment containing reactive elements