Formik form validation
Formik form validation
PDSL provides a handy schema named export that can be used to integrate directly with Formik:
import {schema as p} from "pdsl"
() => (
<Formik
initialValues=
validationSchema={p`{
email:
_ <- "Required"
& Email <- "Invalid email address",
firstName:
_ <- "Required"
& string[>2] <- "Must be longer than 2 characters"
& string[<20] <- "Nice try nobody has a first name that long",
lastName:
_ <- "Required"
& string[>2] <- "Must be longer than 2 characters"
& string[<20] <- "Nice try nobody has a last name that long"
}`}
onSubmit={values => {
// submit values
}}
render={({ errors, touched }) => (
// render form
)}
/>
)