Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: react-hook-form/resolvers
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v3.3.3
Choose a base ref
...
head repository: react-hook-form/resolvers
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v3.3.4
Choose a head ref
  • 2 commits
  • 2 files changed
  • 2 contributors

Commits on Dec 30, 2023

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    235bbcd View commit details

Commits on Jan 4, 2024

  1. Copy the full SHA
    1bfc6ab View commit details
Showing with 52 additions and 7 deletions.
  1. +51 −0 src/__tests__/toNestErrors.ts
  2. +1 −7 src/toNestErrors.ts
51 changes: 51 additions & 0 deletions src/__tests__/toNestErrors.ts
Original file line number Diff line number Diff line change
@@ -204,3 +204,54 @@ test('transforms flat object to nested object with root error for field array',
],
});
});

test('ensures consistent ordering when a field array has a root error and an error in the non-first element', () => {
const result = toNestErrors(
{
'fieldArrayWithRootError.1.name': {
type: 'second',
message: 'second message',
},
fieldArrayWithRootError: { type: 'root-error', message: 'root message' },
},
{
fields: {
fieldArrayWithRootError: {
name: 'fieldArrayWithRootError',
ref: { name: 'fieldArrayWithRootError' },
},
'fieldArrayWithRootError.0.name': {
name: 'fieldArrayWithRootError.0.name',
ref: { name: 'fieldArrayWithRootError.0.name' },
},
'fieldArrayWithRootError.1.name': {
name: 'fieldArrayWithRootError.1.name',
ref: { name: 'fieldArrayWithRootError.1.name' },
},
},
names: [
'fieldArrayWithRootError',
'fieldArrayWithRootError.0.name',
'fieldArrayWithRootError.1.name',
],
shouldUseNativeValidation: false,
},
);

expect(result).toEqual({
fieldArrayWithRootError: {
'1': {
name: {
type: 'second',
message: 'second message',
ref: { name: 'fieldArrayWithRootError.1.name' },
},
},
root: {
type: 'root-error',
message: 'root message',
ref: { name: 'fieldArrayWithRootError' },
},
},
});
});
8 changes: 1 addition & 7 deletions src/toNestErrors.ts
Original file line number Diff line number Diff line change
@@ -23,10 +23,7 @@ export const toNestErrors = <TFieldValues extends FieldValues>(
});

if (isNameInFieldArray(options.names || Object.keys(errors), path)) {
const fieldArrayErrors = Object.assign(
{},
compact(get(fieldErrors, path)),
);
const fieldArrayErrors = Object.assign({}, get(fieldErrors, path));

set(fieldArrayErrors, 'root', error);
set(fieldErrors, path, fieldArrayErrors);
@@ -38,9 +35,6 @@ export const toNestErrors = <TFieldValues extends FieldValues>(
return fieldErrors;
};

const compact = <TValue>(value: TValue[]) =>
Array.isArray(value) ? value.filter(Boolean) : [];

const isNameInFieldArray = (
names: InternalFieldName[],
name: InternalFieldName,