4cc39f5069
Full rename across files, identifiers, CSS classes, and user-facing strings (en/vi locales, ARCHITECTURE.md). Replaces the hand-drawn animated cat avatar with the pig-superhero mascot artwork, split into parts to keep per-eye cursor tracking and blink animation working; whole-mascot mood transforms (breathe/bob/shake/tilt) and new zzz/bang/sparkle overlays carry the rest of the mood expression since the traced art has no shared palette to key off of.
287 lines
9.6 KiB
TypeScript
287 lines
9.6 KiB
TypeScript
/**
|
|
* @file SagiPanel.tsx
|
|
* @description Expanded Sagi panel: a live status strip (live / waiting /
|
|
* errored stat chips + connection state), quick navigation actions, and a
|
|
* local "Ask" box. Pure presentational - all data and the ask/navigation
|
|
* behavior are injected by the container.
|
|
* @author Nguyễn Ngọc Trí Vĩ <vinnt@smartgift.vn>
|
|
*/
|
|
/* =============================================================================
|
|
* MODULE_GUIDE — extended in-file reference (comments only; safe to read, never executed)
|
|
* =============================================================================
|
|
* **Purpose:** Sagi is the optional on-screen mascot assistant — quips, intents, and lightweight event reactions layered above the dashboard chrome.
|
|
*
|
|
* ## Design constraints
|
|
* - Local-first: no telemetry leaves the machine unless the user configures webhooks.
|
|
* - Fail-safe hooks path on the server must never block Claude Code; UI mirrors that
|
|
* philosophy by degrading gracefully (empty states, stale badges, reconnect loops).
|
|
* - Destructive flows stay behind explicit confirmation modals and server-side gates.
|
|
* - Internationalization: user-visible strings belong in i18n JSON, not literals here.
|
|
*
|
|
* ## Remote data & SSH
|
|
* Remote Data Sources let operators aggregate multiple machines. SSH entries describe
|
|
* how to reach a peer dashboard; the global data scope (`dataScope.ts`) narrows every
|
|
* scoped GET via `?sources=`. Health checks and import history surface in Settings.
|
|
*
|
|
* ## Internal dependencies
|
|
* - `./brain`
|
|
*
|
|
* ## Public surface
|
|
* - `SagiPanel` — exported API; see TSDoc on the symbol for behavior.
|
|
*
|
|
* ## Testing pointers
|
|
* - Prefer colocated `__tests__` with Vitest + Testing Library for UI.
|
|
* - Server contract changes require `npm run test:server` and OpenAPI sync.
|
|
* - MCP edits: `npm run mcp:typecheck` and `npm run mcp:build`.
|
|
*
|
|
* ## Related docs
|
|
* - `ARCHITECTURE.md` — hooks → API → SQLite → WebSocket → UI pipeline.
|
|
* - `docs/API.md` — REST reference.
|
|
* - `.claude/skills/file-headers/` — mandatory `@author` header policy.
|
|
* ============================================================================= */
|
|
/* -----------------------------------------------------------------------------
|
|
* EXPORT CATALOG — quick index of symbols defined below (documentation only).
|
|
* -----------------------------------------------------------------------------
|
|
* **SagiPanel**
|
|
* Part of this module's public contract. Downstream imports should treat
|
|
* the signature and return type as stable unless release notes say otherwise.
|
|
* When behavior changes, update the `@file` overview and relevant tests.
|
|
*
|
|
* ----------------------------------------------------------------------------- */
|
|
|
|
import { useState, type FormEvent, type ReactNode } from "react";
|
|
import {
|
|
Play,
|
|
Activity,
|
|
LayoutList,
|
|
Bell,
|
|
BellOff,
|
|
Trash2,
|
|
X,
|
|
Send,
|
|
AlertTriangle,
|
|
Hourglass,
|
|
Radio,
|
|
type LucideIcon,
|
|
} from "lucide-react";
|
|
import type { SagiStatus } from "./brain";
|
|
|
|
interface SagiPanelProps {
|
|
status: SagiStatus;
|
|
muted: boolean;
|
|
onToggleMute: () => void;
|
|
onClearAlerts: () => void;
|
|
onNavigate: (route: string) => void;
|
|
/** Returns an answer to display, or null when the query was handed off. */
|
|
onAsk: (query: string) => string | null;
|
|
onClose: () => void;
|
|
}
|
|
|
|
export function SagiPanel({
|
|
status,
|
|
muted,
|
|
onToggleMute,
|
|
onClearAlerts,
|
|
onNavigate,
|
|
onAsk,
|
|
onClose,
|
|
}: SagiPanelProps) {
|
|
const [query, setQuery] = useState("");
|
|
const [answer, setAnswer] = useState<string | null>(null);
|
|
|
|
const submit = (e: FormEvent) => {
|
|
e.preventDefault();
|
|
const result = onAsk(query);
|
|
setAnswer(result); // null means it handed off (container navigates/closes)
|
|
setQuery("");
|
|
};
|
|
|
|
return (
|
|
<div
|
|
className="w-72 overflow-hidden rounded-2xl border border-border-light bg-surface-2/95 shadow-2xl shadow-black/50 backdrop-blur-md animate-slide-up"
|
|
role="dialog"
|
|
aria-label="Sagi companion"
|
|
>
|
|
{/* header */}
|
|
<div className="flex items-center justify-between gap-2 border-b border-border/70 bg-gradient-to-r from-accent/10 to-transparent px-3.5 py-2.5">
|
|
<div className="flex items-center gap-2 min-w-0">
|
|
<span className="text-base leading-none" aria-hidden>
|
|
🐾
|
|
</span>
|
|
<span className="text-sm font-semibold text-fg-primary">Sagi</span>
|
|
<span
|
|
className={`ml-0.5 inline-flex items-center gap-1 rounded-full px-1.5 py-0.5 text-[10px] font-medium ${
|
|
status.connected
|
|
? "bg-status-success/15 text-status-success"
|
|
: "bg-status-danger/15 text-status-danger"
|
|
}`}
|
|
>
|
|
<span
|
|
className={`inline-block h-1.5 w-1.5 rounded-full ${
|
|
status.connected ? "bg-status-success" : "bg-status-danger"
|
|
}`}
|
|
aria-hidden
|
|
/>
|
|
{status.connected ? "Live" : "Offline"}
|
|
</span>
|
|
</div>
|
|
<button
|
|
className="rounded-md p-1 text-fg-muted transition-colors hover:bg-surface-4 hover:text-fg-secondary"
|
|
onClick={onClose}
|
|
aria-label="Close Sagi"
|
|
>
|
|
<X size={15} />
|
|
</button>
|
|
</div>
|
|
|
|
<div className="p-3">
|
|
{/* status stat chips */}
|
|
<div className="mb-3 grid grid-cols-3 gap-1.5">
|
|
<StatChip
|
|
icon={Radio}
|
|
label="live"
|
|
value={status.liveCount}
|
|
tone={status.liveCount > 0 ? "accent" : "muted"}
|
|
/>
|
|
<StatChip
|
|
icon={Hourglass}
|
|
label="waiting"
|
|
value={status.waitingCount}
|
|
tone={status.waitingCount > 0 ? "amber" : "muted"}
|
|
/>
|
|
<StatChip
|
|
icon={AlertTriangle}
|
|
label="errored"
|
|
value={status.errorCount}
|
|
tone={status.errorCount > 0 ? "red" : "muted"}
|
|
/>
|
|
</div>
|
|
|
|
{/* quick actions */}
|
|
<div className="mb-3 grid grid-cols-2 gap-1.5">
|
|
<ActionButton icon={Play} label="Run Claude" onClick={() => onNavigate("/run")} />
|
|
<ActionButton icon={Activity} label="Activity" onClick={() => onNavigate("/activity")} />
|
|
<ActionButton
|
|
icon={LayoutList}
|
|
label="Sessions"
|
|
onClick={() => onNavigate("/sessions")}
|
|
/>
|
|
<ActionButton
|
|
icon={AlertTriangle}
|
|
label="Errored"
|
|
disabled={status.errorCount === 0}
|
|
onClick={() => onNavigate("/sessions")}
|
|
/>
|
|
<ActionButton
|
|
icon={muted ? BellOff : Bell}
|
|
label={muted ? "Unmute" : "Mute"}
|
|
onClick={onToggleMute}
|
|
/>
|
|
<ActionButton
|
|
icon={Trash2}
|
|
label="Clear alerts"
|
|
disabled={status.errorCount === 0}
|
|
onClick={onClearAlerts}
|
|
/>
|
|
</div>
|
|
|
|
{/* ask */}
|
|
<form onSubmit={submit} className="flex items-center gap-1.5">
|
|
<input
|
|
className="flex-1 rounded-lg border border-border bg-surface-1 px-2.5 py-1.5 text-xs text-fg-secondary placeholder-fg-muted transition-colors focus:border-accent focus:outline-none focus:ring-1 focus:ring-accent/30"
|
|
placeholder="Ask Sagi… (e.g. any errors?)"
|
|
value={query}
|
|
onChange={(e) => setQuery(e.target.value)}
|
|
aria-label="Ask Sagi"
|
|
/>
|
|
<button
|
|
type="submit"
|
|
className="flex items-center justify-center rounded-lg bg-accent px-2.5 py-2 text-white transition-colors hover:bg-accent-hover"
|
|
aria-label="Send"
|
|
>
|
|
<Send size={14} />
|
|
</button>
|
|
</form>
|
|
{answer && (
|
|
<p className="mt-2 rounded-lg bg-surface-1/70 px-2.5 py-2 text-xs leading-relaxed text-fg-secondary">
|
|
{answer}
|
|
</p>
|
|
)}
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
interface Tone {
|
|
wrap: string;
|
|
value: string;
|
|
icon: string;
|
|
}
|
|
|
|
const TONE_MUTED: Tone = {
|
|
wrap: "border-border bg-surface-1",
|
|
value: "text-fg-secondary",
|
|
icon: "text-fg-muted",
|
|
};
|
|
|
|
const TONES: Record<string, Tone> = {
|
|
accent: { wrap: "border-accent/30 bg-accent/10", value: "text-fg-primary", icon: "text-accent" },
|
|
amber: {
|
|
wrap: "border-status-warning/30 bg-status-warning/10",
|
|
value: "text-status-warning",
|
|
icon: "text-status-warning",
|
|
},
|
|
red: {
|
|
wrap: "border-status-danger/30 bg-status-danger/10",
|
|
value: "text-status-danger",
|
|
icon: "text-status-danger",
|
|
},
|
|
muted: TONE_MUTED,
|
|
};
|
|
|
|
function StatChip({
|
|
icon: Icon,
|
|
label,
|
|
value,
|
|
tone,
|
|
}: {
|
|
icon: LucideIcon;
|
|
label: string;
|
|
value: number;
|
|
tone: string;
|
|
}): ReactNode {
|
|
const t = TONES[tone] ?? TONE_MUTED;
|
|
return (
|
|
<div className={`flex flex-col items-center gap-0.5 rounded-xl border py-1.5 ${t.wrap}`}>
|
|
<Icon size={13} className={t.icon} aria-hidden />
|
|
<span className={`text-base font-semibold leading-none tabular-nums ${t.value}`}>
|
|
{value}
|
|
</span>
|
|
<span className="text-[9px] uppercase tracking-wider text-fg-muted">{label}</span>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
function ActionButton({
|
|
icon: Icon,
|
|
label,
|
|
onClick,
|
|
disabled,
|
|
}: {
|
|
icon: LucideIcon;
|
|
label: string;
|
|
onClick: () => void;
|
|
disabled?: boolean;
|
|
}) {
|
|
return (
|
|
<button
|
|
className="flex items-center gap-1.5 rounded-lg bg-surface-1 px-2 py-1.5 text-xs text-fg-secondary transition-colors hover:bg-surface-4 hover:text-fg-primary disabled:cursor-not-allowed disabled:opacity-40"
|
|
onClick={onClick}
|
|
disabled={disabled}
|
|
>
|
|
<Icon size={14} className="shrink-0" />
|
|
<span className="truncate">{label}</span>
|
|
</button>
|
|
);
|
|
}
|