diff --git a/README.md b/README.md index d0e3051..eae793f 100644 --- a/README.md +++ b/README.md @@ -8,12 +8,17 @@ ```javascript document.body.append( - el(HelloWorldComponent) + el(HelloWorldComponent, { initial: "🚀" }) ); -function HelloWorldComponent(){ +/** @typedef {"🎉" | "🚀"} Emoji */ +/** @param {{ initial: Emoji }} attrs */ +function HelloWorldComponent({ initial }){ const clicks= S(0); - const emoji= S("🚀"); - const isSelected= el=> (el.selected= el.value===emoji()); + const emoji= S(initial); + /** @param {HTMLOptionElement} el */ + const isSelected= el=> (el.selected= el.value===initial); + // @ts-expect-error 2339: The has only two options with {@link Emoji} + const onChange= on("change", event=> emoji(event.target.value)); + return el().append( - el("p", S(()=> - "Hello World "+"🎉".repeat(clicksS()) // B - )), - el("button", { - type: "button", - onclick: ()=> clicksS(clicksS()+1), // C - textContent: "Fire", - }) - ) + el("p", { + textContent: S(() => `Hello World ${emoji().repeat(clicks())}`), + className: "example", + ariaLive: "polite", //OR ariaset: { live: "polite" }, + dataset: { example: "Example" }, //OR dataExample: "Example", + }), + el("button", + { textContent: "Fire", type: "button" }, + on("click", ()=> clicks(clicks() + 1)), + on("keyup", ()=> clicks(clicks() - 2)), + ), + el("select", null, onChange).append( + el(OptionComponent, "🎉", isSelected),//OR { textContent: "🎉" } + el(OptionComponent, "🚀", isSelected),//OR { textContent: "🚀" } + ) + ); +} +function OptionComponent({ textContent }){ + return el("option", { value: textContent, textContent }) } diff --git a/docs/components/mnemonic/customElement-init.js b/docs/components/mnemonic/customElement-init.js index d8bd5af..301f3e2 100644 --- a/docs/components/mnemonic/customElement-init.js +++ b/docs/components/mnemonic/customElement-init.js @@ -4,8 +4,8 @@ import { mnemonicUl } from "../mnemonicUl.html.js"; export function mnemonic(){ return mnemonicUl().append( el("li").append( - el("code", "customElementRender(, , [, ])"), - " — use function to render DOM structure for given ", + el("code", "customElementRender(, [, ])"), + " — use function to render DOM structure for given custom element (or its Shadow DOM)", ), el("li").append( el("code", "customElementWithDDE()"), @@ -24,7 +24,7 @@ export function mnemonic(){ " — convert lifecycle methods to events, can be also used as decorator", ), el("li").append( - el("code", "simulateSlots(, [, ])"), + el("code", "simulateSlots(, )"), " — simulate slots for Custom Elements without shadow DOM", ), el("li").append( diff --git a/index.d.ts b/index.d.ts index 8f420a7..63effa8 100644 --- a/index.d.ts +++ b/index.d.ts @@ -227,7 +227,6 @@ export function customElementRender< EL extends HTMLElement, P extends any = Record> >( - custom_element: EL, target: ShadowRoot | EL, render: (props: P)=> SupportedElement | DocumentFragment, props?: P | ((el: EL)=> P) diff --git a/src/dom.js b/src/dom.js index 4ad5b39..0daccff 100644 --- a/src/dom.js +++ b/src/dom.js @@ -1,6 +1,7 @@ import { signals } from "./signals-common.js"; import { enviroment as env } from './dom-common.js'; +//TODO: add type, docs ≡ make it public export function queue(promise){ return env.q(promise); } /** @type {{ scope: object, prevent: boolean, host: function }[]} */ const scopes= [ { diff --git a/src/events.js b/src/events.js index 392caaf..282f13d 100644 --- a/src/events.js +++ b/src/events.js @@ -8,6 +8,7 @@ export function dispatchEvent(name, options, host){ d.unshift(element); element= typeof host==="function"? host() : host; } + //TODO: what about re-emmitting? const event= d.length ? new CustomEvent(name, Object.assign({ detail: d[0] }, options)) : new Event(name, options); return element.dispatchEvent(event); };