You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
/**
|
|
|
|
* example usage:
|
|
|
|
*
|
|
|
|
* const props = {className: 'btn', onclick: async (e) => alert('hi')};
|
|
|
|
* const btn = elem('button', props, ['download']);
|
|
|
|
* document.body.append(btn);
|
|
|
|
*
|
|
|
|
* @param {string} name
|
|
|
|
* @param {HTMLElement.prototype} props
|
|
|
|
* @param {Array<HTMLElement|string>} children
|
|
|
|
* @return HTMLElement
|
|
|
|
*/
|
|
|
|
export function elem(name = 'div', {data, ...props} = {}, children = []) {
|
|
|
|
const el = document.createElement(name);
|
|
|
|
Object.assign(el, props);
|
|
|
|
if (typeof children === 'string') {
|
|
|
|
el.append(children);
|
|
|
|
} else {
|
|
|
|
el.append(...children);
|
|
|
|
}
|
|
|
|
if (data) {
|
|
|
|
Object.entries(data).forEach(([key, value]) => el.dataset[key] = value);
|
|
|
|
}
|
|
|
|
return el;
|
|
|
|
}
|