Skip to content

Commit 5553fb9

Browse files
committed
chore: Identify adapters in debug logs
1 parent bc7b37b commit 5553fb9

File tree

4 files changed

+6
-2
lines changed

4 files changed

+6
-2
lines changed

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

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import mitt from 'mitt'
22
import { startTransition, useCallback, useEffect, useState } from 'react'
3+
import { debug } from '../../lib/debug'
34
import { renderQueryString } from '../../lib/url-encoding'
45
import { createAdapterProvider } from './context'
56
import type { AdapterInterface, AdapterOptions } from './defs'
@@ -47,6 +48,7 @@ export function createReactRouterBasedAdapter({
4748
})
4849
const url = new URL(location.href)
4950
url.search = renderQueryString(search)
51+
debug(`[nuqs ${adapter}] Updating url: %s`, url)
5052
// First, update the URL locally without triggering a network request,
5153
// this allows keeping a reactive URL if the network is slow.
5254
const updateMethod =

packages/nuqs/src/adapters/next/impl.app.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export function useNuqsNextAppRouterAdapter(): AdapterInterface {
1616
setOptimisticSearchParams(search)
1717
}
1818
const url = renderURL(location.origin + location.pathname, search)
19-
debug('[nuqs queue (app)] Updating url: %s', url)
19+
debug('[nuqs next/app] Updating url: %s', url)
2020
// First, update the URL locally without triggering a network request,
2121
// this allows keeping a reactive URL if the network is slow.
2222
const updateMethod =

packages/nuqs/src/adapters/next/impl.pages.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ export function useNuqsNextPagesRouterAdapter(): AdapterInterface {
3333
// passing an asPath, causing issues in dynamic routes in the pages router.
3434
const nextRouter = window.next?.router!
3535
const url = renderURL(nextRouter.state.asPath.split('?')[0] ?? '', search)
36-
debug('[nuqs queue (pages)] Updating url: %s', url)
36+
debug('[nuqs next/pages] Updating url: %s', url)
3737
const method =
3838
options.history === 'push' ? nextRouter.push : nextRouter.replace
3939
method.call(nextRouter, url, url, {

packages/nuqs/src/adapters/react.ts

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import mitt from 'mitt'
22
import { useEffect, useState } from 'react'
3+
import { debug } from '../lib/debug'
34
import { renderQueryString } from '../lib/url-encoding'
45
import { createAdapterProvider } from './lib/context'
56
import type { AdapterInterface, AdapterOptions } from './lib/defs'
@@ -10,6 +11,7 @@ const emitter: SearchParamsSyncEmitter = mitt()
1011
function updateUrl(search: URLSearchParams, options: AdapterOptions) {
1112
const url = new URL(location.href)
1213
url.search = renderQueryString(search)
14+
debug('[nuqs react] Updating url: %s', url)
1315
const method =
1416
options.history === 'push' ? history.pushState : history.replaceState
1517
method.call(history, history.state, '', url)

0 commit comments

Comments
 (0)