MobX React Form
Reactive MobX Form State Management.
Features
- Extensibles Validation Plugins.
- Sync & Async Validation (w/ Promises & automatic errors).
- Nested Fields (w/ Serialization & Validation).
- Nested Forms (w/ Nested Submission & Validation Hooks).
- Event Hooks, Event Handlers & Validation Hooks
- Observers & Interceptors
- Bindings for custom Components.
- Support for Material UI, React Widgets, React Select & more.
- Dedicated DevTools Package.
Quick Start
Choose and Setup a Validation Plugin
See Validation Plugins for more info on supported packages.
Below we are creating a plugins
object using the validatorjs
package to enable DVR
functionalities (Declarative Validation Rules).
Define the Form Fields
Define the fields
as a collection with a rules
property for the validation.
You can also define
fields
as anobject
.
Define the Validation Hooks
Initialize the Form
Simply pass the fields
, plugins
and hooks
objects to the constructor
Pass the form to a react component
The package provide some built-in and ready to use Event Handlers:
onSubmit(e)
, onClear(e)
, onReset(e)
& more...
Other Field Props are available. See the docs for more details.
Extending the Form class
See how to implement the same configuration of this quickstart extending the Form class