2019-06-14 23:46:18 +02:00
|
|
|
// DOM helper functions
|
|
|
|
|
2019-06-15 17:50:54 +02:00
|
|
|
export function isChildren(children) {
|
2019-06-16 10:52:02 +02:00
|
|
|
// children should be an not-object (that's the attributes), or a domnode, or an array
|
2019-06-15 17:50:54 +02:00
|
|
|
return typeof children !== "object" || !!children.nodeType || Array.isArray(children);
|
|
|
|
}
|
|
|
|
|
2019-06-16 15:12:54 +02:00
|
|
|
export function classNames(obj, value) {
|
|
|
|
return Object.entries(obj).reduce((cn, [name, enabled]) => {
|
|
|
|
if (typeof enabled === "function") {
|
|
|
|
enabled = enabled(value);
|
|
|
|
}
|
|
|
|
if (enabled) {
|
|
|
|
return cn + (cn.length ? " " : "") + name;
|
|
|
|
} else {
|
|
|
|
return cn;
|
|
|
|
}
|
|
|
|
}, "");
|
|
|
|
}
|
|
|
|
|
2019-02-20 23:48:16 +01:00
|
|
|
export function setAttribute(el, name, value) {
|
2019-02-27 23:20:29 +01:00
|
|
|
if (name === "className") {
|
|
|
|
name = "class";
|
|
|
|
}
|
2019-06-14 22:40:18 +02:00
|
|
|
if (value === false) {
|
|
|
|
el.removeAttribute(name);
|
|
|
|
} else {
|
|
|
|
if (value === true) {
|
|
|
|
value = name;
|
|
|
|
}
|
|
|
|
el.setAttribute(name, value);
|
|
|
|
}
|
2019-02-20 23:48:16 +01:00
|
|
|
}
|
|
|
|
|
2019-06-15 17:50:54 +02:00
|
|
|
export function el(elementName, attributes, children) {
|
|
|
|
if (attributes && isChildren(attributes)) {
|
|
|
|
children = attributes;
|
|
|
|
attributes = null;
|
|
|
|
}
|
|
|
|
|
2019-02-20 23:48:16 +01:00
|
|
|
const e = document.createElement(elementName);
|
2019-06-15 17:50:54 +02:00
|
|
|
|
|
|
|
if (attributes) {
|
|
|
|
for (let [name, value] of Object.entries(attributes)) {
|
2019-06-16 15:12:54 +02:00
|
|
|
if (name === "className" && typeof value === "object" && value !== null) {
|
|
|
|
value = classNames(value);
|
|
|
|
}
|
2019-02-20 23:48:16 +01:00
|
|
|
setAttribute(e, name, value);
|
|
|
|
}
|
|
|
|
}
|
2019-06-15 17:50:54 +02:00
|
|
|
|
2019-02-26 22:45:58 +01:00
|
|
|
if (children) {
|
|
|
|
if (!Array.isArray(children)) {
|
|
|
|
children = [children];
|
|
|
|
}
|
2019-02-20 23:48:16 +01:00
|
|
|
for (let c of children) {
|
2019-06-14 23:46:18 +02:00
|
|
|
if (!c.nodeType) {
|
2019-02-26 20:49:32 +01:00
|
|
|
c = text(c);
|
|
|
|
}
|
2019-02-20 23:48:16 +01:00
|
|
|
e.appendChild(c);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return e;
|
|
|
|
}
|
|
|
|
|
|
|
|
export function text(str) {
|
|
|
|
return document.createTextNode(str);
|
|
|
|
}
|
|
|
|
|
2019-06-13 00:41:45 +02:00
|
|
|
export const TAG_NAMES = [
|
2019-11-22 09:46:19 +01:00
|
|
|
"a", "ol", "ul", "li", "div", "h1", "h2", "h3", "h4", "h5", "h6",
|
2019-06-13 00:41:45 +02:00
|
|
|
"p", "strong", "em", "span", "img", "section", "main", "article", "aside",
|
2020-04-30 18:27:21 +02:00
|
|
|
"pre", "button", "time", "input", "textarea", "svg", "circle"];
|
2019-06-13 00:41:45 +02:00
|
|
|
|
2019-06-14 23:46:18 +02:00
|
|
|
export const tag = {};
|
|
|
|
|
|
|
|
for (const tagName of TAG_NAMES) {
|
|
|
|
tag[tagName] = function(attributes, children) {
|
|
|
|
return el(tagName, attributes, children);
|
|
|
|
}
|
|
|
|
}
|