Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x | import { type core, type ZodError, type ZodType } from 'zod';
export class ValidationError extends Error {
public name = 'ValidationError';
public inner: { path: string; message: string }[] = [];
public constructor(message: string) {
super(message);
}
}
function createValidationError(zodError: ZodError) {
const validationError = new ValidationError(zodError.message);
validationError.inner = zodError.issues.map((err) => ({
message: err.message,
path: err.path.join('.'),
}));
return validationError;
}
/**
* Wrap your zod schema in this function when providing it to Formik's validation schema prop
* @param schema The zod schema
* @returns An object containing the `validate` method expected by Formik
*/
export function toFormikValidationSchema<TFormValues>(
schema: ZodType<TFormValues>,
params?: Partial<core.ParseContext<core.$ZodIssue>>,
): { validate: (values: TFormValues) => Promise<void> } {
return {
async validate(values: TFormValues) {
try {
await schema.parseAsync(values, params);
} catch (err: unknown) {
throw createValidationError(err as ZodError<TFormValues>);
}
},
};
}
|