49 lines
1.4 KiB
TypeScript
49 lines
1.4 KiB
TypeScript
import { Alert, AlertDescription } from "@/components/ui/alert";
|
|
import { Skeleton } from "@/components/ui/skeleton";
|
|
import { LineSeriesChart } from "../components/LineSeriesChart";
|
|
import type { ChartSeries } from "../components/LineSeriesChart";
|
|
import type { MetricScale, MetricUnit } from "../lib/metricFormat";
|
|
import { SectionCard } from "../components/SectionCard";
|
|
import { useWidgetData } from "../hooks/useWidgets";
|
|
import type { WidgetInstance } from "../types";
|
|
|
|
interface Props {
|
|
widget: WidgetInstance;
|
|
refreshIntervalMs: number;
|
|
description?: string;
|
|
}
|
|
|
|
export function MetricChartWidget({
|
|
widget,
|
|
refreshIntervalMs,
|
|
description,
|
|
}: Props) {
|
|
const { data, isLoading } = useWidgetData(widget.id, refreshIntervalMs);
|
|
const series = data?.data?.series as ChartSeries[] | undefined;
|
|
|
|
return (
|
|
<SectionCard title={widget.title} description={description}>
|
|
{isLoading && !data ? (
|
|
<Skeleton className="h-[300px] w-full" />
|
|
) : data?.error ? (
|
|
<Alert variant="destructive">
|
|
<AlertDescription>{data.error}</AlertDescription>
|
|
</Alert>
|
|
) : series && series.length > 0 ? (
|
|
<LineSeriesChart
|
|
series={series}
|
|
unit={widget.config.unit as MetricUnit}
|
|
scale={widget.config.scale as MetricScale}
|
|
showRangeSelector={false}
|
|
/>
|
|
) : (
|
|
<Alert>
|
|
<AlertDescription>
|
|
No data. Check your PromQL query and window in the widget config.
|
|
</AlertDescription>
|
|
</Alert>
|
|
)}
|
|
</SectionCard>
|
|
);
|
|
}
|