mirror of
https://github.com/umami-software/umami.git
synced 2026-02-05 05:07:15 +01:00
72 lines
1.9 KiB
TypeScript
72 lines
1.9 KiB
TypeScript
import { useMemo, useState, useEffect } from 'react';
|
|
import { colord } from 'colord';
|
|
import BarChart from '@/components/charts/BarChart';
|
|
import { useDateRange, useLocale, useWebsiteEventsSeries } from '@/components/hooks';
|
|
import { renderDateLabels } from '@/lib/charts';
|
|
import { CHART_COLORS } from '@/lib/constants';
|
|
|
|
export interface EventsChartProps {
|
|
websiteId: string;
|
|
className?: string;
|
|
focusLabel?: string;
|
|
}
|
|
|
|
export function EventsChart({ websiteId, className, focusLabel }: EventsChartProps) {
|
|
const {
|
|
dateRange: { startDate, endDate, unit, value },
|
|
} = useDateRange(websiteId);
|
|
const { locale } = useLocale();
|
|
const { data, isLoading } = useWebsiteEventsSeries(websiteId);
|
|
const [label, setLabel] = useState<string>(focusLabel);
|
|
|
|
const chartData = useMemo(() => {
|
|
if (!data) return [];
|
|
|
|
const map = (data as any[]).reduce((obj, { x, t, y }) => {
|
|
if (!obj[x]) {
|
|
obj[x] = [];
|
|
}
|
|
|
|
obj[x].push({ x: t, y });
|
|
|
|
return obj;
|
|
}, {});
|
|
|
|
return {
|
|
datasets: Object.keys(map).map((key, index) => {
|
|
const color = colord(CHART_COLORS[index % CHART_COLORS.length]);
|
|
return {
|
|
label: key,
|
|
data: map[key],
|
|
lineTension: 0,
|
|
backgroundColor: color.alpha(0.6).toRgbString(),
|
|
borderColor: color.alpha(0.7).toRgbString(),
|
|
borderWidth: 1,
|
|
};
|
|
}),
|
|
focusLabel,
|
|
};
|
|
}, [data, startDate, endDate, unit, focusLabel]);
|
|
|
|
useEffect(() => {
|
|
if (label !== focusLabel) {
|
|
setLabel(focusLabel);
|
|
}
|
|
}, [focusLabel]);
|
|
|
|
return (
|
|
<BarChart
|
|
minDate={startDate.toISOString()}
|
|
maxDate={endDate.toISOString()}
|
|
className={className}
|
|
data={chartData}
|
|
unit={unit}
|
|
stacked={true}
|
|
renderXLabel={renderDateLabels(unit, locale)}
|
|
isLoading={isLoading}
|
|
isAllTime={value === 'all'}
|
|
/>
|
|
);
|
|
}
|
|
|
|
export default EventsChart;
|