mirror of
https://github.com/jaandrle/deka-dom-el
synced 2025-04-03 04:25:53 +02:00
🔤 Improves and updates docs
- customElementRender - introduction example
This commit is contained in:
parent
3d0aeafc5c
commit
e81ac9a3e5
21
README.md
21
README.md
@ -8,12 +8,17 @@
|
|||||||
|
|
||||||
```javascript
|
```javascript
|
||||||
document.body.append(
|
document.body.append(
|
||||||
el(HelloWorldComponent)
|
el(HelloWorldComponent, { initial: "🚀" })
|
||||||
);
|
);
|
||||||
function HelloWorldComponent(){
|
/** @typedef {"🎉" | "🚀"} Emoji */
|
||||||
|
/** @param {{ initial: Emoji }} attrs */
|
||||||
|
function HelloWorldComponent({ initial }){
|
||||||
const clicks= S(0);
|
const clicks= S(0);
|
||||||
const emoji= S("🚀");
|
const emoji= S(initial);
|
||||||
const isSelected= el=> (el.selected= el.value===emoji());
|
/** @param {HTMLOptionElement} el */
|
||||||
|
const isSelected= el=> (el.selected= el.value===initial);
|
||||||
|
// @ts-expect-error 2339: The <select> has only two options with {@link Emoji}
|
||||||
|
const onChange= on("change", event=> emoji(event.target.value));
|
||||||
|
|
||||||
return el().append(
|
return el().append(
|
||||||
el("p", {
|
el("p", {
|
||||||
@ -27,11 +32,9 @@ function HelloWorldComponent(){
|
|||||||
on("click", ()=> clicks(clicks() + 1)),
|
on("click", ()=> clicks(clicks() + 1)),
|
||||||
on("keyup", ()=> clicks(clicks() - 2)),
|
on("keyup", ()=> clicks(clicks() - 2)),
|
||||||
),
|
),
|
||||||
el("select", {
|
el("select", null, onChange).append(
|
||||||
onchange: event=> emoji(event.target.value),
|
el(OptionComponent, "🎉", isSelected),//OR { textContent: "🎉" }
|
||||||
}).append(
|
el(OptionComponent, "🚀", isSelected),//OR { textContent: "🚀" }
|
||||||
el(OptionComponent, "🎉", isSelected),
|
|
||||||
el(OptionComponent, "🚀", isSelected),
|
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
1
dist/esm-with-signals.d.ts
vendored
1
dist/esm-with-signals.d.ts
vendored
@ -227,7 +227,6 @@ export function customElementRender<
|
|||||||
EL extends HTMLElement,
|
EL extends HTMLElement,
|
||||||
P extends any = Record<string, string | ddeSignal<string>>
|
P extends any = Record<string, string | ddeSignal<string>>
|
||||||
>(
|
>(
|
||||||
custom_element: EL,
|
|
||||||
target: ShadowRoot | EL,
|
target: ShadowRoot | EL,
|
||||||
render: (props: P)=> SupportedElement | DocumentFragment,
|
render: (props: P)=> SupportedElement | DocumentFragment,
|
||||||
props?: P | ((el: EL)=> P)
|
props?: P | ((el: EL)=> P)
|
||||||
|
1
dist/esm.d.ts
vendored
1
dist/esm.d.ts
vendored
@ -227,7 +227,6 @@ export function customElementRender<
|
|||||||
EL extends HTMLElement,
|
EL extends HTMLElement,
|
||||||
P extends any = Record<string, string | ddeSignal<string>>
|
P extends any = Record<string, string | ddeSignal<string>>
|
||||||
>(
|
>(
|
||||||
custom_element: EL,
|
|
||||||
target: ShadowRoot | EL,
|
target: ShadowRoot | EL,
|
||||||
render: (props: P)=> SupportedElement | DocumentFragment,
|
render: (props: P)=> SupportedElement | DocumentFragment,
|
||||||
props?: P | ((el: EL)=> P)
|
props?: P | ((el: EL)=> P)
|
||||||
|
@ -7,7 +7,6 @@ export class HTMLCustomElement extends HTMLElement{
|
|||||||
static observedAttributes= [ "attr" ];
|
static observedAttributes= [ "attr" ];
|
||||||
connectedCallback(){
|
connectedCallback(){
|
||||||
customElementRender(
|
customElementRender(
|
||||||
this,
|
|
||||||
this.attachShadow({ mode: "open" }),
|
this.attachShadow({ mode: "open" }),
|
||||||
ddeComponent
|
ddeComponent
|
||||||
);
|
);
|
||||||
|
@ -11,7 +11,6 @@ export class HTMLCustomElement extends HTMLElement{
|
|||||||
connectedCallback(){
|
connectedCallback(){
|
||||||
console.log(observedAttributes(this));
|
console.log(observedAttributes(this));
|
||||||
customElementRender(
|
customElementRender(
|
||||||
this,
|
|
||||||
this.attachShadow({ mode: "open" }),
|
this.attachShadow({ mode: "open" }),
|
||||||
ddeComponent,
|
ddeComponent,
|
||||||
S.observedAttributes
|
S.observedAttributes
|
||||||
|
@ -17,11 +17,7 @@ function ddeComponent(){
|
|||||||
export class A extends HTMLElement{
|
export class A extends HTMLElement{
|
||||||
static tagName= "custom-element-without";
|
static tagName= "custom-element-without";
|
||||||
connectedCallback(){
|
connectedCallback(){
|
||||||
customElementRender(
|
customElementRender(this, ddeComponent);
|
||||||
this,
|
|
||||||
this,
|
|
||||||
ddeComponent
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
customElementWithDDE(A);
|
customElementWithDDE(A);
|
||||||
@ -30,7 +26,6 @@ export class B extends HTMLElement{
|
|||||||
static tagName= "custom-element-open";
|
static tagName= "custom-element-open";
|
||||||
connectedCallback(){
|
connectedCallback(){
|
||||||
customElementRender(
|
customElementRender(
|
||||||
this,
|
|
||||||
this.attachShadow({ mode: "open" }),
|
this.attachShadow({ mode: "open" }),
|
||||||
ddeComponent
|
ddeComponent
|
||||||
);
|
);
|
||||||
@ -42,7 +37,6 @@ export class C extends HTMLElement{
|
|||||||
static tagName= "custom-element-closed";
|
static tagName= "custom-element-closed";
|
||||||
connectedCallback(){
|
connectedCallback(){
|
||||||
customElementRender(
|
customElementRender(
|
||||||
this,
|
|
||||||
this.attachShadow({ mode: "closed" }),
|
this.attachShadow({ mode: "closed" }),
|
||||||
ddeComponent
|
ddeComponent
|
||||||
);
|
);
|
||||||
|
@ -8,7 +8,7 @@ export class HTMLCustomElement extends HTMLElement{
|
|||||||
static tagName= "custom-slotting";
|
static tagName= "custom-slotting";
|
||||||
connectedCallback(){
|
connectedCallback(){
|
||||||
const c= ()=> simulateSlots(this, ddeComponent());
|
const c= ()=> simulateSlots(this, ddeComponent());
|
||||||
customElementRender(this, this, c);
|
customElementRender(this, c);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
customElementWithDDE(HTMLCustomElement);
|
customElementWithDDE(HTMLCustomElement);
|
||||||
|
@ -1,18 +1,36 @@
|
|||||||
import { el } from "deka-dom-el";
|
import { el, on } from "deka-dom-el";
|
||||||
import { S } from "deka-dom-el/signals";
|
import { S } from "deka-dom-el/signals";
|
||||||
document.body.append(
|
document.body.append(
|
||||||
el(HelloWorldComponent)
|
el(HelloWorldComponent, { initial: "🚀" })
|
||||||
);
|
);
|
||||||
function HelloWorldComponent(){
|
/** @typedef {"🎉" | "🚀"} Emoji */
|
||||||
const clicksS= S(0); // A
|
/** @param {{ initial: Emoji }} attrs */
|
||||||
|
function HelloWorldComponent({ initial }){
|
||||||
|
const clicks= S(0);
|
||||||
|
const emoji= S(initial);
|
||||||
|
/** @param {HTMLOptionElement} el */
|
||||||
|
const isSelected= el=> (el.selected= el.value===initial);
|
||||||
|
// @ts-expect-error 2339: The <select> has only two options with {@link Emoji}
|
||||||
|
const onChange= on("change", event=> emoji(event.target.value));
|
||||||
|
|
||||||
return el().append(
|
return el().append(
|
||||||
el("p", S(()=>
|
el("p", {
|
||||||
"Hello World "+"🎉".repeat(clicksS()) // B
|
textContent: S(() => `Hello World ${emoji().repeat(clicks())}`),
|
||||||
)),
|
className: "example",
|
||||||
el("button", {
|
ariaLive: "polite", //OR ariaset: { live: "polite" },
|
||||||
type: "button",
|
dataset: { example: "Example" }, //OR dataExample: "Example",
|
||||||
onclick: ()=> clicksS(clicksS()+1), // C
|
}),
|
||||||
textContent: "Fire",
|
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 })
|
||||||
}
|
}
|
||||||
|
@ -4,8 +4,8 @@ import { mnemonicUl } from "../mnemonicUl.html.js";
|
|||||||
export function mnemonic(){
|
export function mnemonic(){
|
||||||
return mnemonicUl().append(
|
return mnemonicUl().append(
|
||||||
el("li").append(
|
el("li").append(
|
||||||
el("code", "customElementRender(<custom-element>, <connect-target>, <render-function>[, <properties>])"),
|
el("code", "customElementRender(<connect-target>, <render-function>[, <properties>])"),
|
||||||
" — use function to render DOM structure for given <custom-element>",
|
" — use function to render DOM structure for given custom element (or its Shadow DOM)",
|
||||||
),
|
),
|
||||||
el("li").append(
|
el("li").append(
|
||||||
el("code", "customElementWithDDE(<custom-element>)"),
|
el("code", "customElementWithDDE(<custom-element>)"),
|
||||||
@ -24,7 +24,7 @@ export function mnemonic(){
|
|||||||
" — convert lifecycle methods to events, can be also used as decorator",
|
" — convert lifecycle methods to events, can be also used as decorator",
|
||||||
),
|
),
|
||||||
el("li").append(
|
el("li").append(
|
||||||
el("code", "simulateSlots(<class-instance>, <body>[, <mapper>])"),
|
el("code", "simulateSlots(<class-instance>, <body>)"),
|
||||||
" — simulate slots for Custom Elements without shadow DOM",
|
" — simulate slots for Custom Elements without shadow DOM",
|
||||||
),
|
),
|
||||||
el("li").append(
|
el("li").append(
|
||||||
|
1
index.d.ts
vendored
1
index.d.ts
vendored
@ -227,7 +227,6 @@ export function customElementRender<
|
|||||||
EL extends HTMLElement,
|
EL extends HTMLElement,
|
||||||
P extends any = Record<string, string | ddeSignal<string>>
|
P extends any = Record<string, string | ddeSignal<string>>
|
||||||
>(
|
>(
|
||||||
custom_element: EL,
|
|
||||||
target: ShadowRoot | EL,
|
target: ShadowRoot | EL,
|
||||||
render: (props: P)=> SupportedElement | DocumentFragment,
|
render: (props: P)=> SupportedElement | DocumentFragment,
|
||||||
props?: P | ((el: EL)=> P)
|
props?: P | ((el: EL)=> P)
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
import { signals } from "./signals-common.js";
|
import { signals } from "./signals-common.js";
|
||||||
import { enviroment as env } from './dom-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); }
|
export function queue(promise){ return env.q(promise); }
|
||||||
/** @type {{ scope: object, prevent: boolean, host: function }[]} */
|
/** @type {{ scope: object, prevent: boolean, host: function }[]} */
|
||||||
const scopes= [ {
|
const scopes= [ {
|
||||||
|
@ -8,6 +8,7 @@ export function dispatchEvent(name, options, host){
|
|||||||
d.unshift(element);
|
d.unshift(element);
|
||||||
element= typeof host==="function"? host() : host;
|
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);
|
const event= d.length ? new CustomEvent(name, Object.assign({ detail: d[0] }, options)) : new Event(name, options);
|
||||||
return element.dispatchEvent(event);
|
return element.dispatchEvent(event);
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user