2020-06-04 19:08:50 +02:00
|
|
|
import { last } from "lodash/fp"
|
|
|
|
import { pipe } from "components/common/core"
|
2020-05-29 11:45:19 +02:00
|
|
|
export const buildStyle = styles => {
|
|
|
|
let str = ""
|
|
|
|
for (let s in styles) {
|
|
|
|
if (styles[s]) {
|
2020-05-30 19:48:20 +02:00
|
|
|
let key = convertCamel(s)
|
|
|
|
str += `${key}: ${styles[s]}; `
|
2020-05-29 11:45:19 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return str
|
|
|
|
}
|
|
|
|
|
|
|
|
export const convertCamel = str => {
|
|
|
|
return str.replace(/[A-Z]/g, match => `-${match.toLowerCase()}`)
|
|
|
|
}
|
2020-06-04 19:08:50 +02:00
|
|
|
|
|
|
|
export const capitalise = s => s.substring(0, 1).toUpperCase() + s.substring(1)
|
|
|
|
|
|
|
|
export const get_name = s => (!s ? "" : last(s.split("/")))
|
|
|
|
|
|
|
|
export const get_capitalised_name = name => pipe(name, [get_name, capitalise])
|