mirror of
https://github.com/scm-manager/scm-manager.git
synced 2026-03-08 05:10:20 +01:00
The caching for local storage seems way over-engineered. With this the context for the local storage is removed and the local storage is accessed directly. Pushed-by: k8s-git-ops<admin@cloudogu.com> Pushed-by: Rene Pfeuffer<rene.pfeuffer@cloudogu.com> Co-authored-by: René Pfeuffer<rene.pfeuffer@cloudogu.com>
65 lines
2.4 KiB
TypeScript
65 lines
2.4 KiB
TypeScript
/*
|
|
* Copyright (c) 2020 - present Cloudogu GmbH
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify it under
|
|
* the terms of the GNU Affero General Public License as published by the Free
|
|
* Software Foundation, version 3.
|
|
*
|
|
* This program is distributed in the hope that it will be useful, but WITHOUT
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
|
* FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
|
|
* details.
|
|
*
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
* along with this program. If not, see https://www.gnu.org/licenses/.
|
|
*/
|
|
|
|
import { useEffect, useMemo, useState } from "react";
|
|
|
|
type LocalStorageSetter<T> = (value: T | ((previousValue: T) => T)) => void;
|
|
|
|
const determineInitialValue = <T>(key: string, initialValue: T) => {
|
|
try {
|
|
const itemFromStorage = localStorage.getItem(key);
|
|
return itemFromStorage ? JSON.parse(itemFromStorage) : initialValue;
|
|
} catch (error) {
|
|
// eslint-disable-next-line no-console
|
|
console.error(error);
|
|
return initialValue;
|
|
}
|
|
};
|
|
|
|
/**
|
|
* Provides an api to access the browser's local storage for a given key.
|
|
*
|
|
* @param key The local storage key
|
|
* @param initialValue Value to be used if the local storage does not yet have the given key defined
|
|
*/
|
|
export function useLocalStorage<T>(key: string, initialValue: T): [value: T, setValue: LocalStorageSetter<T>] {
|
|
const initialValueOrValueFromStorage = useMemo(() => determineInitialValue(key, initialValue), [key, initialValue]);
|
|
const [item, setItem] = useState(initialValueOrValueFromStorage);
|
|
|
|
useEffect(() => {
|
|
const listener = (event: StorageEvent) => {
|
|
if (event.key === key) {
|
|
setItem(determineInitialValue(key, initialValue));
|
|
}
|
|
};
|
|
window.addEventListener("storage", listener);
|
|
return () => window.removeEventListener("storage", listener);
|
|
}, [key, initialValue]);
|
|
|
|
const setValue: LocalStorageSetter<T> = (newValue) => {
|
|
const computedNewValue = newValue instanceof Function ? newValue(item) : newValue;
|
|
setItem(computedNewValue);
|
|
const json = JSON.stringify(computedNewValue);
|
|
localStorage.setItem(key, json);
|
|
// storage event is no triggered in same tab
|
|
window.dispatchEvent(
|
|
new StorageEvent("storage", { key, oldValue: item, newValue: json, storageArea: localStorage })
|
|
);
|
|
};
|
|
|
|
return [item, setValue];
|
|
}
|