next-typed-search-params
TypeScript icon, indicating that this package has built-in type declarations

1.0.4 • Public • Published

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:

import { configure } from "next-typed-search-params";

configure({ arrayFormat: "bracket-separator" })

Configuring options

Options

Usage

import { useSearchParams, setSearchParams } from "next-typed-search-params";

export const Component = ({}: PropsType) => {
    const searchParams = 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.

Package Sidebar

Install

npm i next-typed-search-params

Weekly Downloads

19

Version

1.0.4

License

MIT

Unpacked Size

73.2 kB

Total Files

39

Last publish

Collaborators

  • izica