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

24 lines
730 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>>] {
2020-07-05 01:30:50 +00:00
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 ];
}