2020-05-30 10:25:15 +03:00
|
|
|
import React, { useState, useMemo } from 'react';
|
|
|
|
import PropTypes from 'prop-types';
|
2020-05-30 10:57:21 +03:00
|
|
|
import {
|
|
|
|
Card,
|
|
|
|
CardHeader,
|
|
|
|
CardBody,
|
|
|
|
UncontrolledDropdown,
|
|
|
|
DropdownToggle,
|
|
|
|
DropdownMenu,
|
|
|
|
DropdownItem,
|
|
|
|
} from 'reactstrap';
|
2020-05-30 10:25:15 +03:00
|
|
|
import { Line } from 'react-chartjs-2';
|
2020-05-31 21:16:15 +03:00
|
|
|
import { always, cond, reverse } from 'ramda';
|
2020-05-30 10:25:15 +03:00
|
|
|
import moment from 'moment';
|
|
|
|
import { VisitType } from '../types';
|
|
|
|
import { fillTheGaps } from '../../utils/helpers/visits';
|
2020-05-30 18:39:08 +03:00
|
|
|
import './LineChartCard.scss';
|
|
|
|
import { useToggle } from '../../utils/helpers/hooks';
|
|
|
|
import { rangeOf } from '../../utils/utils';
|
2020-07-14 17:05:00 +03:00
|
|
|
import ToggleSwitch from '../../utils/ToggleSwitch';
|
2020-05-30 10:25:15 +03:00
|
|
|
|
|
|
|
const propTypes = {
|
|
|
|
title: PropTypes.string,
|
2020-05-31 10:07:21 +03:00
|
|
|
highlightedLabel: PropTypes.string,
|
2020-05-30 10:25:15 +03:00
|
|
|
visits: PropTypes.arrayOf(VisitType),
|
|
|
|
highlightedVisits: PropTypes.arrayOf(VisitType),
|
|
|
|
};
|
|
|
|
|
2020-05-30 18:39:08 +03:00
|
|
|
const STEPS_MAP = {
|
|
|
|
monthly: 'Month',
|
|
|
|
weekly: 'Week',
|
|
|
|
daily: 'Day',
|
|
|
|
hourly: 'Hour',
|
|
|
|
};
|
|
|
|
|
2020-05-30 18:43:13 +03:00
|
|
|
const STEP_TO_DATE_UNIT_MAP = {
|
2020-05-30 18:39:08 +03:00
|
|
|
hourly: 'hour',
|
|
|
|
daily: 'day',
|
|
|
|
weekly: 'week',
|
|
|
|
monthly: 'month',
|
|
|
|
};
|
2020-05-30 10:57:21 +03:00
|
|
|
|
|
|
|
const STEP_TO_DATE_FORMAT = {
|
|
|
|
hourly: (date) => moment(date).format('YYYY-MM-DD HH:00'),
|
|
|
|
daily: (date) => moment(date).format('YYYY-MM-DD'),
|
|
|
|
weekly(date) {
|
|
|
|
const firstWeekDay = moment(date).isoWeekday(1).format('YYYY-MM-DD');
|
|
|
|
const lastWeekDay = moment(date).isoWeekday(7).format('YYYY-MM-DD');
|
|
|
|
|
|
|
|
return `${firstWeekDay} - ${lastWeekDay}`;
|
|
|
|
},
|
|
|
|
monthly: (date) => moment(date).format('YYYY-MM'),
|
2020-05-30 10:25:15 +03:00
|
|
|
};
|
|
|
|
|
2020-05-31 21:03:59 +03:00
|
|
|
const determineInitialStep = (oldestVisitDate) => {
|
|
|
|
const now = moment();
|
|
|
|
const oldestDate = moment(oldestVisitDate);
|
2020-05-31 21:16:15 +03:00
|
|
|
const matcher = cond([
|
|
|
|
[ () => now.diff(oldestDate, 'day') <= 2, always('hourly') ], // Less than 2 days
|
|
|
|
[ () => now.diff(oldestDate, 'month') <= 1, always('daily') ], // Between 2 days and 1 month
|
|
|
|
[ () => now.diff(oldestDate, 'month') <= 6, always('weekly') ], // Between 1 and 6 months
|
|
|
|
]);
|
2020-05-31 21:03:59 +03:00
|
|
|
|
2020-05-31 21:16:15 +03:00
|
|
|
return matcher() || 'monthly';
|
2020-05-31 21:03:59 +03:00
|
|
|
};
|
|
|
|
|
2020-05-30 10:25:15 +03:00
|
|
|
const groupVisitsByStep = (step, visits) => visits.reduce((acc, visit) => {
|
2020-05-30 10:57:21 +03:00
|
|
|
const key = STEP_TO_DATE_FORMAT[step](visit.date);
|
2020-05-30 10:25:15 +03:00
|
|
|
|
|
|
|
acc[key] = acc[key] ? acc[key] + 1 : 1;
|
|
|
|
|
|
|
|
return acc;
|
|
|
|
}, {});
|
|
|
|
|
2020-05-30 18:39:08 +03:00
|
|
|
const generateLabels = (step, visits) => {
|
2020-05-30 18:43:13 +03:00
|
|
|
const unit = STEP_TO_DATE_UNIT_MAP[step];
|
|
|
|
const formatter = STEP_TO_DATE_FORMAT[step];
|
2020-05-30 18:39:08 +03:00
|
|
|
const newerDate = moment(visits[0].date);
|
|
|
|
const oldestDate = moment(visits[visits.length - 1].date);
|
2020-05-30 18:43:13 +03:00
|
|
|
const size = newerDate.diff(oldestDate, unit);
|
2020-05-30 18:39:08 +03:00
|
|
|
|
|
|
|
return [
|
2020-05-30 18:43:13 +03:00
|
|
|
formatter(oldestDate),
|
|
|
|
...rangeOf(size, () => formatter(oldestDate.add(1, unit))),
|
2020-05-30 18:39:08 +03:00
|
|
|
];
|
|
|
|
};
|
|
|
|
|
2020-05-31 09:55:52 +03:00
|
|
|
const generateLabelsAndGroupedVisits = (visits, groupedVisitsWithGaps, step, skipNoElements) => {
|
2020-05-30 18:39:08 +03:00
|
|
|
if (skipNoElements) {
|
2020-05-31 09:55:52 +03:00
|
|
|
return [ Object.keys(groupedVisitsWithGaps), groupedVisitsWithGaps ];
|
2020-05-30 18:39:08 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
const labels = generateLabels(step, visits);
|
|
|
|
|
2020-05-31 09:55:52 +03:00
|
|
|
return [ labels, fillTheGaps(groupedVisitsWithGaps, labels) ];
|
2020-05-30 18:39:08 +03:00
|
|
|
};
|
|
|
|
|
2020-05-30 10:25:15 +03:00
|
|
|
const generateDataset = (stats, label, color) => ({
|
|
|
|
label,
|
|
|
|
data: Object.values(stats),
|
|
|
|
fill: false,
|
|
|
|
lineTension: 0.2,
|
|
|
|
borderColor: color,
|
|
|
|
backgroundColor: color,
|
|
|
|
});
|
|
|
|
|
2020-05-31 10:07:21 +03:00
|
|
|
const LineChartCard = ({ title, visits, highlightedVisits, highlightedLabel = 'Selected' }) => {
|
2020-05-31 21:03:59 +03:00
|
|
|
const [ step, setStep ] = useState(
|
2020-08-22 09:06:41 +03:00
|
|
|
visits.length > 0 ? determineInitialStep(visits[visits.length - 1].date) : 'monthly',
|
2020-05-31 21:03:59 +03:00
|
|
|
);
|
2020-05-30 18:39:08 +03:00
|
|
|
const [ skipNoVisits, toggleSkipNoVisits ] = useToggle(true);
|
|
|
|
|
2020-05-31 09:55:52 +03:00
|
|
|
const groupedVisitsWithGaps = useMemo(() => groupVisitsByStep(step, reverse(visits)), [ step, visits ]);
|
2020-05-30 18:39:08 +03:00
|
|
|
const [ labels, groupedVisits ] = useMemo(
|
2020-05-31 09:55:52 +03:00
|
|
|
() => generateLabelsAndGroupedVisits(visits, groupedVisitsWithGaps, step, skipNoVisits),
|
2020-08-22 09:06:41 +03:00
|
|
|
[ visits, step, skipNoVisits ],
|
2020-05-30 18:39:08 +03:00
|
|
|
);
|
2020-05-30 10:25:15 +03:00
|
|
|
const groupedHighlighted = useMemo(
|
|
|
|
() => fillTheGaps(groupVisitsByStep(step, reverse(highlightedVisits)), labels),
|
2020-08-22 09:10:31 +03:00
|
|
|
[ highlightedVisits, step, labels ],
|
2020-05-30 10:25:15 +03:00
|
|
|
);
|
|
|
|
|
|
|
|
const data = {
|
|
|
|
labels,
|
|
|
|
datasets: [
|
|
|
|
generateDataset(groupedVisits, 'Visits', '#4696e5'),
|
2020-05-31 10:07:21 +03:00
|
|
|
highlightedVisits.length > 0 && generateDataset(groupedHighlighted, highlightedLabel, '#F77F28'),
|
2020-05-30 10:25:15 +03:00
|
|
|
].filter(Boolean),
|
|
|
|
};
|
|
|
|
const options = {
|
2020-05-30 11:26:52 +03:00
|
|
|
maintainAspectRatio: false,
|
2020-05-30 10:25:15 +03:00
|
|
|
legend: { display: false },
|
|
|
|
scales: {
|
|
|
|
yAxes: [
|
|
|
|
{
|
|
|
|
ticks: { beginAtZero: true, precision: 0 },
|
|
|
|
},
|
|
|
|
],
|
2020-05-30 18:39:08 +03:00
|
|
|
xAxes: [
|
|
|
|
{
|
|
|
|
scaleLabel: { display: true, labelString: STEPS_MAP[step] },
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
tooltips: {
|
|
|
|
intersect: false,
|
|
|
|
axis: 'x',
|
2020-05-30 10:25:15 +03:00
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
return (
|
|
|
|
<Card>
|
2020-05-30 10:57:21 +03:00
|
|
|
<CardHeader>
|
|
|
|
{title}
|
|
|
|
<div className="float-right">
|
|
|
|
<UncontrolledDropdown>
|
|
|
|
<DropdownToggle caret color="link" className="btn-sm p-0">
|
|
|
|
Group by
|
|
|
|
</DropdownToggle>
|
|
|
|
<DropdownMenu right>
|
2020-05-30 18:39:08 +03:00
|
|
|
{Object.entries(STEPS_MAP).map(([ value, menuText ]) => (
|
2020-05-30 10:57:21 +03:00
|
|
|
<DropdownItem key={value} active={step === value} onClick={() => setStep(value)}>
|
|
|
|
{menuText}
|
|
|
|
</DropdownItem>
|
|
|
|
))}
|
|
|
|
</DropdownMenu>
|
|
|
|
</UncontrolledDropdown>
|
|
|
|
</div>
|
2020-05-30 18:39:08 +03:00
|
|
|
<div className="float-right mr-2">
|
2020-07-14 17:05:00 +03:00
|
|
|
<ToggleSwitch checked={skipNoVisits} onChange={toggleSkipNoVisits}>
|
2020-05-30 18:39:08 +03:00
|
|
|
<small>Skip dates with no visits</small>
|
2020-07-14 17:05:00 +03:00
|
|
|
</ToggleSwitch>
|
2020-05-30 18:39:08 +03:00
|
|
|
</div>
|
2020-05-30 10:57:21 +03:00
|
|
|
</CardHeader>
|
2020-05-30 11:26:52 +03:00
|
|
|
<CardBody className="line-chart-card__body">
|
|
|
|
<Line data={data} options={options} />
|
2020-05-30 10:25:15 +03:00
|
|
|
</CardBody>
|
|
|
|
</Card>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
LineChartCard.propTypes = propTypes;
|
|
|
|
|
|
|
|
export default LineChartCard;
|