1
0
mirror of https://github.com/jaandrle/deka-dom-el synced 2024-11-22 16:55:23 +01:00
deka-dom-el/docs_src/p06-customElement.html.js

109 lines
5.5 KiB
JavaScript
Raw Normal View History

2024-06-03 16:20:42 +02:00
import { T, t } from "./utils/index.js";
export const info= {
2024-06-04 16:00:37 +02:00
title: t`Web Components`,
2024-06-03 16:20:42 +02:00
description: t`Using custom elements in combinantion with DDE`,
};
import { el } from "deka-dom-el";
import { simplePage } from "./layout/simplePage.html.js";
import { example } from "./components/example.html.js";
import { h3 } from "./components/pageUtils.html.js";
import { mnemonic } from "./components/mnemonic/customElement-init.js";
import { code } from "./components/code.html.js";
/** @param {string} url */
const fileURL= url=> new URL(url, import.meta.url);
const references= {
/** Web Components on MDN */
mdn_web_components: {
2024-06-04 16:00:37 +02:00
title: t`MDN documentation page for Web Components`,
href: "https://developer.mozilla.org/en-US/docs/Web/API/Web_components",
},
/** observedAttributes on MDN */
mdn_observedAttributes: {
2024-06-04 16:00:37 +02:00
title: t`MDN documentation page for observedAttributes`,
href: "https://developer.mozilla.org/en-US/docs/Web/API/Web_components/Using_custom_elements#responding_to_attribute_changes",
},
/** Custom Elements on MDN */
mdn_custom_elements: {
2024-06-03 16:20:42 +02:00
title: t`MDN documentation page for Custom Elements`,
href: "https://developer.mozilla.org/en-US/docs/Web/API/Web_components/Using_custom_elements",
},
/** Custom Elements tips from WebReflection */
custom_elements_tips: {
2024-06-03 16:20:42 +02:00
title: t`Ideas and tips from WebReflection`,
href: "https://gist.github.com/WebReflection/ec9f6687842aa385477c4afca625bbf4",
2024-06-10 15:52:47 +02:00
},
/** Shallow DOM on mdn */
mdn_shadow_dom_depth: {
title: t`MDN documentation page for Shadow DOM`,
href: "https://developer.mozilla.org/en-US/docs/Web/Web_Components/Using_shadow_DOM",
},
/** Shallow DOM */
shadow_dom_depth: {
title: t`Everything you need to know about Shadow DOM (github repo praveenpuglia/shadow-dom-in-depth)`,
href: "https://github.com/praveenpuglia/shadow-dom-in-depth",
},
};
/** @param {import("./types.d.ts").PageAttrs} attrs */
export function page({ pkg, info }){
const page_id= info.id;
return el(simplePage, { info, pkg }).append(
2024-06-04 16:00:37 +02:00
el("h2", t`Using web components in combinantion with DDE`),
2024-06-03 16:20:42 +02:00
el("p").append(...T`
2024-06-04 16:00:37 +02:00
The DDE library allows for use within ${el("a", references.mdn_web_components).append( el("strong", "Web Components") )}
for dom-tree generation. However, in order to be able to use signals (possibly mapping to registered
${el("a", references.mdn_observedAttributes).append( el("code", "observedAttributes") )}) and additional
functionality is (unfortunately) required to use helpers provided by the library.
2024-06-03 16:20:42 +02:00
`),
el(code, { src: fileURL("./components/examples/customElement/intro.js"), page_id }),
2024-06-03 16:20:42 +02:00
el(h3, t`Custom Elements Introduction`),
el("p").append(...T`
2024-06-04 16:00:37 +02:00
To start with, lets see how to use native Custom Elements. As starting point please read
${el("a", references.mdn_custom_elements).append( el("strong", "Using Custom Elements"), " on MDN" )}.
To sum up and for mnemonic see following code overview:
2024-06-03 16:20:42 +02:00
`),
el(code, { src: fileURL("./components/examples/customElement/native-basic.js"), page_id }),
2024-06-03 16:20:42 +02:00
el("p").append(...T`
2024-06-04 16:00:37 +02:00
For more advanced use of Custom Elements, the summary ${el("a", references.custom_elements_tips)
.append( el("strong", t`Handy Custom Elements' Patterns`) )} may be useful. Especially pay attention to
linking HTML attributes and defining setters/getters, this is very helpful to use in combination with
2024-06-05 16:20:12 +02:00
the library (${el("code", "el(HTMLCustomElement.tagName, { customAttribute: \"new-value\" });")}).
2024-06-03 16:20:42 +02:00
`),
2024-06-05 16:20:12 +02:00
el("p").append(...T`
Also see the Life Cycle Events sections, very similarly we would like to use
${el("a", { textContent: t`DDE events`, href: "./p03-events.html", title: t`See events part of the library documentation` })}.
To do it, the library provides function ${el("code", "customElementWithDDE")}
`),
el(example, { src: fileURL("./components/examples/customElement/customElementWithDDE.js"), page_id }),
el("h3", t`Custom Elements with DDE`),
2024-06-07 10:04:34 +02:00
el("p").append(...T`
The ${el("code", "customElementWithDDE")} function is only (small) part of the inregration of the library.
More important for coexistence is render component function as a body of the Custom Element. For that, you
can use ${el("code", "customElementRender")} with arguments instance reference, target for connection,
render function and optional properties (will be passed to the render function) see later
`),
2024-06-05 16:20:12 +02:00
el(example, { src: fileURL("./components/examples/customElement/dde.js"), page_id }),
2024-06-07 10:04:34 +02:00
el("p").append(...T`
2024-06-07 14:38:38 +02:00
as you can see, you can use components created based on the documentation previously introduced. To unlock
full potential, use with combination ${el("code", "customElementWithDDE")} (allows to use livecycle events)
and ${el("code", "observedAttributes")} (converts attributes to render function arguments
${el("em", "default")}) or ${el("code", "S.observedAttributes")} (converts attributes to signals).
2024-06-07 10:04:34 +02:00
`),
2024-06-07 16:14:15 +02:00
el(example, { src: fileURL("./components/examples/customElement/observedAttributes.js"), page_id }),
2024-06-05 16:20:12 +02:00
2024-06-10 15:52:47 +02:00
el(h3, t`Shadow DOM`),
el("p").append(...T`
Regarding to ${el("code", "this.attachShadow({ mode: 'open' })")} see quick overview
${el("a", { textContent: t`Using Shadow DOM`, ...references.mdn_shadow_dom_depth })}. An another source of
information can be ${el("a", { textContent: t`Shadow DOM in Depth`, ...references.shadow_dom_depth })}. To
sum up, there in basic three ways to render component body:
`),
2024-10-18 15:28:33 +02:00
el(example, { src: fileURL("./components/examples/customElement/shadowRoot.js"), page_id }),
2024-06-10 15:52:47 +02:00
el(mnemonic)
);
}