import React, { useMemo } from 'react'; import tinycolor from 'tinycolor2'; import BarChart from './BarChart'; import { getDateArray, getDateLength } from 'lib/date'; import useFetch from 'hooks/useFetch'; import useDateRange from 'hooks/useDateRange'; import useTimezone from 'hooks/useTimezone'; import { EVENT_COLORS } from 'lib/constants'; export default function EventsChart({ websiteId, token }) { const [dateRange] = useDateRange(websiteId); const { startDate, endDate, unit, modified } = dateRange; const [timezone] = useTimezone(); const { data } = useFetch( `/api/website/${websiteId}/events`, { start_at: +startDate, end_at: +endDate, unit, tz: timezone, token, }, { update: [modified] }, ); const datasets = useMemo(() => { if (!data) return []; const map = data.reduce((obj, { x, t, y }) => { if (!obj[x]) { obj[x] = []; } obj[x].push({ t, y }); return obj; }, {}); Object.keys(map).forEach(key => { map[key] = getDateArray(map[key], startDate, endDate, unit); }); return Object.keys(map).map((key, index) => { const color = tinycolor(EVENT_COLORS[index]); return { label: key, data: map[key], lineTension: 0, backgroundColor: color.setAlpha(0.6).toRgbString(), borderColor: color.setAlpha(0.7).toRgbString(), borderWidth: 1, }; }); }, [data]); function handleCreate(options) { const legend = { position: 'bottom', }; options.legend = legend; } function handleUpdate(chart) { chart.data.datasets = datasets; chart.update(); } if (!data) { return null; } return ( ); }