feat: unify chart range controls
This commit is contained in:
@@ -1,17 +1,26 @@
|
||||
import { useState } from "react";
|
||||
import {
|
||||
LineChart,
|
||||
CartesianGrid,
|
||||
Line,
|
||||
LineChart,
|
||||
ResponsiveContainer,
|
||||
Tooltip,
|
||||
XAxis,
|
||||
YAxis,
|
||||
CartesianGrid,
|
||||
Tooltip,
|
||||
ResponsiveContainer,
|
||||
} from "recharts";
|
||||
import {
|
||||
type MetricUnit,
|
||||
type MetricScale,
|
||||
metricScaleInfo,
|
||||
Select,
|
||||
SelectContent,
|
||||
SelectItem,
|
||||
SelectTrigger,
|
||||
SelectValue,
|
||||
} from "@/components/ui/select";
|
||||
import { DEFAULT_CHART_RANGES, type ChartRangeOption } from "./chartRanges";
|
||||
import {
|
||||
formatScaled,
|
||||
metricScaleInfo,
|
||||
type MetricScale,
|
||||
type MetricUnit,
|
||||
} from "../lib/metricFormat";
|
||||
|
||||
export interface SeriesPoint {
|
||||
@@ -27,11 +36,11 @@ export interface ChartSeries {
|
||||
/** Merge multiple time-series into a single recharts-friendly array. */
|
||||
function mergeSeries(series: ChartSeries[]): Record<string, unknown>[] {
|
||||
const map = new Map<number, Record<string, unknown>>();
|
||||
for (const s of series) {
|
||||
for (const p of s.points) {
|
||||
const existing = map.get(p.t) ?? { time: p.t };
|
||||
existing[s.label] = p.v;
|
||||
map.set(p.t, existing);
|
||||
for (const seriesItem of series) {
|
||||
for (const point of seriesItem.points) {
|
||||
const existing = map.get(point.t) ?? { time: point.t };
|
||||
existing[seriesItem.label] = point.v;
|
||||
map.set(point.t, existing);
|
||||
}
|
||||
}
|
||||
return [...map.values()].sort(
|
||||
@@ -61,66 +70,131 @@ interface LineSeriesChartProps {
|
||||
unit?: MetricUnit;
|
||||
/** "auto" picks a prefix from the data magnitude; k/m/g/t force one. */
|
||||
scale?: MetricScale;
|
||||
/** Available displayed time ranges. Defaults to the shared range choices. */
|
||||
rangeOptions?: readonly ChartRangeOption[];
|
||||
/** Initial uncontrolled range. Defaults to the largest available option. */
|
||||
defaultRangeSeconds?: number;
|
||||
/** Controlled range for consumers that refetch when the selection changes. */
|
||||
rangeSeconds?: number;
|
||||
onRangeChange?: (rangeSeconds: number) => void;
|
||||
}
|
||||
|
||||
/** Shared recharts line-chart renderer used by PrometheusChart + qBit speed widgets. */
|
||||
/** Shared range-aware line chart renderer for Prometheus and qBittorrent data. */
|
||||
export function LineSeriesChart({
|
||||
series,
|
||||
height = 300,
|
||||
unit = "none",
|
||||
scale = "auto",
|
||||
rangeOptions = DEFAULT_CHART_RANGES,
|
||||
defaultRangeSeconds,
|
||||
rangeSeconds,
|
||||
onRangeChange,
|
||||
}: LineSeriesChartProps) {
|
||||
// Choose ONE (divisor, suffix) from the series magnitude so the axis and
|
||||
// tooltip stay consistent (e.g. all values shown in MB/s).
|
||||
const maxAbs = series.reduce((m, s) => {
|
||||
for (const p of s.points) {
|
||||
const v = p.v == null ? 0 : Math.abs(p.v);
|
||||
if (v > m) m = v;
|
||||
const initialRange =
|
||||
defaultRangeSeconds ?? rangeOptions[rangeOptions.length - 1]?.value;
|
||||
const [localRangeSeconds, setLocalRangeSeconds] = useState(initialRange);
|
||||
const selectedRangeSeconds = rangeSeconds ?? localRangeSeconds;
|
||||
const latestTimestamp = series.reduce(
|
||||
(max, seriesItem) =>
|
||||
seriesItem.points.reduce(
|
||||
(seriesMax, point) => Math.max(seriesMax, point.t),
|
||||
max,
|
||||
),
|
||||
0,
|
||||
);
|
||||
const cutoff = selectedRangeSeconds
|
||||
? latestTimestamp - selectedRangeSeconds * 1000
|
||||
: null;
|
||||
const visibleSeries =
|
||||
cutoff !== null && latestTimestamp > 0
|
||||
? series.map((seriesItem) => ({
|
||||
...seriesItem,
|
||||
points: seriesItem.points.filter((point) => point.t >= cutoff),
|
||||
}))
|
||||
: series;
|
||||
|
||||
const maxAbs = visibleSeries.reduce((max, seriesItem) => {
|
||||
for (const point of seriesItem.points) {
|
||||
const value = point.v == null ? 0 : Math.abs(point.v);
|
||||
if (value > max) max = value;
|
||||
}
|
||||
return m;
|
||||
return max;
|
||||
}, 0);
|
||||
const scaleInfo = metricScaleInfo(maxAbs, unit, scale);
|
||||
const fmt = (v: number | null | undefined) =>
|
||||
formatScaled(v, scaleInfo, unit);
|
||||
const formatValue = (value: number | null | undefined) =>
|
||||
formatScaled(value, scaleInfo, unit);
|
||||
|
||||
function handleRangeChange(value: string) {
|
||||
const nextRange = Number(value);
|
||||
setLocalRangeSeconds(nextRange);
|
||||
onRangeChange?.(nextRange);
|
||||
}
|
||||
|
||||
return (
|
||||
<ResponsiveContainer width="100%" height={height}>
|
||||
<LineChart data={mergeSeries(series)}>
|
||||
<CartesianGrid strokeDasharray="3 3" className="stroke-muted" />
|
||||
<XAxis
|
||||
dataKey="time"
|
||||
tickFormatter={formatTime}
|
||||
tick={{ fontSize: 11 }}
|
||||
className="fill-muted-foreground"
|
||||
/>
|
||||
<YAxis
|
||||
tickFormatter={fmt}
|
||||
tick={{ fontSize: 11 }}
|
||||
width={56}
|
||||
className="fill-muted-foreground"
|
||||
/>
|
||||
<Tooltip
|
||||
labelFormatter={(label) => formatTime(Number(label))}
|
||||
formatter={(value) => fmt(Number(value))}
|
||||
contentStyle={{
|
||||
backgroundColor: "var(--color-popover)",
|
||||
border: "1px solid var(--color-border)",
|
||||
borderRadius: "0.5rem",
|
||||
color: "var(--color-popover-foreground)",
|
||||
}}
|
||||
/>
|
||||
{series.map((s, i) => (
|
||||
<Line
|
||||
key={s.label}
|
||||
type="monotone"
|
||||
dataKey={s.label}
|
||||
stroke={CHART_COLORS[i % CHART_COLORS.length]}
|
||||
dot={false}
|
||||
strokeWidth={2}
|
||||
connectNulls
|
||||
<div className="space-y-2">
|
||||
{rangeOptions.length > 0 && (
|
||||
<div className="flex justify-end">
|
||||
<Select
|
||||
value={
|
||||
selectedRangeSeconds ? String(selectedRangeSeconds) : undefined
|
||||
}
|
||||
onValueChange={handleRangeChange}
|
||||
>
|
||||
<SelectTrigger
|
||||
className="w-[150px]"
|
||||
size="sm"
|
||||
aria-label="Chart range"
|
||||
>
|
||||
<SelectValue placeholder="Chart range" />
|
||||
</SelectTrigger>
|
||||
<SelectContent>
|
||||
{rangeOptions.map((range) => (
|
||||
<SelectItem key={range.value} value={String(range.value)}>
|
||||
{range.label}
|
||||
</SelectItem>
|
||||
))}
|
||||
</SelectContent>
|
||||
</Select>
|
||||
</div>
|
||||
)}
|
||||
<ResponsiveContainer width="100%" height={height}>
|
||||
<LineChart data={mergeSeries(visibleSeries)}>
|
||||
<CartesianGrid strokeDasharray="3 3" className="stroke-muted" />
|
||||
<XAxis
|
||||
dataKey="time"
|
||||
tickFormatter={formatTime}
|
||||
tick={{ fontSize: 11 }}
|
||||
className="fill-muted-foreground"
|
||||
/>
|
||||
))}
|
||||
</LineChart>
|
||||
</ResponsiveContainer>
|
||||
<YAxis
|
||||
tickFormatter={formatValue}
|
||||
tick={{ fontSize: 11 }}
|
||||
width={56}
|
||||
className="fill-muted-foreground"
|
||||
/>
|
||||
<Tooltip
|
||||
labelFormatter={(label) => formatTime(Number(label))}
|
||||
formatter={(value) => formatValue(Number(value))}
|
||||
contentStyle={{
|
||||
backgroundColor: "var(--color-popover)",
|
||||
border: "1px solid var(--color-border)",
|
||||
borderRadius: "0.5rem",
|
||||
color: "var(--color-popover-foreground)",
|
||||
}}
|
||||
/>
|
||||
{visibleSeries.map((seriesItem, index) => (
|
||||
<Line
|
||||
key={seriesItem.label}
|
||||
type="monotone"
|
||||
dataKey={seriesItem.label}
|
||||
stroke={CHART_COLORS[index % CHART_COLORS.length]}
|
||||
dot={false}
|
||||
strokeWidth={2}
|
||||
connectNulls
|
||||
/>
|
||||
))}
|
||||
</LineChart>
|
||||
</ResponsiveContainer>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user