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>
89 lines
3.9 KiB
TypeScript
89 lines
3.9 KiB
TypeScript
import { AlertTriangle, RotateCcw, TimerReset } from "lucide-react";
|
|
import type { DevServerHealthStatus } from "../api/health";
|
|
|
|
function formatRelativeTimestamp(value: string | null): string | null {
|
|
if (!value) return null;
|
|
const timestamp = new Date(value).getTime();
|
|
if (Number.isNaN(timestamp)) return null;
|
|
|
|
const deltaMs = Date.now() - timestamp;
|
|
if (deltaMs < 60_000) return "just now";
|
|
const deltaMinutes = Math.round(deltaMs / 60_000);
|
|
if (deltaMinutes < 60) return `${deltaMinutes}m ago`;
|
|
const deltaHours = Math.round(deltaMinutes / 60);
|
|
if (deltaHours < 24) return `${deltaHours}h ago`;
|
|
const deltaDays = Math.round(deltaHours / 24);
|
|
return `${deltaDays}d ago`;
|
|
}
|
|
|
|
function describeReason(devServer: DevServerHealthStatus): string {
|
|
if (devServer.reason === "backend_changes_and_pending_migrations") {
|
|
return "backend files changed and migrations are pending";
|
|
}
|
|
if (devServer.reason === "pending_migrations") {
|
|
return "pending migrations need a fresh boot";
|
|
}
|
|
return "backend files changed since this server booted";
|
|
}
|
|
|
|
export function DevRestartBanner({ devServer }: { devServer?: DevServerHealthStatus }) {
|
|
if (!devServer?.enabled || !devServer.restartRequired) return null;
|
|
|
|
const changedAt = formatRelativeTimestamp(devServer.lastChangedAt);
|
|
const sample = devServer.changedPathsSample.slice(0, 3);
|
|
|
|
return (
|
|
<div className="border-b border-warning/60 bg-warning/10 text-warning">
|
|
<div className="flex flex-col gap-3 px-3 py-2.5 md:flex-row md:items-center md:justify-between">
|
|
<div className="min-w-0">
|
|
<div className="flex items-center gap-2 text-[12px] font-semibold uppercase tracking-[0.18em]">
|
|
<AlertTriangle className="h-3.5 w-3.5 shrink-0" />
|
|
<span>Restart Required</span>
|
|
{devServer.autoRestartEnabled ? (
|
|
<span className="rounded-full bg-warning/10 px-2 py-0.5 text-[10px] tracking-[0.14em]">
|
|
Auto-Restart On
|
|
</span>
|
|
) : null}
|
|
</div>
|
|
<p className="mt-1 text-sm">
|
|
{describeReason(devServer)}
|
|
{changedAt ? ` · updated ${changedAt}` : ""}
|
|
</p>
|
|
<div className="mt-2 flex flex-wrap items-center gap-2 text-xs text-warning">
|
|
{sample.length > 0 ? (
|
|
<span>
|
|
Changed: {sample.join(", ")}
|
|
{devServer.changedPathCount > sample.length ? ` +${devServer.changedPathCount - sample.length} more` : ""}
|
|
</span>
|
|
) : null}
|
|
{devServer.pendingMigrations.length > 0 ? (
|
|
<span>
|
|
Pending migrations: {devServer.pendingMigrations.slice(0, 2).join(", ")}
|
|
{devServer.pendingMigrations.length > 2 ? ` +${devServer.pendingMigrations.length - 2} more` : ""}
|
|
</span>
|
|
) : null}
|
|
</div>
|
|
</div>
|
|
|
|
<div className="flex shrink-0 items-center gap-2 text-xs font-medium">
|
|
{devServer.waitingForIdle ? (
|
|
<div className="inline-flex items-center gap-2 rounded-full bg-warning/10 px-3 py-1.5">
|
|
<TimerReset className="h-3.5 w-3.5" />
|
|
<span>Waiting for {devServer.activeRunCount} live run{devServer.activeRunCount === 1 ? "" : "s"} to finish</span>
|
|
</div>
|
|
) : devServer.autoRestartEnabled ? (
|
|
<div className="inline-flex items-center gap-2 rounded-full bg-warning/10 px-3 py-1.5">
|
|
<RotateCcw className="h-3.5 w-3.5" />
|
|
<span>Auto-restart will trigger when the instance is idle</span>
|
|
</div>
|
|
) : (
|
|
<div className="inline-flex items-center gap-2 rounded-full bg-warning/10 px-3 py-1.5">
|
|
<RotateCcw className="h-3.5 w-3.5" />
|
|
<span>Restart <code>pnpm dev:once</code> after the active work is safe to interrupt</span>
|
|
</div>
|
|
)}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|