I am a beginner and trying to create a form in reactjs using Yup validation. I am trying to experiment with a very simple form that has firstName, lastName. And I am trying to only show lastName field when firstName is validated
using the useFormik hook
const formik = useFormik({
initialValues: {
firstName: "",
lastName: "",
// email: ""
},
validationSchema: Yup.object({
firstName : Yup.string().max(15,"Must be 15 chars or less").required("required"),
lastName : Yup.string().when("firstName", {
is:true,
then: Yup.string().required("req")
})
}),
onSubmit:(values) => {
console.log(values)
}
})
Yup validation and on submit func
validationSchema: Yup.object({
firstName : Yup.string().max(15,"Must be 15 chars or less").required("required"),
lastName : Yup.string().when("firstName", {
is:true,
then: Yup.string().required("req")
})
}),
onSubmit:(values) => {
console.log(values)
}
})
My actual form
<form onSubmit={formik.handleSubmit}>
<div className="input-container">
<input
id="firstName"
name="firstName"
type="text"
placeholder="firstName"
onChange={formik.handleChange}
value={formik.values.firstName}
/>
{formik.errors.firstName ? <p>{formik.errors.firstName}</p> : null}
</div>
<div className="input-container">
<input
id="lastName"
name="lastName"
type="text"
placeholder="lastName"
onChange={formik.handleChange}
value={formik.values.lastName}
/>
</div>
<button type="submit">Submit</button>
</form>
Not sure if should hide/show the lastName input field in the form, I have already declared it inside Formik initial values object.
There are two things to deal with here:
lastName
whenfirstName
has a value. If that assumption is correct, you can do something like this:In the above example,
is: (firstName) => !!firstName
is checking iffirstName
has a value. If you wanted to requirelastName
only whenfirstName
is valid, you could change that line tois: (firstName) => firstName && firstName.length <= 15
You could also shorten it a bit but the above solution should work. Shortened version: