2022-12-29 00:43:22 +01:00
|
|
|
import { useMemo } from 'react';
|
|
|
|
import { Loading } from 'react-basics';
|
2022-01-14 09:39:27 +01:00
|
|
|
import { colord } from 'colord';
|
2020-08-27 12:42:24 +02:00
|
|
|
import BarChart from './BarChart';
|
2020-09-19 19:35:05 +02:00
|
|
|
import { getDateArray, getDateLength } from 'lib/date';
|
2022-12-29 00:43:22 +01:00
|
|
|
import useApi from 'hooks/useApi';
|
2020-09-18 07:52:20 +02:00
|
|
|
import useDateRange from 'hooks/useDateRange';
|
2020-09-19 19:35:05 +02:00
|
|
|
import useTimezone from 'hooks/useTimezone';
|
2020-10-08 03:24:53 +02:00
|
|
|
import usePageQuery from 'hooks/usePageQuery';
|
2022-05-06 04:04:28 +02:00
|
|
|
import { EVENT_COLORS } from 'lib/constants';
|
2020-08-26 18:58:24 +02:00
|
|
|
|
2023-04-21 17:00:42 +02:00
|
|
|
export function EventsChart({ websiteId, className, token }) {
|
2022-12-29 00:43:22 +01:00
|
|
|
const { get, useQuery } = useApi();
|
2022-03-05 18:42:32 +01:00
|
|
|
const [{ startDate, endDate, unit, modified }] = useDateRange(websiteId);
|
2020-09-19 19:35:05 +02:00
|
|
|
const [timezone] = useTimezone();
|
2022-03-18 04:56:43 +01:00
|
|
|
const {
|
2022-07-30 07:30:09 +02:00
|
|
|
query: { url, eventName },
|
2022-03-18 04:56:43 +01:00
|
|
|
} = usePageQuery();
|
2020-09-19 19:35:05 +02:00
|
|
|
|
2023-03-26 13:15:08 +02:00
|
|
|
const { data, isLoading } = useQuery(['events', websiteId, modified, eventName], () =>
|
2022-12-29 00:43:22 +01:00
|
|
|
get(`/websites/${websiteId}/events`, {
|
|
|
|
startAt: +startDate,
|
|
|
|
endAt: +endDate,
|
|
|
|
unit,
|
|
|
|
timezone,
|
|
|
|
url,
|
|
|
|
eventName,
|
|
|
|
token,
|
|
|
|
}),
|
2020-08-31 23:11:30 +02:00
|
|
|
);
|
2020-10-15 07:09:00 +02:00
|
|
|
|
2020-08-27 22:46:05 +02:00
|
|
|
const datasets = useMemo(() => {
|
|
|
|
if (!data) return [];
|
2022-12-29 00:43:22 +01:00
|
|
|
if (isLoading) return data;
|
2020-08-27 22:46:05 +02:00
|
|
|
|
2023-03-26 13:15:08 +02:00
|
|
|
const map = data.reduce((obj, { x, t, y }) => {
|
2020-08-27 12:42:24 +02:00
|
|
|
if (!obj[x]) {
|
|
|
|
obj[x] = [];
|
2020-08-26 18:58:24 +02:00
|
|
|
}
|
|
|
|
|
2023-03-26 13:15:08 +02:00
|
|
|
obj[x].push({ x: t, y });
|
2020-08-26 18:58:24 +02:00
|
|
|
|
2020-08-27 12:42:24 +02:00
|
|
|
return obj;
|
|
|
|
}, {});
|
2020-08-26 18:58:24 +02:00
|
|
|
|
2020-08-27 12:42:24 +02:00
|
|
|
Object.keys(map).forEach(key => {
|
|
|
|
map[key] = getDateArray(map[key], startDate, endDate, unit);
|
|
|
|
});
|
2020-08-26 18:58:24 +02:00
|
|
|
|
2020-08-31 00:29:31 +02:00
|
|
|
return Object.keys(map).map((key, index) => {
|
2022-01-14 09:39:27 +01:00
|
|
|
const color = colord(EVENT_COLORS[index % EVENT_COLORS.length]);
|
2020-08-31 00:29:31 +02:00
|
|
|
return {
|
|
|
|
label: key,
|
|
|
|
data: map[key],
|
|
|
|
lineTension: 0,
|
2022-01-14 09:39:27 +01:00
|
|
|
backgroundColor: color.alpha(0.6).toRgbString(),
|
|
|
|
borderColor: color.alpha(0.7).toRgbString(),
|
2020-08-31 00:29:31 +02:00
|
|
|
borderWidth: 1,
|
|
|
|
};
|
|
|
|
});
|
2023-03-26 13:15:08 +02:00
|
|
|
}, [data, isLoading, startDate, endDate, unit]);
|
2020-08-26 18:58:24 +02:00
|
|
|
|
2022-12-29 00:43:22 +01:00
|
|
|
if (isLoading) {
|
2023-02-04 17:59:52 +01:00
|
|
|
return <Loading icon="dots" />;
|
2022-12-29 00:43:22 +01:00
|
|
|
}
|
|
|
|
|
2020-08-26 18:58:24 +02:00
|
|
|
return (
|
2020-08-28 03:44:20 +02:00
|
|
|
<BarChart
|
2020-10-10 05:37:24 +02:00
|
|
|
className={className}
|
2020-08-28 03:44:20 +02:00
|
|
|
datasets={datasets}
|
|
|
|
unit={unit}
|
2020-10-15 18:10:59 +02:00
|
|
|
height={300}
|
2020-08-28 03:44:20 +02:00
|
|
|
records={getDateLength(startDate, endDate, unit)}
|
2022-12-29 00:43:22 +01:00
|
|
|
loading={isLoading}
|
2020-08-28 03:44:20 +02:00
|
|
|
stacked
|
|
|
|
/>
|
2020-08-26 18:58:24 +02:00
|
|
|
);
|
|
|
|
}
|
2023-04-21 17:00:42 +02:00
|
|
|
|
|
|
|
export default EventsChart;
|