Some checks failed
Branch Build CE / Build Setup (push) Has been cancelled
Branch Build CE / Build-Push Admin Docker Image (push) Has been cancelled
Branch Build CE / Build-Push Web Docker Image (push) Has been cancelled
Branch Build CE / Build-Push Space Docker Image (push) Has been cancelled
Branch Build CE / Build-Push Live Collaboration Docker Image (push) Has been cancelled
Branch Build CE / Build-Push API Server Docker Image (push) Has been cancelled
Branch Build CE / Build-Push Proxy Docker Image (push) Has been cancelled
Branch Build CE / Build-Push AIO Docker Image (push) Has been cancelled
Branch Build CE / Upload Build Assets (push) Has been cancelled
Branch Build CE / Build Release (push) Has been cancelled
CodeQL / Analyze (javascript) (push) Has been cancelled
CodeQL / Analyze (python) (push) Has been cancelled
Codespell / Check for spelling errors (push) Has been cancelled
Sync Repositories / sync_changes (push) Has been cancelled
Synced from upstream: 8853637e981ed7d8a6cff32bd98e7afe20f54362
59 lines
1.8 KiB
TypeScript
59 lines
1.8 KiB
TypeScript
import { useState, useEffect, useCallback } from "react";
|
|
|
|
export const getValueFromLocalStorage = (key: string, defaultValue: any) => {
|
|
if (typeof window === undefined || typeof window === "undefined") return defaultValue;
|
|
try {
|
|
const item = window.localStorage.getItem(key);
|
|
return item ? JSON.parse(item) : defaultValue;
|
|
} catch (error) {
|
|
window.localStorage.removeItem(key);
|
|
return defaultValue;
|
|
}
|
|
};
|
|
|
|
export const setValueIntoLocalStorage = (key: string, value: any) => {
|
|
if (typeof window === undefined || typeof window === "undefined") return false;
|
|
try {
|
|
window.localStorage.setItem(key, JSON.stringify(value));
|
|
return true;
|
|
} catch (error) {
|
|
return false;
|
|
}
|
|
};
|
|
|
|
// TODO: Remove this once we migrate to the new hooks from plane/helpers
|
|
const useLocalStorage = <T,>(key: string, initialValue: T) => {
|
|
const [storedValue, setStoredValue] = useState<T | null>(() => getValueFromLocalStorage(key, initialValue));
|
|
|
|
const setValue = useCallback(
|
|
(value: T) => {
|
|
window.localStorage.setItem(key, JSON.stringify(value));
|
|
setStoredValue(value);
|
|
window.dispatchEvent(new Event(`local-storage:${key}`));
|
|
},
|
|
[key]
|
|
);
|
|
|
|
const clearValue = useCallback(() => {
|
|
window.localStorage.removeItem(key);
|
|
setStoredValue(null);
|
|
window.dispatchEvent(new Event(`local-storage:${key}`));
|
|
}, [key]);
|
|
|
|
const reHydrate = useCallback(() => {
|
|
const data = getValueFromLocalStorage(key, initialValue);
|
|
setStoredValue(data);
|
|
}, [key, initialValue]);
|
|
|
|
useEffect(() => {
|
|
window.addEventListener(`local-storage:${key}`, reHydrate);
|
|
return () => {
|
|
window.removeEventListener(`local-storage:${key}`, reHydrate);
|
|
};
|
|
}, [key, reHydrate]);
|
|
|
|
return { storedValue, setValue, clearValue } as const;
|
|
};
|
|
|
|
export default useLocalStorage;
|