Skip to content

Fix local storage access #865

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 23, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 22 additions & 9 deletions src/features/decoder/components/jwt-input.component.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,9 @@ export const JwtInputComponent: React.FC<JwtInputComponentProps> = ({
languageCode,
dictionary,
}) => {
const [autoFocusEnabled, setAutofocusEnabled] = useState(() => {
const saved = localStorage.getItem("autofocus-enabled");
return saved ? !!JSON.parse(saved) : false
});
const [autoFocusEnabled, setAutofocusEnabled] = useState<boolean | undefined>(
undefined
);
const handleJwtChange$ = useDecoderStore((state) => state.handleJwtChange);
const jwt$ = useDecoderStore((state) => state.jwt);
const decodeErrors$ = useDecoderStore((state) => state.decodingErrors);
Expand All @@ -52,9 +51,14 @@ export const JwtInputComponent: React.FC<JwtInputComponentProps> = ({
};

const handleCheckboxChange = (selected: boolean) => {
localStorage.setItem("autofocus-enabled", JSON.stringify(selected))
setAutofocusEnabled(selected)
}
localStorage.setItem("autofocus-enabled", JSON.stringify(selected));
setAutofocusEnabled(selected);
};

useEffect(() => {
const saved = localStorage.getItem("autofocus-enabled");
setAutofocusEnabled(saved ? !!JSON.parse(saved) : false);
}, []);

useEffect(() => {
setToken(jwt$);
Expand All @@ -64,7 +68,10 @@ export const JwtInputComponent: React.FC<JwtInputComponentProps> = ({
<>
<div style={{ display: "flex", justifyContent: "space-between" }}>
<span className={styles.headline}>{dictionary.headline}</span>
<CheckboxComponent isSelected={autoFocusEnabled} onChange={e => handleCheckboxChange(e)}>
<CheckboxComponent
isSelected={autoFocusEnabled}
onChange={(e) => handleCheckboxChange(e)}
>
<span className={styles.checkbox__label}>Enable auto-focus</span>
</CheckboxComponent>
</div>
Expand Down Expand Up @@ -99,7 +106,13 @@ export const JwtInputComponent: React.FC<JwtInputComponentProps> = ({
),
}}
>
<JwtEditorComponent token={token} handleJwtChange={handleJwtChange} autoFocus={autoFocusEnabled}/>
{autoFocusEnabled !== undefined ? (
<JwtEditorComponent
token={token}
handleJwtChange={handleJwtChange}
autoFocus={autoFocusEnabled}
/>
) : null}
</CardComponent>
</>
);
Expand Down