2020-08-27 12:42:24 +02:00
|
|
|
import React from 'react';
|
2020-08-28 08:45:37 +02:00
|
|
|
import CheckVisible from 'components/helpers/CheckVisible';
|
2020-08-26 18:58:24 +02:00
|
|
|
import BarChart from './BarChart';
|
2020-07-26 09:12:42 +02:00
|
|
|
|
2020-08-31 23:11:30 +02:00
|
|
|
export default function PageviewsChart({ websiteId, data, unit, records, className }) {
|
2020-08-26 18:58:24 +02:00
|
|
|
const handleUpdate = chart => {
|
|
|
|
const {
|
|
|
|
data: { datasets },
|
|
|
|
} = chart;
|
2020-07-29 06:50:29 +02:00
|
|
|
|
2020-08-26 18:58:24 +02:00
|
|
|
datasets[0].data = data.uniques;
|
|
|
|
datasets[1].data = data.pageviews;
|
2020-07-31 08:08:33 +02:00
|
|
|
|
2020-08-26 18:58:24 +02:00
|
|
|
chart.update();
|
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 (
|
2020-08-28 08:45:37 +02:00
|
|
|
<CheckVisible>
|
|
|
|
{visible => (
|
|
|
|
<BarChart
|
|
|
|
className={className}
|
|
|
|
chartId={websiteId}
|
|
|
|
datasets={[
|
|
|
|
{
|
|
|
|
label: 'unique visitors',
|
|
|
|
data: data.uniques,
|
|
|
|
lineTension: 0,
|
|
|
|
backgroundColor: 'rgb(38, 128, 235, 0.4)',
|
|
|
|
borderColor: 'rgb(13, 102, 208, 0.4)',
|
|
|
|
borderWidth: 1,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: 'page views',
|
|
|
|
data: data.pageviews,
|
|
|
|
lineTension: 0,
|
|
|
|
backgroundColor: 'rgb(38, 128, 235, 0.2)',
|
|
|
|
borderColor: 'rgb(13, 102, 208, 0.2)',
|
|
|
|
borderWidth: 1,
|
|
|
|
},
|
|
|
|
]}
|
|
|
|
unit={unit}
|
2020-08-31 23:11:30 +02:00
|
|
|
records={records}
|
2020-08-28 08:45:37 +02:00
|
|
|
animationDuration={visible ? 300 : 0}
|
|
|
|
onUpdate={handleUpdate}
|
|
|
|
/>
|
|
|
|
)}
|
|
|
|
</CheckVisible>
|
2020-07-26 09:12:42 +02:00
|
|
|
);
|
|
|
|
}
|