Files
2026-07-13 12:58:18 +08:00

286 lines
9.2 KiB
TypeScript

"use client";
import React, { memo } from "react";
import { s, prompt } from "@hashbrownai/core";
import {
exposeComponent,
exposeMarkdown,
useUiKit,
useJsonParser,
} from "@hashbrownai/react";
import type { RenderMessageProps } from "@copilotkit/react-ui";
import type { AssistantMessage } from "@ag-ui/core";
import { PieChart } from "../../charts/pie-chart";
import { BarChart } from "../../charts/bar-chart";
import type { SalesStage } from "../../../types";
// ---------------------------------------------------------------------------
// Simple MetricCard with flat string props (optimized for structured output)
// ---------------------------------------------------------------------------
interface MetricCardProps {
label: string;
value: string;
trend?: string;
}
function MetricCard({ label, value, trend }: MetricCardProps) {
const isPositive =
trend?.startsWith("+") || trend?.toLowerCase().includes("up");
const isNegative =
trend?.startsWith("-") || trend?.toLowerCase().includes("down");
const trendColor = isPositive
? "text-green-600 dark:text-green-400"
: isNegative
? "text-red-600 dark:text-red-400"
: "text-[var(--muted-foreground)]";
return (
<div
data-testid="metric-card"
className="rounded-lg border border-[var(--border)] bg-[var(--card)] p-4"
>
<p className="text-xs text-[var(--muted-foreground)] uppercase tracking-wider font-medium">
{label}
</p>
<p className="text-2xl font-bold text-[var(--foreground)] mt-1">
{value}
</p>
{trend && (
<p data-testid="metric-trend" className={`text-sm mt-1 ${trendColor}`}>
{trend}
</p>
)}
</div>
);
}
// ---------------------------------------------------------------------------
// Standalone DealCard for the kit (flat props, no SalesTodo dependency)
// ---------------------------------------------------------------------------
interface HashBrownDealCardProps {
title: string;
stage: SalesStage;
value: number;
assignee?: string;
dueDate?: string;
}
const STAGE_COLORS: Record<SalesStage, string> = {
prospect: "bg-blue-100 text-blue-800 dark:bg-blue-900 dark:text-blue-200",
qualified:
"bg-purple-100 text-purple-800 dark:bg-purple-900 dark:text-purple-200",
proposal: "bg-amber-100 text-amber-800 dark:bg-amber-900 dark:text-amber-200",
negotiation:
"bg-orange-100 text-orange-800 dark:bg-orange-900 dark:text-orange-200",
"closed-won":
"bg-green-100 text-green-800 dark:bg-green-900 dark:text-green-200",
"closed-lost": "bg-red-100 text-red-800 dark:bg-red-900 dark:text-red-200",
};
function DealCardComponent({
title,
stage,
value,
assignee,
dueDate,
}: HashBrownDealCardProps) {
const badgeClass =
STAGE_COLORS[stage] ??
"bg-gray-100 text-gray-800 dark:bg-gray-800 dark:text-gray-200";
return (
<div
data-testid="hashbrown-deal-card"
className="rounded-lg border border-[var(--border)] bg-[var(--card)] p-4"
>
<h3 className="text-sm font-semibold leading-snug text-[var(--foreground)]">
{title}
</h3>
<div className="mt-2 flex items-center gap-2 flex-wrap">
<span
className={`inline-flex items-center rounded-full px-2 py-0.5 text-xs font-medium ${badgeClass}`}
>
{stage}
</span>
<span className="text-sm font-semibold text-[var(--foreground)]">
${(value ?? 0).toLocaleString()}
</span>
</div>
<div className="mt-2 flex items-center gap-3 text-xs text-[var(--muted-foreground)]">
{assignee && <span>{assignee}</span>}
{dueDate && <span>Due {dueDate}</span>}
</div>
</div>
);
}
// ---------------------------------------------------------------------------
// Kit definition
// ---------------------------------------------------------------------------
export function useSalesDashboardKit() {
return useUiKit({
examples: prompt`
# Mixing components and Markdown:
<ui>
<Markdown children="## Q4 Sales Summary" />
<metric label="Total Revenue" value="$1.2M" trend="+12% vs Q3" />
<Markdown children="Revenue breakdown by segment:" />
<pieChart title="Revenue by Segment" data='[{"label":"Enterprise","value":600000},{"label":"SMB","value":400000},{"label":"Startup","value":200000}]' />
<barChart title="Monthly Trend" data='[{"label":"Oct","value":350000},{"label":"Nov","value":400000},{"label":"Dec","value":450000}]' />
<dealCard title="Acme Corp Renewal" stage="negotiation" value="250000" assignee="Jane" dueDate="2024-12-31" />
</ui>
Hint: use Markdown for explanatory text between visual components.
Hint: always include title and data for charts.
`,
components: [
exposeMarkdown(),
exposeComponent(MetricCard, {
name: "metric",
description: "A KPI metric card with label, value, and optional trend",
props: {
label: s.string("The metric label/name"),
value: s.string("The metric value (formatted)"),
trend: s.string("Optional trend indicator, e.g. +12%").optional(),
},
}),
exposeComponent(PieChart, {
name: "pieChart",
description: "A donut/pie chart with title and data segments",
props: {
title: s.string("Chart title"),
description: s.string("Brief description or subtitle").optional(),
data: s.streaming.array(
s.object({
label: s.string("Segment label"),
value: s.number("Segment value"),
}),
),
},
}),
exposeComponent(BarChart, {
name: "barChart",
description: "A vertical bar chart with title and data bars",
props: {
title: s.string("Chart title"),
description: s.string("Brief description or subtitle").optional(),
data: s.streaming.array(
s.object({
label: s.string("Bar label"),
value: s.number("Bar value"),
}),
),
},
}),
exposeComponent(DealCardComponent, {
name: "dealCard",
description: "A sales deal card showing pipeline stage and value",
props: {
title: s.string("Deal title"),
stage: s.string(
"Pipeline stage: prospect | qualified | proposal | negotiation | closed-won | closed-lost",
),
value: s.number("Deal value in dollars"),
assignee: s.string("Who owns this deal").optional(),
dueDate: s.string("Expected close date").optional(),
},
}),
],
});
}
// ---------------------------------------------------------------------------
// Custom message renderer
// ---------------------------------------------------------------------------
const AssistantMessageRenderer = memo(function AssistantMessageRenderer({
message,
kit,
}: {
message: AssistantMessage;
kit: ReturnType<typeof useSalesDashboardKit>;
}) {
const { value } = useJsonParser(message.content ?? "", kit.schema);
if (!value) return null;
return (
<div className="mt-2 flex w-full justify-start">
<div className="w-full px-1 py-1">{kit.render(value)}</div>
</div>
);
});
// ---------------------------------------------------------------------------
// Exported dashboard component
// ---------------------------------------------------------------------------
export interface HashBrownDashboardProps {
/**
* Optional custom wrapper for the assistant message area.
* Defaults to rendering messages inline.
*/
children?: React.ReactNode;
}
/**
* Provider that instantiates the HashBrown kit ONCE and shares it via context.
* Both the dashboard layout and message renderer consume the same kit instance.
*
* The kit registers MetricCard, PieChart, BarChart, DealCard, and Markdown
* components. Agent context forwarding for output_schema is omitted because
* the npm-published react-core may not export useAgentContext yet.
*/
const HashBrownKitContext = React.createContext<ReturnType<
typeof useSalesDashboardKit
> | null>(null);
function useHashBrownKit() {
const kit = React.useContext(HashBrownKitContext);
if (!kit)
throw new Error("useHashBrownKit must be used within HashBrownDashboard");
return kit;
}
export function HashBrownDashboard({ children }: HashBrownDashboardProps) {
const kit = useSalesDashboardKit();
// Note: Agent context forwarding (useAgentContext) for output_schema is
// omitted because the npm-published react-core may not export it yet.
return (
<HashBrownKitContext.Provider value={kit}>
{children}
</HashBrownKitContext.Provider>
);
}
/**
* Stable message renderer component that consumes the kit from context.
* Defined at module level to avoid unstable function identity.
*/
function HashBrownRenderMessage({ message }: RenderMessageProps) {
const kit = useHashBrownKit();
if (message.role === "assistant") {
return (
<AssistantMessageRenderer
message={message as AssistantMessage}
kit={kit}
/>
);
}
return null;
}
/**
* Returns the stable HashBrownRenderMessage component.
* Must be used within a HashBrownDashboard provider.
*/
export function useHashBrownMessageRenderer() {
return HashBrownRenderMessage;
}