created at 2023/06/01 09:59:37
updated at 2023/07/30 16:57:38
TypeScript
import { useState, useEffect } from "react";
export function useSafeLocalStorage(key: string, initialValue: any) {
const [valueProxy, setValueProxy] = useState(() => {
try {
const value = window.localStorage.getItem(key);
return value ? JSON.parse(value) : initialValue;
} catch {
return initialValue;
}
});
useEffect(() => {
try {
window.localStorage.setItem(key, JSON.stringify(valueProxy));
} catch {}
}, [key, valueProxy]);
const setValue = (value: any) => {
setValueProxy(value);
};
return [valueProxy, setValue];
}