pediatric-ai-scribe-v3/public/app/assets
Daniel 7948cad6f1 feat: React auth screen + SPA now serves every route (vanilla retired)
The final big piece of "everything in React + Tailwind". Login,
register, forgot-password, reset-password, and email-verification all
render from the React bundle now. The root path / serves the SPA,
vanilla index.html + public/js/* are no longer served by the server.

BACKEND — src/routes/auth.ts
  New GET /api/auth/public-config (public — no auth required) returns
  { registrationEnabled, turnstileSiteKey, oidcEnabled,
    disableLocalAuth, ssoButtonLabel }.
  Single round-trip the React auth screen needs on mount. Reuses
  existing DB settings; no new tables.

BACKEND — server.ts
  • / and /index.html now send public/app/index.html (React SPA),
    not public/index.html (vanilla).
  • /auth, /reset-password, /verify-email explicitly route to the SPA
    so the email links land on the React router.
  • /app/*splat preserved as an alias so old bookmarks keep working.
  • SPA fallback added after express.static so hard-refresh on
    /encounter / /bedside / /settings etc. serves the React index
    instead of 404ing. API paths and static-file extensions still
    fall through to their existing handlers.
  • The dead app.get('/') duplicate that also pointed at the vanilla
    index is removed.

CLIENT — React auth flow
  client/src/pages/Auth.tsx (new)
    Login / register / forgot sub-forms with a single useQuery on
    ['public-config'] driving Turnstile + SSO button visibility.
    Login flow handles all three vanilla-equivalent responses
    (token / requires2FA / needsVerification). 2FA field reveals
    inline when the server asks for it; resend-verification link
    appears when needsVerification fires. SSO button renders
    whenever oidcEnabled is true, even if local auth is disabled
    (disableLocalAuth hides the login/register/forgot forms
    entirely). HIPAA notice + APK download link preserved.

  client/src/pages/ResetPassword.tsx (new)
    Reads ?token=xxx from the URL, POSTs /api/auth/reset-password.
    Confirm-password match, 8+ char validation, server
    passwordWarning (pwned password) surfaces as an amber info box.
    Redirects to /auth 2.5 s after success.

  client/src/components/Turnstile.tsx (new)
    Loads the challenges.cloudflare.com/turnstile script once,
    renders a widget per form, calls onToken(token) on success and
    onToken('') on error / expiry. If siteKey is null/empty (e2e
    container with TURNSTILE_SITE_KEY="") renders nothing and
    auto-reports empty — matches the vanilla no-key-no-widget
    behaviour.

  client/src/components/AuthGuard.tsx (new)
    useQuery(['auth-me']) with retry: false. On 401/error redirects
    to /auth?next=<current-url> so the deep link survives sign-in.
    Used as a parent route in App.tsx wrapping every private page.

  client/src/components/Layout.tsx
    "← back to legacy app" link replaced with "Sign out" — calls
    POST /api/auth/logout then window.location = /auth.

  client/src/App.tsx
    BrowserRouter no longer has basename (was "/app"). Public
    routes: /auth, /reset-password. Everything else lives under
    <AuthGuard> → <Layout>. Lazy-loaded Auth + ResetPassword join
    the existing heavy-route code-split.

  client/vite.config.ts
    base stays "/app/" so hashed asset URLs resolve to
    /app/assets/... (served unchanged by express.static).

shared/types.ts + client/src/shared/types.ts — additive:
  PublicConfigOk { registrationEnabled, turnstileSiteKey,
    oidcEnabled, disableLocalAuth, ssoButtonLabel }.

Bundle — Auth chunk splits out at 10.87 kB / 3.35 kB gz, lazy-loaded
only on the sign-in path; initial bundle unchanged at 343.97 kB /
106.59 kB gz.

Backend tsc + client tsc + vite build + 136/136 vitest all green.
2026-04-24 02:45:21 +02:00
..
Admin-C0fswhTW.js feat: React auth screen + SPA now serves every route (vanilla retired) 2026-04-24 02:45:21 +02:00
Auth-BtfAUU3w.js feat: React auth screen + SPA now serves every route (vanilla retired) 2026-04-24 02:45:21 +02:00
Bedside-BsBuEI_m.js feat: React auth screen + SPA now serves every route (vanilla retired) 2026-04-24 02:45:21 +02:00
Calculators-hFcuewWL.js feat: React auth screen + SPA now serves every route (vanilla retired) 2026-04-24 02:45:21 +02:00
Catchup--869idMv.js feat: React auth screen + SPA now serves every route (vanilla retired) 2026-04-24 02:45:21 +02:00
ChartReview-95oCueTc.js feat: React auth screen + SPA now serves every route (vanilla retired) 2026-04-24 02:45:21 +02:00
ConfirmModal-zYA0ebt6.js perf(client): code-split every heavy route via React.lazy() 2026-04-24 02:28:52 +02:00
Dictation-Dk3CctmR.js feat: React auth screen + SPA now serves every route (vanilla retired) 2026-04-24 02:45:21 +02:00
Encounter-CbwLX_2x.js feat: React auth screen + SPA now serves every route (vanilla retired) 2026-04-24 02:45:21 +02:00
fenton-Dvwmge1q.js feat: React auth screen + SPA now serves every route (vanilla retired) 2026-04-24 02:45:21 +02:00
HospitalCourse-BeNFIL_Z.js feat: React auth screen + SPA now serves every route (vanilla retired) 2026-04-24 02:45:21 +02:00
index-BEGt1l85.css feat: React auth screen + SPA now serves every route (vanilla retired) 2026-04-24 02:45:21 +02:00
index-BuU36CvS.js feat: React auth screen + SPA now serves every route (vanilla retired) 2026-04-24 02:45:21 +02:00
jsx-runtime-ByY1xr43.js perf(client): code-split every heavy route via React.lazy() 2026-04-24 02:28:52 +02:00
Learning-BRd1B0-L.js feat: React auth screen + SPA now serves every route (vanilla retired) 2026-04-24 02:45:21 +02:00
PeGuide-eWPZEjQC.js feat: React auth screen + SPA now serves every route (vanilla retired) 2026-04-24 02:45:21 +02:00
ResetPassword-pLQAcaAT.js feat: React auth screen + SPA now serves every route (vanilla retired) 2026-04-24 02:45:21 +02:00
Settings-CnDpQmnm.js feat: React auth screen + SPA now serves every route (vanilla retired) 2026-04-24 02:45:21 +02:00
SickVisit-vgkhrwdD.js feat: React auth screen + SPA now serves every route (vanilla retired) 2026-04-24 02:45:21 +02:00
Soap-VyU-WHem.js feat: React auth screen + SPA now serves every route (vanilla retired) 2026-04-24 02:45:21 +02:00
VaxSchedule-WVnLWGX9.js feat: React auth screen + SPA now serves every route (vanilla retired) 2026-04-24 02:45:21 +02:00
WellVisit-CQEpKEWj.js feat: React auth screen + SPA now serves every route (vanilla retired) 2026-04-24 02:45:21 +02:00