rf-validator
v0.0.25
Published
A simple tool to make Redux Form validation a bit simpler
Downloads
78
Maintainers
Readme
Redux Form* Validator
A simple tool to help with sync validation in Redux Form*.
* Also works with Formik, and any other form library with the same API
Install
yarn add rf-validator
import validator from 'rf-validator'
const validator = require('rf-validator').default
Why?
Sync validation in Redux Form is straight-forward:
const validate = values => {
const errors = {}
if (!values.username) {
errors.username = 'Value cannot be empty'
}
return errors
}
Handling validation like this can lead to a lot of repition, so we create more generic validation functions:
const validateEmpty = value => !value ? 'Value cannot be empty' : undefined
const validate = values => {
const errors = {}
errors.username = validateEmpty(values.username)
return errors
}
However even doing this can lead to a lot of unnecessary boilerplate once we introduce more than one rule for multiple fields:
const validate = values => {
const errors = {}
const isUsernameEmpty = validateEmpty(values.username)
const isUsernameLongEnough = validateLength(values.username, 3)
errors.username = iserUsernameEmpty || isUsernameLongEnough
const isPasswordEmpty = validateEmpty(values.password)
const isPasswordLongEnough = validateLength(values.password, 8)
errors.password = isPasswordEmpty || isPasswordLongEnough
return errors
}
Using this package we can simply pass lists of validators to properties corresponding with fields to achieve the same result:
const validate = validator({
username: [validateEmpty, val => validateLength(val, 3)],
password: [validateEmpty, val => validateLength(val, 8)]
})
validator(rules)
returns a function which we simply pass to reduxForm
:
export default reduxForm({
form: 'myForm',
validate
})(MyComponent)
API
validator
Accepts an object with propeties matching the names of the fields to validate:
validator({ someField })
Each property can contain a validator function:
validator({ someField: validateEmpty })
To pass multiple validation rules simply pass an array of validators, validators at the start of the array will be called first:
validator({
someField: [validateEmpty, validateLength, validateExists]
})
Each validator function should return a falsey value if the validation rule passes:
const validateEmpty = value => {
if (!value) {
return 'Cannot be empty!'
}
}