项目作者: yassine

项目描述 :
A React higher-order component encapsulating style states
高级语言: JavaScript
项目地址: git://github.com/yassine/style-stateful.git
创建时间: 2018-07-17T08:11:08Z
项目社区:https://github.com/yassine/style-stateful

开源协议:Apache License 2.0

下载


style-stateful

Build Status
Quality Gate
Maintainability
Reliability
Coverage

A React higher-order component encapsulating style states

Rationale

When developing a Presentational component, often we have to deal with the mechanism by which
our component would translate its props/state into a set of css classes. The goal of the
StyleStateful hoc is to isolate that mechanism into a reducer like function that would map
the state and props of the component into a set of CSS states.

Example

Consider the following component:

  1. @StyleStateful(mapPropsToStyleState)
  2. class MyFancyInput extends React.Component {
  3. render () {
  4. return <div css-ref = 'fancy__wrap'>
  5. <label css-ref = 'fancy__label' >Name</label>
  6. <input css-ref = 'fancy__input' type = 'text' value = {this.props.value}/>
  7. </div>,
  8. }
  9. }
  10. //Here is our mapper
  11. function mapPropsToStyleState(props, state) {
  12. //a style/css state would be activated when its associated boolean value is true
  13. return {
  14. 'highlight' : props.isHightlighted,
  15. 'valid' : !!props.value,
  16. 'invalid' : !props.value
  17. }
  18. }

Let’s say the component can have many css states such as : valid, invalid and highlight.
By using the Hoc (configured with the appropriate mapper as per the example), the
resulting markup of the following component
<MyFancyInput value = 'Hello World!' isHightlighted = { true }></MyFancyInput>
would be :

  1. <div class = 'fancy__wrap fancy__wrap--highlight fancy__wrap--valid'>
  2. <label class = 'fancy__label fancy__label--highlight fancy__label--valid' >Name</label>
  3. <input class = 'fancy__input fancy__input--highlight fancy__input--valid' type = 'text' value = 'Hello World!'/>
  4. </div>