refactor: migrate frontend to React + Tailwind, add Docker + tests

Replace the vanilla-TS innerHTML frontend with a type-checked React
component tree (React 19 + Tailwind v4 + Vite).

Frontend:
- 14 components: Header, Stepper, LoginPage, LoginModal, SignPage,
  DropZone, DevicePicker, ProgressCard, SavedAccountsList, TrustModal,
  TwoFactorModal, Button, Field, Chip, Modal
- lib/ extracts: storage (10 localStorage keys preserved), pair-record,
  account-session, log-parser, ids, use-log hook
- flows/ encapsulate async pair/login/sign/install with dependency injection
- Accounts page as main view with Add Account modal
- Fullscreen progress overlay during sign/install
- Account selector + device picker on Sign page
- Security notice in login modal (server trust warning)
- All addLog calls mirrored to console.log for devtools debugging

Build:
- bun run dev: submodule init + install + wasm dist + vite + wrangler
- bun run setup: one-shot project bootstrap
- Docker: multi-stage bun build → nginx on :3000
- build:wasm:dist copies pre-built src→dist (no Rust/Emscripten needed)
- jszip/node-forge/fflate pre-bundled for CJS→ESM conversion

Tests:
- 163 vitest tests (happy-dom): all lib, components, App integration,
  WASM dist artifact checks, libcurl Apple connectivity, anisette init
  error handling

Cleanup:
- Delete yarn.lock (bun.lock canonical), expand .gitignore
- Remove README.zh.md, rewrite README.md + AGENTS.md
- Update libcurl.js submodule to f65d440 (CI build artifacts)
This commit is contained in:
Lakr
2026-04-13 17:02:45 +08:00
parent 3ed8ddc5dc
commit afec333aa0
79 changed files with 6543 additions and 6392 deletions

View File

@@ -0,0 +1,60 @@
import { Modal } from './ui/Modal';
interface TrustModalProps {
open: boolean;
onClose: () => void;
pairing: boolean;
}
export function TrustModal({ open, onClose, pairing }: TrustModalProps) {
return (
<Modal open={open} onClose={onClose} labelledBy="trust-title" closeOnBackdrop={false} closeOnEscape={!pairing}>
<div className="flex flex-col items-center text-center">
<div className="mb-4 flex h-14 w-14 items-center justify-center rounded-full bg-surface" aria-hidden="true">
<svg
className="h-7 w-7 text-ink"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
strokeWidth="1.5"
strokeLinecap="round"
strokeLinejoin="round"
>
<rect x="6" y="2.5" width="12" height="19" rx="2.5" />
<path d="M11 18.5h2" />
<path d="M9 7.5l2.2 2.2L15 5.9" />
</svg>
</div>
{pairing ? (
<>
<h2 id="trust-title" className="text-[16px] font-semibold tracking-tight text-ink">
Continue on Your Device
</h2>
<p className="mt-2 text-[13px] leading-[1.6] text-muted">
If prompted, unlock your iPhone or iPad and tap <strong className="font-semibold text-ink">Trust</strong>.
Enter your passcode if asked.
</p>
<p className="mt-1.5 text-[12px] leading-[1.5] text-subtle">
Developer Mode must be enabled on your device. Go to Settings Privacy & Security Developer Mode.
</p>
<div className="mt-5 flex items-center gap-2 text-[12.5px] text-muted">
<span className="spinner" aria-hidden="true" />
<span>Waiting for device</span>
</div>
</>
) : (
<>
<h2 id="trust-title" className="text-[16px] font-semibold tracking-tight text-ink">
Device Paired
</h2>
<p className="mt-2 text-[13px] leading-[1.6] text-muted">Your device is connected and ready for signing.</p>
<button type="button" onClick={onClose} className="btn btn-primary mt-5 w-full">
Continue
</button>
</>
)}
</div>
</Modal>
);
}