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(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 ( ); } export default EventsChart;