mirror of
https://github.com/pds-nest/nest.git
synced 2024-11-22 13:04:19 +00:00
🐛 Fix #98 by loading from localStorage without using an effect
This commit is contained in:
parent
aa1b0dc748
commit
90af13e2a9
1 changed files with 17 additions and 33 deletions
|
@ -1,37 +1,34 @@
|
||||||
import { useCallback, useEffect, useState } from "react"
|
import { useCallback, useState } from "react"
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Hook with the same API as {@link React.useState} which stores its value in the browser's {@link localStorage}.
|
* Hook with the same API as {@link React.useState} which stores its value in the browser's {@link localStorage}.
|
||||||
*/
|
*/
|
||||||
export default function useLocalStorageState(key, def) {
|
export default function useLocalStorageState(key, def) {
|
||||||
const [value, setValue] = useState(null);
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Load the `key` from the {@link localStorage} into `value`, defaulting to `def` if it is not found.
|
* Load the `key` from the {@link localStorage} into `value`, defaulting to `def` if it is not found.
|
||||||
*/
|
*/
|
||||||
const load = useCallback(
|
const load = () => {
|
||||||
() => {
|
if(localStorage) {
|
||||||
if(localStorage) {
|
console.debug(`Loading ${key} from localStorage...`)
|
||||||
console.debug(`Loading ${key} from localStorage...`)
|
let _value = JSON.parse(localStorage.getItem(key))
|
||||||
let _value = JSON.parse(localStorage.getItem(key))
|
|
||||||
|
|
||||||
if(_value) {
|
if(_value) {
|
||||||
console.info(`Loaded ${key} from localStorage!`)
|
console.info(`Loaded ${key} from localStorage!`)
|
||||||
return _value
|
return _value
|
||||||
}
|
|
||||||
else {
|
|
||||||
console.info(`There is no value ${key} stored, defaulting...`)
|
|
||||||
return def
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
console.warn(`Can't load value as localStorage doesn't seem to be available, defaulting...`)
|
console.info(`There is no value ${key} stored, defaulting...`)
|
||||||
return def
|
return def
|
||||||
}
|
}
|
||||||
},
|
}
|
||||||
[key, def]
|
else {
|
||||||
)
|
console.warn(`Can't load value as localStorage doesn't seem to be available, defaulting...`)
|
||||||
|
return def
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const [value, setValue] = useState(load());
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Save a value to the {@link localStorage}.
|
* Save a value to the {@link localStorage}.
|
||||||
|
@ -60,18 +57,5 @@ export default function useLocalStorageState(key, def) {
|
||||||
[setValue, save]
|
[setValue, save]
|
||||||
)
|
)
|
||||||
|
|
||||||
/*
|
|
||||||
* When the component first renders, try to load the value from the localStorage.
|
|
||||||
*/
|
|
||||||
useEffect(
|
|
||||||
() => {
|
|
||||||
if(!value) {
|
|
||||||
console.debug(`This is the first render, loading ${key} from the localStorage...`)
|
|
||||||
setValue(load())
|
|
||||||
}
|
|
||||||
},
|
|
||||||
[value, setValue, load, key],
|
|
||||||
)
|
|
||||||
|
|
||||||
return [value, setAndSave]
|
return [value, setAndSave]
|
||||||
}
|
}
|
Loading…
Reference in a new issue