misc_pterodactyl-panel/resources/scripts/plugins/usePersistedState.ts
2020-07-04 18:30:50 -07:00

23 lines
730 B
TypeScript

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(() => {
localStorage.setItem(key, JSON.stringify(state));
}, [ key, state ]);
return [ state, setState ];
}