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>
106 lines
3.6 KiB
TypeScript
106 lines
3.6 KiB
TypeScript
import { CheckCircle2, XCircle, Clock } from "lucide-react";
|
|
import { Link } from "@/lib/router";
|
|
import { Button } from "@/components/ui/button";
|
|
import { Identity } from "./Identity";
|
|
import { approvalLabel, typeIcon, defaultTypeIcon, ApprovalPayloadRenderer } from "./ApprovalPayload";
|
|
import { timeAgo } from "../lib/timeAgo";
|
|
import type { Approval, Agent } from "@paperclipai/shared";
|
|
|
|
function statusIcon(status: string) {
|
|
if (status === "approved") return <CheckCircle2 className="h-3.5 w-3.5 text-success" />;
|
|
if (status === "rejected") return <XCircle className="h-3.5 w-3.5 text-destructive" />;
|
|
if (status === "revision_requested") return <Clock className="h-3.5 w-3.5 text-warning" />;
|
|
if (status === "pending") return <Clock className="h-3.5 w-3.5 text-warning" />;
|
|
return null;
|
|
}
|
|
|
|
export function ApprovalCard({
|
|
approval,
|
|
requesterAgent,
|
|
onApprove,
|
|
onReject,
|
|
onOpen,
|
|
detailLink,
|
|
isPending,
|
|
}: {
|
|
approval: Approval;
|
|
requesterAgent: Agent | null;
|
|
onApprove: () => void;
|
|
onReject: () => void;
|
|
onOpen?: () => void;
|
|
detailLink?: string;
|
|
isPending: boolean;
|
|
}) {
|
|
const Icon = typeIcon[approval.type] ?? defaultTypeIcon;
|
|
const label = approvalLabel(approval.type, approval.payload as Record<string, unknown> | null);
|
|
const showResolutionButtons =
|
|
approval.type !== "budget_override_required" &&
|
|
(approval.status === "pending" || approval.status === "revision_requested");
|
|
|
|
return (
|
|
<div className="border border-border rounded-lg p-4 space-y-0">
|
|
{/* Header */}
|
|
<div className="flex items-start justify-between gap-3">
|
|
<div className="flex items-center gap-2">
|
|
<Icon className="h-4 w-4 text-muted-foreground shrink-0" />
|
|
<div className="flex items-center gap-2">
|
|
<span className="font-medium text-sm">{label}</span>
|
|
{requesterAgent && (
|
|
<span className="text-xs text-muted-foreground">
|
|
requested by <Identity name={requesterAgent.name} size="sm" className="inline-flex" />
|
|
</span>
|
|
)}
|
|
</div>
|
|
</div>
|
|
<div className="flex items-center gap-1.5 shrink-0">
|
|
{statusIcon(approval.status)}
|
|
<span className="text-xs text-muted-foreground capitalize">{approval.status}</span>
|
|
<span className="text-xs text-muted-foreground">· {timeAgo(approval.createdAt)}</span>
|
|
</div>
|
|
</div>
|
|
|
|
{/* Payload */}
|
|
<ApprovalPayloadRenderer type={approval.type} payload={approval.payload} />
|
|
|
|
{/* Decision note */}
|
|
{approval.decisionNote && (
|
|
<div className="mt-3 text-xs text-muted-foreground italic border-t border-border pt-2">
|
|
Note: {approval.decisionNote}
|
|
</div>
|
|
)}
|
|
|
|
{/* Actions */}
|
|
{showResolutionButtons && (
|
|
<div className="flex gap-2 mt-4 pt-3 border-t border-border">
|
|
<Button
|
|
size="sm"
|
|
className="bg-success hover:bg-success text-white"
|
|
onClick={onApprove}
|
|
disabled={isPending}
|
|
>
|
|
Approve
|
|
</Button>
|
|
<Button
|
|
variant="destructive"
|
|
size="sm"
|
|
onClick={onReject}
|
|
disabled={isPending}
|
|
>
|
|
Reject
|
|
</Button>
|
|
</div>
|
|
)}
|
|
<div className="mt-3">
|
|
{detailLink ? (
|
|
<Button variant="ghost" size="sm" className="text-xs px-0" asChild>
|
|
<Link to={detailLink}>View details</Link>
|
|
</Button>
|
|
) : (
|
|
<Button variant="ghost" size="sm" className="text-xs px-0" onClick={onOpen}>
|
|
View details
|
|
</Button>
|
|
)}
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|