js/css.js

46 lines
1.3 KiB
JavaScript

const diversify = (prefix, now, ...rest) =>
now
? now.split(/, */g).map(current => diversify(prefix+' '+current, ...rest)).join(",")
: prefix
const keyToPropName = key => key.replace(/^[A-Z]/, a => "-"+a).replace(/[A-Z]/g, a => '-'+a.toLowerCase())
const walkStyles = (styles, trail=[], buffer=[]) => {
let inner
const position = buffer.push(undefined)-1
Object.entries(styles).forEach(([name, children]) => {
if (children.constructor.name === "Object") {
trail.push(name)
walkStyles(children, trail, buffer)
trail.pop()
} else {
inner ||= []
const rules = Array.isArray(children)
? children.map(e => Array.isArray(e) ? e.map(e => e.toString()).join(' ') : e.toString()).join(", ")
: children.toString()
inner.push(`${keyToPropName(name)}: ${children}`)
}
})
if (inner) buffer[position] = (`${diversify("", ...trail)} {${inner.join("; ")}}`)
return buffer
}
export const css = (styles) => walkStyles(styles).filter(e=>e).join("\n")
export const style = styles => {
const style = document.createElement("style")
style.innerHTML = css(styles)
return style
}
const mkVar = name => {
const v = (def) => `var(--${name}, ${def})`
v.toString = () => `var(--${name})`
return v
}
export const v = new Proxy(Window, {
get: (target, name, receiver) => mkVar(name),
apply: (target, object, [name]) => `var(--${keyToPropName(name)})`,
})