File tree 3 files changed +29
-15
lines changed
packages/nuqs/src/adapters
3 files changed +29
-15
lines changed Original file line number Diff line number Diff line change 1
- import { useSearchParams } from 'react-router-dom'
1
+ import { useNavigate , useSearchParams } from 'react-router-dom'
2
+ import { renderQueryString } from '../url-encoding'
2
3
import type { AdapterOptions } from './defs'
3
4
import { createAdapterProvider } from './internal.context'
4
5
5
6
function useNuqsReactRouterAdapter ( ) {
6
- const [ searchParams , setSearchParams ] = useSearchParams ( )
7
+ const navigate = useNavigate ( )
8
+ const [ searchParams ] = useSearchParams ( )
7
9
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
+ )
12
19
}
13
20
return {
14
21
searchParams,
Original file line number Diff line number Diff line change 1
1
import mitt from 'mitt'
2
2
import { useEffect , useState } from 'react'
3
+ import { renderQueryString } from '../url-encoding'
3
4
import type { AdapterOptions } from './defs'
4
5
import { createAdapterProvider } from './internal.context'
5
6
6
7
const emitter = mitt < { update : URLSearchParams } > ( )
7
8
8
9
function updateUrl ( search : URLSearchParams , options : AdapterOptions ) {
9
10
const url = new URL ( location . href )
10
- url . search = search . toString ( )
11
- const href = url . toString ( )
11
+ url . search = renderQueryString ( search )
12
12
const method =
13
13
options . history === 'push' ? history . pushState : history . replaceState
14
- method . call ( history , history . state , '' , href )
14
+ method . call ( history , history . state , '' , url )
15
15
emitter . emit ( 'update' , search )
16
16
}
17
17
Original file line number Diff line number Diff line change 1
- import { useSearchParams } from '@remix-run/react'
1
+ import { useNavigate , useSearchParams } from '@remix-run/react'
2
+ import { renderQueryString } from '../url-encoding'
2
3
import type { AdapterOptions } from './defs'
3
4
import { createAdapterProvider } from './internal.context'
4
5
5
6
function useNuqsRemixAdapter ( ) {
6
- const [ searchParams , setSearchParams ] = useSearchParams ( )
7
+ const navigate = useNavigate ( )
8
+ const [ searchParams ] = useSearchParams ( )
7
9
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
+ )
12
19
}
13
20
return {
14
21
searchParams,
You can’t perform that action at this time.
0 commit comments