@@ -7,7 +7,7 @@ import React from 'react'
7
7
import { debug } from './debug'
8
8
import type { Nullable , Options } from './defs'
9
9
import type { Parser } from './parsers'
10
- import { SYNC_EVENT_KEY , emitter , type CrossHookSyncPayload } from './sync'
10
+ import { emitter , type CrossHookSyncPayload } from './sync'
11
11
import {
12
12
FLUSH_RATE_LIMIT_MS ,
13
13
enqueueQueryStringUpdate ,
@@ -111,16 +111,17 @@ export function useQueryStates<KeyMap extends UseQueryStatesKeysMap>(
111
111
React . useEffect ( ( ) => {
112
112
const state = parseMap (
113
113
keyMap ,
114
+ urlKeys ,
114
115
initialSearchParams ,
115
116
queryRef . current ,
116
117
stateRef . current
117
118
)
118
119
setInternalState ( state )
119
120
} , [
120
- Object . keys ( keyMap )
121
+ Object . keys ( resolvedUrlKeys )
121
122
. map ( key => initialSearchParams ?. get ( key ) )
122
123
. join ( '&' ) ,
123
- keys
124
+ stateKeys
124
125
] )
125
126
126
127
// Sync all hooks together & with external URL changes
@@ -130,17 +131,6 @@ export function useQueryStates<KeyMap extends UseQueryStatesKeysMap>(
130
131
stateRef . current = state
131
132
setInternalState ( state )
132
133
}
133
- function syncFromURL ( search : URLSearchParams ) {
134
- const state = parseMap (
135
- keyMap ,
136
- urlKeys ,
137
- search ,
138
- queryRef . current ,
139
- stateRef . current
140
- )
141
- debug ( '[nuq+ `%s`] syncFromURL %O' , stateKeys , state )
142
- updateInternalState ( state )
143
- }
144
134
const handlers = Object . keys ( keyMap ) . reduce (
145
135
( handlers , stateKey ) => {
146
136
handlers [ stateKey as keyof V ] = ( {
@@ -171,14 +161,12 @@ export function useQueryStates<KeyMap extends UseQueryStatesKeysMap>(
171
161
{ } as Record < keyof V , ( payload : CrossHookSyncPayload ) => void >
172
162
)
173
163
174
- emitter . on ( SYNC_EVENT_KEY , syncFromURL )
175
164
for ( const stateKey of Object . keys ( keyMap ) ) {
176
165
const urlKey = resolvedUrlKeys [ stateKey ] !
177
166
debug ( '[nuq+ `%s`] Subscribing to sync for `%s`' , stateKeys , urlKey )
178
167
emitter . on ( urlKey , handlers [ stateKey ] ! )
179
168
}
180
169
return ( ) => {
181
- emitter . off ( SYNC_EVENT_KEY , syncFromURL )
182
170
for ( const stateKey of Object . keys ( keyMap ) ) {
183
171
const urlKey = resolvedUrlKeys [ stateKey ] !
184
172
debug ( '[nuq+ `%s`] Unsubscribing to sync for `%s`' , stateKeys , urlKey )
0 commit comments