Last active
October 11, 2019 19:21
-
-
Save freddi301/650b8ac8ce927fb2ddc957e85efdc895 to your computer and use it in GitHub Desktop.
useLocalStorage #react #hook
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { useState } from "react"; | |
export function useLocalStorage<T>(key: string, initialValue: T) { | |
const [storedValue, setStoredValue] = useState(() => { | |
try { | |
const item = window.localStorage.getItem(key); | |
return item ? JSON.parse(item) : initialValue; | |
} catch (error) { | |
return initialValue; | |
} | |
}); | |
const setValue = (value: T) => { | |
try { | |
const valueToStore = | |
value instanceof Function ? value(storedValue) : value; | |
setStoredValue(valueToStore); | |
window.localStorage.setItem(key, JSON.stringify(valueToStore)); | |
} catch (error) { | |
console.log(error); | |
} | |
}; | |
return [storedValue, setValue] as const; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment