import React from 'react'; import { createGlobalState } from 'react-hooks-global-state'; import { getLocalStorageItem, setLocalStorageItem } from '../utils/storage'; type UsePersistentGlobalState = () => [ value: T, setValue: React.Dispatch> ]; /** * Create a hook that stores global state (shared across all hook instances). * The state is also persisted to localStorage and restored on page load. * The localStorage state is not synced between tabs. * * @deprecated */ export const createPersistentGlobalStateHook = ( key: string, initialValue: T ): UsePersistentGlobalState => { const container = createGlobalState<{ [key: string]: T }>({ [key]: getLocalStorageItem(key) ?? initialValue, }); const setGlobalState = (value: React.SetStateAction) => { const prev = container.getGlobalState(key); const next = value instanceof Function ? value(prev) : value; container.setGlobalState(key, next); setLocalStorageItem(key, next); }; return () => [container.useGlobalState(key)[0], setGlobalState]; };