next-typed-search-params
v1.1.0
Published
Discover Next.js typesafe and shallow search params for your project.
Downloads
68
Maintainers
Readme
NextJS typed search params
Discover Next.js typesafe and shallow search params for your project.
Features
- NextJS 13/14+ App router
- Typesafe, supports type hints
- Shallow routing support
- Stateful
- Supports customizable search string format, see: query-string
foo[]=1&foo[]=2&foo[]=3
foo[0]=1&foo[1]=2&foo[3]=3
foo=1,2,3
foo=1|2|3
foo[]=1|2|3&bar=fluffy&baz[]=4
foo=1&foo=2&foo=3
- etc
What's inside
Get started
Installation
npm install next-typed-search-params
yarn add next-typed-search-params
Initializing
At top client
component:
'use client'
import { configure } from "next-typed-search-params";
configure({ arrayFormat: "bracket-separator" })
Options
- arrayFormat - optional, "bracket" by default
- arrayFormatSeparator - optional, "," by default
Usage
import { useSearchParams } from "next-typed-search-params";
export const Component = ({}: PropsType) => {
const [searchParams, setSearchParams] = useSearchParams((z) => ({
productId: z.coerce.number().array(),
value: z.coerce.number(),
date: z.coerce.string()
}));
const handleClick = () => {
setSearchParams({
...searchParams,
value: searchParams.value + 1
})
}
return (<button onClick={handleClick}>click {searchParams.value}</button>);
};
Error handling
If the Zod parse fails, the search parameter will be set as undefined.