JSX

/client/src/jsx.ts (1.8 KB)

 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
import {setHTML} from "./dom";

declare global {
namespace JSX { // eslint-disable-line @typescript-eslint/no-namespace, no-shadow
type IntrinsicElements = {
[elemName: string]: unknown;
}
}
}

// noinspection JSUnusedGlobalSymbols
export function JSX(tag: string, attrs: any[], ...args: Node[]) { // eslint-disable-line @typescript-eslint/no-explicit-any
const e = document.createElement(tag);
for (let name in attrs) {
if (name === "for") {
name = "for";
}
if (name === "className") {
name = "class";
}
if (name && attrs.hasOwnProperty(name)) { // eslint-disable-line no-prototype-builtins
const v = attrs[name];
if (name === "dangerouslySetInnerHTML") {
setHTML(e, v.__html); // eslint-disable-line no-underscore-dangle
} else if (v === true) {
e.setAttribute(name, name);
} else if (v !== false && v !== null && v !== undefined) {
e.setAttribute(name, v.toString());
}
}
}
for (let child of args) {
if (Array.isArray(child)) {
child.forEach((c) => {
if (child === undefined || child === null) {
throw new Error(`child array for tag [${tag}] is ${child}\n${e.outerHTML}`);
}
if (c === undefined || c === null) {
throw new Error(`child for tag [${tag}] is ${c}\n${e.outerHTML}`);
}
if (typeof c === "string") {
c = document.createTextNode(c);
}
e.appendChild(c);
});
} else if (child === undefined || child === null) {
throw new Error(`child for tag [${tag}] is ${child}\n${e.outerHTML}`);
} else {
if (!child.nodeType) {
child = document.createTextNode(child.toString());
}
e.appendChild(child);
}
}
return e;
}