Skip to content

Commit 4036594

Browse files
committed
doc: Add docs for UrlKeys
1 parent 8b6d3e9 commit 4036594

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

packages/docs/content/docs/batching.mdx

+21
Original file line numberDiff line numberDiff line change
@@ -148,3 +148,24 @@ setCoordinates({
148148
})
149149
```
150150

151+
As your application grows, you may want to reuse these parsers and urlKeys
152+
definitions across multiple components or nuqs features
153+
(like [loaders](./server-side#loaders) or a [serializer](./utilities#serializer-helper)).
154+
155+
You can use the `UrlKeys{:ts}` type helper for this:
156+
157+
```ts
158+
// [!code word:UrlKeys]
159+
import { type UrlKeys } from 'nuqs' // or 'nuqs/server'
160+
161+
export const coordinatesParsers = {
162+
latitude: parseAsFloat.withDefault(45.18),
163+
longitude: parseAsFloat.withDefault(5.72)
164+
}
165+
166+
export const coordinatesUrlKeys: UrlKeys<typeof coordinatesParsers> = {
167+
latitude: 'lat',
168+
longitude: 'lng'
169+
}
170+
```
171+

0 commit comments

Comments
 (0)