nexus/ui/src/components/ChatSearchDialog.tsx
Nexus Dev 3a41ec7b9c feat(nexus): design system phase 3 raw utility sweep
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>
2026-04-10 17:40:32 +00:00

138 lines
4.5 KiB
TypeScript

import { useState } from "react";
import { Search } from "lucide-react";
import { useChatSearch } from "../hooks/useChatSearch";
import {
CommandDialog,
CommandEmpty,
CommandInput,
CommandItem,
CommandList,
} from "@/components/ui/command";
import { Command } from "cmdk";
interface ChatSearchDialogProps {
open: boolean;
onOpenChange: (open: boolean) => void;
companyId: string | null;
onNavigate: (conversationId: string, messageId: string) => void;
}
function stripMarkdown(text: string): string {
return text
.replace(/```[\s\S]*?```/g, "")
.replace(/`[^`]+`/g, "")
.replace(/\*\*([^*]+)\*\*/g, "$1")
.replace(/\*([^*]+)\*/g, "$1")
.replace(/#{1,6}\s/g, "")
.replace(/\[([^\]]+)\]\([^)]+\)/g, "$1")
.replace(/>\s/g, "")
.trim();
}
/** Split text into segments, marking portions that match the query terms */
function splitWithHighlight(text: string, query: string): Array<{ text: string; highlight: boolean }> {
if (!query.trim()) return [{ text, highlight: false }];
const terms = query.trim().split(/\s+/).filter(Boolean);
const pattern = terms.map((t) => t.replace(/[.*+?^${}()|[\]\\]/g, "\\$&")).join("|");
const re = new RegExp(`(${pattern})`, "gi");
const parts = text.split(re);
return parts.map((part) => ({
text: part,
highlight: re.test(part),
}));
}
function HighlightedText({ text, query }: { text: string; query: string }) {
const segments = splitWithHighlight(text, query);
return (
<>
{segments.map((seg, i) =>
seg.highlight ? (
<mark key={i} className="bg-warning/15 rounded-sm">
{seg.text}
</mark>
) : (
<span key={i}>{seg.text}</span>
),
)}
</>
);
}
function formatRelativeTime(dateStr: string): string {
const date = new Date(dateStr);
const now = new Date();
const diffMs = now.getTime() - date.getTime();
const diffMin = Math.floor(diffMs / 60000);
if (diffMin < 1) return "just now";
if (diffMin < 60) return `${diffMin}m ago`;
const diffHr = Math.floor(diffMin / 60);
if (diffHr < 24) return `${diffHr}h ago`;
const diffDays = Math.floor(diffHr / 24);
if (diffDays < 30) return `${diffDays}d ago`;
return date.toLocaleDateString();
}
export function ChatSearchDialog({ open, onOpenChange, companyId, onNavigate }: ChatSearchDialogProps) {
const [query, setQuery] = useState("");
const { data } = useChatSearch(companyId, query);
const results = data?.items ?? [];
function handleSelect(conversationId: string, messageId: string) {
onNavigate(conversationId, messageId);
onOpenChange(false);
setQuery("");
}
return (
<CommandDialog
open={open}
onOpenChange={(v) => {
onOpenChange(v);
if (!v) setQuery("");
}}
title="Search messages"
description="Search all messages across conversations"
>
<Command shouldFilter={false}>
<CommandInput
placeholder="Search all messages..."
value={query}
onValueChange={setQuery}
/>
<CommandList>
{query.trim().length >= 2 && results.length === 0 && (
<CommandEmpty>No results found.</CommandEmpty>
)}
{results.map((result) => {
const snippet = stripMarkdown(result.content).slice(0, 120);
return (
<CommandItem
key={result.messageId}
value={result.messageId}
onSelect={() => handleSelect(result.conversationId, result.messageId)}
className="flex flex-col items-start gap-0.5 py-2"
>
<div className="flex w-full items-center gap-2">
<Search className="h-3.5 w-3.5 shrink-0 text-muted-foreground" />
<span className="text-xs text-muted-foreground truncate flex-1">
{result.conversationTitle ?? "Untitled conversation"}
</span>
<span className="text-xs text-muted-foreground shrink-0 capitalize">
{result.role}
</span>
<span className="text-xs text-muted-foreground shrink-0">
{formatRelativeTime(result.createdAt)}
</span>
</div>
<p className="pl-5 text-sm text-foreground line-clamp-2">
<HighlightedText text={snippet} query={query} />
</p>
</CommandItem>
);
})}
</CommandList>
</Command>
</CommandDialog>
);
}