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.4.1
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.4.2
Choose a head ref
  • 2 commits
  • 3 files changed
  • 1 contributor

Commits on May 20, 2024

  1. fix: move back to in-build set and remove lodash.set (#685)

    bluebill1049 authored May 20, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    5754c47 View commit details
  2. chore: remove lodash.set dep

    bluebill1049 committed May 20, 2024
    Copy the full SHA
    767184d View commit details
Showing with 47 additions and 27 deletions.
  1. +0 −4 package.json
  2. +0 −22 pnpm-lock.yaml
  3. +47 −1 src/toNestErrors.ts
4 changes: 0 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -280,9 +280,5 @@
"*.{md,json,yml}": [
"prettier --write"
]
},
"dependencies": {
"@types/lodash.set": "^4.3.9",
"lodash.set": "^4.3.2"
}
}
22 changes: 0 additions & 22 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

48 changes: 47 additions & 1 deletion src/toNestErrors.ts
Original file line number Diff line number Diff line change
@@ -6,9 +6,55 @@ import {
FieldValues,
InternalFieldName,
} from 'react-hook-form';
import set from 'lodash.set';
import { validateFieldsNatively } from './validateFieldsNatively';

export const isDateObject = (value: unknown): value is Date => value instanceof Date;

export const isNullOrUndefined = (value: unknown): value is null | undefined => value == null;

export const isObjectType = (value: unknown): value is object =>
typeof value === 'object';

export const isObject = <T extends object>(value: unknown): value is T =>
!isNullOrUndefined(value) &&
!Array.isArray(value) &&
isObjectType(value) &&
!isDateObject(value);

export const isKey = (value: string) => /^\w*$/.test(value);

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

const stringToPath = (input: string): string[] =>
compact(input.replace(/["|']|\]/g, '').split(/\.|\[/));

const set = (object: FieldValues, path: string, value?: unknown) => {
let index = -1;
const tempPath = isKey(path) ? [path] : stringToPath(path);
const length = tempPath.length;
const lastIndex = length - 1;

while (++index < length) {
const key = tempPath[index];
let newValue = value;

if (index !== lastIndex) {
const objValue = object[key];
newValue =
isObject(objValue) || Array.isArray(objValue)
? objValue
: !isNaN(+tempPath[index + 1])
? []
: {};
}
object[key] = newValue;
object = object[key];
}
return object;
};


export const toNestErrors = <TFieldValues extends FieldValues>(
errors: FieldErrors,
options: ResolverOptions<TFieldValues>,