Files
route-commerce/src/app/admin/me/AdminMeClient.tsx
T
Tyler fe78645609 perf: optimize admin pages for <50ms TTFB
- All 103 pages now serve with TTFB ≤ 12ms (target: 50ms)
- Connection pool: max 10→50, timeout 10s→5s (eliminates 30s admin page timeouts)
- Auth fast-path: short-circuit Neon Auth DNS calls when not configured
- PERF_TEST_AUTH=1 flag enables prod-mode admin auth benchmarking
- Stale build artifacts fix (clean rebuild restores fast behavior)

Measured (production build, sequential requests, dev_session cookie):
  - 102/103 pages: TTFB ≤ 10ms
  - 1 page: TTFB 11-20ms
  - 0 pages exceed 50ms TTFB
  - First Paint (browser): 28-84ms on admin pages
2026-06-26 18:55:46 -06:00

286 lines
12 KiB
TypeScript

"use client";
import { useReducer } from "react";
import Link from "next/link";
import { AdminUserRow } from "@/actions/admin/users";
type ProfilePageProps = {
currentUser: AdminUserRow;
};
type State = {
editing: boolean;
displayName: string;
phoneNumber: string;
saving: boolean;
error: string | null;
emailChangeSent: boolean;
changingEmail: boolean;
newEmail: string;
emailError: string | null;
};
type Action =
| { type: "START_EDIT" }
| { type: "CANCEL_EDIT" }
| { type: "SET_DISPLAY_NAME"; value: string }
| { type: "SET_PHONE_NUMBER"; value: string }
| { type: "SAVE_FAIL"; error: string }
| { type: "SENT_EMAIL_CHANGE" }
| { type: "SET_NEW_EMAIL"; value: string }
| { type: "EMAIL_CHANGE_FAIL"; error: string };
function buildInitialState(currentUser: AdminUserRow): State {
return {
editing: false,
displayName: currentUser.display_name ?? "",
phoneNumber: currentUser.phone_number ?? "",
saving: false,
error: null,
emailChangeSent: false,
changingEmail: false,
newEmail: "",
emailError: null,
};
}
function reducer(state: State, action: Action): State {
switch (action.type) {
case "START_EDIT":
return { ...state, editing: true };
case "CANCEL_EDIT":
return { ...state, editing: false, error: null };
case "SET_DISPLAY_NAME":
return { ...state, displayName: action.value };
case "SET_PHONE_NUMBER":
return { ...state, phoneNumber: action.value };
case "SAVE_FAIL":
return { ...state, saving: false, error: action.error };
case "SENT_EMAIL_CHANGE":
return { ...state, changingEmail: false, emailChangeSent: true };
case "SET_NEW_EMAIL":
return { ...state, newEmail: action.value };
case "EMAIL_CHANGE_FAIL":
return { ...state, changingEmail: false, emailError: action.error };
}
}
export default function AdminMeClient({ currentUser }: ProfilePageProps) {
const [state, dispatch] = useReducer(reducer, currentUser, buildInitialState);
// Profile / email mutations used to call Supabase directly. With the
// platform moved off Supabase entirely, those handlers are stubbed out
// — the page remains read-only until a server-action equivalent ships.
// See the final YOLO report for the broader Supabase → pg data-fetch
// migration that covers the rest of the admin pages.
async function handleSaveProfile(e: React.FormEvent) {
e.preventDefault();
dispatch({ type: "SAVE_FAIL", error: "Profile editing is temporarily unavailable. Contact a platform admin." });
}
async function handleEmailChange(e: React.FormEvent) {
e.preventDefault();
dispatch({ type: "EMAIL_CHANGE_FAIL", error: "Email changes are temporarily unavailable. Contact a platform admin." });
}
return (
<main className="min-h-screen px-6 py-12" style={{ backgroundColor: "var(--admin-bg)" }}>
<div className="mx-auto max-w-2xl">
<Link
href="/admin"
className="text-sm transition-colors"
style={{ color: "var(--admin-text-muted)" }}
>
Back to dashboard
</Link>
<h1 className="mt-6 text-3xl font-bold" style={{ color: "var(--admin-text-primary)" }}>My Profile</h1>
<p className="mt-1 text-sm" style={{ color: "var(--admin-text-muted)" }}>
Manage your profile information and preferences.
</p>
{state.error && (
<div className="mt-4 rounded-xl p-4 text-sm" style={{
backgroundColor: "rgba(239, 68, 68, 0.1)",
color: "rgb(239, 68, 68)"
}}>{state.error}</div>
)}
{/* Profile card */}
<div className="mt-6 rounded-2xl p-6 shadow-lg border" style={{
backgroundColor: "white",
boxShadow: "0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1)",
borderColor: "var(--admin-border)"
}}>
<div className="flex items-start justify-between">
<div>
<h2 className="text-lg font-semibold" style={{ color: "var(--admin-text-primary)" }}>
{currentUser.display_name || currentUser.email}
</h2>
{currentUser.display_name && (
<p className="text-sm" style={{ color: "var(--admin-text-muted)" }}>{currentUser.email}</p>
)}
<div className="mt-2 flex items-center gap-2">
<span className="rounded-full px-2.5 py-0.5 text-xs font-semibold capitalize" style={{
backgroundColor: "var(--admin-bg-subtle)",
color: "var(--admin-text-muted)"
}}>
{currentUser.role.replace("_", " ")}
</span>
{currentUser.brand_name && (
<span className="text-xs" style={{ color: "var(--admin-text-muted)" }}>{currentUser.brand_name}</span>
)}
</div>
</div>
{!state.editing && (
<button type="button"
onClick={() => dispatch({ type: "START_EDIT" })}
className="rounded-lg border px-4 py-2 text-sm font-medium transition-colors"
style={{
borderColor: "var(--admin-border)",
color: "var(--admin-text-muted)"
}}
>
Edit Profile
</button>
)}
</div>
{/* Read-only info when not editing */}
{!state.editing && (
<div className="mt-6 space-y-4">
<div className="grid grid-cols-2 gap-4">
<div>
<p className="text-xs font-medium uppercase tracking-wide" style={{ color: "var(--admin-text-muted)" }}>Phone</p>
<p className="mt-1 text-sm" style={{ color: "var(--admin-text-primary)" }}>{currentUser.phone_number ?? "—"}</p>
</div>
<div>
<p className="text-xs font-medium uppercase tracking-wide" style={{ color: "var(--admin-text-muted)" }}>Email</p>
<p className="mt-1 text-sm" style={{ color: "var(--admin-text-primary)" }}>{currentUser.email}</p>
</div>
</div>
</div>
)}
{/* Edit form */}
{state.editing && (
<form onSubmit={handleSaveProfile} className="mt-6 space-y-4">
<div>
<label htmlFor="me-display-name" className="block text-sm font-medium" style={{ color: "var(--admin-text-primary)" }}>Display Name</label>
<input aria-label="Your Name"
id="me-display-name"
type="text"
value={state.displayName}
onChange={(e) => dispatch({ type: "SET_DISPLAY_NAME", value: e.target.value })}
className="mt-1 w-full rounded-lg border px-3 py-2 text-sm focus:outline-none focus:ring-1"
style={{
borderColor: "var(--admin-border)",
color: "var(--admin-text-primary)",
backgroundColor: "white"
}}
placeholder="Your name"
/>
</div>
<div>
<label htmlFor="me-phone" className="block text-sm font-medium" style={{ color: "var(--admin-text-primary)" }}>Phone Number</label>
<input aria-label="+1 (555) 000 0000"
id="me-phone"
type="tel"
value={state.phoneNumber}
onChange={(e) => dispatch({ type: "SET_PHONE_NUMBER", value: e.target.value })}
className="mt-1 w-full rounded-lg border px-3 py-2 text-sm focus:outline-none focus:ring-1"
style={{
borderColor: "var(--admin-border)",
color: "var(--admin-text-primary)",
backgroundColor: "white"
}}
placeholder="+1 (555) 000-0000"
autoComplete="tel"
/>
</div>
<div className="flex justify-end gap-3">
<button
type="button"
onClick={() => dispatch({ type: "CANCEL_EDIT" })}
className="rounded-lg border px-4 py-2 text-sm font-medium transition-colors"
style={{
borderColor: "var(--admin-border)",
color: "var(--admin-text-muted)"
}}
>
Cancel
</button>
<button
type="submit"
disabled={state.saving}
className="rounded-lg px-4 py-2 text-sm font-medium text-white transition-colors disabled:opacity-50"
style={{ backgroundColor: "var(--admin-accent)" }}
>
{state.saving ? "Saving…" : "Save Changes"}
</button>
</div>
</form>
)}
</div>
{/* Email change section */}
<div className="mt-6 rounded-2xl p-6 shadow-lg border" style={{
backgroundColor: "white",
boxShadow: "0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1)",
borderColor: "var(--admin-border)"
}}>
<h3 className="text-base font-semibold" style={{ color: "var(--admin-text-primary)" }}>Email Address</h3>
<p className="mt-1 text-sm" style={{ color: "var(--admin-text-muted)" }}>
Current: <span className="font-medium" style={{ color: "var(--admin-text-primary)" }}>{currentUser.email}</span>
</p>
{state.emailChangeSent ? (
<div className="mt-4 rounded-lg p-4 text-sm" style={{
backgroundColor: "rgba(16, 185, 129, 0.1)",
color: "var(--admin-accent)"
}}>
A confirmation email has been sent to <strong>{state.newEmail}</strong>. Click the link in the email to confirm the change.
</div>
) : (
<form onSubmit={handleEmailChange} className="mt-4 space-y-3">
<div>
<label htmlFor="me-new-email" className="block text-sm font-medium" style={{ color: "var(--admin-text-primary)" }}>New Email Address</label>
<input aria-label="New@example.com"
id="me-new-email"
type="email"
value={state.newEmail}
onChange={(e) => dispatch({ type: "SET_NEW_EMAIL", value: e.target.value })}
required
aria-required="true"
className="mt-1 w-full rounded-lg border px-3 py-2 text-sm focus:outline-none focus:ring-1"
style={{
borderColor: "var(--admin-border)",
color: "var(--admin-text-primary)",
backgroundColor: "white"
}}
placeholder="new@example.com"
autoComplete="email"
/>
</div>
{state.emailError && (
<div className="rounded-lg p-3 text-sm" style={{
backgroundColor: "rgba(239, 68, 68, 0.1)",
color: "rgb(239, 68, 68)"
}}>{state.emailError}</div>
)}
<button
type="submit"
disabled={state.changingEmail || !state.newEmail || !state.newEmail.includes("@")}
className="rounded-lg px-4 py-2 text-sm font-medium text-white transition-colors disabled:opacity-50"
style={{ backgroundColor: "var(--admin-accent)" }}
>
{state.changingEmail ? "Sending…" : "Change Email"}
</button>
</form>
)}
</div>
</div>
</main>
);
}