-
Notifications
You must be signed in to change notification settings - Fork 34
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixes issue #3059 - scroll to first validation error on BaseForm #3060
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -127,4 +127,49 @@ describe("BaseForm component", () => { | |
expect(submit.disabled).toBe(true); | ||
expect(result.queryByTestId("spinner")).toBeDefined(); | ||
}); | ||
|
||
it("Should scroll to the first property that fails validation", async () => { | ||
const result = render( | ||
<BaseForm | ||
className="testClass" | ||
schema={testSchema} | ||
uiSchema={testUiSchema} | ||
onSubmit={jest.fn()} | ||
customValidate={(data, errors) => { | ||
errors.title.addError("test error"); | ||
return errors; | ||
}} | ||
/> | ||
); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Shall we add a test here to make sure the query selector that we use in the code is found in the page? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Good call, added |
||
const testFn = jest.fn(); | ||
|
||
const submit = await result.findByText("Submit"); | ||
const titleLabel = await result.findByText("Title"); | ||
titleLabel.scrollIntoView = testFn; | ||
fireEvent.click(submit); | ||
expect(testFn).toHaveBeenCalledTimes(1); | ||
expect(result.container.querySelector(`[for="root_title"]`)).not.toBeNull(); | ||
}); | ||
|
||
it("Should scroll to the top of the form if validation failed without a specific property", async () => { | ||
const result = render( | ||
<BaseForm | ||
className="testClass" | ||
schema={testSchema} | ||
uiSchema={testUiSchema} | ||
onSubmit={jest.fn()} | ||
customValidate={(data, errors) => { | ||
errors.addError("test error"); | ||
return errors; | ||
}} | ||
/> | ||
); | ||
const testFn = jest.fn(); | ||
|
||
const submit = await result.findByText("Submit"); | ||
const formWrapper = await result.findByTestId("formWrapper"); | ||
formWrapper.scrollIntoView = testFn; | ||
fireEvent.click(submit); | ||
expect(testFn).toHaveBeenCalledTimes(1); | ||
}); | ||
}); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This could be fragile since it seems to rely on an internal RSJF naming. Maybe we could add a link to it, I can't find it in upstream source https://github.com/rjsf-team/react-jsonschema-form/blob/main/packages/bootstrap-4/src/FieldErrorTemplate/FieldErrorTemplate.tsx