2021-03-23 15:32:25 +00:00
|
|
|
import React, {Fragment} from "react"
|
2021-01-25 18:37:58 +00:00
|
|
|
import useBluelibClassNames from "../../hooks/useBluelibClassNames";
|
|
|
|
import PropTypes from "prop-types";
|
2021-03-23 15:32:25 +00:00
|
|
|
import classNames from "classnames"
|
|
|
|
import color from "color"
|
2021-01-25 18:37:58 +00:00
|
|
|
|
|
|
|
|
2021-03-23 15:32:25 +00:00
|
|
|
export default function Color({children, builtin, custom}) {
|
|
|
|
if(builtin && custom) {
|
|
|
|
throw new Error("<Color> tags may only have one prop between `builtin` and `custom`.")
|
|
|
|
}
|
|
|
|
|
|
|
|
let extraClassName = "";
|
|
|
|
let extraStyle = {};
|
|
|
|
|
|
|
|
if(builtin !== undefined) {
|
|
|
|
extraClassName = useBluelibClassNames(`color-${builtin}`)
|
|
|
|
|
|
|
|
}
|
|
|
|
if(custom !== undefined) {
|
|
|
|
let c = color(custom);
|
|
|
|
extraStyle["--bluelib-color-r"] = c.red()
|
|
|
|
extraStyle["--bluelib-color-g"] = c.green()
|
|
|
|
extraStyle["--bluelib-color-b"] = c.blue()
|
|
|
|
}
|
|
|
|
|
|
|
|
children = React.Children.map(children, child => {
|
|
|
|
if(!child.props) {
|
|
|
|
return child;
|
|
|
|
}
|
|
|
|
return React.cloneElement(child, {
|
|
|
|
className: classNames(child.props.className, extraClassName),
|
|
|
|
style: {...child.props.style, ...extraStyle},
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-01-25 18:37:58 +00:00
|
|
|
return (
|
2021-03-23 15:32:25 +00:00
|
|
|
<Fragment>
|
2021-01-25 18:37:58 +00:00
|
|
|
{children}
|
2021-03-23 15:32:25 +00:00
|
|
|
</Fragment>
|
2021-01-25 18:37:58 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Color.propTypes = {
|
|
|
|
children: PropTypes.node,
|
2021-03-23 15:32:25 +00:00
|
|
|
builtin: PropTypes.oneOf(["red", "orange", "yellow", "lime", "cyan", "blue", "magenta", "gray"]),
|
|
|
|
custom: PropTypes.string,
|
2021-01-25 18:37:58 +00:00
|
|
|
}
|