mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-30 03:38:54 +01:00
fix(Form): fix getValibotError to avoid importing safeParseAsync (#640)
This commit is contained in:
@@ -10,7 +10,7 @@ import { useEventBus } from '@vueuse/core'
|
|||||||
import type { ZodSchema } from 'zod'
|
import type { ZodSchema } from 'zod'
|
||||||
import type { ValidationError as JoiError, Schema as JoiSchema } from 'joi'
|
import type { ValidationError as JoiError, Schema as JoiSchema } from 'joi'
|
||||||
import type { ObjectSchema as YupObjectSchema, ValidationError as YupError } from 'yup'
|
import type { ObjectSchema as YupObjectSchema, ValidationError as YupError } from 'yup'
|
||||||
import type { ObjectSchema as ValibotObjectSchema } from 'valibot'
|
import type { ObjectSchemaAsync as ValibotObjectSchema } from 'valibot'
|
||||||
import type { FormError, FormEvent, FormEventType, FormSubmitEvent, Form } from '../../types/form'
|
import type { FormError, FormEvent, FormEventType, FormSubmitEvent, Form } from '../../types/form'
|
||||||
|
|
||||||
export default defineComponent({
|
export default defineComponent({
|
||||||
@@ -217,10 +217,8 @@ async function getValibotError (
|
|||||||
state: any,
|
state: any,
|
||||||
schema: ValibotObjectSchema<any>
|
schema: ValibotObjectSchema<any>
|
||||||
): Promise<FormError[]> {
|
): Promise<FormError[]> {
|
||||||
const { safeParseAsync } = await import('valibot')
|
const result = await schema._parse(state)
|
||||||
|
if (result.issues) {
|
||||||
const result = await safeParseAsync(schema, state)
|
|
||||||
if (result.success === false) {
|
|
||||||
return result.issues.map((issue) => ({
|
return result.issues.map((issue) => ({
|
||||||
path: issue.path.map(p => p.key).join('.'),
|
path: issue.path.map(p => p.key).join('.'),
|
||||||
message: issue.message
|
message: issue.message
|
||||||
|
|||||||
Reference in New Issue
Block a user