Base Form component for building convenient forms for React.
npm install --save react-form-base react-form-base provides a Form base class which expects to work together with Input components. An Input is any component that consumes three properties: value, error and onChange. It also has to provide it's value as first argument to onChange function supplied in props. For existing ready-for-use input bindings take a look on react-form-js and react-form-material-ui.
Most of form use-cases with examples are revealed in Demo Application. Details on how to run it locally are at the end of README.
Bellow you can take a glance on main aspects of form usage: general API, custom on-change handlers, validation and $render helper function.
import Form from 'react-form-base'; import { TextField } from 'your-inputs'; // read on inputs in the beginning of README class MyForm extends Form { render() { return ( <div> <TextField {...this.$('firstName')} /> <TextField {...this.$('lastName')} /> <button onClick={this.save.bind(this)}>Save</button> </div> ); } }import Form from 'react-form-base'; import { TextField, Select } from 'your-inputs'; // read on inputs in the beginning of README import countries from 'utils/countries'; // it's just a stub class MyForm extends Form { render() { return ( <div> <TextField {...this.$('email')} /> <Select {...this.$('address.country')} options={countries} /> <TextField {...this.$('address.city')} /> <TextField {...this.$('address.streetLine')} /> <button onClick={this.save.bind(this)}>Save</button> </div> ); } }import Form from 'react-form-base'; import { Select } from 'your-inputs'; // read on inputs in the beginning of README class MyForm extends Form { changeItem(value) { this.set({ item: value, amount: null }); } render() { return ( <div> <Select {...this.$('item')(this.changeItem)} options={['Item 1', 'Item 2']} /> <Select {...this.$('amount')} options={['10', '50', '100']} /> <button onClick={this.save.bind(this)}>Save</button> </div> ); } }import Form from 'react-form-base'; import { TextField } from 'your-inputs'; // read on inputs in the beginning of README class MyForm extends Form { // static validations are common validation rules. it's best to define them // in your top-level application form that is a base class for other forms. static validations = { presence: function(value) { if (!value) return 'cannot be blank'; }, numericality: function(value, options) { const { greaterThan } = options; const fValue = parseFloat(value); if (isNaN(fValue)) return 'should be a number'; if (greaterThan != undefined && fValue <= greaterThan) { return `should be greater than ${greaterThan}`; } } }; // per-form input validations validations = { // firstName: 'presence' from static validation rules firstName: 'presence', // email: 'presence' validation from rules and custom regexp validation // for this specific form email: ['presence', function(value) { if (!/^[\w\d\.]+@[\w\d]+\.[\w\d]{2,}$/.test(value)) { return 'should be an email'; } }], // validation with options amount: { presence: true, numericality: { greaterThan: 10 } } }; render() { return ( <div> <TextField {...this.$('firstName')} /> <TextField {...this.$('email')} /> <TextField {...this.$('amount')} /> <button onClick={this.performValidation.bind(this)}>Validate</button> </div> ); } }If you don't have extra logic based on render method (such as implementing rendering in base form and calling super.render(someContent) from child forms), and you want to make things a little bit more DRY, you may declare your form's rendering using $render method that accepts input-generation function as argument. Thus, removing the this. prefix in inputs:
class MyForm extends Form { $render($) { return ( <div> <TextField {...$('firstName')} /> <TextField {...$('lastName')} /> <TextField {...$('email')} /> </div> ); } }This form of rendering declaration is also very useful when working with nested forms, since it has a special nested method that will generate onChange handler for nested form for you:
{this.map('items', (_item, i) => <ItemForm key={i} {...$.nested(`items.${i}`)} /> )}Of course, since $ is argument in this method, you may use any name for this variable that you find suitable.
$(name),input(name)- returns a set of properties for input with a given name.nameis a dot-separated string, i.e.'foo.bar'(forbarproperty nested in object underfoo), or'foos.1'(value at index 1 offoosarray), or'foos.2.bar'(barproperty of object at index 2 offoosarray)get(name)- returns a value for a given name. For example, if you have an attributes like{foos: [{bar: 'baz'}, {bar: 'bak'}]}, you might have:this.get('foos') // => [{bar: 'baz'}, {bar: 'bak'}]this.get('foos.1') // => {bar: 'bak'}this.get('foos.1.bar') // => 'bak'this.get() // returns whole form's attributes object
set(name, value)- sets avaluefor an input with a specifiedname.set(object)- sets multiple values at once. Each key in the object corresponds to input name, and values are input values.merge(name, value)- merges givenvalueobject with value of input with a givenname. Should be used when working with nested forms.push(name, value)- pushes avalueto an input (which is treated as array) with a givenname.remove(name, index)- removes an item of an input (which is treated as array) with a givennameat indexindex.each(name, iteratee)- iterates withiterateeover items in an input with a givenname, passing item and index toiteratee.map(name, iteratee)- maps withiterateeover items in an input with a givenname, passing item and index toiteratee.mapExtra(path, iteratee)- maps withiterateeover items in an input with a givenname, passing item and index toiteratee. Makes additional iteration that passesnulland length of items toiterateegetValidationErrors()- returns validation errors.performValidation()- runs validation routines and sets errors.ifValid(callback)- runs validation routines, sets errors, and executescallbackif there were no errors.getErrors()- returns an errors object.getError(name)- returns an error for an input with a givenname.setErrors(errors)- setserrors(object) as form's errors.save()- ifthis.props.validateOnSaveistrue(which is default value), performs validation and callsthis.props.onRequestSave(this.get(), this);if there were no errors. ifvalidateOnSaveproperty isfalse, callsthis.props.onRequestSave(this.get(), this);immediately.
| Prop Name | Spec | Description |
|---|---|---|
attrs | PropTypes.object.isRequired | Form's attributes - the values of form's inputs |
onChange | PropTypes.func | A callback that is called whenever form's input changes it's value. Form's attrs are passed to it. Typically has a form of (formAttrs) => this.setState({ formAttrs }) |
clearErrorsOnChange | PropTypes.bool, defaults to true | If input has an error on it and this property is enabled, error will be cleared when input changes its value |
validateOnChange | PropTypes.bool, defaults to true | If form has input validations defined, and validation routines were called with unsuccessful result, enabling this property will re-validate input when its value changes |
validateOnSave | PropTypes.bool, defaults to true | If true, on save method call form will run validations first and execute onRequestSave callback only if there were no errors |
onRequestSave | PropTypes.func | This callback is called in Form#save method, passing form's attrs and form object itself to it |
react-form-base's Form is a controlled form component, which means that attributes it works with are supplied from outer component in props. This also means that proper (yet trivial) onChange function should be also supplied.
import React, { Component } from 'react'; import MyForm from 'my-form'; class Page extends Component { state = { item: {} }; saveItem = (item, form) => { // stubbed AJAX request code (with axios-like error) post('/items', { item }) .then(() => this.setState({ item: {} })) .catch((err) => form.setErrors(err.response.data)); }; render() { return ( <MyForm attrs={this.state.item} onChange={(item) => this.setState({ item })} onRequestSave={this.saveItem} /> ); } }react-form-base also ships bindState(component, key = 'form') helper method that will generate { attrs, onChange } props object for a given component. For instance, form from example above using this helper will look like so:
import React, { Component } from 'react'; import { bindState } from 'react-form-base'; import MyForm from 'my-form'; class Page extends Component { saveItem = (item, form) => { // ... }; render() { return <MyForm {...bindState(this, 'item')} onRequestSave={this.saveItem} />; } }Hugs and thanks to ogrechishkina for her support and building all of the CSS for demo application.
$ git clone git@github.com:akuzko/react-form-base.git $ cd react-form-base/demo $ npm i $ gulp MIT