mirror of
https://github.com/makeplane/plane.git
synced 2025-12-25 16:19:43 +01:00
* feat: add navigation dropdown component * chore: enhance title/ description loader and componenet modularity * chore: issue store filter update * chore: added few icons to ui package * chore: improvements for tabs componenet * chore: enhance sidebar modularity * chore: update issue and router store to add support for additional issue layouts * chore: enhanced cycle componenets modularity * feat: added project grouping header for cycles list * chore: enhanced project dropdown componenet by adding multiple selection functionality * chore: enhanced rich text editor modularity by taking members ids as props for mentions * chore: added functionality to filter disabled layouts in issue-layout dropdown * chore: added support to pass project ids as props in project card list * feat: multi select project modal * chore: seperate out project componenet for reusability * chore: command pallete store improvements * fix: build errors
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;
|