mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-05-03 02:11:48 +00:00
70 lines
2.4 KiB
TypeScript
70 lines
2.4 KiB
TypeScript
import { Link } from "react-router-dom";
|
|
import type { StatusResponse } from "@/lib/api";
|
|
import { useSidebarStatus } from "@/hooks/useSidebarStatus";
|
|
import { cn } from "@/lib/utils";
|
|
import { useI18n } from "@/i18n";
|
|
|
|
/** Gateway + session summary for the System sidebar block (no separate strip chrome). */
|
|
export function SidebarStatusStrip() {
|
|
const status = useSidebarStatus();
|
|
const { t } = useI18n();
|
|
|
|
if (status === null) {
|
|
return (
|
|
<div className="px-5 py-1.5" aria-hidden>
|
|
<div className="h-2 w-[80%] max-w-full animate-pulse rounded-sm bg-midground/10" />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
const gw = gatewayLine(status, t);
|
|
const { activeSessionsLabel, gatewayStatusLabel } = t.app;
|
|
|
|
return (
|
|
<Link
|
|
to="/sessions"
|
|
title={t.app.statusOverview}
|
|
className={cn(
|
|
"block text-left",
|
|
"px-5 pb-2 pt-0.5",
|
|
"text-muted-foreground/70",
|
|
"transition-colors hover:text-muted-foreground/90",
|
|
"focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-midground/40",
|
|
"focus-visible:ring-inset",
|
|
)}
|
|
>
|
|
<div className="flex flex-col gap-1 font-mondwest text-[0.55rem] leading-snug tracking-[0.12em]">
|
|
<p className="break-words">
|
|
<span className="text-muted-foreground/50">{gatewayStatusLabel}</span>{" "}
|
|
<span className={cn("font-medium", gw.tone)}>{gw.label}</span>
|
|
</p>
|
|
|
|
<p className="break-words">
|
|
<span className="text-muted-foreground/50">{activeSessionsLabel}</span>{" "}
|
|
<span className="tabular-nums text-muted-foreground/70">
|
|
{status.active_sessions}
|
|
</span>
|
|
</p>
|
|
</div>
|
|
</Link>
|
|
);
|
|
}
|
|
|
|
function gatewayLine(
|
|
status: StatusResponse,
|
|
t: ReturnType<typeof useI18n>["t"],
|
|
): { label: string; tone: string } {
|
|
const g = t.app.gatewayStrip;
|
|
const byState: Record<string, { label: string; tone: string }> = {
|
|
running: { label: g.running, tone: "text-success" },
|
|
starting: { label: g.starting, tone: "text-warning" },
|
|
startup_failed: { label: g.failed, tone: "text-destructive" },
|
|
stopped: { label: g.stopped, tone: "text-muted-foreground" },
|
|
};
|
|
if (status.gateway_state && byState[status.gateway_state]) {
|
|
return byState[status.gateway_state];
|
|
}
|
|
return status.gateway_running
|
|
? { label: g.running, tone: "text-success" }
|
|
: { label: g.off, tone: "text-muted-foreground" };
|
|
}
|