-
Notifications
You must be signed in to change notification settings - Fork 102
/
Copy pathcreateElement.js
42 lines (40 loc) · 1.39 KB
/
createElement.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 van from "vanjs-core";
import { setAttribute } from "./hyper";
const createElement = (jsxTag, { children, style, ref, ...props }) => {
if (typeof jsxTag === "string") {
// TODO VanNode to VanElement
const ele = van.tags[jsxTag](children);
for (const [key, value] of Object.entries(props ?? {})) {
// Auto Update Attribute
if (typeof value === "function" && !key.startsWith("on")) {
van.derive(() => {
let attr = value();
setAttribute(ele, key, attr);
});
continue;
}
// Add Event Listener
if (typeof value === "function" && key.startsWith("on")) {
ele.addEventListener(key.replace("on", "").toLowerCase(), value);
continue;
}
// Handle reactive attributes
if (typeof value === "object" && "val" in value) {
van.derive(() => {
setAttribute(ele, key, value.val);
});
continue;
}
setAttribute(ele, key, value);
continue;
}
if (ref != null) {
ref.val = ele;
}
return ele;
}
if (typeof jsxTag === "function") {
return jsxTag({ ...props, ref, style, children });
}
};
export default createElement;