Skip to content

Commit b6dc1f2

Browse files
committed
feat: Render pretty URLs in other adapters
1 parent 5d18641 commit b6dc1f2

File tree

3 files changed

+29
-15
lines changed

3 files changed

+29
-15
lines changed

packages/nuqs/src/adapters/react-router.ts

+13-6
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,21 @@
1-
import { useSearchParams } from 'react-router-dom'
1+
import { useNavigate, useSearchParams } from 'react-router-dom'
2+
import { renderQueryString } from '../url-encoding'
23
import type { AdapterOptions } from './defs'
34
import { createAdapterProvider } from './internal.context'
45

56
function useNuqsReactRouterAdapter() {
6-
const [searchParams, setSearchParams] = useSearchParams()
7+
const navigate = useNavigate()
8+
const [searchParams] = useSearchParams()
79
const updateUrl = (search: URLSearchParams, options: AdapterOptions) => {
8-
setSearchParams(search, {
9-
replace: options.history === 'replace',
10-
preventScrollReset: !options.scroll
11-
})
10+
navigate(
11+
{
12+
search: renderQueryString(search)
13+
},
14+
{
15+
replace: options.history === 'replace',
16+
preventScrollReset: !options.scroll
17+
}
18+
)
1219
}
1320
return {
1421
searchParams,

packages/nuqs/src/adapters/react.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
import mitt from 'mitt'
22
import { useEffect, useState } from 'react'
3+
import { renderQueryString } from '../url-encoding'
34
import type { AdapterOptions } from './defs'
45
import { createAdapterProvider } from './internal.context'
56

67
const emitter = mitt<{ update: URLSearchParams }>()
78

89
function updateUrl(search: URLSearchParams, options: AdapterOptions) {
910
const url = new URL(location.href)
10-
url.search = search.toString()
11-
const href = url.toString()
11+
url.search = renderQueryString(search)
1212
const method =
1313
options.history === 'push' ? history.pushState : history.replaceState
14-
method.call(history, history.state, '', href)
14+
method.call(history, history.state, '', url)
1515
emitter.emit('update', search)
1616
}
1717

packages/nuqs/src/adapters/remix.ts

+13-6
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,21 @@
1-
import { useSearchParams } from '@remix-run/react'
1+
import { useNavigate, useSearchParams } from '@remix-run/react'
2+
import { renderQueryString } from '../url-encoding'
23
import type { AdapterOptions } from './defs'
34
import { createAdapterProvider } from './internal.context'
45

56
function useNuqsRemixAdapter() {
6-
const [searchParams, setSearchParams] = useSearchParams()
7+
const navigate = useNavigate()
8+
const [searchParams] = useSearchParams()
79
const updateUrl = (search: URLSearchParams, options: AdapterOptions) => {
8-
setSearchParams(search, {
9-
replace: options.history === 'replace',
10-
preventScrollReset: !options.scroll
11-
})
10+
navigate(
11+
{
12+
search: renderQueryString(search)
13+
},
14+
{
15+
replace: options.history === 'replace',
16+
preventScrollReset: !options.scroll
17+
}
18+
)
1219
}
1320
return {
1421
searchParams,

0 commit comments

Comments
 (0)