File tree 2 files changed +22
-1
lines changed
2 files changed +22
-1
lines changed Original file line number Diff line number Diff line change
1
+ import { isLocalStorageAvailable } from './utils'
2
+
1
3
// todo: Remove check for `next-usequerystate` in v2
2
4
let enabled = false
3
5
4
6
try {
5
7
enabled =
6
- ( typeof localStorage === 'object' &&
8
+ ( isLocalStorageAvailable ( ) &&
7
9
( localStorage . getItem ( 'debug' ) ?. includes ( 'next-usequerystate' ) ||
8
10
localStorage . getItem ( 'debug' ) ?. includes ( 'nuqs' ) ) ) ||
9
11
false
Original file line number Diff line number Diff line change @@ -38,3 +38,22 @@ export function getDefaultThrottle() {
38
38
return 320
39
39
}
40
40
}
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
+ }
You can’t perform that action at this time.
0 commit comments