2.0.1 • Published 6 years ago

react-feature v2.0.1

Weekly downloads
273
License
MIT
Repository
github
Last release
6 years ago

react-feature Build Status npm version

Setup

npm install react-feature --save

or

yarn add react-feature

and then

import { Feature } from 'react-feature'

Basic usage

Render feature depending on provided feature config:

<Feature name='banner:head' config={{'banner:head': true, 'feature2': true}}>
 <strong>Some html related to the feature</strong>
</Feature>

If you want to render an alternative case for the feature, when the feature is not present, you can use a negation sign within the name:

<Feature name='!banner:head' config={{feature1: true, feature2: true}}>
 <i>Some alternative html for the feature</i>
</Feature>

Usage with Redux

If you want to provide config for <Feature> component from Redux store, simply create <FeatureContainer> and connect proper state to config prop:

import { connect } from 'react-redux'
import { Feature } from 'react-feature'

const mapStateToProps = (state) => {
  return {
    config: state.featuresConfig
  }
}

const mapDispatchToProps = (dispatch, ownProps) => {
  return {
  }
}

const FeatureContainer = connect(
  mapStateToProps,
  mapDispatchToProps
)(Feature)

export default FeatureContainer

and then use <FeatureContainer> instead:

<FeatureContainer name='banner:head'>
 <strong>Some html related to the feature</strong>
</FeatureContainer>

Usage with config file

import { Feature } from 'react-feature'
import config from './config'

const FeatureContainer = ({name, children}) => (
  <Feature name={name} config={config}>
    {children}
  </Feature>
)

export default FeatureContainer
2.0.1

6 years ago

2.0.0

6 years ago

1.0.3

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago

1.0.0-alpha.2

7 years ago

1.0.0-alpha.1

7 years ago

1.0.0-alpha.0

7 years ago