2022-05-02 12:35:05 +03:00
|
|
|
import { FC, MutableRefObject, useRef } from 'react';
|
|
|
|
import { ChartData, ChartDataset, ChartOptions, InteractionItem } from 'chart.js';
|
2021-09-18 20:05:28 +03:00
|
|
|
import { keys, values } from 'ramda';
|
2022-05-02 12:35:05 +03:00
|
|
|
import { Bar, getElementAtEvent } from 'react-chartjs-2';
|
2021-09-18 20:05:28 +03:00
|
|
|
import { fillTheGaps } from '../../utils/helpers/visits';
|
|
|
|
import { pointerOnHover, renderChartLabel } from '../../utils/helpers/charts';
|
|
|
|
import { prettify } from '../../utils/helpers/numbers';
|
|
|
|
import { Stats } from '../types';
|
|
|
|
import { HIGHLIGHTED_COLOR, HIGHLIGHTED_COLOR_ALPHA, MAIN_COLOR, MAIN_COLOR_ALPHA } from '../../utils/theme';
|
|
|
|
|
|
|
|
export interface HorizontalBarChartProps {
|
|
|
|
stats: Stats;
|
|
|
|
max?: number;
|
|
|
|
highlightedStats?: Stats;
|
|
|
|
highlightedLabel?: string;
|
|
|
|
onClick?: (label: string) => void;
|
|
|
|
}
|
|
|
|
|
2022-03-26 14:17:42 +03:00
|
|
|
const dropLabelIfHidden = (label: string) => (label.startsWith('hidden') ? '' : label);
|
2021-09-18 20:05:28 +03:00
|
|
|
const statsAreDefined = (stats: Stats | undefined): stats is Stats => !!stats && Object.keys(stats).length > 0;
|
2022-03-26 14:17:42 +03:00
|
|
|
const determineHeight = (labels: string[]): number | undefined => (labels.length > 20 ? labels.length * 10 : undefined);
|
2021-09-18 20:05:28 +03:00
|
|
|
|
|
|
|
const generateChartDatasets = (
|
|
|
|
data: number[],
|
|
|
|
highlightedData: number[],
|
|
|
|
highlightedLabel?: string,
|
|
|
|
): ChartDataset[] => {
|
|
|
|
const mainDataset: ChartDataset = {
|
|
|
|
data,
|
|
|
|
label: highlightedLabel ? 'Non-selected' : 'Visits',
|
|
|
|
backgroundColor: MAIN_COLOR_ALPHA,
|
|
|
|
borderColor: MAIN_COLOR,
|
|
|
|
borderWidth: 2,
|
|
|
|
};
|
|
|
|
|
|
|
|
if (highlightedData.every((value) => value === 0)) {
|
2022-03-26 14:17:42 +03:00
|
|
|
return [mainDataset];
|
2021-09-18 20:05:28 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
const highlightedDataset: ChartDataset = {
|
|
|
|
label: highlightedLabel ?? 'Selected',
|
|
|
|
data: highlightedData,
|
|
|
|
backgroundColor: HIGHLIGHTED_COLOR_ALPHA,
|
|
|
|
borderColor: HIGHLIGHTED_COLOR,
|
|
|
|
borderWidth: 2,
|
|
|
|
};
|
|
|
|
|
2022-03-26 14:17:42 +03:00
|
|
|
return [mainDataset, highlightedDataset];
|
2021-09-18 20:05:28 +03:00
|
|
|
};
|
|
|
|
const generateChartData = (
|
|
|
|
labels: string[],
|
|
|
|
data: number[],
|
|
|
|
highlightedData: number[],
|
|
|
|
highlightedLabel?: string,
|
|
|
|
): ChartData => ({
|
|
|
|
labels,
|
|
|
|
datasets: generateChartDatasets(data, highlightedData, highlightedLabel),
|
|
|
|
});
|
|
|
|
|
2022-05-02 12:35:05 +03:00
|
|
|
const chartElementAtEvent = (labels: string[], [chart]: InteractionItem[], onClick?: (label: string) => void) => {
|
2021-09-18 20:05:28 +03:00
|
|
|
if (!onClick || !chart) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
onClick(labels[chart.index]);
|
|
|
|
};
|
|
|
|
|
|
|
|
export const HorizontalBarChart: FC<HorizontalBarChartProps> = (
|
|
|
|
{ stats, highlightedStats, highlightedLabel, onClick, max },
|
|
|
|
) => {
|
|
|
|
const labels = keys(stats).map(dropLabelIfHidden);
|
|
|
|
const data = values(
|
|
|
|
!statsAreDefined(highlightedStats) ? stats : keys(highlightedStats).reduce((acc, highlightedKey) => {
|
|
|
|
if (acc[highlightedKey]) {
|
|
|
|
acc[highlightedKey] -= highlightedStats[highlightedKey];
|
|
|
|
}
|
|
|
|
|
|
|
|
return acc;
|
|
|
|
}, { ...stats }),
|
|
|
|
);
|
|
|
|
const highlightedData = fillTheGaps(highlightedStats ?? {}, labels);
|
2022-05-02 12:35:05 +03:00
|
|
|
const refWithStats = useRef(null);
|
|
|
|
const refWithoutStats = useRef(null);
|
2021-09-18 20:05:28 +03:00
|
|
|
|
|
|
|
const options: ChartOptions = {
|
|
|
|
plugins: {
|
|
|
|
legend: { display: false },
|
|
|
|
tooltip: {
|
|
|
|
mode: 'y',
|
|
|
|
// Do not show tooltip on items with empty label when in a bar chart
|
|
|
|
filter: ({ label }) => label !== '',
|
|
|
|
callbacks: { label: renderChartLabel },
|
|
|
|
},
|
|
|
|
},
|
|
|
|
scales: {
|
|
|
|
x: {
|
|
|
|
beginAtZero: true,
|
|
|
|
stacked: true,
|
|
|
|
max,
|
|
|
|
ticks: {
|
|
|
|
precision: 0,
|
|
|
|
callback: prettify,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
y: { stacked: true },
|
|
|
|
},
|
|
|
|
onHover: pointerOnHover,
|
|
|
|
indexAxis: 'y',
|
|
|
|
};
|
|
|
|
const chartData = generateChartData(labels, data, highlightedData, highlightedLabel);
|
|
|
|
const height = determineHeight(labels);
|
|
|
|
|
|
|
|
// Provide a key based on the height, to force re-render every time the dataset changes (example, due to pagination)
|
2022-05-02 12:35:05 +03:00
|
|
|
const renderChartComponent = (customKey: string, theRef: MutableRefObject<any>) => (
|
2021-09-18 20:05:28 +03:00
|
|
|
<Bar
|
2022-05-02 12:35:05 +03:00
|
|
|
ref={theRef}
|
2021-09-18 20:05:28 +03:00
|
|
|
key={`${height}_${customKey}`}
|
2022-03-07 19:39:03 +03:00
|
|
|
data={chartData as any}
|
|
|
|
options={options as any}
|
2021-09-18 20:05:28 +03:00
|
|
|
height={height}
|
2022-05-02 12:35:05 +03:00
|
|
|
onClick={(e) => chartElementAtEvent(labels, getElementAtEvent(theRef.current, e), onClick)}
|
2021-09-18 20:05:28 +03:00
|
|
|
/>
|
|
|
|
);
|
|
|
|
|
|
|
|
return (
|
|
|
|
<>
|
|
|
|
{/* It's VERY IMPORTANT to render two different components here, as one has 1 dataset and the other has 2 */}
|
|
|
|
{/* Using the same component causes a crash when switching from 1 to 2 datasets, and then back to 1 dataset */}
|
2022-05-02 12:35:05 +03:00
|
|
|
{highlightedStats !== undefined && renderChartComponent('with_stats', refWithStats)}
|
|
|
|
{highlightedStats === undefined && renderChartComponent('without_stats', refWithoutStats)}
|
2021-09-18 20:05:28 +03:00
|
|
|
</>
|
|
|
|
);
|
|
|
|
};
|