-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSSR.js
42 lines (36 loc) · 1000 Bytes
/
SSR.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
import { parseHTML } from "https://raw.githubusercontent.com/WebReflection/linkedom/main/worker.js";
const linkedom = parseHTML(`
<!doctype html>
<html lang="en">
<head>
<title>Hello SSR</title>
</head>
<body>
<h1 x-text="greet"></h1>
</body>
</html>
`);
const {
// // note, these are *not* globals
// window,
document,
// customElements,
// HTMLElement,
// Event,
// CustomEvent,
// // other exports ..
} = linkedom;
import { dom, attr } from "./dist/html.api.js";
const prefix = "x";
const model = { greet: "Hello World!" };
Object.entries({ ...dom, ...attr }).forEach((codec) => {
const [select, accessor] = codec;
document.querySelectorAll(`[${prefix}-${select}]`).forEach((el) => {
const dataPath = el.getAttribute(`${prefix}-${select}`);
const newValue = model[dataPath];
// Apply Data to DOM
accessor(el)(newValue);
});
});
console.log(document.toString());
console.log("HELLO!");