@react-hookz/web
Version:
React hooks done right, for browser and SSR.
21 lines (20 loc) • 729 B
JavaScript
import { useStorageValue, } from '../useStorageValue/index.js';
import { isBrowser, noop } from '../util/const.js';
let IS_LOCAL_STORAGE_AVAILABLE;
try {
IS_LOCAL_STORAGE_AVAILABLE = isBrowser && Boolean(globalThis.localStorage);
}
catch {
IS_LOCAL_STORAGE_AVAILABLE = false;
}
/**
* Manages a single localStorage key.
*/
export const useLocalStorageValue = IS_LOCAL_STORAGE_AVAILABLE ?
(key, options) => useStorageValue(localStorage, key, options) :
(_key, _options) => {
if (isBrowser && process.env.NODE_ENV === 'development') {
console.warn('LocalStorage is not available in this environment');
}
return { value: undefined, set: noop, remove: noop, fetch: noop };
};