mirror of
https://github.com/makeplane/plane.git
synced 2025-12-22 22:59:33 +01:00
* use common getIssues from issue service instead of multiple different services for modules and cycles * add group by to server constants * change issue detail's overview's is loading logic to the loader from the store * add extra method in local storage * Kanban render 10 issues by default per column * fix height in group virtualization * remove debounced code for Kanban fetching more issues per column * fix lint errors
58 lines
1.7 KiB
TypeScript
58 lines
1.7 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;
|
|
}
|
|
};
|
|
|
|
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;
|