mirror of
https://github.com/jaandrle/deka-dom-el
synced 2025-04-02 20:15:53 +02:00
* ⚡ 🎉 * ⚡ wip * 🔤 * ⚡ wip * ⚡ wip * ⚡ Refatc signals to .get/.set syntax #26 * 🐛 Better types for on* * 🔤 * 🔤 * 🐛 coumputed signal * 🔤 ⚡ Docs UI/UX * ⚡ 🔤 UI enhancements * ⚡ (bs) (un)min * 🔤 adds debugging * 🔤 ssr * 🔤 * ⚡ bs/lint * 🔤 * 🔤 UI * 🔤 updates texts * 🔤UI * ⚡ dispatch * 🔤 events * 🔤 elements * 🔤 intro * 🐛 fixes completitions for el with components * 🐛 wrong file(s) in git * 🔤 logo * 🐛 🔤 types 3ps * 🔤 ui/ux * 🔤 * 🔤 * 🔤 scopes * 🔤 * 🔤 ui/ux * 🔤 * ⚡ issignal * 🔤 improvemens * ⚡ irelands * 🔤 UI/UX/wording * 🐛 npx-hint [Scrollable region must have keyboard access | Axe Rules | Deque University | Deque Systems](https://dequeuniversity.com/rules/axe/4.10/scrollable-region-focusable?application=axeAPI) * 🔤 logos * ⚡ better? dts builds * Update README.md
71 lines
2.1 KiB
JavaScript
71 lines
2.1 KiB
JavaScript
import { el, on, customElementRender, customElementWithDDE, scope, simulateSlots } from "../../index.js";
|
|
import { S } from "../../signals.js";
|
|
|
|
/**
|
|
* Compatible with `npx -y web-component-analyzer examples/components/webComponent.js`
|
|
* @element custom-test
|
|
* */
|
|
export class CustomHTMLTestElement extends HTMLElement{
|
|
static tagName= "custom-test";
|
|
static get observedAttributes(){
|
|
return [ "name", "pre-name" ];
|
|
}
|
|
connectedCallback(){
|
|
if(!this.hasAttribute("pre-name")) this.setAttribute("pre-name", "default");
|
|
customElementRender(this.attachShadow({ mode: "open" }), this.render, this.attributes)
|
|
}
|
|
|
|
attributes(element){
|
|
const observed= S.observedAttributes(element);
|
|
return Object.assign({ test: element.test }, observed);
|
|
}
|
|
render({ name, preName, test }){
|
|
console.log(scope.state);
|
|
scope.host(
|
|
on.connected(console.log),
|
|
on.attributeChanged(e=> console.log(e)),
|
|
on.disconnected(()=> console.log(CustomHTMLTestElement))
|
|
);
|
|
const text= text=> el().append(
|
|
el("#text", text),
|
|
" | "
|
|
);
|
|
return el("p").append(
|
|
text(test),
|
|
text(name),
|
|
text(preName),
|
|
el("button", { type: "button", textContent: "pre-name", onclick: ()=> preName.set("Ahoj") }),
|
|
" | ",
|
|
el("slot", { className: "test", name: "test" }),
|
|
);
|
|
}
|
|
test= "A";
|
|
|
|
get name(){ return this.getAttribute("name"); }
|
|
set name(value){ this.setAttribute("name", value); }
|
|
/** @attr pre-name */
|
|
get preName(){ return this.getAttribute("pre-name"); }
|
|
set preName(value){ this.setAttribute("pre-name", value); }
|
|
}
|
|
customElementWithDDE(CustomHTMLTestElement);
|
|
customElements.define(CustomHTMLTestElement.tagName, CustomHTMLTestElement);
|
|
|
|
export class CustomSlottingHTMLElement extends HTMLElement{
|
|
static tagName= "custom-slotting";
|
|
render(){
|
|
return simulateSlots(this, el().append(
|
|
el("p").append(
|
|
"Ahoj ", el("slot", { name: "name", className: "name", textContent: "World" })
|
|
),
|
|
el("p").append(
|
|
"BTW ", el("slot")
|
|
)
|
|
));
|
|
}
|
|
connectedCallback(){
|
|
customElementRender(this, this.render);
|
|
}
|
|
}
|
|
customElementWithDDE(CustomSlottingHTMLElement);
|
|
customElements.define(CustomSlottingHTMLElement.tagName, CustomSlottingHTMLElement);
|