mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
ef0e475b04
* Migrate `usePersistedState` hook to Typescript * Use React types for setter functions Co-authored-by: Alf Eaton <alf.eaton@overleaf.com> GitOrigin-RevId: e9ddf6e2ab45e0b0739c850a89ec7be0f14a7506
58 lines
1.4 KiB
TypeScript
58 lines
1.4 KiB
TypeScript
import {
|
|
useState,
|
|
useCallback,
|
|
useEffect,
|
|
SetStateAction,
|
|
Dispatch,
|
|
} from 'react'
|
|
import localStorage from '../../infrastructure/local-storage'
|
|
|
|
function usePersistedState<T>(
|
|
key: string,
|
|
defaultValue?: T,
|
|
listen = false
|
|
): [T, Dispatch<SetStateAction<T>>] {
|
|
const [value, setValue] = useState<T>(() => {
|
|
return localStorage.getItem(key) ?? defaultValue
|
|
})
|
|
|
|
const updateFunction = useCallback(
|
|
newValue => {
|
|
setValue(value => {
|
|
const actualNewValue =
|
|
typeof newValue === 'function' ? newValue(value) : newValue
|
|
|
|
if (actualNewValue === defaultValue) {
|
|
localStorage.removeItem(key)
|
|
} else {
|
|
localStorage.setItem(key, actualNewValue)
|
|
}
|
|
|
|
return actualNewValue
|
|
})
|
|
},
|
|
[key, defaultValue]
|
|
)
|
|
|
|
useEffect(() => {
|
|
if (listen) {
|
|
const listener = event => {
|
|
if (event.key === key) {
|
|
// note: this value is read via getItem rather than from event.newValue
|
|
// because getItem handles deserializing the JSON that's stored in localStorage.
|
|
setValue(localStorage.getItem(key) ?? defaultValue)
|
|
}
|
|
}
|
|
|
|
window.addEventListener('storage', listener)
|
|
|
|
return () => {
|
|
window.removeEventListener('storage', listener)
|
|
}
|
|
}
|
|
}, [key, listen, defaultValue])
|
|
|
|
return [value, updateFunction]
|
|
}
|
|
|
|
export default usePersistedState
|