umami/components/metrics/PageviewsChart.js

95 lines
2.5 KiB
JavaScript
Raw Normal View History

2020-08-27 12:42:24 +02:00
import React from 'react';
2020-09-06 02:27:01 +02:00
import { useIntl } from 'react-intl';
2022-01-14 09:39:27 +01:00
import { colord } from 'colord';
import CheckVisible from 'components/helpers/CheckVisible';
2020-08-26 18:58:24 +02:00
import BarChart from './BarChart';
import useTheme from 'hooks/useTheme';
2020-10-09 21:39:03 +02:00
import { THEME_COLORS, DEFAULT_ANIMATION_DURATION } from 'lib/constants';
2020-07-26 09:12:42 +02:00
2020-10-09 10:04:06 +02:00
export default function PageviewsChart({
websiteId,
data,
unit,
records,
className,
loading,
2020-10-09 21:39:03 +02:00
animationDuration = DEFAULT_ANIMATION_DURATION,
2020-10-10 02:58:27 +02:00
...props
2020-10-09 10:04:06 +02:00
}) {
2020-09-06 02:27:01 +02:00
const intl = useIntl();
const [theme] = useTheme();
2022-01-14 09:39:27 +01:00
const primaryColor = colord(THEME_COLORS[theme].primary);
const colors = {
views: {
2022-01-14 09:39:27 +01:00
background: primaryColor.alpha(0.4).toRgbString(),
border: primaryColor.alpha(0.5).toRgbString(),
},
visitors: {
2022-01-14 09:39:27 +01:00
background: primaryColor.alpha(0.6).toRgbString(),
border: primaryColor.alpha(0.7).toRgbString(),
},
};
2020-09-06 02:27:01 +02:00
2020-08-26 18:58:24 +02:00
const handleUpdate = chart => {
const {
data: { datasets },
} = chart;
2020-07-29 06:50:29 +02:00
2020-10-09 08:26:05 +02:00
datasets[0].data = data.sessions;
datasets[0].label = intl.formatMessage({
id: 'metrics.unique-visitors',
defaultMessage: 'Unique visitors',
});
2020-08-26 18:58:24 +02:00
datasets[1].data = data.pageviews;
datasets[1].label = intl.formatMessage({
id: 'metrics.page-views',
defaultMessage: 'Page views',
});
2020-07-29 06:50:29 +02:00
};
2020-07-26 09:12:42 +02:00
2020-08-26 18:58:24 +02:00
if (!data) {
return null;
2020-07-26 09:12:42 +02:00
}
return (
<CheckVisible>
{visible => (
<BarChart
2020-10-10 02:58:27 +02:00
{...props}
className={className}
chartId={websiteId}
datasets={[
{
2020-09-06 02:27:01 +02:00
label: intl.formatMessage({
id: 'metrics.unique-visitors',
defaultMessage: 'Unique visitors',
}),
2020-10-09 08:26:05 +02:00
data: data.sessions,
lineTension: 0,
backgroundColor: colors.visitors.background,
borderColor: colors.visitors.border,
borderWidth: 1,
},
{
2020-09-06 02:27:01 +02:00
label: intl.formatMessage({
id: 'metrics.page-views',
defaultMessage: 'Page views',
}),
data: data.pageviews,
lineTension: 0,
backgroundColor: colors.views.background,
borderColor: colors.views.border,
borderWidth: 1,
},
]}
unit={unit}
2020-08-31 23:11:30 +02:00
records={records}
2020-10-09 10:04:06 +02:00
animationDuration={visible ? animationDuration : 0}
onUpdate={handleUpdate}
loading={loading}
/>
)}
</CheckVisible>
2020-07-26 09:12:42 +02:00
);
}