Files
Nitro-V3/src/hooks/useLocalStorage.ts
T
simoleo89 535fa71020 ESLint --fix: auto-fix brace-style, indent, semi, no-trailing-spaces
Run eslint --fix across src/ to clear ~1900 mechanical lint errors
surfaced by the @typescript-eslint v8 + react-hooks v7 + react-compiler
upgrade in the React 19 modernization PR.

Issues fixed automatically:
- brace-style (Allman): try/catch one-liners reformatted to multi-line
- indent: tab-vs-space and depth corrections
- semi: missing trailing semicolons
- no-trailing-spaces

No semantic changes. Remaining 701 errors are real-code issues
(set-state-in-effect, rules-of-hooks, no-unsafe-* type checks) that
need manual per-file review.

https://claude.ai/code/session_01GrR87LAqnAEyKG2ZbmQt5Q
2026-05-11 16:31:50 +00:00

46 lines
1.2 KiB
TypeScript

import { NitroLogger } from '@nitrots/nitro-renderer';
import { Dispatch, SetStateAction, useState } from 'react';
import { GetLocalStorage, SetLocalStorage } from '../api';
const userId = new URLSearchParams(window.location.search).get('userid') || 0;
const useLocalStorageState = <T>(key: string, initialValue: T): [ T, Dispatch<SetStateAction<T>>] =>
{
key = userId ? `${ key }.${ userId }` : key;
const [ storedValue, setStoredValue ] = useState<T>(() =>
{
try
{
const item = typeof window !== 'undefined' ? GetLocalStorage<T>(key) : undefined;
return item ?? initialValue;
}
catch(error)
{
return initialValue;
}
});
const setValue = (value: T) =>
{
try
{
const valueToStore = value instanceof Function ? value(storedValue) : value;
setStoredValue(valueToStore);
if(typeof window !== 'undefined') SetLocalStorage(key, valueToStore);
}
catch(error)
{
NitroLogger.error(error);
}
};
return [ storedValue, setValue ];
};
export const useLocalStorage = useLocalStorageState;