2021-03-26 04:17:02 +04:30
|
|
|
/*
|
|
|
|
|
* Copyright (C) Contributors to the Suwayomi project
|
|
|
|
|
*
|
|
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
2021-02-25 14:38:16 +03:30
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
2023-05-18 13:17:41 +02:00
|
|
|
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
|
|
|
|
|
*/
|
2021-02-25 14:38:16 +03:30
|
|
|
|
2023-02-06 10:06:33 +01:00
|
|
|
import React, { useState, Dispatch, SetStateAction, useReducer, Reducer, useCallback } from 'react';
|
2023-02-05 16:15:20 +01:00
|
|
|
import storage from 'util/localStorage';
|
2021-02-25 14:38:16 +03:30
|
|
|
|
2023-02-08 18:19:26 +01:00
|
|
|
export default function useLocalStorage<T>(key: string, defaultValue: T | (() => T)): [T, Dispatch<SetStateAction<T>>] {
|
2021-03-19 14:52:20 +03:30
|
|
|
const initialState = defaultValue instanceof Function ? defaultValue() : defaultValue;
|
2023-02-06 10:06:33 +01:00
|
|
|
const [storedValue, setStoredValue] = useState<T>(storage.getItem(key, initialState));
|
2021-02-25 14:38:16 +03:30
|
|
|
|
2022-04-07 12:53:14 +02:00
|
|
|
const setValue = useCallback<React.Dispatch<React.SetStateAction<T>>>(
|
2023-02-06 10:06:33 +01:00
|
|
|
(value) => {
|
2022-04-07 12:53:14 +02:00
|
|
|
setStoredValue((prevValue) => {
|
|
|
|
|
// Allow value to be a function so we have same API as useState
|
|
|
|
|
const valueToStore = value instanceof Function ? value(prevValue) : value;
|
|
|
|
|
storage.setItem(key, valueToStore);
|
|
|
|
|
return valueToStore;
|
|
|
|
|
});
|
2023-02-06 10:06:33 +01:00
|
|
|
},
|
|
|
|
|
[key],
|
2022-04-07 12:53:14 +02:00
|
|
|
);
|
2021-02-25 14:38:16 +03:30
|
|
|
|
|
|
|
|
return [storedValue, setValue];
|
|
|
|
|
}
|
2022-01-24 15:09:28 +05:30
|
|
|
|
2023-02-08 18:19:26 +01:00
|
|
|
export function useReducerLocalStorage<S, A>(reducer: Reducer<S, A>, key: string, defaultState: S | (() => S)) {
|
2022-01-24 15:09:28 +05:30
|
|
|
const [storedValue, setValue] = useLocalStorage(key, defaultState);
|
|
|
|
|
return useReducer((state: S, action: A): S => {
|
|
|
|
|
const newState = reducer(state, action);
|
|
|
|
|
setValue(newState);
|
|
|
|
|
return newState;
|
|
|
|
|
}, storedValue);
|
|
|
|
|
}
|