Skip to content

rafaelcardoso/react-styleable

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

46 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

react-styleable

A higher-order React Component that:

  • Makes defining and using css styles in React Components consistent
  • Makes your styles portable with your reusable components
  • Makes overriding styles easy and predictable

Install

npm install react-styleable --save-dev

Dependencies

CSS Modules

react-styleable assumes that your reusable component and consumers of that component will be using CSS modules.

CSS Modules allow for:

  • Writing CSS normally in a stylesheet in either vanilla CSS or any number of preprocessors (eg, Sass)
  • Not having to worry about a global namespace, creating a per-use module around styles
  • Defining explicit dependencies in your styles

I recommend using webpack's css-loader, which has support for CSS Modules.

Usage

react-styleable shines when used on reusable react components that has an accompanying stylesheet.

Write your css as you usually would. However, note that there's no need for a BEM-style namespacing. This is because these styles will be scoped to your local module.

.list {
  list-style: none;
  padding-left: 0;
  margin: 10px;
}
.item {
  outline: 1px solid red;
  padding: 10px;
}

Then in your reusable component, wrap your React.Component in this higher-order component. A decorator will work quite nicely:

import styleable from 'react-styleable'

import css from './my-list.css'

@styleable(css)
export default class MyList extends React.Component {
  renderItem(item, i) {
    return (
      <li key={i} className={this.props.css.item}>{item}</li>
    )
  }
  renderList(items) {
    return items.map(this.renderItem)
  }
  render() {
    return (
      <ul className={this.props.css.list}>
        {this.renderList(this.props.items)}
      </ul>
    )
  }
}

Now you can use the MyList component above and it will be styled as specified.

import MyList from './my-list'

React.render(<MyList />, document.getElementById('app'))

If you want to override this React Component's styles as the consumer, you can easily do so, through the same, consistent interface. First, define a new stylesheet:

.item {
  outline: 1px solid blue;
}

And use it to render MyList again:

import MyList from './my-list'

import css from './client.css'

React.render(<MyList css={css} />, document.getElementById('app'))

Now the .items outline will be blue instead of the original red.

React 0.14 Stateless Functions Usage

You can also wrap stateless functions, now possible in react@0.14, with react-styleable. The above MyList component could be rewritten as a stateless component:

import styleable from 'react-styleable'

import css from './my-list.css'

function renderItem(css, item, i) {
  return (
    <li key={i} className={css.item}>{item}</li>
  )
}
function renderList(css, items) {
  return items.map(renderItem.bind(null, css))
}
function MyList(props) {
  return (
    <ul className={props.css.list}>
      {renderList(props.css, props.items)}
    </ul>
  )
}

export default styleable(css)(MyList)

Styled. Portable. Easily overridden. So, so good.

About

React Component for portable styles

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 100.0%