Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@andyfischer
Created October 8, 2020 19:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andyfischer/a5059679e450562e42560ce25352d8cb to your computer and use it in GitHub Desktop.
Save andyfischer/a5059679e450562e42560ce25352d8cb to your computer and use it in GitHub Desktop.
/**
Helper function for connecting React components with CSS Modules. The helper lets you
define new React components that just have the right "className" string (and also
the "style" value if you use CSS Variables).
Things that this takes care of:
- Some components will always have certain classNames.
- Some components will conditionally include classNames. (based on props)
- Some components will have element-level CSS variables. (taken from props)
- Other props are passed through.
Simple example:
import style from './style.css'
const s = connectToStyle(style);
const MyComponent = s('my-class');
render() {
<MyComponent> stuff </MyComponent>
}
Renders as: <div class="my-class___a1b2c3"> stuff </div>
Example using conditional CSS classes:
const MyComponent = c('my-class', { maybe: 'highlighted' });
render() {
<MyComponent highlighted />
}
Renders as: <div class="my-class_12345 highlighted_12345">
Example using semantic HTML:
const MyComponent = c('my-class', { el: 'header' });
<MyComponent />
Renders as: <header class="my-class_12345"></header>
Example using CSS variables:
const MyComponent = c('my-class', { vars: 'radius' });
<MyComponent radius="30" />
Renders as: <div class="my-class_12345" style="--radius: 30;">
Example using passthrough props:
const MyComponent = c('my-class');
<MyComponent style={{fontWeight: "400"}} />
Renders as: <div class="my-class_12345" style="font-weight: 400">
*/
import React from "react";
interface Options {
el?: string
maybe?: string
vars?: string
}
export default function connectToStyle(style) {
return function newStyleComponent(className, opts: Options = {}) {
const el = opts.el || 'div';
const resolvedClassName = style[className] || className;
const classesMap = {};
const varsMap = {};
for (const cssClass of (opts.maybe || '').split(' ')) {
classesMap[cssClass] = true;
}
for (const v of (opts.vars || '').split(' ')) {
varsMap[v] = true;
}
function componentFunc(props) {
let fullClassName = resolvedClassName;
let passdownProps: any = {}
for (const propName in props) {
const propVal = props[propName];
if (classesMap[propName]) {
if (propVal) {
fullClassName += ' ' + style[propName] || propName;
}
} else if (varsMap[propName]) {
if (!passdownProps.style)
passdownProps.style = {}
passdownProps.style[`--${propName}`] = propVal;
} else {
passdownProps[propName] = propVal;
}
}
return React.createElement(el, {
...passdownProps,
className: fullClassName,
})
}
Object.defineProperty(componentFunc, name, { value: `Style(${className})`, writable: false });
return componentFunc;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment