1
0
Fork 0
mirror of synced 2024-07-01 04:21:06 +12:00
budibase/packages/builder/src/helpers.js

25 lines
618 B
JavaScript
Raw Normal View History

import { last, flow } from "lodash/fp"
2020-10-27 22:37:20 +13:00
export const buildStyle = styles => {
2020-05-29 21:45:19 +12:00
let str = ""
for (let s in styles) {
if (styles[s]) {
let key = convertCamel(s)
str += `${key}: ${styles[s]}; `
2020-05-29 21:45:19 +12:00
}
}
return str
}
2020-10-27 22:37:20 +13:00
export const convertCamel = str => {
return str.replace(/[A-Z]/g, match => `-${match.toLowerCase()}`)
2020-05-29 21:45:19 +12:00
}
export const pipe = (arg, funcs) => flow(funcs)(arg)
2020-10-27 22:37:20 +13:00
export const capitalise = s => s.substring(0, 1).toUpperCase() + s.substring(1)
2020-10-27 22:37:20 +13:00
export const get_name = s => (!s ? "" : last(s.split("/")))
2020-10-27 22:37:20 +13:00
export const get_capitalised_name = name => pipe(name, [get_name, capitalise])