React patterns: Scroll to first validation error
25 August 2022 (Updated 4 September 2022)
When a form validation error occurs, you typically want to scroll the screen to the first error. This is especially important on long forms where after clicking a submit button, the user needs to be taken to the first error.
Here’s a very rough & incomplete outline of an approach you can take with Formik though it should work even if you aren’t using Formik.
1. Create <ScrollToFirstError>
component
Create a ScrollToFirstError
component that looks something like this:
2. Use component inside Formik
Or create a <FormikEffect>
component that takes an onError
callback:
TODO
- It’d be better to only scroll to the first error if the first error is not visible in the viewport. Otherwise, the screen jumps a bit and UX becomes a bit jarring.
- It’s probably better to create a wrapper component (e.g.,
<EnhancedFormik>
) that takes aonError
callback. That way, we don’t have to create a component just for a side effect – which feels a bit iffy.
Tagged:
React patterns
Thanks for your comment . Once it's approved, it will appear here.
Leave a comment