misc_pterodactyl-panel/resources/scripts/plugins/usePersistedState.ts

25 lines
685 B
TypeScript
Raw Normal View History

import { Dispatch, SetStateAction, useEffect, useState } from 'react';
export function usePersistedState<S = undefined>(
key: string,
defaultValue: S
): [S | undefined, Dispatch<SetStateAction<S | undefined>>] {
const [state, setState] = useState(() => {
try {
const item = localStorage.getItem(key);
return JSON.parse(item || String(defaultValue));
} catch (e) {
console.warn('Failed to retrieve persisted value from store.', e);
return defaultValue;
}
});
useEffect(() => {
2020-07-05 01:30:50 +00:00
localStorage.setItem(key, JSON.stringify(state));
}, [key, state]);
return [state, setState];
}