From d742d960ac2eabad013d7a141bd44cb03da8b904 Mon Sep 17 00:00:00 2001 From: Jan Andrle Date: Fri, 7 Mar 2025 21:32:15 +0100 Subject: [PATCH] :zap: :abc: dd, iief --- README.md | 6 +-- bs/build.js | 2 +- bs/dev/.build.js | 11 ++--- ...th-signals.d.ts => iife-with-signals.d.ts} | 2 +- ...e-with-signals.js => iife-with-signals.js} | 0 ...ls.min.d.ts => iife-with-signals.min.d.ts} | 2 +- ...ignals.min.js => iife-with-signals.min.js} | 0 dist/{dde.d.ts => iife.d.ts} | 2 +- dist/{dde.js => iife.js} | 0 dist/{dde.min.d.ts => iife.min.d.ts} | 2 +- dist/{dde.min.js => iife.min.js} | 0 docs/assets/logo.svg | 10 ++-- docs/index.html.js | 16 +++---- docs/p02-elements.html.js | 25 +++++----- docs/p03-events.html.js | 21 +++++---- docs/p04-signals.html.js | 4 +- docs/p05-scopes.html.js | 7 +-- docs/p06-customElement.html.js | 46 +++++++++---------- docs/p07-debugging.html.js | 18 ++++---- docs/p08-extensions.html.js | 18 ++++---- docs/p09-ssr.html.js | 22 ++++----- docs/p10-ireland.html.js | 6 +-- 22 files changed, 111 insertions(+), 109 deletions(-) rename dist/{dde-with-signals.d.ts => iife-with-signals.d.ts} (99%) rename dist/{dde-with-signals.js => iife-with-signals.js} (100%) rename dist/{dde-with-signals.min.d.ts => iife-with-signals.min.d.ts} (99%) rename dist/{dde-with-signals.min.js => iife-with-signals.min.js} (100%) rename dist/{dde.d.ts => iife.d.ts} (99%) rename dist/{dde.js => iife.js} (100%) rename dist/{dde.min.d.ts => iife.min.d.ts} (99%) rename dist/{dde.min.js => iife.min.js} (100%) diff --git a/README.md b/README.md index bcb6afa..8d1fc0d 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ Deka DOM Elements Logo

-# Deka DOM Elements +# Deka DOM Elements (dd or dde) ***Vanilla for flavouring — a full-fledged feast for large projects*** @@ -74,7 +74,7 @@ Creating reactive elements, components, and Web Components using the native This library bridges the gap between minimal solutions like van/hyperscript and more comprehensive frameworks like [solid-js](https://github.com/solidjs/solid), offering a balanced trade-off between size, complexity, and usability. -Following functional programming principles, Deka DOM Elements starts with pure JavaScript (DOM API) and gradually adds +Following functional programming principles, dd starts with pure JavaScript (DOM API) and gradually adds auxiliary functions. These range from minor improvements to advanced features for building complete declarative reactive UI templates. @@ -94,7 +94,7 @@ into existing projects. #### Direct Script ```html - + diff --git a/bs/build.js b/bs/build.js index 4f54d23..7ff6e7b 100755 --- a/bs/build.js +++ b/bs/build.js @@ -27,7 +27,7 @@ $.api("") files: [ "signals" ], filesOut(file){ return "dist/."+file; }, minify: "no", - dde: false, + iife: false, }); return $.exit(regular); }) diff --git a/bs/dev/.build.js b/bs/dev/.build.js index d422ad3..8c0dcb5 100644 --- a/bs/dev/.build.js +++ b/bs/dev/.build.js @@ -1,10 +1,9 @@ #!/usr/bin/env -S npx nodejsscript -import { bundle, bundle as bundleDTS } from "dts-bundler"; const css= echo.css` .info{ color: gray; } `; -export async function build({ files, filesOut, minify= "partial", dde= true }){ +export async function build({ files, filesOut, minify= "partial", iife= true }){ for(const file_root of files){ const file= file_root+".js"; echo(`Processing ${file} (minified: ${minify})`); @@ -21,17 +20,17 @@ export async function build({ files, filesOut, minify= "partial", dde= true }){ }); echoVariant(file_dts_out); - if(dde) toDDE(file, file_root); + if(iife) toIIFE(file, file_root); } return 0; - async function toDDE(file, file_root){ - const name= "dde"; + async function toIIFE(file, file_root){ + const name= "iife"; const out= filesOut(file_root+".js", name); const params= [ "--format=iife", - "--global-name="+name, + "--global-name=dde", ]; const dde_output= buildEsbuild({ file, out, minify, params }); echoVariant(`${out} (${file} → globalThis.${name})`) diff --git a/dist/dde-with-signals.d.ts b/dist/iife-with-signals.d.ts similarity index 99% rename from dist/dde-with-signals.d.ts rename to dist/iife-with-signals.d.ts index 494e418..2ba7d95 100644 --- a/dist/dde-with-signals.d.ts +++ b/dist/iife-with-signals.d.ts @@ -780,6 +780,6 @@ export { elNS as createElementNS, }; -export as namespace dde; +export as namespace iife; export {}; diff --git a/dist/dde-with-signals.js b/dist/iife-with-signals.js similarity index 100% rename from dist/dde-with-signals.js rename to dist/iife-with-signals.js diff --git a/dist/dde-with-signals.min.d.ts b/dist/iife-with-signals.min.d.ts similarity index 99% rename from dist/dde-with-signals.min.d.ts rename to dist/iife-with-signals.min.d.ts index 494e418..2ba7d95 100644 --- a/dist/dde-with-signals.min.d.ts +++ b/dist/iife-with-signals.min.d.ts @@ -780,6 +780,6 @@ export { elNS as createElementNS, }; -export as namespace dde; +export as namespace iife; export {}; diff --git a/dist/dde-with-signals.min.js b/dist/iife-with-signals.min.js similarity index 100% rename from dist/dde-with-signals.min.js rename to dist/iife-with-signals.min.js diff --git a/dist/dde.d.ts b/dist/iife.d.ts similarity index 99% rename from dist/dde.d.ts rename to dist/iife.d.ts index 97d43d5..69b37a8 100644 --- a/dist/dde.d.ts +++ b/dist/iife.d.ts @@ -779,6 +779,6 @@ export { elNS as createElementNS, }; -export as namespace dde; +export as namespace iife; export {}; diff --git a/dist/dde.js b/dist/iife.js similarity index 100% rename from dist/dde.js rename to dist/iife.js diff --git a/dist/dde.min.d.ts b/dist/iife.min.d.ts similarity index 99% rename from dist/dde.min.d.ts rename to dist/iife.min.d.ts index 97d43d5..69b37a8 100644 --- a/dist/dde.min.d.ts +++ b/dist/iife.min.d.ts @@ -779,6 +779,6 @@ export { elNS as createElementNS, }; -export as namespace dde; +export as namespace iife; export {}; diff --git a/dist/dde.min.js b/dist/iife.min.js similarity index 100% rename from dist/dde.min.js rename to dist/iife.min.js diff --git a/docs/assets/logo.svg b/docs/assets/logo.svg index 3b580d2..b5b1f4a 100644 --- a/docs/assets/logo.svg +++ b/docs/assets/logo.svg @@ -45,14 +45,14 @@ style="fill:url(#bgGradient);stroke-width:1.13636" ry="50" /> + style="fill:#ff5252;fill-opacity:0.664797;stroke-width:2.1097" /> diff --git a/docs/index.html.js b/docs/index.html.js index d01d56a..30604bc 100644 --- a/docs/index.html.js +++ b/docs/index.html.js @@ -28,12 +28,12 @@ export function page({ pkg, info }){ const page_id= info.id; return el(simplePage, { info, pkg }).append( el("p").append(...T` - Welcome to Deka DOM Elements (DDE) — a lightweight library for building dynamic UIs with a declarative - syntax that stays close to the native DOM API. DDE gives you powerful reactive tools without the complexity - and overhead of larger frameworks. + Welcome to Deka DOM Elements (dd or dde) — a lightweight library for building dynamic UIs with + a declarative syntax that stays close to the native DOM API. dd gives you powerful reactive tools + without the complexity and overhead of larger frameworks. `), el("div", { className: "callout" }).append( - el("h4", t`What Makes DDE Special`), + el("h4", t`What Makes dd Special`), el("ul").append( el("li", t`No build step required — use directly in the browser`), el("li", t`Lightweight core (~10–15kB minified) with zero dependencies`), @@ -46,7 +46,7 @@ export function page({ pkg, info }){ el(h3, { textContent: t`The 3PS Pattern: A Better Way to Build UIs`, id: "h-3ps" }), el("p").append(...T` - At the heart of DDE is the 3PS (3-Part Separation) pattern. This simple yet powerful approach helps you + At the heart of dd is the 3PS (3-Part Separation) pattern. This simple yet powerful approach helps you organize your UI code into three distinct areas, making your applications more maintainable and easier to reason about. `), @@ -57,7 +57,7 @@ export function page({ pkg, info }){ el(code, { src: fileURL("./components/examples/introducing/3ps-before.js"), page_id }), ), el("div", { className: "tab" }).append( - el("h5", t`DDE's 3PS Pattern`), + el("h5", t`dd's 3PS Pattern`), el(code, { src: fileURL("./components/examples/introducing/3ps.js"), page_id }), ) ) @@ -94,7 +94,7 @@ export function page({ pkg, info }){ el(h3, t`How to Use This Documentation`), el("p").append(...T` - This guide will take you through DDE's features step by step: + This guide will take you through dd's features step by step: `), el("ol").append( el("li").append(...T`${el("strong", "Elements")} — Creating and manipulating DOM elements`), @@ -106,7 +106,7 @@ export function page({ pkg, info }){ el("li").append(...T`${el("strong", "Extensions")} — Integrating third-party functionalities`), el("li").append(...T`${el("strong", "Ireland Components")} — Creating interactive demos with server-side pre-rendering`), - el("li").append(...T`${el("strong", "SSR")} — Server-side rendering with DDE`) + el("li").append(...T`${el("strong", "SSR")} — Server-side rendering with dd`) ), el("p").append(...T` Each section builds on the previous ones, so we recommend following them in order. diff --git a/docs/p02-elements.html.js b/docs/p02-elements.html.js index 3d217f3..af854db 100644 --- a/docs/p02-elements.html.js +++ b/docs/p02-elements.html.js @@ -51,11 +51,11 @@ export function page({ pkg, info }){ return el(simplePage, { info, pkg }).append( el("p").append(...T` Building user interfaces in JavaScript often involves creating and manipulating DOM elements. - DDE provides a simple yet powerful approach to element creation that is declarative, chainable, + dd provides a simple yet powerful approach to element creation that is declarative, chainable, and maintains a clean syntax close to HTML structure. `), el("div", { class: "callout" }).append( - el("h4", t`DDE Elements: Key Benefits`), + el("h4", t`dd Elements: Key Benefits`), el("ul").append( el("li", t`Declarative element creation with intuitive property assignment`), el("li", t`Chainable methods for natural DOM tree construction`), @@ -67,7 +67,7 @@ export function page({ pkg, info }){ el(code, { src: fileURL("./components/examples/elements/intro.js"), page_id }), - el(h3, t`Creating Elements: Native vs DDE`), + el(h3, t`Creating Elements: Native vs dd`), el("p").append(...T` In standard JavaScript, you create DOM elements using the ${el("a", references.mdn_create).append(el("code", "document.createElement()"))} method @@ -80,7 +80,7 @@ export function page({ pkg, info }){ el(code, { src: fileURL("./components/examples/elements/native-dom-create.js"), page_id }) ), el("div").append( - el("h5", t`DDE Approach`), + el("h5", t`dd Approach`), el(code, { src: fileURL("./components/examples/elements/dde-dom-create.js"), page_id }) ) ) @@ -93,9 +93,9 @@ export function page({ pkg, info }){ el(h3, t`Advanced Property Assignment`), el("p").append(...T` - The ${el("code", "assign")} function is the heart of DDE's element property handling. It is internally used - to assign properties using the ${el("code", "el")} function. ${el("code", "assign")} provides intelligent - assignment of both properties (IDL) and attributes: + The ${el("code", "assign")} function is the heart of dd's element property handling. It is internally + used to assign properties using the ${el("code", "el")} function. ${el("code", "assign")} provides + intelligent assignment of both properties (IDL) and attributes: `), el("div", { class: "function-table" }).append( el("dl").append( @@ -130,8 +130,8 @@ export function page({ pkg, info }){ el(h3, t`Building DOM Trees with Chainable Methods`), el("p").append(...T` - One of the most powerful features of DDE is its approach to building element trees. - Unlike the native DOM API which doesn't return the parent after appendChild(), DDE's + One of the most powerful features of dd is its approach to building element trees. + Unlike the native DOM API which doesn't return the parent after appendChild(), dd's append() always returns the parent element: `), el("div", { class: "illustration" }).append( @@ -141,7 +141,7 @@ export function page({ pkg, info }){ el(code, { src: fileURL("./components/examples/elements/native-dom-tree.js"), page_id }) ), el("div", { class: "good-practice" }).append( - el("h5", t`✅ DDE Approach`), + el("h5", t`✅ dd Approach`), el(code, { src: fileURL("./components/examples/elements/dde-dom-tree.js"), page_id }) ) ) @@ -172,8 +172,9 @@ export function page({ pkg, info }){ el(h3, t`Working with SVG and Other Namespaces`), el("p").append(...T` - For non-HTML elements like SVG, MathML, or custom namespaces, DDE provides the ${el("code", "elNS")} function - which corresponds to the native ${el("a", references.mdn_ns).append(el("code", "document.createElementNS"))}: + For non-HTML elements like SVG, MathML, or custom namespaces, dd provides the ${el("code", "elNS")} + function which corresponds to the native ${el("a", references.mdn_ns).append(el("code", + "document.createElementNS"))}: `), el(example, { src: fileURL("./components/examples/elements/dekaElNS.js"), page_id }), el("p").append(...T` diff --git a/docs/p03-events.html.js b/docs/p03-events.html.js index 5de5d53..ec9b62d 100644 --- a/docs/p03-events.html.js +++ b/docs/p03-events.html.js @@ -47,12 +47,12 @@ export function page({ pkg, info }){ const page_id= info.id; return el(simplePage, { info, pkg }).append( el("p").append(...T` - Events are at the core of interactive web applications. DDE provides a clean, declarative approach to + Events are at the core of interactive web applications. dd provides a clean, declarative approach to handling DOM events and extends this pattern with a powerful Addon system to incorporate additional functionalities into your UI templates. `), el("div", { className: "callout" }).append( - el("h4", t`Why DDE's Event System and Addons Matters`), + el("h4", t`Why dd's Event System and Addons Matters`), el("ul").append( el("li", t`Integrate event handling directly in element declarations`), el("li", t`Leverage lifecycle events for better component design`), @@ -68,7 +68,8 @@ export function page({ pkg, info }){ el("p").append(...T` In JavaScript you can listen to native DOM events using ${el("a", references.mdn_listen).append(el("code", "element.addEventListener(type, listener, options)"))}. - DDE provides an alternative approach with arguments ordered differently to better fit its declarative style: + dd provides an alternative approach with arguments ordered differently to better fit its declarative + style: `), el("div", { className: "illustration" }).append( el("div", { className: "tabs" }).append( @@ -77,13 +78,13 @@ export function page({ pkg, info }){ el(code, { content: `element.addEventListener('click', callback, options);`, page_id }) ), el("div", { className: "tab" }).append( - el("h5", t`DDE Approach`), + el("h5", t`dd Approach`), el(code, { content: `on('click', callback, options)(element);`, page_id }) ) ) ), el("p").append(...T` - The main benefit of DDE's approach is that it works as an Addon, making it easy to integrate + The main benefit of dd's approach is that it works as an Addon, making it easy to integrate directly into element declarations. `), el(example, { src: fileURL("./components/examples/events/compare.js"), page_id }), @@ -91,7 +92,7 @@ export function page({ pkg, info }){ el(h3, t`Removing Event Listeners`), el("div", { className: "note" }).append( el("p").append(...T` - Unlike the native addEventListener/removeEventListener pattern, DDE uses the ${el("a", { + Unlike the native addEventListener/removeEventListener pattern, dd uses the ${el("a", { textContent: "AbortSignal", ...references.mdn_abortListener })} for declarative approach for removal: `) ), @@ -126,7 +127,7 @@ export function page({ pkg, info }){ el(h3, t`Understanding Addons`), el("p").append(...T` - Addons are a powerful pattern in DDE that extends beyond just event handling. + Addons are a powerful pattern in dd that extends beyond just event handling. An Addon is any function that accepts an HTML element as its first parameter. `), el("div", { className: "callout" }).append( @@ -155,7 +156,7 @@ export function page({ pkg, info }){ You can think of an Addon as an "oncreate" event handler. `), el("p").append(...T` - DDE provides three additional lifecycle events that correspond to custom element lifecycle callbacks: + dd provides three additional lifecycle events that correspond to custom element lifecycle callbacks: `), el("div", { className: "function-table" }).append( el("dl").append( @@ -173,7 +174,7 @@ export function page({ pkg, info }){ el("div", { className: "note" }).append( el("p").append(...T` - For regular elements (non-custom elements), DDE uses + For regular elements (non-custom elements), dd uses ${el("a", references.mdn_mutation).append(el("code", "MutationObserver"), " | MDN")} internally to track lifecycle events. `) @@ -194,7 +195,7 @@ export function page({ pkg, info }){ …see section later in documentation regarding hosts elements `), el("li").append(...T` - DDE ensures that connected/disconnected events fire only once for better predictability + dd ensures that connected/disconnected events fire only once for better predictability `) ) ), diff --git a/docs/p04-signals.html.js b/docs/p04-signals.html.js index 3a76b56..bb43117 100644 --- a/docs/p04-signals.html.js +++ b/docs/p04-signals.html.js @@ -45,7 +45,7 @@ export function page({ pkg, info }){ const page_id= info.id; return el(simplePage, { info, pkg }).append( el("p").append(...T` - Signals provide a simple yet powerful way to create reactive applications with DDE. They handle the + Signals provide a simple yet powerful way to create reactive applications with dd. They handle the fundamental challenge of keeping your UI in sync with changing data in a declarative, efficient way. `), el("div", { class: "callout" }).append( @@ -197,7 +197,7 @@ items.push("New todo"); el(h3, t`Connecting Signals to the DOM`), el("p").append(...T` - Signals really shine when connected to your UI. DDE provides several ways to bind signals to DOM elements: + Signals really shine when connected to your UI. dd provides several ways to bind signals to DOM elements: `), el("div", { class: "tabs" }).append( diff --git a/docs/p05-scopes.html.js b/docs/p05-scopes.html.js index fb118f1..46c906d 100644 --- a/docs/p05-scopes.html.js +++ b/docs/p05-scopes.html.js @@ -99,7 +99,7 @@ function MyComponent() { el(h3, t`Class-Based Components`), el("p").append(...T` - While functional components are the primary pattern in DDE, you can also create class-based components. + While functional components are the primary pattern in dd, you can also create class-based components. For this, we implement function ${el("code", "elClass")} and use it to demonstrate implementation details for better understanding of the scope logic. `), @@ -114,7 +114,7 @@ function MyComponent() { el("h4", t`Lifecycle Flow`), el("pre").append(el("code", ` 1. Component created → scope established -2. Component added to DOM → connected event +2. Component add to DOM → connected event 3. Component interactions happen 4. Component removed from DOM → disconnected event 5. Automatic cleanup of: @@ -177,7 +177,8 @@ function MyComponent() { ${el("strong", "Keep components focused:")} Each component should do one thing well `), el("li").append(...T` - ${el("strong", "Add explicit cleanup:")} For resources not managed by DDE, use ${el("code", "on.disconnected")} + ${el("strong", "Add explicit cleanup:")} For resources not managed by dd, use ${el("code", + "on.disconnected")} `) ), diff --git a/docs/p06-customElement.html.js b/docs/p06-customElement.html.js index f81d957..71445a4 100644 --- a/docs/p06-customElement.html.js +++ b/docs/p06-customElement.html.js @@ -1,8 +1,8 @@ import { T, t } from "./utils/index.js"; export const info= { title: t`Web Components`, - fullTitle: t`Using Web Components with DDE: Better Together`, - description: t`Using custom elements in combination with DDE`, + fullTitle: t`Using Web Components with dd: Better Together`, + description: t`Using custom elements in combination with dd`, }; import { el } from "deka-dom-el"; @@ -55,12 +55,12 @@ export function page({ pkg, info }){ const page_id= info.id; return el(simplePage, { info, pkg }).append( el("p").append(...T` - DDE pairs powerfully with ${el("a", references.mdn_web_components).append(el("strong", t`Web Components`))} - to create reusable, encapsulated custom elements with all the benefits of DDE's declarative DOM - construction and reactivity system. + dd pairs powerfully with ${el("a", references.mdn_web_components).append(el("strong", t`Web + Components`))} to create reusable, encapsulated custom elements with all the benefits of dd's + declarative DOM construction and reactivity system. `), el("div", { className: "callout" }).append( - el("h4", t`Why Combine DDE with Web Components?`), + el("h4", t`Why Combine dd with Web Components?`), el("ul").append( el("li", t`Declarative DOM creation within your components`), el("li", t`Reactive attribute updates through signals`), @@ -88,7 +88,7 @@ export function page({ pkg, info }){ `) ), el("p").append(...T` - Let's start with a basic Custom Element example without DDE to establish the foundation: + Let's start with a basic Custom Element example without dd to establish the foundation: `), el(code, { src: fileURL("./components/examples/customElement/native-basic.js"), page_id }), @@ -101,17 +101,17 @@ export function page({ pkg, info }){ `) ), - el(h3, t`DDE Integration: Step 1 - Event Handling`), + el(h3, t`dd Integration: Step 1 - Event Handling`), el("p").append(...T` - The first step in integrating DDE with Web Components is enabling DDE's event system to work with your + The first step in integrating dd with Web Components is enabling dd's event system to work with your Custom Elements. This is done with ${el("code", "customElementWithDDE")}, which makes your Custom Element - compatible with DDE's event handling. + compatible with dd's event handling. `), el("div", { className: "function-table" }).append( el("h4", t`customElementWithDDE`), el("dl").append( el("dt", t`Purpose`), - el("dd", t`Enables DDE's event system to work with your Custom Element`), + el("dd", t`Enables dd's event system to work with your Custom Element`), el("dt", t`Usage`), el("dd", t`customElementWithDDE(YourElementClass)`), el("dt", t`Benefits`), @@ -123,20 +123,20 @@ export function page({ pkg, info }){ el("div", { className: "tip" }).append( el("p").append(...T` ${el("strong", "Key Point:")} The ${el("code", "customElementWithDDE")} function adds event dispatching - to your Custom Element lifecycle methods, making them work seamlessly with DDE's event system. + to your Custom Element lifecycle methods, making them work seamlessly with dd's event system. `) ), - el(h3, t`DDE Integration: Step 2 - Rendering Components`), + el(h3, t`dd Integration: Step 2 - Rendering Components`), el("p").append(...T` - The next step is to use DDE's component rendering within your Custom Element. This is done with - ${el("code", "customElementRender")}, which connects your DDE component function to the Custom Element. + The next step is to use dd's component rendering within your Custom Element. This is done with + ${el("code", "customElementRender")}, which connects your dd component function to the Custom Element. `), el("div", { className: "function-table" }).append( el("h4", t`customElementRender`), el("dl").append( el("dt", t`Purpose`), - el("dd", t`Connects a DDE component function to a Custom Element`), + el("dd", t`Connects a dd component function to a Custom Element`), el("dt", t`Parameters`), el("dd").append( el("ol").append( @@ -160,8 +160,8 @@ export function page({ pkg, info }){ el(h3, t`Reactive Web Components with Signals`), el("p").append(...T` - One of the most powerful features of integrating DDE with Web Components is connecting HTML attributes - to DDE's reactive signals system. This creates truly reactive custom elements. + One of the most powerful features of integrating dd with Web Components is connecting HTML attributes + to dd's reactive signals system. This creates truly reactive custom elements. `), el("div", { className: "tip" }).append( el("p").append(...T` @@ -186,7 +186,7 @@ export function page({ pkg, info }){ el("h4", t`How S.observedAttributes Works`), el("ol").append( el("li", t`Takes each attribute listed in static observedAttributes`), - el("li", t`Creates a DDE signal for each one`), + el("li", t`Creates a dd signal for each one`), el("li", t`Automatically updates these signals when attributes change`), el("li", t`Passes the signals to your component function`), el("li", t`Your component reacts to changes through signal subscriptions`) @@ -195,7 +195,7 @@ export function page({ pkg, info }){ el(h3, t`Working with Shadow DOM`), el("p").append(...T` - Shadow DOM provides encapsulation for your component's styles and markup. When using DDE with Shadow DOM, + Shadow DOM provides encapsulation for your component's styles and markup. When using dd with Shadow DOM, you get the best of both worlds: encapsulation plus declarative DOM creation. `), el("div", { className: "illustration" }).append( @@ -205,7 +205,7 @@ export function page({ pkg, info }){   ┌─────────────────────────┐     #shadow-root -      Created with DDE: +      Created with dd     ┌──────────────────┐       
       

Title

@@ -236,9 +236,9 @@ export function page({ pkg, info }){ ) ), - el(h3, t`Best Practices for Web Components with DDE`), + el(h3, t`Best Practices for Web Components with dd`), el("p").append(...T` - When combining DDE with Web Components, follow these recommendations: + When combining dd with Web Components, follow these recommendations: `), el("ol").append( el("li").append(...T` diff --git a/docs/p07-debugging.html.js b/docs/p07-debugging.html.js index c9b442e..1508c73 100644 --- a/docs/p07-debugging.html.js +++ b/docs/p07-debugging.html.js @@ -1,8 +1,8 @@ import { T, t } from "./utils/index.js"; export const info= { title: t`Debugging`, - fullTitle: t`Debugging applications with deka-dom-el`, - description: t`Techniques for debugging applications using deka-dom-el, especially signals.`, + fullTitle: t`Debugging applications with dd`, + description: t`Techniques for debugging applications using dd, especially signals.`, }; import { el } from "deka-dom-el"; @@ -19,7 +19,7 @@ export function page({ pkg, info }){ return el(simplePage, { info, pkg }).append( el("p").append(...T` Debugging is an essential part of application development. This guide provides techniques - and best practices for debugging applications built with deka-dom-el, with a focus on signals. + and best practices for debugging applications built with dd, with a focus on signals. `), el(h3, t`Debugging signals`), @@ -87,14 +87,14 @@ console.log('Current value:', signal.valueOf()); ), el(code, { src: fileURL("./components/examples/debugging/debouncing.js"), page_id }), - el(h3, t`Browser DevTools tips for deka-dom-el`), + el(h3, t`Browser DevTools tips for dd`), el("p").append(...T` - When debugging in the browser, deka-dom-el provides several helpful DevTools-friendly features: + When debugging in the browser, dd provides several helpful DevTools-friendly features: `), el("h4", t`Identifying components in the DOM`), el("p").append(...T` - deka-dom-el marks components in the DOM with special comment nodes to help you identify component boundaries. + dd marks components in the DOM with special comment nodes to help you identify component boundaries. Components created with ${el("code", "el(ComponentFunction)")} are marked with comment nodes ${el("code", "")} and includes: @@ -107,7 +107,7 @@ console.log('Current value:', signal.valueOf()); el("h4", t`Finding reactive elements in the DOM`), el("p").append(...T` - When using ${el("code", "S.el()")}, deka-dom-el creates reactive elements in the DOM + When using ${el("code", "S.el()")}, dd creates reactive elements in the DOM that are automatically updated when signal values change. These elements are wrapped in special comment nodes for debugging (to be true they are also used internally, so please do not edit them by hand): `), @@ -120,7 +120,7 @@ console.log('Current value:', signal.valueOf()); el("h4", t`DOM inspection properties`), el("p").append(...T` - Elements created with the deka-dom-el library have special properties to aid in debugging: + Elements created with the dd library have special properties to aid in debugging: `), el("p").append(...T` ${el("code", ".__dde_reactive")} - An array property on DOM elements that tracks signal-to-element @@ -160,7 +160,7 @@ console.log('Current value:', signal.valueOf()); `), el("ul").append( el("li", "signal — the signal triggering the changes"), - el("li", "listener — the listener function (this is an internal function for DDE)"), + el("li", "listener — the listener function (this is an internal function for dd)"), el("li", "element — the DOM element that is bound to the signal"), el("li", "property — the attribute or property name which is changing based on the signal"), ), diff --git a/docs/p08-extensions.html.js b/docs/p08-extensions.html.js index 826dd77..194e0b6 100644 --- a/docs/p08-extensions.html.js +++ b/docs/p08-extensions.html.js @@ -1,8 +1,8 @@ import { T, t } from "./utils/index.js"; export const info= { title: t`Extensions and 3rd Party`, - fullTitle: t`Extending deka-dom-el with Third-Party Functionalities`, - description: t`How to extend deka-dom-el with third-party libraries and custom functionalities.`, + fullTitle: t`Extending dd with Third-Party Functionalities`, + description: t`How to extend dd with third-party libraries and custom functionalities.`, }; import { el } from "deka-dom-el"; @@ -17,14 +17,14 @@ export function page({ pkg, info }){ const page_id= info.id; return el(simplePage, { info, pkg }).append( el("p").append(...T` - deka-dom-el is designed with extensibility in mind. This page covers how to separate + dd is designed with extensibility in mind. This page covers how to separate third-party functionalities and integrate them seamlessly with the library, focusing on proper resource cleanup and interoperability. `), el(h3, t`DOM Element Extensions with Addons`), el("p").append(...T` - The primary method for extending DOM elements in deka-dom-el is through the Addon pattern. + The primary method for extending DOM elements in dd is through the Addon pattern. Addons are functions that take an element and applying some functionality to it. This pattern enables a clean, functional approach to element enhancement. `), @@ -55,7 +55,7 @@ el("div", { id: "example" }, myAddon({ option: "value" })); el("p").append(...T` When extending elements with functionality that uses resources like event listeners, timers, or external subscriptions, it's critical to clean up these resources when the element is removed - from the DOM. deka-dom-el provides utilities for this through AbortSignal integration. + from the DOM. dd provides utilities for this through AbortSignal integration. `), el("div", { className: "tip" }).append( el("p").append(...T` @@ -111,7 +111,7 @@ function enhancementElement({ signal, ...config }) { el("div", { className: "tab" }).append( el("h5", t`⚠️ Library-Dependent`), el(code, { content: ` -// Tightly coupled to deka-dom-el +// Tightly coupled to dd function enhancementElement(config) { return function(element) { // do something @@ -127,7 +127,7 @@ function enhancementElement(config) { el(h3, t`Signal Extensions and Future Compatibility`), el("p").append(...T` - Unlike DOM elements, signal functionality in deka-dom-el currently lacks a standardized + Unlike DOM elements, signal functionality in dd currently lacks a standardized way to create library-independent extensions. This is because signals are implemented differently across libraries. `), @@ -135,7 +135,7 @@ function enhancementElement(config) { el("p").append(...T` In the future, JavaScript may include built-in signals through the ${el("a", { href: "https://github.com/tc39/proposal-signals", textContent: "TC39 Signals Proposal" })}. - deka-dom-el is designed with future compatibility in mind and will hopefully support these + dd is designed with future compatibility in mind and will hopefully support these native signals without breaking changes when they become available. `) ), @@ -241,7 +241,7 @@ console.log(doubled.get()); // 10`, page_id }), are disconnected`), el("dt", t`Tight coupling with library internals`), - el("dd", t`Focus on standard DOM APIs and clean interfaces rather than depending on deka-dom-el + el("dd", t`Focus on standard DOM APIs and clean interfaces rather than depending on dd implementation details`), el("dt", t`Mutating element prototypes`), diff --git a/docs/p09-ssr.html.js b/docs/p09-ssr.html.js index 4a20fb1..a420124 100644 --- a/docs/p09-ssr.html.js +++ b/docs/p09-ssr.html.js @@ -1,8 +1,8 @@ import { T, t } from "./utils/index.js"; export const info= { title: t`Server-Side Rendering (SSR)`, - fullTitle: t`Server-Side Rendering with deka-dom-el`, - description: t`Using deka-dom-el for server-side rendering with jsdom to generate static HTML.`, + fullTitle: t`Server-Side Rendering with dd`, + description: t`Using dd for server-side rendering with jsdom to generate static HTML.`, }; import { el } from "deka-dom-el"; @@ -22,11 +22,11 @@ export function page({ pkg, info }){ 3rd-party libraries. It describes an advanced feature, not a core part of the library. Most users will not need to implement this functionality directly in their applications. This capability will hopefully be covered by third-party libraries or frameworks that provide simpler SSR integration using - deka-dom-el. + dd. `) ), el("p").append(...T` - deka-dom-el isn't limited to browser environments. Thanks to its flexible architecture, + dd isn't limited to browser environments. Thanks to its flexible architecture, it can be used for server-side rendering (SSR) to generate static HTML files. This is achieved through integration with for example ${el("a", { href: "https://github.com/tmpvar/jsdom", textContent: "jsdom" })}, a JavaScript implementation of web standards for Node.js. @@ -47,12 +47,12 @@ export function page({ pkg, info }){ el(h3, t`How jsdom Integration Works`), el("p").append(...T` - The jsdom export in deka-dom-el provides the necessary tools to use the library in Node.js + The jsdom export in dd provides the necessary tools to use the library in Node.js by integrating with jsdom. Here's what it does: `), el("ol").append( el("li", t`Creates a virtual DOM environment in Node.js using jsdom`), - el("li", t`Registers DOM globals like HTMLElement, document, etc. for deka-dom-el to use`), + el("li", t`Registers DOM globals like HTMLElement, document, etc. for dd to use`), el("li", t`Sets an SSR flag in the environment to enable SSR-specific behaviors`), el("li", t`Provides a promise queue system for managing async operations during rendering`), el("li", t`Handles DOM property/attribute mapping differences between browsers and jsdom`) @@ -61,14 +61,14 @@ export function page({ pkg, info }){ el(h3, t`Basic SSR Example`), el("p").append(...T` - Here's a simple example of how to use deka-dom-el for server-side rendering in a Node.js script: + Here's a simple example of how to use dd for server-side rendering in a Node.js script: `), el(code, { src: fileURL("./components/examples/ssr/basic-example.js"), page_id }), el(h3, t`Building a Static Site Generator`), el("p").append(...T` - You can build a complete static site generator with deka-dom-el. In fact, this documentation site - is built using deka-dom-el for server-side rendering! Here's how the documentation build process works: + You can build a complete static site generator with dd. In fact, this documentation site + is built using dd for server-side rendering! Here's how the documentation build process works: `), el(code, { src: fileURL("./components/examples/ssr/static-site-generator.js"), page_id }), @@ -109,7 +109,7 @@ export function page({ pkg, info }){ el(h3, t`SSR Considerations and Limitations`), el("p").append(...T` - When using deka-dom-el for SSR, keep these considerations in mind: + When using dd for SSR, keep these considerations in mind: `), el("ul").append( el("li", t`Browser-specific APIs like window.localStorage are not available in jsdom by default`), @@ -124,7 +124,7 @@ export function page({ pkg, info }){ el(h3, t`Real Example: How This Documentation is Built`), el("p").append(...T` - This documentation site itself is built using deka-dom-el's SSR capabilities. + This documentation site itself is built using dd's SSR capabilities. The build process collects all page components, renders them with jsdom, and outputs static HTML files. `), el(code, { src: fileURL("./components/examples/ssr/static-site-generator.js"), page_id }), diff --git a/docs/p10-ireland.html.js b/docs/p10-ireland.html.js index e59fc53..554d072 100644 --- a/docs/p10-ireland.html.js +++ b/docs/p10-ireland.html.js @@ -24,7 +24,7 @@ export function page({ pkg, info }){ 3rd-party libraries. It describes an advanced feature, not a core part of the library. Most users will not need to implement this functionality directly in their applications. This capability will hopefully be covered by third-party libraries or frameworks that provide simpler SSR integration using - deka-dom-el. + dd. `) ), @@ -103,7 +103,7 @@ for(const { id, info } of pages) { const serverDOM = createHTMl(""); serverDOM.registerGlobally("HTMLScriptElement"); - // Register deka-dom-el with the virtual DOM + // Register dd with the virtual DOM const { el } = await register(serverDOM.dom); // Import and render the page component @@ -355,7 +355,7 @@ export function loadIrelands(store) { el("p").append(...T` This documentation site itself is built using the techniques described here, - showcasing how deka-dom-el can be used to create both the documentation and + showcasing how dd can be used to create both the documentation and the interactive examples within it. The implementation here is simplified for clarity, while a production-ready system would need to address the considerations above. `)