Skip to content

Commit 9a3c694

Browse files
authored
fix: Move debug localStorage detection inline (#592)
Having the localStorage detection in a separate file was causing error logs in Vitest (no issues at runtime in Next.js). This refactors the code to be more readable and maintainable, and into a single function so the enabled switch can now be const.
1 parent b79aab2 commit 9a3c694

File tree

2 files changed

+29
-36
lines changed

2 files changed

+29
-36
lines changed

packages/nuqs/src/debug.ts

+29-17
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,4 @@
1-
import { isLocalStorageAvailable } from './utils'
2-
3-
// todo: Remove check for `next-usequerystate` in v2
4-
let enabled = false
5-
6-
try {
7-
enabled =
8-
(isLocalStorageAvailable() &&
9-
(localStorage.getItem('debug')?.includes('next-usequerystate') ||
10-
localStorage.getItem('debug')?.includes('nuqs'))) ||
11-
false
12-
} catch (error) {
13-
console.error(
14-
'[nuqs]: debug mode is disabled (localStorage unavailable).',
15-
error
16-
)
17-
}
1+
const enabled = isDebugEnabled()
182

193
export function debug(message: string, ...args: any[]) {
204
if (!enabled) {
@@ -42,3 +26,31 @@ export function sprintf(base: string, ...args: any[]) {
4226
}
4327
})
4428
}
29+
30+
function isDebugEnabled() {
31+
// Check if localStorage is available.
32+
// It may be unavailable in some environments,
33+
// like Safari in private browsing mode.
34+
// See https://github.com/47ng/nuqs/pull/588
35+
try {
36+
if (typeof localStorage === 'undefined') {
37+
return false
38+
}
39+
const test = 'nuqs-localStorage-test'
40+
localStorage.setItem(test, test)
41+
const isStorageAvailable = localStorage.getItem(test) === test
42+
localStorage.removeItem(test)
43+
if (!isStorageAvailable) {
44+
return false
45+
}
46+
} catch (error) {
47+
console.error(
48+
'[nuqs]: debug mode is disabled (localStorage unavailable).',
49+
error
50+
)
51+
return false
52+
}
53+
const debug = localStorage.getItem('debug') ?? ''
54+
// todo: Remove check for `next-usequerystate` in v2
55+
return debug.includes('nuqs') || debug.includes('next-usequerystate')
56+
}

packages/nuqs/src/utils.ts

-19
Original file line numberDiff line numberDiff line change
@@ -38,22 +38,3 @@ export function getDefaultThrottle() {
3838
return 320
3939
}
4040
}
41-
42-
/**
43-
* Check if localStorage is available.
44-
*
45-
* It may be unavailable in some environments, like Safari in private browsing
46-
* mode.
47-
* See https://github.com/47ng/nuqs/pull/588
48-
*/
49-
export function isLocalStorageAvailable() {
50-
try {
51-
const test = 'nuqs-localStorage-test'
52-
window.localStorage.setItem(test, test)
53-
const isValueAvailable = window.localStorage.getItem(test) === test
54-
window.localStorage.removeItem(test)
55-
return isValueAvailable
56-
} catch (_) {
57-
return false
58-
}
59-
}

0 commit comments

Comments
 (0)