react-ux-form
A simple, fast, and opinionated form library for React & React Native focusing on UX.
Setup
Features
- Subscription-based field updates (avoid re-render the whole form on each keystroke ?)
- Validation strategies ✨
- Field sanitization
- Mounted-only fields validation
- Advanced focus handling
- Best-in-class TypeScript support
- Sync and async field validation
- Sync and async form submission
Motivation
Why another React form library ??
Because, as silly as it seems, we couldn't find any existing library which fits our existing needs:
- We want validation strategies per field because we fell in love with them when we read the re-formality documentation (which is unfortunately only available for ReScript).
- It should be able to handle huge forms without a single performance hiccup.
- Validation should be simple, reusable, and testable (aka just functions).
- It shouldn't even try to validate unmounted fields.
- It should have built-in focus management (to improve the keyboard flow of our React Native forms).
Validation strategies ✨
The key of good UX is simple: validation should be executed in continue, feedback should be provided when it makes sense.
Quick example: A credit card field ?
Let's say we want to display a valid state icon (✔) when the input value is a valid credit card number but don't want to display an error until the user blurs the field (and lets the value in an invalid state).
Something like this:
How do we easily achieve such magic? With the onFirstSuccessOrFirstBlur
strategy ?♂️
Of course, onFirstSuccessOrFirstBlur
will not fit perfectly every use-case!
That's precisely why every field config could declare its own strategy
:
Strategy | When feedback will be available? |
---|---|
onFirstChange |
On first change (as the user types or update the value) |
onFirstSuccess |
On first validation success |
onFirstBlur |
On first field blur |
onFirstSuccessOrFirstBlur |
On first validation success or first field blur (default) |
onSubmit |
On form submit |
Note that:
- The strategies will only be activated after the field value update / the form submission.
- Once the first feedback is given (the field is
valid
or should display anerror
message), the field switches to what we call "talkative" state. After that, feedback will be updated on each value change until this field or the form is reset.
API
⚠️ The API is described using TypeScript pseudocode.
These types are not exported by the library / are not even always valid.
useForm
useForm
takes one argument (a map of your fields configs) and returns a set of helpers (functions, components, and values) to manage your form state.
Field config
formStatus
<Field />
A component that exposes everything you need locally as a children
render prop.
<FieldsListener />
A component that listens for fields states changes. It's useful when a part of your component needs to react to fields updates without triggering a full re-render.
getFieldState
By setting sanitize: true
, you will enforce sanitization.
setFieldValue
By setting validate: true
, you will enforce validation. It has no effect if the field is already talkative.
focusField
Will only work if you forward the Field
provided ref
to your input.
resetField
Value will be set to initialValue
, and user feedback will be hidden (the field is not talkative anymore).
validateField
Once you manually call validation, the field automatically switches to talkative state.
listenFields
A function that listen for fields states changes. Useful when you want to apply side effects on values change.
resetForm
Will reset all fields states and the formStatus
.
submitForm
Submit your form. Each callback could return a Promise
to keep formStatus
in submitting
state.
combineValidators
As it's a very common case to use several validation functions per field, we export a combineValidators
helper function that allows you to chain sync and async validation functions: it will run them sequentially until an error is returned.
hasDefinedKeys
As some of your fields might be unmounted on submit, the submitForm
method could not guarantee that every field value is defined and valid. We export hasDefinedKeys
helper function that allows you to test if some object keys are defined.
Quickstart
More examples
A full set of examples is available on the demo website or in the /website
directory project. Just clone the repository, install its dependencies and start it!