0.5.0 • Published 7 years ago
@nicolasparada/el v0.5.0
@nicolasparada/el
Utility to create HTML elements with ease. Inspired in React.createElement, but for actual DOM. It has nothing to do with rendering or diffing.
Usage
Load it from unpkg.com.
import el from 'https://unpkg.com/@nicolasparada/el'
let button
const div = el('div', { className: 'container' }, [
el('button', { ref: buttonRef, onclick }, 'Click me'),
])
function buttonRef(el) {
button = el
}
function onclick(ev) {
console.log('Click', ev)
}
console.assert(div instanceof HTMLDivElement)
console.assert(div.className === 'container')
console.assert(div.childNodes.length === 1)
console.assert(button instanceof HTMLButtonElement)
console.assert(button.onclick === onclick)
console.assert(button.textContent === 'Click me')function el(tagName, props, ...children)tagName: is astringwith the tag name of theHTMLElementto create.props: is aObjectmix with properties and attributes to set. The specialrefprop comes handy to save a reference to the element. You can attach an event listener prefixing the event name with 'on' ex:{ onsomeevent: onSomeEvent }.children: is variadic; this argument will be flatten so you can pass a comma separated list of children or an array.
This function will return an instance of HTMLElement.