Skip to content
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

Merged
merged 2 commits into from
Nov 17, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 15 additions & 3 deletions src/components/BaseForm.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import React, { useState } from "react";
import React, { useRef, useState } from "react";
import { withTheme, FormProps } from "@rjsf/core";
import { Theme as Bootstrap4Theme } from "@rjsf/bootstrap-4";
import validator from "@rjsf/validator-ajv8";
import { RJSFSchema } from "@rjsf/utils";
import { RJSFSchema, RJSFValidationError } from "@rjsf/utils";

import TagsField from "./TagsField";
import Spinner from "./Spinner";
Expand All @@ -18,17 +18,29 @@ export type BaseFormProps = Omit<FormProps, "validator"> & {

export default function BaseForm(props: BaseFormProps) {
const [isSubmitting, setIsSubmitting] = useState(false);
const formRef = useRef(null);
const { className, disabled, showSpinner, onSubmit, ...restProps } = props;

const handleOnSubmit = form => {
setIsSubmitting(true);
onSubmit(form);
};

const errorFocus = (err: RJSFValidationError) => {
if (err?.property !== ".") {
formRef.current
.querySelector(`[for="root${err.property.replace(/\./g, "_")}"]`)
Comment on lines +31 to +32
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
formRef.current
.querySelector(`[for="root${err.property.replace(/\./g, "_")}"]`)
const fieldName = err.property.replaceAll(".", "_");
formRef.current
.querySelector(`[for="root${fieldName}"]`)

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

.scrollIntoView({ behavior: "auto", block: "center" });
} else {
formRef.current.scrollIntoView({ behavior: "auto", block: "start" });
}
};

return (
<div className="formWrapper">
<div className="formWrapper" ref={formRef} data-testid="formWrapper">
<FormWithTheme
{...restProps}
focusOnFirstError={errorFocus}
className={`rjsf ${className ? className : ""}`}
validator={validator}
onSubmit={handleOnSubmit}
Expand Down
45 changes: 45 additions & 0 deletions test/components/BaseForm_test.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}}
/>
);
Copy link
Contributor

@leplatrem leplatrem Nov 16, 2023

Choose a reason for hiding this comment

The 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? .querySelector(`[for="root${err.property.replace(/\./g, "_")}"]`)
This way if RJSF changes the way it names its fields, the test would break

Copy link
Contributor Author

Choose a reason for hiding this comment

The 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);
});
});