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
45 lines
1.3 KiB
JavaScript
45 lines
1.3 KiB
JavaScript
// Building a simple static site generator
|
|
import { JSDOM } from "jsdom";
|
|
import { register, queue } from "deka-dom-el/jsdom";
|
|
import { writeFileSync, mkdirSync } from "node:fs";
|
|
|
|
async function buildSite() {
|
|
// Define pages to build
|
|
const pages = [
|
|
{ id: "index", title: "Home", component: "./pages/home.js" },
|
|
{ id: "about", title: "About", component: "./pages/about.js" },
|
|
{ id: "docs", title: "Documentation", component: "./pages/docs.js" }
|
|
];
|
|
|
|
// Create output directory
|
|
mkdirSync("./dist", { recursive: true });
|
|
|
|
// Build each page
|
|
for (const page of pages) {
|
|
// Create a fresh jsdom instance for each page
|
|
const dom = new JSDOM("<!DOCTYPE html><html><head><meta charset=\"utf-8\"></head><body></body></html>");
|
|
|
|
// Register with deka-dom-el
|
|
const { el } = await register(dom);
|
|
|
|
// Import the page component
|
|
const { default: PageComponent } = await import(page.component);
|
|
|
|
// Render the page with its metadata
|
|
dom.window.document.body.append(
|
|
el(PageComponent, { title: page.title, pages })
|
|
);
|
|
|
|
// Wait for any async operations
|
|
await queue();
|
|
|
|
// Write the HTML to a file
|
|
const html = dom.serialize();
|
|
writeFileSync(`./dist/${page.id}.html`, html);
|
|
|
|
console.log(`Built page: ${page.id}.html`);
|
|
}
|
|
}
|
|
|
|
buildSite().catch(console.error);
|