React Reformed
Tiny form bindings for React so you can stop storing your form data in local component state. This higher-order component wraps your component and, through props, injects form data (a model) and simple bindings to update that model, giving you the opportunity to utilize composition in a middleware-like approach to accomplish more advanced functionality without bloating the form component itself.
There is no framework here, it's about 75 lines of code that you could write yourself in a few minutes. The code is not what is important. My goal is to encourage developers to stop using local state in their forms, and do so without locking themselves into a prescriptive, and potentially monolithic, form library. There are some really cool things you can do with simple composition, and this project is an attempt to shine some light on those alternative approaches.
This library does not concern itself with submission, validation, or anything of that sort (though there are demos to show how these can be done) -- it's just a simple read/write API, and isn't even all that specific to forms. Everybody's forms are different, and I'm not smart enough to create a universal abstraction. As such, over time, I've found it easy to encapsulate the core logic of a form (setting properties on a model) in a single component and leverage composition to perform more intricate functionality.
Rationale
Controlled components are great, they allow you to perform realtime validation, transform user inputs on the fly, track changes over time, and generally improve developer and user experience. However, often times controlled components lead to a proliferation of local component state. You begin tracking validation states (should we be validating yet? Are we performing asynchronous operations?), submission states, and more. Before you know it, a small form component is a sizeable tangle of local state. What happens when something else needs access to that state? How do you incorporate shared validation logic?
Some libraries solve this with refs, others offer bindings onto local state, and still more tout a Comprehensive Form Solution with their own components and validation systems, but none of them feel right. Either they do too much, are too prescriptive, or just get in the way. Chances are, at some point these libraries will no longer fit your use case, forcing you to fight against rather than work with them. That is why this project is more an appeal to a different way of thinking than a complete form library.
With the approach offered here, because everything important to your form now lives in props, you can easily:
- Eliminate or reduce local component state
- Compose higher-order components as "middleware" (e.g. form validation)
- Serialize and rehydrate form state
- Replay changes to your model over time
- Change what the injected model setters do, without changing the form itself
- Spy or stub all
setModel
/setProperty
/etc. calls in testing - Avoid becoming locked into a specific framework
Most importantly, this approach allows for a pluggable/composeable ecosystem, rather than a One Solution To Rule Them All (but will soon change) approach.
Demo
If you want to play around with this in a sandbox, there's a working demo in the repo. It's the same one hosted here. Get your own copy by doing the following:
Usage
npm i --save react-reformed
Then just import it and wrap your form component:
You can also grab some of the example higher-order components via the npm package. These are just for demonstration, so they are not included in the main export. Use them just to give yourself some ideas!
Examples
Fast Prototypes
This library provides some simple bindings to speed up form creation. These are for convenience only; you can get by with just setProperty
and setModel
if you'd like. I encourage you to write your own abstractions over these core setters.
Advanced Uses
Here are just some ideas to get you thinking about what's possible when you stop isolating form data in local state and allow it to flow through props. These example are not necessarily production-ready, as they are simply meant as conceptual demonstrations.
Form Validation
This is an ultra-simple higher-order component for synchronous form validation. It is in no way specific to this library, all it does is expected a model
prop and apply additional isValid
and validationErrors
props based on how the model conforms to the validation rules.
How It Might Look
You could totally go above and beyond and implement something like this:
And no matter what you choose to do, your form component never changes.
Example Implementation
Tracking Changes
The model is never mutated, so it's easy to check when it's been changed.
How It Might Look
Example Implementation
With Redux
How It Might Look
If you want to persist your form in Redux over time, you don't even need reformed
. By following its pattern of simple model setters, you can just fulfill the same interface with connect
and have a redux-ified form without needing a redux-specific form library (or any other framework/implementation). The best part is, if you switch to something else down the road you won't need to unreduxify the form, just its container.
Local Storage
This, again, is a simplified example. You could very easily implement a debounce or throttle function to limit how often the data is written to local storage.
How It Might Look
Example Implementation
Storage - Abstracted
Notice anything interesting about the local storage example? It's not at all specific to local storage...
How It Might Look
Example Implementation
API Documentation
reformed : (Props -> Props) -> ReactComponent -> ReactComponent
Wraps a React component and injects the form model and setters for that model. You can optionally pass in a function to the first reformed
call that will transform the props that reformed
applies to the wrapped component. This is really just for experimentation and to keep the API open for the future.
Example:
setProperty : (String k, v) -> {k:v}
Injected by the reformed
higher order component. Allows you to set a specific property on the model.
Example:
setModel : {k:v} -> {k:v}
Injected by the reformed
higher order component. Allows you to completely override the model.
Example:
bindInput : String k -> Props
Injected by the reformed
higher order component. Applies name
, value
, and onChange
properties to the input element. Because this does not have a ref to your component or know anything other than the name of the model property, it cannot handle every possible scenario. As such, this should mostly just be used for simple text
inputs where the event target's name and value can be used to update the property.
When other use cases arise, it's recommended to just use setProperty
or setModel
directly or extend reformed
to provide the bindings you need.
Example: