To populate <Link> components with state values, you can use the createSerializer
helper.
Pass it an object describing your search params, and it will give you a function
to call with values, that generates a query string serialized as the hooks would do.
Example:
import { createSerializer, parseAsInteger, parseAsIsoDateTime, parseAsString, parseAsStringLiteral} from 'nuqs/server' // can also be imported from 'nuqs' in client codeconst searchParams = { search: parseAsString, limit: parseAsInteger, from: parseAsIsoDateTime, to: parseAsIsoDateTime, sortBy: parseAsStringLiteral(['asc', 'desc'] as const)}// Create a serializer function by passing the description of the search params to acceptconst serialize = createSerializer(searchParams)// Then later, pass it some values (a subset) and render them to a query stringserialize({ search: 'foo bar', limit: 10, from: new Date('2024-01-01'), // here, we omit `to`, which won't be added sortBy: null // null values are also not rendered})// ?search=foo+bar&limit=10&from=2024-01-01T00:00:00.000Z
To access the underlying type returned by a parser, you can use the
inferParserType type helper:
import { parseAsInteger, type inferParserType } from 'nuqs' // or 'nuqs/server'const intNullable = parseAsIntegerconst intNonNull = parseAsInteger.withDefault(0)inferParserType<typeof intNullable> // number | nullinferParserType<typeof intNonNull> // number
For an object describing parsers (that you’d pass to createSearchParamsCache
or to useQueryStates), inferParserType will
return the type of the object with the parsers replaced by their inferred types:
import { parseAsBoolean, parseAsInteger, type inferParserType} from 'nuqs' // or 'nuqs/server'const parsers = { a: parseAsInteger, b: parseAsBoolean.withDefault(false)}inferParserType<typeof parsers>// { a: number | null, b: boolean }