@rcp/hoc.uncontrolled
v3.0.0
Published
The high order component for creating uncontrolled component
Downloads
17
Readme
@rcp/hoc.uncontrolled
The high order component for creating uncontrolled component
Installation
npm install @rcp/hoc.uncontrolled
# or use yarn
yarn add @rcp/hoc.uncontrolled
Usage
import uncontrolled from '@rcp/hoc.uncontrolled'
// `props.defaultValue` and `props.value`
// could be assigned to `this.state.value` in `constructor` and `componentWillReceiveProps` automatically.
@uncontrolled(['value'])
class Input extends React.Component {
render() {
return <input value={this.state.value} />
}
}
API
uncontrolled
Parameters
propList
{Prop[]} eg.['value']
/[{ name: 'value', withDefault: false, eq: (a, b) => a === b }]
Returns Function (Component: React.ComponentClass) => React.ComponentClass
Related
Authors
This library is written and maintained by imcuttle, mailto:[email protected].
License
MIT