1.1.1 • Published 11 years ago
react-suitcss v1.1.1
react-suitcss
Build React components that conform to SUIT CSS naming conventions. Express a component's modifiers and states as React props, and react-suitcss will output the proper classes into the DOM.
npm install --save react-suitcssUsage
Use react-css to create a base component module. Specify which modifiers and states are accepted. For instance, here's how you might create a toolbar component:
var React = require('react');
var SuitCSS = require('react-suitcss');
var Toolbar = React.createClass({
render() {
<SuitCSS
{...this.props}
componentName="Toolbar"
modifiers={['big', 'compact', 'red']}
states={['open', 'closed']}
>
...
</SuitCSS>
}
});Then you can use your new component like so:
<Toolbar />
// <div class="Toolbar" />
<Toolbar compact />
// <div class="Toolbar Toolbar--compact" />
<Toolbar isOpen />
// <div class="Toolbar is-open" />
<Toolbar compact isOpen />
// <div class="Toolbar Toolbar--compact is-open" />Available props
componentName- Base class name.modifiers- Whitelist of accepted modifiers.states- Whitelist of accepted states. Whitelist values of the formstatecorrespond to properties of the formisState. So if the whitelist containsopenandthis.props.isOpenis true, the DOM element gets classis-open.- element - String of DOM element to use. Defaults to
div.
License
MIT