-
Notifications
You must be signed in to change notification settings - Fork 102
/
Copy pathhyper.js
45 lines (45 loc) · 1.17 KB
/
hyper.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
43
44
45
export const styleToString = (style) => {
return Object.entries(style).reduce((acc, key) => acc +
key[0]
.split(/(?=[A-Z])/)
.join("-")
.toLowerCase() +
":" +
key[1] +
";", "");
};
export const setAttribute = (element, key, value) => {
// Convert Style Object
if (key === "style") {
const attr = styleToString(value);
element.setAttribute(key, attr);
return;
}
if (typeof value === "number") {
if (key === "tabIndex") {
element.setAttribute("tabindex", value.toString());
return;
}
}
// Set String Attribute
if (typeof value === "string") {
if (key === "className") {
element.setAttribute("class", value);
return;
}
if (key === "htmlFor") {
element.setAttribute("for", value);
return;
}
element.setAttribute(key, value);
return;
}
// Set Boolean Attribute
if (typeof value === "boolean") {
if (value) {
element.setAttribute(key, "");
return;
}
element.removeAttribute(key);
}
};