Skip to content

Commit b600f9b

Browse files
committed
chore: Remove unused sync code
1 parent 48bad36 commit b600f9b

File tree

3 files changed

+5
-31
lines changed

3 files changed

+5
-31
lines changed

packages/nuqs/src/sync.ts

-3
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,11 @@
11
import Mitt from 'mitt'
22

3-
export const SYNC_EVENT_KEY = Symbol('__nuqs__SYNC__')
4-
53
export type CrossHookSyncPayload = {
64
state: any
75
query: string | null
86
}
97

108
type EventMap = {
11-
[SYNC_EVENT_KEY]: URLSearchParams
129
[key: string]: CrossHookSyncPayload
1310
}
1411

packages/nuqs/src/useQueryState.ts

+1-12
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import React from 'react'
33
import { debug } from './debug'
44
import type { Options } from './defs'
55
import type { Parser } from './parsers'
6-
import { SYNC_EVENT_KEY, emitter, type CrossHookSyncPayload } from './sync'
6+
import { emitter, type CrossHookSyncPayload } from './sync'
77
import {
88
FLUSH_RATE_LIMIT_MS,
99
enqueueQueryStringUpdate,
@@ -261,21 +261,10 @@ export function useQueryState<T = string>(
261261
queryRef.current = query
262262
setInternalState(state)
263263
}
264-
function syncFromURL(search: URLSearchParams) {
265-
const query = search.get(key)
266-
if (query === queryRef.current) {
267-
return
268-
}
269-
const state = query === null ? null : safeParse(parse, query, key)
270-
debug('[nuqs `%s`] syncFromURL %O', key, state)
271-
updateInternalState({ state, query })
272-
}
273264
debug('[nuqs `%s`] subscribing to sync', key)
274-
emitter.on(SYNC_EVENT_KEY, syncFromURL)
275265
emitter.on(key, updateInternalState)
276266
return () => {
277267
debug('[nuqs `%s`] unsubscribing from sync', key)
278-
emitter.off(SYNC_EVENT_KEY, syncFromURL)
279268
emitter.off(key, updateInternalState)
280269
}
281270
}, [key])

packages/nuqs/src/useQueryStates.ts

+4-16
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import React from 'react'
77
import { debug } from './debug'
88
import type { Nullable, Options } from './defs'
99
import type { Parser } from './parsers'
10-
import { SYNC_EVENT_KEY, emitter, type CrossHookSyncPayload } from './sync'
10+
import { emitter, type CrossHookSyncPayload } from './sync'
1111
import {
1212
FLUSH_RATE_LIMIT_MS,
1313
enqueueQueryStringUpdate,
@@ -111,16 +111,17 @@ export function useQueryStates<KeyMap extends UseQueryStatesKeysMap>(
111111
React.useEffect(() => {
112112
const state = parseMap(
113113
keyMap,
114+
urlKeys,
114115
initialSearchParams,
115116
queryRef.current,
116117
stateRef.current
117118
)
118119
setInternalState(state)
119120
}, [
120-
Object.keys(keyMap)
121+
Object.keys(resolvedUrlKeys)
121122
.map(key => initialSearchParams?.get(key))
122123
.join('&'),
123-
keys
124+
stateKeys
124125
])
125126

126127
// Sync all hooks together & with external URL changes
@@ -130,17 +131,6 @@ export function useQueryStates<KeyMap extends UseQueryStatesKeysMap>(
130131
stateRef.current = state
131132
setInternalState(state)
132133
}
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-
}
144134
const handlers = Object.keys(keyMap).reduce(
145135
(handlers, stateKey) => {
146136
handlers[stateKey as keyof V] = ({
@@ -171,14 +161,12 @@ export function useQueryStates<KeyMap extends UseQueryStatesKeysMap>(
171161
{} as Record<keyof V, (payload: CrossHookSyncPayload) => void>
172162
)
173163

174-
emitter.on(SYNC_EVENT_KEY, syncFromURL)
175164
for (const stateKey of Object.keys(keyMap)) {
176165
const urlKey = resolvedUrlKeys[stateKey]!
177166
debug('[nuq+ `%s`] Subscribing to sync for `%s`', stateKeys, urlKey)
178167
emitter.on(urlKey, handlers[stateKey]!)
179168
}
180169
return () => {
181-
emitter.off(SYNC_EVENT_KEY, syncFromURL)
182170
for (const stateKey of Object.keys(keyMap)) {
183171
const urlKey = resolvedUrlKeys[stateKey]!
184172
debug('[nuq+ `%s`] Unsubscribing to sync for `%s`', stateKeys, urlKey)

0 commit comments

Comments
 (0)