Skip to content

Commit b128078

Browse files
fix: localStorage availability check update (#588)
* fix: localStorage availability check update * Update utils.ts fix: formatting and naming fixes * chore: Formatting & helper function documentation --------- Co-authored-by: Francois Best <github@francoisbest.com>
1 parent 5ea4901 commit b128078

File tree

2 files changed

+22
-1
lines changed

2 files changed

+22
-1
lines changed

packages/nuqs/src/debug.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
1+
import { isLocalStorageAvailable } from './utils'
2+
13
// todo: Remove check for `next-usequerystate` in v2
24
let enabled = false
35

46
try {
57
enabled =
6-
(typeof localStorage === 'object' &&
8+
(isLocalStorageAvailable() &&
79
(localStorage.getItem('debug')?.includes('next-usequerystate') ||
810
localStorage.getItem('debug')?.includes('nuqs'))) ||
911
false

packages/nuqs/src/utils.ts

+19
Original file line numberDiff line numberDiff line change
@@ -38,3 +38,22 @@ 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)