2020-04-12 14:48:38 +00:00
|
|
|
import removeMeta from './removeMeta'
|
2020-04-13 00:44:43 +00:00
|
|
|
const dlv = require('dlv')
|
|
|
|
import escapeClassName from 'css.escape'
|
2020-10-08 15:20:54 +00:00
|
|
|
import { ensureArray } from './array'
|
2020-04-12 14:48:38 +00:00
|
|
|
|
2020-04-11 21:20:45 +00:00
|
|
|
export function stringifyConfigValue(x: any): string {
|
|
|
|
if (typeof x === 'string') return x
|
|
|
|
if (typeof x === 'number') return x.toString()
|
|
|
|
if (Array.isArray(x)) {
|
|
|
|
return x
|
2020-04-12 14:48:38 +00:00
|
|
|
.filter((y) => typeof y === 'string')
|
2020-04-11 21:20:45 +00:00
|
|
|
.filter(Boolean)
|
|
|
|
.join(', ')
|
|
|
|
}
|
2020-04-12 16:53:22 +00:00
|
|
|
return null
|
2020-04-11 21:20:45 +00:00
|
|
|
}
|
2020-04-12 14:48:38 +00:00
|
|
|
|
2020-11-26 20:07:39 +00:00
|
|
|
export function stringifyCss(
|
|
|
|
className: string,
|
|
|
|
obj: any,
|
|
|
|
tabSize: number = 2
|
|
|
|
): string {
|
2020-04-13 00:44:43 +00:00
|
|
|
if (obj.__rule !== true && !Array.isArray(obj)) return null
|
|
|
|
|
|
|
|
if (Array.isArray(obj)) {
|
|
|
|
const rules = obj.map((x) => stringifyCss(className, x)).filter(Boolean)
|
|
|
|
if (rules.length === 0) return null
|
|
|
|
return rules.join('\n\n')
|
|
|
|
}
|
|
|
|
|
|
|
|
let css = ``
|
2020-11-26 20:07:39 +00:00
|
|
|
const indent = ' '.repeat(tabSize)
|
2020-04-13 00:44:43 +00:00
|
|
|
|
|
|
|
const context = dlv(obj, '__context', [])
|
|
|
|
const props = Object.keys(removeMeta(obj))
|
|
|
|
if (props.length === 0) return null
|
|
|
|
|
|
|
|
for (let i = 0; i < context.length; i++) {
|
2020-11-26 20:07:39 +00:00
|
|
|
css += `${indent.repeat(i)}${context[i]} {\n`
|
2020-04-12 14:48:38 +00:00
|
|
|
}
|
2020-04-13 00:44:43 +00:00
|
|
|
|
2020-11-26 20:07:39 +00:00
|
|
|
const indentStr = indent.repeat(context.length)
|
2020-04-13 00:44:43 +00:00
|
|
|
const decls = props.reduce((acc, curr, i) => {
|
2020-05-02 12:18:30 +00:00
|
|
|
const propStr = ensureArray(obj[curr])
|
2020-11-26 20:07:39 +00:00
|
|
|
.map((val) => `${indentStr + indent}${curr}: ${val};`)
|
2020-05-02 12:18:30 +00:00
|
|
|
.join('\n')
|
|
|
|
return `${acc}${i === 0 ? '' : '\n'}${propStr}`
|
2020-04-12 14:48:38 +00:00
|
|
|
}, '')
|
2020-04-13 00:44:43 +00:00
|
|
|
css += `${indentStr}${augmentClassName(
|
|
|
|
className,
|
|
|
|
obj
|
|
|
|
)} {\n${decls}\n${indentStr}}`
|
|
|
|
|
|
|
|
for (let i = context.length - 1; i >= 0; i--) {
|
2020-11-26 20:07:39 +00:00
|
|
|
css += `${indent.repeat(i)}\n}`
|
2020-04-13 00:44:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return css
|
|
|
|
}
|
|
|
|
|
|
|
|
function augmentClassName(className: string, obj: any): string {
|
2020-06-12 10:26:17 +00:00
|
|
|
const pseudo = obj.__pseudo.join('')
|
2020-04-13 00:44:43 +00:00
|
|
|
const scope = obj.__scope ? `${obj.__scope} ` : ''
|
|
|
|
return `${scope}.${escapeClassName(className)}${pseudo}`
|
2020-04-12 14:48:38 +00:00
|
|
|
}
|