2021-09-18 20:05:28 +03:00
|
|
|
import { FC, useState } from 'react';
|
2020-09-04 19:43:26 +03:00
|
|
|
import { fromPairs, pipe, reverse, sortBy, splitEvery, toLower, toPairs, type, zipObj } from 'ramda';
|
|
|
|
import { OrderDir, rangeOf } from '../../utils/utils';
|
2020-05-31 18:51:52 +03:00
|
|
|
import SimplePaginator from '../../common/SimplePaginator';
|
2021-09-18 20:05:28 +03:00
|
|
|
import { roundTen } from '../../utils/helpers/numbers';
|
|
|
|
import SortingDropdown from '../../utils/SortingDropdown';
|
|
|
|
import PaginationDropdown from '../../utils/PaginationDropdown';
|
2020-09-04 19:43:26 +03:00
|
|
|
import { Stats, StatsRow } from '../types';
|
2021-09-18 20:05:28 +03:00
|
|
|
import { HorizontalBarChart, HorizontalBarChartProps } from './HorizontalBarChart';
|
|
|
|
import { ChartCard } from './ChartCard';
|
2019-01-07 15:35:14 +03:00
|
|
|
|
2021-09-18 20:05:28 +03:00
|
|
|
interface SortableBarChartCardProps extends Omit<HorizontalBarChartProps, 'max'> {
|
2021-09-18 13:07:05 +03:00
|
|
|
title: Function | string;
|
2020-09-04 19:43:26 +03:00
|
|
|
sortingItems: Record<string, string>;
|
|
|
|
withPagination?: boolean;
|
|
|
|
extraHeaderContent?: Function;
|
|
|
|
}
|
2018-10-29 00:54:08 +03:00
|
|
|
|
2021-09-18 20:05:28 +03:00
|
|
|
const toLowerIfString = (value: any) => type(value) === 'String' ? toLower(value) : value; // eslint-disable-line @typescript-eslint/no-unsafe-return
|
|
|
|
const pickKeyFromPair = ([ key ]: StatsRow) => key;
|
|
|
|
const pickValueFromPair = ([ , value ]: StatsRow) => value;
|
|
|
|
|
|
|
|
export const SortableBarChartCard: FC<SortableBarChartCardProps> = ({
|
2020-05-31 12:36:56 +03:00
|
|
|
stats,
|
|
|
|
highlightedStats,
|
|
|
|
title,
|
|
|
|
sortingItems,
|
|
|
|
extraHeaderContent,
|
|
|
|
withPagination = true,
|
|
|
|
...rest
|
2021-09-18 20:05:28 +03:00
|
|
|
}) => {
|
2020-09-04 19:43:26 +03:00
|
|
|
const [ order, setOrder ] = useState<{ orderField?: string; orderDir?: OrderDir }>({
|
2018-10-29 00:54:08 +03:00
|
|
|
orderField: undefined,
|
|
|
|
orderDir: undefined,
|
2020-05-31 12:36:56 +03:00
|
|
|
});
|
|
|
|
const [ currentPage, setCurrentPage ] = useState(1);
|
|
|
|
const [ itemsPerPage, setItemsPerPage ] = useState(50);
|
2019-03-10 10:28:14 +03:00
|
|
|
|
2020-09-04 19:43:26 +03:00
|
|
|
const getSortedPairsForStats = (stats: Stats, sortingItems: Record<string, string>) => {
|
2019-03-10 11:54:40 +03:00
|
|
|
const pairs = toPairs(stats);
|
2020-05-31 12:36:56 +03:00
|
|
|
const sortedPairs = !order.orderField ? pairs : sortBy(
|
2020-09-04 19:43:26 +03:00
|
|
|
pipe<StatsRow, string | number, string | number>(
|
|
|
|
order.orderField === Object.keys(sortingItems)[0] ? pickKeyFromPair : pickValueFromPair,
|
2020-08-22 09:10:31 +03:00
|
|
|
toLowerIfString,
|
2019-03-10 10:28:14 +03:00
|
|
|
),
|
2020-08-22 09:10:31 +03:00
|
|
|
pairs,
|
2019-03-10 10:28:14 +03:00
|
|
|
);
|
|
|
|
|
2020-05-31 12:36:56 +03:00
|
|
|
return !order.orderDir || order.orderDir === 'ASC' ? sortedPairs : reverse(sortedPairs);
|
|
|
|
};
|
2020-09-04 19:43:26 +03:00
|
|
|
const determineCurrentPagePairs = (pages: StatsRow[][]): StatsRow[] => {
|
|
|
|
const page = pages[currentPage - 1];
|
|
|
|
|
|
|
|
if (currentPage < pages.length) {
|
|
|
|
return page;
|
|
|
|
}
|
|
|
|
|
|
|
|
const firstPageLength = pages[0].length;
|
|
|
|
|
|
|
|
// Using the "hidden" key, the chart will just replace the label by an empty string
|
|
|
|
return [ ...page, ...rangeOf(firstPageLength - page.length, (i): StatsRow => [ `hidden_${i}`, 0 ]) ];
|
|
|
|
};
|
|
|
|
const renderPagination = (pagesCount: number) =>
|
|
|
|
<SimplePaginator currentPage={currentPage} pagesCount={pagesCount} setCurrentPage={setCurrentPage} />;
|
|
|
|
const determineStats = (stats: Stats, highlightedStats: Stats | undefined, sortingItems: Record<string, string>) => {
|
2020-05-31 12:36:56 +03:00
|
|
|
const sortedPairs = getSortedPairsForStats(stats, sortingItems);
|
2020-04-10 15:38:31 +03:00
|
|
|
const sortedKeys = sortedPairs.map(pickKeyFromPair);
|
|
|
|
// The highlighted stats have to be ordered based on the regular stats, not on its own values
|
|
|
|
const sortedHighlightedPairs = highlightedStats && toPairs(
|
2020-08-22 09:10:31 +03:00
|
|
|
{ ...zipObj(sortedKeys, sortedKeys.map(() => 0)), ...highlightedStats },
|
2020-04-10 15:38:31 +03:00
|
|
|
);
|
|
|
|
|
2020-05-31 12:36:56 +03:00
|
|
|
if (sortedPairs.length <= itemsPerPage) {
|
2020-04-10 15:38:31 +03:00
|
|
|
return {
|
|
|
|
currentPageStats: fromPairs(sortedPairs),
|
|
|
|
currentPageHighlightedStats: sortedHighlightedPairs && fromPairs(sortedHighlightedPairs),
|
|
|
|
};
|
2019-03-10 10:28:14 +03:00
|
|
|
}
|
|
|
|
|
2020-05-31 12:36:56 +03:00
|
|
|
const pages = splitEvery(itemsPerPage, sortedPairs);
|
|
|
|
const highlightedPages = sortedHighlightedPairs && splitEvery(itemsPerPage, sortedHighlightedPairs);
|
2019-03-10 10:28:14 +03:00
|
|
|
|
|
|
|
return {
|
2020-05-31 12:36:56 +03:00
|
|
|
currentPageStats: fromPairs(determineCurrentPagePairs(pages)),
|
|
|
|
currentPageHighlightedStats: highlightedPages && fromPairs(determineCurrentPagePairs(highlightedPages)),
|
|
|
|
pagination: renderPagination(pages.length),
|
|
|
|
max: roundTen(Math.max(...sortedPairs.map(pickValueFromPair))),
|
2018-10-29 00:54:08 +03:00
|
|
|
};
|
2020-05-31 12:36:56 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
const { currentPageStats, currentPageHighlightedStats, pagination, max } = determineStats(
|
|
|
|
stats,
|
2020-09-04 19:43:26 +03:00
|
|
|
highlightedStats && Object.keys(highlightedStats).length > 0 ? highlightedStats : undefined,
|
2020-08-22 09:10:31 +03:00
|
|
|
sortingItems,
|
2020-05-31 12:36:56 +03:00
|
|
|
);
|
2020-09-04 19:43:26 +03:00
|
|
|
const activeCities = Object.keys(currentPageStats);
|
2020-05-31 12:36:56 +03:00
|
|
|
const computeTitle = () => (
|
2020-11-14 00:44:26 +03:00
|
|
|
<>
|
2020-05-31 12:36:56 +03:00
|
|
|
{title}
|
|
|
|
<div className="float-right">
|
|
|
|
<SortingDropdown
|
|
|
|
isButton={false}
|
|
|
|
right
|
|
|
|
items={sortingItems}
|
|
|
|
orderField={order.orderField}
|
|
|
|
orderDir={order.orderDir}
|
2020-09-04 19:43:26 +03:00
|
|
|
onChange={(orderField, orderDir) => {
|
|
|
|
setOrder({ orderField, orderDir });
|
|
|
|
setCurrentPage(1);
|
|
|
|
}}
|
2020-05-31 12:36:56 +03:00
|
|
|
/>
|
|
|
|
</div>
|
2020-09-04 19:43:26 +03:00
|
|
|
{withPagination && Object.keys(stats).length > 50 && (
|
2018-10-29 00:54:08 +03:00
|
|
|
<div className="float-right">
|
2020-05-31 12:36:56 +03:00
|
|
|
<PaginationDropdown
|
|
|
|
toggleClassName="btn-sm p-0 mr-3"
|
|
|
|
ranges={[ 50, 100, 200, 500 ]}
|
|
|
|
value={itemsPerPage}
|
2020-09-04 19:43:26 +03:00
|
|
|
setValue={(itemsPerPage) => {
|
|
|
|
setItemsPerPage(itemsPerPage);
|
|
|
|
setCurrentPage(1);
|
|
|
|
}}
|
2018-10-29 00:54:08 +03:00
|
|
|
/>
|
|
|
|
</div>
|
2020-05-31 12:36:56 +03:00
|
|
|
)}
|
|
|
|
{extraHeaderContent && (
|
|
|
|
<div className="float-right">
|
|
|
|
{extraHeaderContent(pagination ? activeCities : undefined)}
|
|
|
|
</div>
|
|
|
|
)}
|
2020-11-14 00:44:26 +03:00
|
|
|
</>
|
2020-05-31 12:36:56 +03:00
|
|
|
);
|
|
|
|
|
|
|
|
return (
|
2021-09-18 20:05:28 +03:00
|
|
|
<ChartCard
|
2020-05-31 12:36:56 +03:00
|
|
|
title={computeTitle}
|
|
|
|
footer={pagination}
|
2021-09-18 20:05:28 +03:00
|
|
|
>
|
|
|
|
<HorizontalBarChart stats={currentPageStats} highlightedStats={currentPageHighlightedStats} max={max} {...rest} />
|
|
|
|
</ChartCard>
|
2020-05-31 12:36:56 +03:00
|
|
|
);
|
|
|
|
};
|