|
1 |
| -import type { ValidationError } from '@tanstack/form-core' |
2 |
| -import type { SafeParseError, ZodIssue, ZodType, ZodTypeAny } from 'zod' |
| 1 | +import type { Validator, ValidatorAdapterParams } from '@tanstack/form-core' |
| 2 | +import type { ZodIssue, ZodType } from 'zod' |
3 | 3 |
|
4 |
| -type Params = { |
5 |
| - transformErrors?: (errors: ZodIssue[]) => ValidationError |
6 |
| -} |
| 4 | +type Params = ValidatorAdapterParams<ZodIssue> |
7 | 5 |
|
8 | 6 | export const zodValidator =
|
9 |
| - (params: Params = {}) => |
| 7 | + (params: Params = {}): Validator<unknown, ZodType> => |
10 | 8 | () => {
|
11 | 9 | return {
|
12 |
| - validate({ value }: { value: unknown }, fn: ZodType): ValidationError { |
13 |
| - // Call Zod on the value here and return the error message |
14 |
| - const result = (fn as ZodTypeAny).safeParse(value) |
15 |
| - if (!result.success) { |
16 |
| - if (params.transformErrors) { |
17 |
| - return params.transformErrors( |
18 |
| - (result as SafeParseError<any>).error.issues, |
19 |
| - ) |
20 |
| - } |
21 |
| - return (result as SafeParseError<any>).error.issues |
22 |
| - .map((issue) => issue.message) |
23 |
| - .join(', ') |
| 10 | + validate({ value }, fn) { |
| 11 | + const result = fn.safeParse(value) |
| 12 | + if (result.success) return |
| 13 | + if (params.transformErrors) { |
| 14 | + return params.transformErrors(result.error.issues) |
24 | 15 | }
|
25 |
| - return |
| 16 | + return result.error.issues.map((issue) => issue.message).join(', ') |
26 | 17 | },
|
27 |
| - async validateAsync( |
28 |
| - { value }: { value: unknown }, |
29 |
| - fn: ZodType, |
30 |
| - ): Promise<ValidationError> { |
31 |
| - // Call Zod on the value here and return the error message |
32 |
| - const result = await (fn as ZodTypeAny).safeParseAsync(value) |
33 |
| - if (!result.success) { |
34 |
| - if (params.transformErrors) { |
35 |
| - return params.transformErrors( |
36 |
| - (result as SafeParseError<any>).error.issues, |
37 |
| - ) |
38 |
| - } |
39 |
| - return (result as SafeParseError<any>).error.issues |
40 |
| - .map((issue) => issue.message) |
41 |
| - .join(', ') |
| 18 | + async validateAsync({ value }, fn) { |
| 19 | + const result = await fn.safeParseAsync(value) |
| 20 | + if (result.success) return |
| 21 | + if (params.transformErrors) { |
| 22 | + return params.transformErrors(result.error.issues) |
42 | 23 | }
|
43 |
| - return |
| 24 | + return result.error.issues.map((issue) => issue.message).join(', ') |
44 | 25 | },
|
45 | 26 | }
|
46 | 27 | }
|
0 commit comments