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.2
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.5.0
Choose a head ref
  • 1 commit
  • 9 files changed
  • 1 contributor

Commits on Jun 4, 2024

  1. feat: migrate arktype resolver to v2 (#686)

    ssalbdivad authored Jun 4, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    c53864f View commit details
2 changes: 1 addition & 1 deletion arktype/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@hookform/resolvers/arktype",
"amdName": "hookformResolversArktype",
"version": "1.0.0",
"version": "2.0.0",
"private": true,
"description": "React Hook Form validation resolver: arktype",
"main": "dist/arktype.js",
4 changes: 2 additions & 2 deletions arktype/src/__tests__/Form-native-validation.tsx
Original file line number Diff line number Diff line change
@@ -57,14 +57,14 @@ test("form's native validation with Zod", async () => {
usernameField = screen.getByPlaceholderText(/username/i) as HTMLInputElement;
expect(usernameField.validity.valid).toBe(false);
expect(usernameField.validationMessage).toBe(
'username must be more than 1 characters (was 0)',
'username must be more than length 1 (was 0)',
);

// password
passwordField = screen.getByPlaceholderText(/password/i) as HTMLInputElement;
expect(passwordField.validity.valid).toBe(false);
expect(passwordField.validationMessage).toBe(
'password must be more than 1 characters (was 0)',
'password must be more than length 1 (was 0)',
);

await user.type(screen.getByPlaceholderText(/username/i), 'joe');
4 changes: 2 additions & 2 deletions arktype/src/__tests__/Form.tsx
Original file line number Diff line number Diff line change
@@ -47,10 +47,10 @@ test("form's validation with arkType and TypeScript's integration", async () =>
await user.click(screen.getByText(/submit/i));

expect(
screen.getByText('username must be more than 1 characters (was 0)'),
screen.getByText('username must be more than length 1 (was 0)'),
).toBeInTheDocument();
expect(
screen.getByText('password must be more than 1 characters (was 0)'),
screen.getByText('password must be more than length 1 (was 0)'),
).toBeInTheDocument();
expect(handleSubmit).not.toHaveBeenCalled();
});
18 changes: 8 additions & 10 deletions arktype/src/__tests__/__fixtures__/data.ts
Original file line number Diff line number Diff line change
@@ -1,22 +1,20 @@
import { Field, InternalFieldName } from 'react-hook-form';
import { type, arrayOf, union } from 'arktype';
import { type } from 'arktype';

export const schema = type({
username: 'string>2',
password: union(['string>8', '&', '/.*[A-Za-z].*/'], ['/.*\\d.*/']),
password: '/.*[A-Za-z].*/>8|/.*\\d.*/',
repeatPassword: 'string>1',
accessToken: union('string', 'number'),
accessToken: 'string|number',
birthYear: '1900<number<2013',
email: 'email',
tags: arrayOf('string'),
tags: 'string[]',
enabled: 'boolean',
url: 'string>1',
'like?': arrayOf(
type({
id: 'number',
name: 'string>3',
}),
),
'like?': type({
id: 'number',
name: 'string>3',
}).array(),
dateStr: 'Date',
});

455 changes: 423 additions & 32 deletions arktype/src/__tests__/__snapshots__/arktype.ts.snap

Large diffs are not rendered by default.

30 changes: 10 additions & 20 deletions arktype/src/arktype.ts
Original file line number Diff line number Diff line change
@@ -1,41 +1,31 @@
import { FieldError, FieldErrors } from 'react-hook-form';
import { toNestErrors, validateFieldsNatively } from '@hookform/resolvers';
import type { Resolver } from './types';
import { Problems } from 'arktype';
import { ArkErrors } from 'arktype';

const parseErrorSchema = (e: Problems) => {
const errors: Record<string, FieldError> = {};
for (; e.length; ) {
const error = e[0];
const _path = error.path.join('.');

if (!errors[_path]) {
errors[_path] = { message: error.message, type: error.code };
}

// @ts-expect-error - false positive Property 'shift' does not exist on type 'Problems'.
e.shift();
}

return errors;
const parseErrorSchema = (e: ArkErrors): Record<string, FieldError> => {
// copy code to type to match FieldError shape
e.forEach((e) => Object.assign(e, { type: e.code }));
// need to cast here because TS doesn't understand we added the type field
return e.byPath as never;
};

export const arktypeResolver: Resolver =
(schema, _schemaOptions, resolverOptions = {}) =>
(values, _, options) => {
const result = schema(values);
const out = schema(values);

if (result.problems) {
if (out instanceof ArkErrors) {
return {
values: {},
errors: toNestErrors(parseErrorSchema(result.problems), options),
errors: toNestErrors(parseErrorSchema(out), options),
};
}

options.shouldUseNativeValidation && validateFieldsNatively({}, options);

return {
errors: {} as FieldErrors,
values: resolverOptions.raw ? values : result.data,
values: resolverOptions.raw ? values : out,
};
};
2 changes: 1 addition & 1 deletion arktype/src/types.ts
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@ import { Type } from 'arktype';

export type Resolver = <T extends Type<any>>(
schema: T,
schemaOptions?: never,
schemaOptions?: undefined,
factoryOptions?: {
/**
* Return the raw input values rather than the parsed values.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -233,7 +233,7 @@
"@vitejs/plugin-react": "^4.0.4",
"ajv": "^8.12.0",
"ajv-errors": "^3.0.0",
"arktype": "1.0.19-alpha",
"arktype": "2.0.0-dev.14",
"check-export-map": "^1.3.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
8,250 changes: 4,535 additions & 3,715 deletions pnpm-lock.yaml

Large diffs are not rendered by default.