Third phase of the DESIGN.md migration. Removes every raw Tailwind
color palette utility (bg-red-*, text-amber-*, border-blue-*, etc.)
from component source and replaces them with the semantic tokens
introduced in phases 1 and 2.
Scope:
- 84 files touched under ui/src/
- ~420 raw palette utility instances replaced
- 23 hardcoded hex fallbacks replaced with var(--token) refs
- Zero raw palette utilities remain in component source
(verified with rg '(bg|text|border|ring)-(red|blue|green|amber|
yellow|cyan|violet|purple|pink|slate|zinc|neutral|sky|teal|
emerald|indigo|rose|orange|fuchsia)-[0-9]+' ui/src)
Mapping rules applied:
- red-* -> destructive
- amber-/yellow-/orange-* -> warning
- green-/emerald-* -> success
- blue-/cyan-/sky-* -> primary (info/in-progress) or muted-foreground
- slate-/gray-/zinc-/neutral-* -> muted / muted-foreground / border
- violet-/purple-/pink-/indigo-/rose-/teal-* -> collapsed to
primary or muted (most were one-off decorative choices, not
role-bearing). Role-bearing uses go through lib/agent-role-colors
which was rewritten in phase 2.
- Opacity modifiers preserved (/10, /15, /20, etc.)
- dark: variant duplicates removed (theme tokens auto-switch)
Hardcoded hex fallbacks fixed:
- #6366f1 (indigo) -> var(--primary) / var(--volt)
- #64748b (slate) -> var(--muted-foreground) / var(--silver)
- #4f46e5 (indigo) -> var(--primary)
- #89b4fa (old Catppuccin blue) -> var(--primary) / #faff69
- OrgChart status dots (#22d3ee/#4ade80/#facc15/#f87171/#a3a3a3)
-> var(--primary) / var(--success) / var(--warning) /
var(--destructive) / var(--muted-foreground) per status
- VoiceWaveform fallback #89b4fa -> #faff69 (volt)
Legitimate hex values left untouched (12 total):
- lib/color-contrast.ts WCAG reference constants
- lib/worktree-branding.ts contrast fallback references
- lib/mention-chips.ts runtime-generated SVG fills
- context/ThemeContext.tsx theme metadata brand hexes
- components/ThemeSeedInput.tsx user-facing hex picker
Ambiguous decisions (flagged for visual QA):
- AgentDetail.tsx invocation-source badges (timer/assignment/
on_demand) collapsed to primary/muted — visual distinction
is reduced, labels still differ. Consider chart-role slots
if differentiation matters.
- AgentDetail.tsx mixed-opacity amber banners: bg-warning/60
against new warning base reads heavier than original amber-50
base.
- Live-state dots in KanbanBoard/AgentDetail: bg-blue-* ->
bg-primary — will glow volt in dark mode, probably desirable.
Verification:
- npx tsc --noEmit in ui/ — zero errors introduced. Pre-existing
errors in AgentConfigForm, command.tsx, useKeyboardShortcuts,
usePiperTts, useVadRecorder, PersonalAssistant remain, all
unrelated to color work.
- Dev server on :6100 returns 200.
Not changed in this commit:
- ui/src/lib/company-routes.ts — separate routing fix for broken
Assistant/ContentStudio/Convert links, committed next.
- Test files — a few will need assertion updates but are out of
phase 3 scope.
Phase 4 follow-ups (rounded-xl/2xl collapse, soft shadow removal,
gradient removal) noted in .planning/AUDIT-RADIUS-SHADOWS.md.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
157 lines
5.3 KiB
TypeScript
157 lines
5.3 KiB
TypeScript
import type { QuotaWindow } from "@paperclipai/shared";
|
|
import { cn, quotaSourceDisplayName } from "@/lib/utils";
|
|
|
|
interface CodexSubscriptionPanelProps {
|
|
windows: QuotaWindow[];
|
|
source?: string | null;
|
|
error?: string | null;
|
|
}
|
|
|
|
const WINDOW_PRIORITY = [
|
|
"5hlimit",
|
|
"weeklylimit",
|
|
"credits",
|
|
] as const;
|
|
|
|
function normalizeLabel(text: string): string {
|
|
return text.toLowerCase().replace(/[^a-z0-9]+/g, "");
|
|
}
|
|
|
|
function orderedWindows(windows: QuotaWindow[]): QuotaWindow[] {
|
|
return [...windows].sort((a, b) => {
|
|
const aBase = normalizeLabel(a.label).replace(/^gpt53codexspark/, "");
|
|
const bBase = normalizeLabel(b.label).replace(/^gpt53codexspark/, "");
|
|
const aIndex = WINDOW_PRIORITY.indexOf(aBase as (typeof WINDOW_PRIORITY)[number]);
|
|
const bIndex = WINDOW_PRIORITY.indexOf(bBase as (typeof WINDOW_PRIORITY)[number]);
|
|
return (aIndex === -1 ? WINDOW_PRIORITY.length : aIndex) - (bIndex === -1 ? WINDOW_PRIORITY.length : bIndex);
|
|
});
|
|
}
|
|
|
|
function detailText(window: QuotaWindow): string | null {
|
|
if (typeof window.detail === "string" && window.detail.trim().length > 0) return window.detail.trim();
|
|
if (!window.resetsAt) return null;
|
|
const formatted = new Date(window.resetsAt).toLocaleString(undefined, {
|
|
month: "short",
|
|
day: "numeric",
|
|
hour: "numeric",
|
|
minute: "2-digit",
|
|
timeZoneName: "short",
|
|
});
|
|
return `Resets ${formatted}`;
|
|
}
|
|
|
|
function fillClass(usedPercent: number | null): string {
|
|
if (usedPercent == null) return "bg-muted";
|
|
if (usedPercent >= 90) return "bg-destructive";
|
|
if (usedPercent >= 70) return "bg-warning";
|
|
return "bg-primary/70";
|
|
}
|
|
|
|
function isModelSpecific(label: string): boolean {
|
|
const normalized = normalizeLabel(label);
|
|
return normalized.includes("gpt53codexspark") || normalized.includes("gpt5");
|
|
}
|
|
|
|
export function CodexSubscriptionPanel({
|
|
windows,
|
|
source = null,
|
|
error = null,
|
|
}: CodexSubscriptionPanelProps) {
|
|
const ordered = orderedWindows(windows);
|
|
const accountWindows = ordered.filter((window) => !isModelSpecific(window.label));
|
|
const modelWindows = ordered.filter((window) => isModelSpecific(window.label));
|
|
|
|
return (
|
|
<div className="border border-border px-4 py-4">
|
|
<div className="flex items-start justify-between gap-3 border-b border-border pb-3">
|
|
<div className="min-w-0">
|
|
<div className="text-[11px] font-semibold uppercase tracking-[0.2em] text-muted-foreground">
|
|
Codex subscription
|
|
</div>
|
|
<div className="mt-1 text-sm text-muted-foreground">
|
|
Live Codex quota windows.
|
|
</div>
|
|
</div>
|
|
{source ? (
|
|
<span className="shrink-0 border border-border px-2.5 py-1 text-[10px] font-semibold uppercase tracking-[0.16em] text-muted-foreground">
|
|
{quotaSourceDisplayName(source)}
|
|
</span>
|
|
) : null}
|
|
</div>
|
|
|
|
{error ? (
|
|
<div className="mt-4 border border-destructive/40 bg-destructive/10 px-3 py-2 text-sm text-destructive">
|
|
{error}
|
|
</div>
|
|
) : null}
|
|
|
|
<div className="mt-4 space-y-5">
|
|
<div className="space-y-3">
|
|
<div className="text-[11px] font-semibold uppercase tracking-[0.18em] text-muted-foreground">
|
|
Account windows
|
|
</div>
|
|
<div className="space-y-3">
|
|
{accountWindows.map((window) => (
|
|
<QuotaWindowRow key={window.label} window={window} />
|
|
))}
|
|
</div>
|
|
</div>
|
|
|
|
{modelWindows.length > 0 ? (
|
|
<div className="space-y-3">
|
|
<div className="text-[11px] font-semibold uppercase tracking-[0.18em] text-muted-foreground">
|
|
Model windows
|
|
</div>
|
|
<div className="space-y-3">
|
|
{modelWindows.map((window) => (
|
|
<QuotaWindowRow key={window.label} window={window} />
|
|
))}
|
|
</div>
|
|
</div>
|
|
) : null}
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
function QuotaWindowRow({ window }: { window: QuotaWindow }) {
|
|
const detail = detailText(window);
|
|
if (window.usedPercent == null) {
|
|
return (
|
|
<div className="border border-border px-3.5 py-3">
|
|
<div className="flex items-center justify-between gap-3">
|
|
<div className="text-sm font-medium text-foreground">{window.label}</div>
|
|
{window.valueLabel ? (
|
|
<div className="text-sm font-semibold tabular-nums text-foreground">{window.valueLabel}</div>
|
|
) : null}
|
|
</div>
|
|
{detail ? (
|
|
<div className="mt-2 text-xs text-muted-foreground">{detail}</div>
|
|
) : null}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<div className="border border-border px-3.5 py-3">
|
|
<div className="flex items-start justify-between gap-3">
|
|
<div className="min-w-0">
|
|
<div className="text-sm font-medium text-foreground">{window.label}</div>
|
|
{detail ? (
|
|
<div className="mt-1 text-xs text-muted-foreground">{detail}</div>
|
|
) : null}
|
|
</div>
|
|
<div className="shrink-0 text-sm font-semibold tabular-nums text-foreground">
|
|
{window.usedPercent}% used
|
|
</div>
|
|
</div>
|
|
|
|
<div className="mt-3 h-2 overflow-hidden bg-muted">
|
|
<div
|
|
className={cn("h-full transition-[width] duration-200", fillClass(window.usedPercent))}
|
|
style={{ width: `${Math.max(0, Math.min(100, window.usedPercent))}%` }}
|
|
/>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|