summaryrefslogtreecommitdiff
path: root/util/persistant-state.ts
diff options
context:
space:
mode:
Diffstat (limited to 'util/persistant-state.ts')
-rw-r--r--util/persistant-state.ts12
1 files changed, 7 insertions, 5 deletions
diff --git a/util/persistant-state.ts b/util/persistant-state.ts
index 707c029..2907e70 100644
--- a/util/persistant-state.ts
+++ b/util/persistant-state.ts
@@ -11,13 +11,15 @@ export function usePersistantState<V>(
const storageValue = storage.get()
const calculatedDefaultValue = storageValue !== undefined ? storageValue : defaultValue
- if (calculatedDefaultValue !== storageValue) {
- storage.update(calculatedDefaultValue)
- }
const calculatedDefaultValueObject =
- typeof storageValue === 'object'
- ? { ...storageValue, ...calculatedDefaultValue }
+ storageValue != null &&
+ typeof storageValue === 'object' &&
+ Array.isArray(storageValue) === false
+ ? { ...defaultValue, ...storageValue }
: calculatedDefaultValue
+ if (calculatedDefaultValueObject !== storageValue) {
+ storage.update(calculatedDefaultValueObject)
+ }
const [value, setValue] = useState<V>(calculatedDefaultValueObject)
// change state gracefully when changing the storageKey