React High Order Form Component.
npm install
npm start
http://localhost:8000/examples/
online example: http://react-component.github.io/form/examples/
- support reactjs and even react-native
import { createForm } from 'rc-form';
class Form extends React.Component {
submit = () => {
this.props.form.validateFields((error, value) => {
console.log(error, value);
});
}
render() {
let errors;
const { getFieldProps, getFieldError } = this.props.form;
return (<div>
<input {...getFieldProps('normal')}/>
<input {...getFieldProps('required', {
onChange(){}, // have to write original onChange here if you need
rules: [{required: true}],
})}/>
{(errors = getFieldError('required')) ? errors.join(',') : null}
<button onClick={this.submit}>submit</button>
</div>)
}
}
export createForm()(Form);
or a quicker version:
import { createForm } from 'rc-form';
class Form extends React.Component {
componentWillMount() {
this.requiredDecorator = this.props.form.getFieldDecorator({
name: 'required',
rules: [{required: true}],
});
},
submit = () => {
this.props.form.validateFields((error, value) => {
console.log(error, value);
});
}
render() {
let errors;
const { getFieldError } = this.props.form;
return (<div>
{this.requiredDecorator(
<input onChange={
// can still write your own onChange }
/>)}
{(errors = getFieldError('required')) ? errors.join(',') : null}
<button onClick={this.submit}>submit</button>
</div>)
}
}
export createForm()(Form);
preset messages of async-validator
Get new props transfered to WrappedComponent. Defaults to props=>props.
Called when field changed, you can dispatch fields to redux store.
convert value from props to fields. used for read fields from redux store.
Maintain an ref for wrapped component instance, use refs.wrappedComponent
to access.
createForm() will return another function:
Will pass a object as prop form with the following members to WrappedComponent:
Will create props which can be set on a input/InputComponent which support value and onChange interface.
After set, this will create a binding with this input.
<form>
<input {...getFieldProps('name', { ...options })} />
</form>
This input's unique name.
whether set value exclusively. used with radio.
Prop name of component's value field, eg: checkbox should be set to checked
...
Specify how to get value from event. Defaults to
function (e) {
if (!e || !e.target) {
return e;
}
const { target } = e;
return target.type === 'checkbox' ? target.checked : target.value;
}
get the component props according to field value. Defaults to
function (value) {
return { value };
}
Initial value of current component.
Return normalized value
Defaults to onChange
. Event which is listened to collect form data.
Event which is listened to validate.
Defaults to onChange
, set to falsy to only validate when call props.validateFields.
Validator rules. see: async-validator
{
validateTrigger: 'onBlur',
rules: [{required: true}],
}
// is the shorthand of
{
validate: [{
trigger: 'onBlur',
rules: [required: true],
}],
}
Defaults to false. whether stop validate on first rule of error for this field.
Similar to getFieldProps
, but add some helper warnings and you can write onXX directly inside React.Node props:
<form>
{getFieldDecorator('name', otherOptions)(<input />)}
</form>
Get fields value by fieldNames.
Get field value by fieldName.
Get field react public instance by fieldName.
Set fields value by kv object.
Set fields initialValue by kv object. use for reset and initial display/value.
Set fields by kv object. each field can contain errors and value member.
Validate and get fields value by fieldNames.
options is the same as validate method of async-validator.
And add force
and scroll
. scroll
is the same as dom-scroll-into-view's function parameter config
.
Defaults to false. Whether to validate fields which have been validated(caused by validateTrigger).
Get input's validate errors.
Whether this input is validating.
Whether one of the inputs is validating.
Whether the form is submitting.
Cause isSubmitting to return true, after callback called, isSubmitting return false.
Reset specified inputs. Defaults to all.
createForm enhancement, support props.form.validateFieldsAndScroll
props.form.validateFieldsAndScroll([fieldNames: String[]], [options: Object], callback: Function(errors, values))
props.form.validateFields enhancement, support scroll to the first invalid form field
Defaults to first scrollable container of form field(until document).
-
Do not use stateless function component inside Form component: facebook/react#6534
-
you can not set same prop name as the value of validateTrigger/trigger for getFieldProps
<input {...getFieldProps('change',{
onChange: this.iWantToKnow // you must set onChange here or use getFieldDecorator to write inside <input>
})}>
- you can not use ref prop for getFieldProps
<input {...getFieldProps('ref')} />
this.props.form.getFieldInstance('ref') // use this to get ref
or
<input {...getFieldProps('ref',{
ref: this.saveRef // use function here or use getFieldDecorator to write inside <input> (only allow function)
})} />
npm test
npm run chrome-test
npm run coverage
open coverage/ dir
rc-form is released under the MIT license.