mirror of
https://github.com/prowler-cloud/prowler.git
synced 2025-12-19 05:17:47 +00:00
49 lines
1.2 KiB
TypeScript
49 lines
1.2 KiB
TypeScript
"use client";
|
|
|
|
import { useEffect, useState } from "react";
|
|
|
|
export const useLocalStorage = (
|
|
key: string,
|
|
initialValue: string | boolean,
|
|
): [
|
|
string | boolean,
|
|
(
|
|
value: string | boolean | ((val: string | boolean) => string | boolean),
|
|
) => void,
|
|
] => {
|
|
const [state, setState] = useState<string | boolean>(initialValue);
|
|
|
|
useEffect(() => {
|
|
try {
|
|
const value = window.localStorage.getItem(key);
|
|
|
|
if (value) {
|
|
setState(JSON.parse(value));
|
|
}
|
|
} catch (error) {
|
|
// eslint-disable-next-line no-console
|
|
console.error(error);
|
|
}
|
|
}, [key]);
|
|
|
|
const setValue = (
|
|
value: string | boolean | ((val: string | boolean) => string | boolean),
|
|
) => {
|
|
try {
|
|
// If the passed value is a callback function,
|
|
// then call it with the existing state.
|
|
const valueToStore =
|
|
typeof value === "function"
|
|
? (value as (val: string | boolean) => string | boolean)(state)
|
|
: value;
|
|
window.localStorage.setItem(key, JSON.stringify(valueToStore));
|
|
setState(valueToStore);
|
|
} catch (error) {
|
|
// eslint-disable-next-line no-console
|
|
console.error(error);
|
|
}
|
|
};
|
|
|
|
return [state, setValue];
|
|
};
|