Files
2026-07-13 13:32:57 +08:00

134 lines
4.6 KiB
TypeScript

import type { OutputColumnMetadata } from "@internal/clickhouse";
import type { ChartBlock } from "@internal/dashboard-agent";
import { useEffect, useState } from "react";
import { QueryResultsChart } from "~/components/code/QueryResultsChart";
import type { ChartConfiguration } from "~/components/metrics/QueryWidget";
import { Spinner } from "~/components/primitives/Spinner";
import { useOptionalEnvironment } from "~/hooks/useEnvironment";
import { useOptionalOrganization } from "~/hooks/useOrganizations";
import { useOptionalProject } from "~/hooks/useProject";
// Render an agent "chart" block by running its TRQL query through the dashboard's
// own /resources/metric endpoint (session-authed, returns rows + real column
// metadata) and feeding the result into QueryResultsChart. So the chart is live
// and matches the Query page exactly: the agent only emits the query + chart
// config, never the rows. Runs against the project/env the panel is open in.
type MetricResponse =
| { success: false; error: string }
| {
success: true;
data: {
rows: Record<string, unknown>[];
columns: OutputColumnMetadata[];
timeRange: { from: string; to: string };
};
};
type ChartState =
| { status: "loading" }
| { status: "error"; error: string }
| {
status: "ready";
rows: Record<string, unknown>[];
columns: OutputColumnMetadata[];
timeRange?: { from: string; to: string };
};
export function AgentChart({ block }: { block: ChartBlock }) {
const organization = useOptionalOrganization();
const project = useOptionalProject();
const environment = useOptionalEnvironment();
const [state, setState] = useState<ChartState>({ status: "loading" });
const organizationId = organization?.id;
const projectId = project?.id;
const environmentId = environment?.id;
useEffect(() => {
// The block can render before its `query` has finished streaming in; wait
// for it rather than POST an empty query (which 400s).
if (!block.query) return;
if (!organizationId || !projectId || !environmentId) {
setState({ status: "error", error: "No environment context to run the query." });
return;
}
const controller = new AbortController();
setState({ status: "loading" });
fetch("/resources/metric", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({
query: block.query,
organizationId,
projectId,
environmentId,
scope: "environment",
period: block.period ?? null,
from: null,
to: null,
}),
signal: controller.signal,
})
.then(async (res) => (await res.json()) as MetricResponse)
.then((data) => {
if (controller.signal.aborted) return;
if (!data.success) {
setState({ status: "error", error: data.error });
} else {
setState({
status: "ready",
rows: data.data.rows,
columns: data.data.columns,
timeRange: data.data.timeRange,
});
}
})
.catch((err) => {
if (controller.signal.aborted) return;
setState({ status: "error", error: err?.message ?? "The query failed to run." });
});
return () => controller.abort();
}, [block.query, block.period, organizationId, projectId, environmentId]);
const config: ChartConfiguration = {
chartType: block.chartType,
xAxisColumn: block.xAxisColumn,
yAxisColumns: block.yAxisColumns ?? [],
groupByColumn: block.groupByColumn ?? null,
stacked: block.stacked ?? false,
sortByColumn: null,
sortDirection: "desc",
aggregation: block.aggregation ?? "sum",
};
return (
<div className="overflow-hidden rounded-lg border border-border-bright bg-background-dimmed">
{block.title ? (
<div className="border-b border-grid-bright bg-background-bright px-3 py-2 text-xs font-medium text-text-dimmed">
{block.title}
</div>
) : null}
<div className="h-64 w-full p-2">
{state.status === "loading" ? (
<div className="flex h-full items-center justify-center gap-2 text-xs text-text-dimmed">
<Spinner className="size-3" />
Running query
</div>
) : state.status === "error" ? (
<div className="flex h-full items-center justify-center px-3 text-center text-xs text-error">
{state.error}
</div>
) : (
<QueryResultsChart
rows={state.rows}
columns={state.columns}
config={config}
timeRange={state.timeRange}
/>
)}
</div>
</div>
);
}