@@ -17,6 +17,27 @@ export type ParserBuilder<T> = Required<Parser<T>> &
17
17
*/
18
18
withOptions < This , Shallow > ( this : This , options : Options < Shallow > ) : This
19
19
20
+ /**
21
+ * Pass in a validation function to perform runtime checks on the parsed
22
+ * value. If the validation fails, the value will be set to `null` (or
23
+ * the default value if specified).
24
+ *
25
+ * Validation must be synchronous, and must throw an error on invalid
26
+ * inputs.
27
+ *
28
+ * Example with Zod:
29
+ * ```ts
30
+ * const [posInt, setPosInt] = useQueryState(
31
+ * 'value',
32
+ * parseAsInteger.withValidation(z.number().positive().parse)
33
+ * )
34
+ * ```
35
+ *
36
+ * @param this
37
+ * @param validate
38
+ */
39
+ withValidation < This > ( this : This , validate : ( input : unknown ) => T ) : This
40
+
20
41
/**
21
42
* Specifying a default value makes the hook state non-nullable when the
22
43
* query is missing from the URL.
@@ -93,6 +114,18 @@ export function createParser<T>(parser: Required<Parser<T>>): ParserBuilder<T> {
93
114
return {
94
115
...parser ,
95
116
parseServerSide : parseServerSideNullable ,
117
+ withValidation ( validate ) {
118
+ return {
119
+ ...this ,
120
+ parse : ( value : string ) => {
121
+ const parsed = parser . parse ( value )
122
+ if ( parsed === null ) {
123
+ return null
124
+ }
125
+ return validate ( parsed )
126
+ }
127
+ }
128
+ } ,
96
129
withDefault ( defaultValue ) {
97
130
return {
98
131
...this ,
@@ -102,7 +135,7 @@ export function createParser<T>(parser: Required<Parser<T>>): ParserBuilder<T> {
102
135
}
103
136
}
104
137
} ,
105
- withOptions ( options : Options ) {
138
+ withOptions ( options ) {
106
139
return {
107
140
...this ,
108
141
...options
0 commit comments