Files
patchpass/UI/src/pages/Settings.tsx
T
space 0c49b132ee
Deploy / Build (pull_request) Successful in 49s
Deploy / Build and Push Docker Image (pull_request) Has been skipped
Deploy / Test & Lint (pull_request) Successful in 34s
feat(ui): make the UI feel native on mobile
Reworks the frontend around phone-first interaction patterns and makes the
app installable to a home screen.

Shell
- Bottom tab bar (Home / Requests / Agents / Alerts / Settings) below `md`,
  with the unread badge moved onto the Alerts tab; the bell stays on desktop.
- Account menu opens as a bottom sheet on phones, dropdown on desktop.
- Safe-area insets throughout: `viewport-fit=cover` plus `env(safe-area-inset-*)`
  on the sticky header, tab bar and sheet footers.

Sheets
- New `Sheet` primitive: drag-to-dismiss bottom sheet on phones, centred dialog
  from `sm` up. `Modal` now delegates to it, so every dialog inherits the
  gesture, the scroll lock and the safe-area padding.
- Portalled to `<body>` — an ancestor with a transform (the page fade-in) was
  otherwise becoming the containing block and displacing the fixed overlay.
- Scroll lock pins `<body>` and restores position, which iOS needs; plain
  `overflow: hidden` still rubber-bands there.
- `ConfirmSheet` replaces `window.confirm` for destructive actions.

Screens
- Request detail gets a sticky decision bar above the tab bar; the sidebar
  decision card is now desktop-only.
- Requests state filter becomes a swipeable pill row instead of a select.
- Agent cards show two primary actions plus an overflow sheet on phones.
- Diffs and code blocks contain their horizontal overscroll so a sideways swipe
  no longer triggers browser back; diffs gain a line-wrap toggle.
- `min-w-0` on grid tracks — items default to `min-width: auto`, so truncated
  meta lines were widening columns past the viewport at 320px.

Touch and input
- 44px minimum touch targets, `:active` press feedback, no tap highlight.
- 16px inputs on coarse pointers so iOS stops zooming on focus.
- autocomplete/inputmode hints so password managers and keyboards behave.
- `overscroll-behavior-y: none` disables pull-to-refresh; motion respects
  `prefers-reduced-motion`.

PWA
- Manifest, generated app icons (192/512/apple-touch) and standalone display
  metadata, so the app installs to a home screen without browser chrome.
- Backend serves `.webmanifest` as `application/manifest+json`; rjweb's type
  map has no entry for it.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
2026-08-01 00:43:48 +02:00

300 lines
9.1 KiB
TypeScript

import { useState } from "react";
import { useNavigate } from "react-router-dom";
import { toast } from "react-toastify";
import { account, auth as authApi } from "../api/client";
import { useAuth } from "../context/AuthContext";
import { Button, Card, Input, PageHeader, Toggle } from "../components/ui";
import { Modal } from "../components/Modal";
import { CodeBlock } from "../components/CodeBlock";
function Section({ title, description, children }: { title: string; description?: string; children: React.ReactNode }) {
return (
<Card className="min-w-0 p-4 sm:p-5">
<h2 className="text-base font-semibold text-text">{title}</h2>
{description && <p className="mb-4 mt-0.5 text-sm text-muted">{description}</p>}
<div className={description ? "" : "mt-4"}>{children}</div>
</Card>
);
}
export function SettingsPage() {
const { user, refresh } = useAuth();
const navigate = useNavigate();
// Profile
const [displayName, setDisplayName] = useState(user?.display_name ?? "");
// Password
const [curPw, setCurPw] = useState("");
const [newPw, setNewPw] = useState("");
// Auto-delete
const [autoDelete, setAutoDelete] = useState(user?.auto_delete_enabled ?? false);
const [autoDeleteDays, setAutoDeleteDays] = useState(user?.auto_delete_days ?? 30);
// 2FA
const [setup, setSetup] = useState<{ secret: string; otpauth_url: string } | null>(null);
const [totp, setTotp] = useState("");
const [disable2faOpen, setDisable2faOpen] = useState(false);
const [disablePw, setDisablePw] = useState("");
// Delete account
const [deleteOpen, setDeleteOpen] = useState(false);
const [deletePw, setDeletePw] = useState("");
const saveProfile = async () => {
try {
await account.updateProfile(displayName);
toast.success("Profile updated");
refresh();
} catch (e) {
toast.error(e instanceof Error ? e.message : "Failed");
}
};
const savePassword = async () => {
try {
await account.changePassword(curPw, newPw);
toast.success("Password changed");
setCurPw("");
setNewPw("");
} catch (e) {
toast.error(e instanceof Error ? e.message : "Failed");
}
};
const saveAutoDelete = async (enabled: boolean, days: number) => {
try {
const res = await account.updateSettings({ auto_delete_enabled: enabled, auto_delete_days: days });
setAutoDelete(res.auto_delete_enabled);
setAutoDeleteDays(res.auto_delete_days);
toast.success("Settings saved");
} catch (e) {
toast.error(e instanceof Error ? e.message : "Failed");
}
};
const begin2fa = async () => {
try {
setSetup(await authApi.setup2fa());
} catch (e) {
toast.error(e instanceof Error ? e.message : "Failed");
}
};
const confirm2fa = async () => {
try {
await authApi.enable2fa(totp);
toast.success("2FA enabled");
setSetup(null);
setTotp("");
refresh();
} catch (e) {
toast.error(e instanceof Error ? e.message : "Invalid code");
}
};
const disable2fa = async () => {
try {
await authApi.disable2fa(disablePw);
toast.success("2FA disabled");
setDisable2faOpen(false);
setDisablePw("");
refresh();
} catch (e) {
toast.error(e instanceof Error ? e.message : "Failed");
}
};
const deleteAccount = async () => {
try {
await account.deleteAccount(deletePw);
toast.success("Account deleted");
navigate("/login", { replace: true });
window.location.reload();
} catch (e) {
toast.error(e instanceof Error ? e.message : "Failed");
}
};
return (
<div>
<PageHeader title="Settings" subtitle="Manage your account, security, and data." />
<div className="grid gap-5 lg:grid-cols-2">
<Section title="Profile">
<div className="space-y-3">
<Input label="Username" value={user?.username ?? ""} disabled autoComplete="username" />
<Input label="Display name" value={displayName} onChange={(e) => setDisplayName(e.target.value)} />
<Button className="w-full sm:w-auto" onClick={saveProfile}>
Save profile
</Button>
</div>
</Section>
<Section title="Password">
<div className="space-y-3">
<Input
label="Current password"
type="password"
autoComplete="current-password"
value={curPw}
onChange={(e) => setCurPw(e.target.value)}
/>
<Input
label="New password"
type="password"
autoComplete="new-password"
value={newPw}
onChange={(e) => setNewPw(e.target.value)}
hint="At least 8 characters."
/>
<Button
className="w-full sm:w-auto"
onClick={savePassword}
disabled={!curPw || newPw.length < 8}
>
Change password
</Button>
</div>
</Section>
<Section title="Two-factor authentication" description="Add a TOTP authenticator app for extra security.">
{user?.totp_enabled ? (
<div className="flex flex-wrap items-center justify-between gap-3">
<span className="text-sm text-approved"> 2FA is enabled</span>
<Button variant="danger" onClick={() => setDisable2faOpen(true)}>
Disable
</Button>
</div>
) : setup ? (
<div className="space-y-3">
<p className="text-sm text-muted">
Add this secret to your authenticator app, then enter the 6-digit code.
</p>
<CodeBlock code={setup.secret} />
<Input
label="Authenticator code"
value={totp}
onChange={(e) => setTotp(e.target.value.replace(/\D/g, "").slice(0, 6))}
placeholder="123456"
inputMode="numeric"
autoComplete="one-time-code"
pattern="[0-9]*"
/>
<div className="flex gap-2 *:flex-1 sm:*:flex-none">
<Button onClick={confirm2fa} disabled={totp.length !== 6}>
Enable 2FA
</Button>
<Button variant="ghost" onClick={() => setSetup(null)}>
Cancel
</Button>
</div>
</div>
) : (
<Button onClick={begin2fa}>Set up 2FA</Button>
)}
</Section>
<Section
title="Auto-delete old requests"
description="Disabled by default. When on, requests older than the retention window are permanently deleted (minimum 7 days)."
>
<div className="space-y-4">
<Toggle checked={autoDelete} onChange={(v) => saveAutoDelete(v, autoDeleteDays)} label="Enable auto-delete" />
{autoDelete && (
<div>
<div className="mb-1 flex items-center justify-between text-sm">
<span className="text-muted">Retention window</span>
<span className="font-medium text-text">{autoDeleteDays} days</span>
</div>
<input
type="range"
min={7}
max={90}
value={autoDeleteDays}
onChange={(e) => setAutoDeleteDays(Number(e.target.value))}
// pointerup covers mouse, touch and pen in one handler.
onPointerUp={() => saveAutoDelete(true, autoDeleteDays)}
onKeyUp={() => saveAutoDelete(true, autoDeleteDays)}
className="w-full accent-[var(--color-primary)]"
aria-label="Retention window in days"
/>
</div>
)}
</div>
</Section>
<Section title="Export your data" description="Download all your data (account, agents, requests, notifications) as JSON.">
<a href={account.exportUrl} download className="block sm:inline-block">
<Button variant="secondary" className="w-full sm:w-auto">
Download export
</Button>
</a>
</Section>
<Section title="Danger zone" description="Permanently delete your account and all associated data. This cannot be undone.">
<Button variant="danger" className="w-full sm:w-auto" onClick={() => setDeleteOpen(true)}>
Delete account
</Button>
</Section>
</div>
<Modal
open={disable2faOpen}
onClose={() => setDisable2faOpen(false)}
onSubmit={disable2fa}
title="Disable 2FA"
footer={
<>
<Button variant="ghost" className="flex-1 sm:flex-none" onClick={() => setDisable2faOpen(false)}>
Cancel
</Button>
<Button variant="danger" className="flex-1 sm:flex-none" onClick={disable2fa}>
Disable
</Button>
</>
}
>
<Input
label="Confirm your password"
type="password"
autoComplete="current-password"
value={disablePw}
onChange={(e) => setDisablePw(e.target.value)}
/>
</Modal>
<Modal
open={deleteOpen}
onClose={() => setDeleteOpen(false)}
onSubmit={deleteAccount}
title="Delete account"
footer={
<>
<Button variant="ghost" className="flex-1 sm:flex-none" onClick={() => setDeleteOpen(false)}>
Cancel
</Button>
<Button
variant="danger"
className="flex-1 sm:flex-none"
onClick={deleteAccount}
disabled={!deletePw}
>
Permanently delete
</Button>
</>
}
>
<div className="space-y-3">
<p className="text-sm text-muted">
This deletes your account and cascades to all your agents, change requests, and notifications.
This action is irreversible.
</p>
<Input
label="Confirm your password"
type="password"
autoComplete="current-password"
value={deletePw}
onChange={(e) => setDeletePw(e.target.value)}
/>
</div>
</Modal>
</div>
);
}