1
- import type { BaseIssue , BaseSchemaAsync } from 'valibot'
2
1
import { createError , getQuery , getRouterParams , type H3Event , readBody } from 'h3'
3
- import { parseAsync } from 'valibot'
2
+ import * as v from 'valibot'
3
+
4
+ type VSchema < TInput , TOutput , TIssue extends v . BaseIssue < unknown > > =
5
+ | v . BaseSchema < TInput , TOutput , TIssue >
6
+ | v . BaseSchemaAsync < TInput , TOutput , TIssue >
4
7
5
8
const DEFAULT_ERROR_MESSAGE = 'Bad Request'
6
9
const DEFAULT_ERROR_STATUS = 400
7
10
8
- // eslint-disable-next-line @typescript-eslint/no-explicit-any
9
11
function createBadRequest ( error : any ) {
10
12
return createError ( {
11
13
statusCode : DEFAULT_ERROR_STATUS ,
@@ -19,13 +21,17 @@ function createBadRequest(error: any) {
19
21
* @param event - A H3 event object.
20
22
* @param schema - A Valibot Schema
21
23
*/
22
- export async function useValidatedQuery < TInput , TOutput , TIssue extends BaseIssue < unknown > > (
24
+ export async function useValidatedQuery <
25
+ TInput ,
26
+ TOutput ,
27
+ TIssue extends v . BaseIssue < unknown > ,
28
+ > (
23
29
event : H3Event ,
24
- schema : BaseSchemaAsync < TInput , TOutput , TIssue > ,
30
+ schema : VSchema < TInput , TOutput , TIssue > ,
25
31
) : Promise < TOutput > {
26
32
try {
27
33
const query = getQuery ( event )
28
- const parsed = await parseAsync ( schema , query )
34
+ const parsed = await v . parseAsync ( schema , query )
29
35
return parsed
30
36
}
31
37
catch ( error ) {
@@ -38,13 +44,17 @@ export async function useValidatedQuery<TInput, TOutput, TIssue extends BaseIssu
38
44
* @param event - A H3 event object.
39
45
* @param schema - A Valibot Schema
40
46
*/
41
- export async function useValidatedBody < TInput , TOutput , TIssue extends BaseIssue < unknown > > (
47
+ export async function useValidatedBody <
48
+ TInput ,
49
+ TOutput ,
50
+ TIssue extends v . BaseIssue < unknown > ,
51
+ > (
42
52
event : H3Event ,
43
- schema : BaseSchemaAsync < TInput , TOutput , TIssue > ,
53
+ schema : VSchema < TInput , TOutput , TIssue > ,
44
54
) : Promise < TOutput > {
45
55
try {
46
56
const body = await readBody ( event )
47
- const parsed = await parseAsync ( schema , body )
57
+ const parsed = await v . parseAsync ( schema , body )
48
58
return parsed
49
59
}
50
60
catch ( error ) {
@@ -57,13 +67,17 @@ export async function useValidatedBody<TInput, TOutput, TIssue extends BaseIssue
57
67
* @param event - A H3 event object.
58
68
* @param schema - A Valibot Schema
59
69
*/
60
- export async function useValidatedParams < TInput , TOutput , TIssue extends BaseIssue < unknown > > (
70
+ export async function useValidatedParams <
71
+ TInput ,
72
+ TOutput ,
73
+ TIssue extends v . BaseIssue < unknown > ,
74
+ > (
61
75
event : H3Event ,
62
- schema : BaseSchemaAsync < TInput , TOutput , TIssue > ,
76
+ schema : VSchema < TInput , TOutput , TIssue > ,
63
77
) : Promise < TOutput > {
64
78
try {
65
79
const params = getRouterParams ( event )
66
- const parsed = await parseAsync ( schema , params )
80
+ const parsed = await v . parseAsync ( schema , params )
67
81
return parsed
68
82
}
69
83
catch ( error ) {
0 commit comments