Updates #5633. Squashed commit of the following: commit 889bc7acb82472d72d7b3103554e70342513a567 Author: Ainar Garipov <A.Garipov@AdGuard.COM> Date: Thu Mar 30 14:31:42 2023 +0300 client: fix dashboard date
77 lines
2.2 KiB
JavaScript
77 lines
2.2 KiB
JavaScript
import React from 'react';
|
|
import { ResponsiveLine } from '@nivo/line';
|
|
import addDays from 'date-fns/add_days';
|
|
import addHours from 'date-fns/add_hours';
|
|
import subDays from 'date-fns/sub_days';
|
|
import subHours from 'date-fns/sub_hours';
|
|
import dateFormat from 'date-fns/format';
|
|
import round from 'lodash/round';
|
|
import { useSelector } from 'react-redux';
|
|
import PropTypes from 'prop-types';
|
|
import './Line.css';
|
|
import { msToDays } from '../../helpers/helpers';
|
|
|
|
const Line = ({
|
|
data, color = 'black',
|
|
}) => {
|
|
const interval = msToDays(useSelector((state) => state.stats.interval));
|
|
|
|
return <ResponsiveLine
|
|
enableArea
|
|
animate
|
|
enableSlices="x"
|
|
curve="linear"
|
|
colors={[color]}
|
|
data={data}
|
|
theme={{
|
|
crosshair: {
|
|
line: {
|
|
stroke: 'currentColor',
|
|
strokeWidth: 1,
|
|
strokeOpacity: 0.5,
|
|
},
|
|
},
|
|
}}
|
|
xScale={{
|
|
type: 'linear',
|
|
min: 0,
|
|
max: 'auto',
|
|
}}
|
|
crosshairType="x"
|
|
axisLeft={false}
|
|
axisBottom={false}
|
|
enableGridX={false}
|
|
enableGridY={false}
|
|
enablePoints={false}
|
|
xFormat={(x) => {
|
|
if (interval === 1 || interval === 7) {
|
|
const hoursAgo = subHours(Date.now(), 24 * interval);
|
|
return dateFormat(addHours(hoursAgo, x), 'D MMM HH:00');
|
|
}
|
|
|
|
const daysAgo = subDays(Date.now(), interval - 1);
|
|
return dateFormat(addDays(daysAgo, x), 'D MMM YYYY');
|
|
}}
|
|
yFormat={(y) => round(y, 2)}
|
|
sliceTooltip={(slice) => {
|
|
const { xFormatted, yFormatted } = slice.slice.points[0].data;
|
|
return <div className="line__tooltip">
|
|
<span className="line__tooltip-text">
|
|
<strong>{yFormatted}</strong>
|
|
<br />
|
|
<small>{xFormatted}</small>
|
|
</span>
|
|
</div>;
|
|
}}
|
|
/>;
|
|
};
|
|
|
|
Line.propTypes = {
|
|
data: PropTypes.array.isRequired,
|
|
color: PropTypes.string,
|
|
width: PropTypes.number,
|
|
height: PropTypes.number,
|
|
};
|
|
|
|
export default Line;
|