Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(validation_error): replace boolean filter with isNotNil filter on path. #27

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ function createValidationError(e: z.ZodError) {
*/
export function toFormikValidationSchema<T>(
schema: z.ZodSchema<T>,
params?: Partial<z.ParseParams>,
params?: Partial<z.ParseParams>
): { validate: (obj: T) => Promise<void> } {
return {
async validate(obj: T) {
Expand All @@ -44,7 +44,7 @@ function createValidationResult(error: z.ZodError) {
const result: Record<string, string> = {};

for (const x of error.errors) {
result[x.path.filter(Boolean).join(".")] = x.message;
result[x.path.filter(isNotNill).join(".")] = x.message;
}

return result;
Expand All @@ -66,3 +66,7 @@ export function toFormikValidate<T>(
}
};
}

function isNotNill<T>(value: T): value is NonNullable<T> {
return value !== null && value !== undefined;
}