mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2026-03-13 02:53:47 +00:00
Merge pull request #283 from acelaya-forks/feature/chart-legend
Feature/chart legend
This commit is contained in:
@@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
|
|||||||
|
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org).
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org).
|
||||||
|
|
||||||
## [Unreleased]
|
## 2.5.1 - 2020-06-06
|
||||||
|
|
||||||
#### Added
|
#### Added
|
||||||
|
|
||||||
@@ -26,6 +26,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
|
|
||||||
* [#276](https://github.com/shlinkio/shlink-web-client/issues/276) Fixed default grouping used for visits line chart, making it be dynamic depending on how old the short URL is.
|
* [#276](https://github.com/shlinkio/shlink-web-client/issues/276) Fixed default grouping used for visits line chart, making it be dynamic depending on how old the short URL is.
|
||||||
* [#280](https://github.com/shlinkio/shlink-web-client/issues/280) Fixed shlink-web-client version not being properly passed when building stable tags of the docker image.
|
* [#280](https://github.com/shlinkio/shlink-web-client/issues/280) Fixed shlink-web-client version not being properly passed when building stable tags of the docker image.
|
||||||
|
* [#269](https://github.com/shlinkio/shlink-web-client/issues/269) Fixed doughnut chart legends getting to big and hiding charts on mobile devices.
|
||||||
|
|
||||||
|
|
||||||
## 2.5.0 - 2020-05-31
|
## 2.5.0 - 2020-05-31
|
||||||
|
|||||||
159
src/visits/helpers/DefaultChart.js
Normal file
159
src/visits/helpers/DefaultChart.js
Normal file
@@ -0,0 +1,159 @@
|
|||||||
|
import React, { useRef } from 'react';
|
||||||
|
import PropTypes from 'prop-types';
|
||||||
|
import { Doughnut, HorizontalBar } from 'react-chartjs-2';
|
||||||
|
import { keys, values } from 'ramda';
|
||||||
|
import classNames from 'classnames';
|
||||||
|
import { fillTheGaps } from '../../utils/helpers/visits';
|
||||||
|
import './DefaultChart.scss';
|
||||||
|
|
||||||
|
const propTypes = {
|
||||||
|
title: PropTypes.oneOfType([ PropTypes.string, PropTypes.func ]),
|
||||||
|
isBarChart: PropTypes.bool,
|
||||||
|
stats: PropTypes.object,
|
||||||
|
max: PropTypes.number,
|
||||||
|
highlightedStats: PropTypes.object,
|
||||||
|
highlightedLabel: PropTypes.string,
|
||||||
|
onClick: PropTypes.func,
|
||||||
|
};
|
||||||
|
|
||||||
|
const generateGraphData = (title, isBarChart, labels, data, highlightedData, highlightedLabel) => ({
|
||||||
|
labels,
|
||||||
|
datasets: [
|
||||||
|
{
|
||||||
|
title,
|
||||||
|
label: highlightedData ? 'Non-selected' : 'Visits',
|
||||||
|
data,
|
||||||
|
backgroundColor: isBarChart ? 'rgba(70, 150, 229, 0.4)' : [
|
||||||
|
'#97BBCD',
|
||||||
|
'#F7464A',
|
||||||
|
'#46BFBD',
|
||||||
|
'#FDB45C',
|
||||||
|
'#949FB1',
|
||||||
|
'#57A773',
|
||||||
|
'#414066',
|
||||||
|
'#08B2E3',
|
||||||
|
'#B6C454',
|
||||||
|
'#DCDCDC',
|
||||||
|
'#463730',
|
||||||
|
],
|
||||||
|
borderColor: isBarChart ? 'rgba(70, 150, 229, 1)' : 'white',
|
||||||
|
borderWidth: 2,
|
||||||
|
},
|
||||||
|
highlightedData && {
|
||||||
|
title,
|
||||||
|
label: highlightedLabel || 'Selected',
|
||||||
|
data: highlightedData,
|
||||||
|
backgroundColor: 'rgba(247, 127, 40, 0.4)',
|
||||||
|
borderColor: '#F77F28',
|
||||||
|
borderWidth: 2,
|
||||||
|
},
|
||||||
|
].filter(Boolean),
|
||||||
|
});
|
||||||
|
|
||||||
|
const dropLabelIfHidden = (label) => label.startsWith('hidden') ? '' : label;
|
||||||
|
|
||||||
|
const determineHeight = (isBarChart, labels) => {
|
||||||
|
if (!isBarChart) {
|
||||||
|
return 300;
|
||||||
|
}
|
||||||
|
|
||||||
|
return isBarChart && labels.length > 20 ? labels.length * 8 : null;
|
||||||
|
};
|
||||||
|
|
||||||
|
/* eslint-disable react/prop-types */
|
||||||
|
const renderPieChartLegend = ({ config }) => {
|
||||||
|
const { labels, datasets } = config.data;
|
||||||
|
const { defaultColor } = config.options;
|
||||||
|
const [{ backgroundColor: colors }] = datasets;
|
||||||
|
|
||||||
|
return (
|
||||||
|
<ul className="default-chart__pie-chart-legend">
|
||||||
|
{labels.map((label, index) => (
|
||||||
|
<li key={label} className="default-chart__pie-chart-legend-item d-flex">
|
||||||
|
<div
|
||||||
|
className="default-chart__pie-chart-legend-item-color"
|
||||||
|
style={{ backgroundColor: colors[index] || defaultColor }}
|
||||||
|
/>
|
||||||
|
<small className="default-chart__pie-chart-legend-item-text flex-fill">{label}</small>
|
||||||
|
</li>
|
||||||
|
))}
|
||||||
|
</ul>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
/* eslint-enable react/prop-types */
|
||||||
|
|
||||||
|
const chartElementAtEvent = (onClick) => ([ chart ]) => {
|
||||||
|
if (!onClick || !chart) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const { _index, _chart: { data } } = chart;
|
||||||
|
const { labels } = data;
|
||||||
|
|
||||||
|
onClick(labels[_index]);
|
||||||
|
};
|
||||||
|
|
||||||
|
const DefaultChart = ({ title, isBarChart, stats, max, highlightedStats, highlightedLabel, onClick }) => {
|
||||||
|
const hasHighlightedStats = highlightedStats && Object.keys(highlightedStats).length > 0;
|
||||||
|
const Component = isBarChart ? HorizontalBar : Doughnut;
|
||||||
|
const labels = keys(stats).map(dropLabelIfHidden);
|
||||||
|
const data = values(!hasHighlightedStats ? stats : keys(highlightedStats).reduce((acc, highlightedKey) => {
|
||||||
|
if (acc[highlightedKey]) {
|
||||||
|
acc[highlightedKey] -= highlightedStats[highlightedKey];
|
||||||
|
}
|
||||||
|
|
||||||
|
return acc;
|
||||||
|
}, { ...stats }));
|
||||||
|
const highlightedData = hasHighlightedStats && fillTheGaps(highlightedStats, labels);
|
||||||
|
const chartRef = useRef();
|
||||||
|
|
||||||
|
const options = {
|
||||||
|
legend: { display: false },
|
||||||
|
legendCallback: !isBarChart && renderPieChartLegend,
|
||||||
|
scales: isBarChart && {
|
||||||
|
xAxes: [
|
||||||
|
{
|
||||||
|
ticks: { beginAtZero: true, precision: 0, max },
|
||||||
|
stacked: true,
|
||||||
|
},
|
||||||
|
],
|
||||||
|
yAxes: [{ stacked: true }],
|
||||||
|
},
|
||||||
|
tooltips: {
|
||||||
|
intersect: !isBarChart,
|
||||||
|
|
||||||
|
// Do not show tooltip on items with empty label when in a bar chart
|
||||||
|
filter: ({ yLabel }) => !isBarChart || yLabel !== '',
|
||||||
|
},
|
||||||
|
onHover: isBarChart && (({ target }, chartElement) => {
|
||||||
|
target.style.cursor = chartElement[0] ? 'pointer' : 'default';
|
||||||
|
}),
|
||||||
|
};
|
||||||
|
const graphData = generateGraphData(title, isBarChart, labels, data, highlightedData, highlightedLabel);
|
||||||
|
const height = determineHeight(isBarChart, labels);
|
||||||
|
|
||||||
|
// Provide a key based on the height, so that every time the dataset changes, a new graph is rendered
|
||||||
|
return (
|
||||||
|
<div className="row">
|
||||||
|
<div className={classNames('col-sm-12', { 'col-md-7': !isBarChart })}>
|
||||||
|
<Component
|
||||||
|
ref={chartRef}
|
||||||
|
key={height}
|
||||||
|
data={graphData}
|
||||||
|
options={options}
|
||||||
|
height={height}
|
||||||
|
getElementAtEvent={chartElementAtEvent(onClick)}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
{!isBarChart && (
|
||||||
|
<div className="col-sm-12 col-md-5">
|
||||||
|
{chartRef.current && chartRef.current.chartInstance.generateLegend()}
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
DefaultChart.propTypes = propTypes;
|
||||||
|
|
||||||
|
export default DefaultChart;
|
||||||
29
src/visits/helpers/DefaultChart.scss
Normal file
29
src/visits/helpers/DefaultChart.scss
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
@import '../../utils/base';
|
||||||
|
|
||||||
|
.default-chart__pie-chart-legend {
|
||||||
|
list-style-type: none;
|
||||||
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
|
|
||||||
|
@media (max-width: $smMax) {
|
||||||
|
margin-top: 1rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.default-chart__pie-chart-legend-item:not(:first-child) {
|
||||||
|
margin-top: .3rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.default-chart__pie-chart-legend-item-color {
|
||||||
|
width: 20px;
|
||||||
|
min-width: 20px;
|
||||||
|
height: 20px;
|
||||||
|
margin-right: 5px;
|
||||||
|
border-radius: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.default-chart__pie-chart-legend-item-text {
|
||||||
|
white-space: nowrap;
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
}
|
||||||
@@ -1,9 +1,7 @@
|
|||||||
import { Card, CardHeader, CardBody, CardFooter } from 'reactstrap';
|
import { Card, CardHeader, CardBody, CardFooter } from 'reactstrap';
|
||||||
import { Doughnut, HorizontalBar } from 'react-chartjs-2';
|
|
||||||
import PropTypes from 'prop-types';
|
import PropTypes from 'prop-types';
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
import { keys, values } from 'ramda';
|
import DefaultChart from './DefaultChart';
|
||||||
import { fillTheGaps } from '../../utils/helpers/visits';
|
|
||||||
import './GraphCard.scss';
|
import './GraphCard.scss';
|
||||||
|
|
||||||
const propTypes = {
|
const propTypes = {
|
||||||
@@ -17,112 +15,12 @@ const propTypes = {
|
|||||||
onClick: PropTypes.func,
|
onClick: PropTypes.func,
|
||||||
};
|
};
|
||||||
|
|
||||||
const generateGraphData = (title, isBarChart, labels, data, highlightedData, highlightedLabel) => ({
|
const GraphCard = ({ title, footer, ...rest }) => (
|
||||||
labels,
|
|
||||||
datasets: [
|
|
||||||
{
|
|
||||||
title,
|
|
||||||
label: highlightedData ? 'Non-selected' : 'Visits',
|
|
||||||
data,
|
|
||||||
backgroundColor: isBarChart ? 'rgba(70, 150, 229, 0.4)' : [
|
|
||||||
'#97BBCD',
|
|
||||||
'#F7464A',
|
|
||||||
'#46BFBD',
|
|
||||||
'#FDB45C',
|
|
||||||
'#949FB1',
|
|
||||||
'#57A773',
|
|
||||||
'#414066',
|
|
||||||
'#08B2E3',
|
|
||||||
'#B6C454',
|
|
||||||
'#DCDCDC',
|
|
||||||
'#463730',
|
|
||||||
],
|
|
||||||
borderColor: isBarChart ? 'rgba(70, 150, 229, 1)' : 'white',
|
|
||||||
borderWidth: 2,
|
|
||||||
},
|
|
||||||
highlightedData && {
|
|
||||||
title,
|
|
||||||
label: highlightedLabel || 'Selected',
|
|
||||||
data: highlightedData,
|
|
||||||
backgroundColor: 'rgba(247, 127, 40, 0.4)',
|
|
||||||
borderColor: '#F77F28',
|
|
||||||
borderWidth: 2,
|
|
||||||
},
|
|
||||||
].filter(Boolean),
|
|
||||||
});
|
|
||||||
|
|
||||||
const dropLabelIfHidden = (label) => label.startsWith('hidden') ? '' : label;
|
|
||||||
|
|
||||||
const determineHeight = (isBarChart, labels) => {
|
|
||||||
if (!isBarChart && labels.length > 8) {
|
|
||||||
return 200;
|
|
||||||
}
|
|
||||||
|
|
||||||
return isBarChart && labels.length > 20 ? labels.length * 8 : null;
|
|
||||||
};
|
|
||||||
|
|
||||||
const renderGraph = (title, isBarChart, stats, max, highlightedStats, highlightedLabel, onClick) => {
|
|
||||||
const hasHighlightedStats = highlightedStats && Object.keys(highlightedStats).length > 0;
|
|
||||||
const Component = isBarChart ? HorizontalBar : Doughnut;
|
|
||||||
const labels = keys(stats).map(dropLabelIfHidden);
|
|
||||||
const data = values(!hasHighlightedStats ? stats : keys(highlightedStats).reduce((acc, highlightedKey) => {
|
|
||||||
if (acc[highlightedKey]) {
|
|
||||||
acc[highlightedKey] -= highlightedStats[highlightedKey];
|
|
||||||
}
|
|
||||||
|
|
||||||
return acc;
|
|
||||||
}, { ...stats }));
|
|
||||||
const highlightedData = hasHighlightedStats && fillTheGaps(highlightedStats, labels);
|
|
||||||
|
|
||||||
const options = {
|
|
||||||
legend: isBarChart ? { display: false } : { position: 'right' },
|
|
||||||
scales: isBarChart && {
|
|
||||||
xAxes: [
|
|
||||||
{
|
|
||||||
ticks: { beginAtZero: true, precision: 0, max },
|
|
||||||
stacked: true,
|
|
||||||
},
|
|
||||||
],
|
|
||||||
yAxes: [{ stacked: true }],
|
|
||||||
},
|
|
||||||
tooltips: {
|
|
||||||
intersect: !isBarChart,
|
|
||||||
|
|
||||||
// Do not show tooltip on items with empty label when in a bar chart
|
|
||||||
filter: ({ yLabel }) => !isBarChart || yLabel !== '',
|
|
||||||
},
|
|
||||||
onHover: isBarChart && (({ target }, chartElement) => {
|
|
||||||
target.style.cursor = chartElement[0] ? 'pointer' : 'default';
|
|
||||||
}),
|
|
||||||
};
|
|
||||||
const graphData = generateGraphData(title, isBarChart, labels, data, highlightedData, highlightedLabel);
|
|
||||||
const height = determineHeight(isBarChart, labels);
|
|
||||||
|
|
||||||
// Provide a key based on the height, so that every time the dataset changes, a new graph is rendered
|
|
||||||
return (
|
|
||||||
<Component
|
|
||||||
key={height}
|
|
||||||
data={graphData}
|
|
||||||
options={options}
|
|
||||||
height={height}
|
|
||||||
getElementAtEvent={([ chart ]) => {
|
|
||||||
if (!onClick || !chart) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
const { _index, _chart: { data } } = chart;
|
|
||||||
const { labels } = data;
|
|
||||||
|
|
||||||
onClick(labels[_index]);
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
const GraphCard = ({ title, footer, isBarChart, stats, max, highlightedStats, highlightedLabel, onClick }) => (
|
|
||||||
<Card>
|
<Card>
|
||||||
<CardHeader className="graph-card__header">{typeof title === 'function' ? title() : title}</CardHeader>
|
<CardHeader className="graph-card__header">{typeof title === 'function' ? title() : title}</CardHeader>
|
||||||
<CardBody>{renderGraph(title, isBarChart, stats, max, highlightedStats, highlightedLabel, onClick)}</CardBody>
|
<CardBody>
|
||||||
|
<DefaultChart title={title} {...rest} />
|
||||||
|
</CardBody>
|
||||||
{footer && <CardFooter className="graph-card__footer--sticky">{footer}</CardFooter>}
|
{footer && <CardFooter className="graph-card__footer--sticky">{footer}</CardFooter>}
|
||||||
</Card>
|
</Card>
|
||||||
);
|
);
|
||||||
|
|||||||
98
test/visits/helpers/DefaultChart.test.js
Normal file
98
test/visits/helpers/DefaultChart.test.js
Normal file
@@ -0,0 +1,98 @@
|
|||||||
|
import React from 'react';
|
||||||
|
import { shallow } from 'enzyme';
|
||||||
|
import { Doughnut, HorizontalBar } from 'react-chartjs-2';
|
||||||
|
import { keys, values } from 'ramda';
|
||||||
|
import DefaultChart from '../../../src/visits/helpers/DefaultChart';
|
||||||
|
|
||||||
|
describe('<DefaultChart />', () => {
|
||||||
|
let wrapper;
|
||||||
|
const stats = {
|
||||||
|
foo: 123,
|
||||||
|
bar: 456,
|
||||||
|
};
|
||||||
|
|
||||||
|
afterEach(() => wrapper && wrapper.unmount());
|
||||||
|
|
||||||
|
it('renders Doughnut when is not a bar chart', () => {
|
||||||
|
wrapper = shallow(<DefaultChart title="The chart" stats={stats} />);
|
||||||
|
const doughnut = wrapper.find(Doughnut);
|
||||||
|
const horizontal = wrapper.find(HorizontalBar);
|
||||||
|
const cols = wrapper.find('.col-sm-12');
|
||||||
|
|
||||||
|
expect(doughnut).toHaveLength(1);
|
||||||
|
expect(horizontal).toHaveLength(0);
|
||||||
|
|
||||||
|
const { labels, datasets } = doughnut.prop('data');
|
||||||
|
const [{ title, data, backgroundColor, borderColor }] = datasets;
|
||||||
|
const { legend, legendCallback, scales } = doughnut.prop('options');
|
||||||
|
|
||||||
|
expect(title).toEqual('The chart');
|
||||||
|
expect(labels).toEqual(keys(stats));
|
||||||
|
expect(data).toEqual(values(stats));
|
||||||
|
expect(datasets).toHaveLength(1);
|
||||||
|
expect(backgroundColor).toEqual([
|
||||||
|
'#97BBCD',
|
||||||
|
'#F7464A',
|
||||||
|
'#46BFBD',
|
||||||
|
'#FDB45C',
|
||||||
|
'#949FB1',
|
||||||
|
'#57A773',
|
||||||
|
'#414066',
|
||||||
|
'#08B2E3',
|
||||||
|
'#B6C454',
|
||||||
|
'#DCDCDC',
|
||||||
|
'#463730',
|
||||||
|
]);
|
||||||
|
expect(borderColor).toEqual('white');
|
||||||
|
expect(legend).toEqual({ display: false });
|
||||||
|
expect(typeof legendCallback).toEqual('function');
|
||||||
|
expect(scales).toBeUndefined();
|
||||||
|
expect(cols).toHaveLength(2);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('renders HorizontalBar when is not a bar chart', () => {
|
||||||
|
wrapper = shallow(<DefaultChart isBarChart title="The chart" stats={stats} />);
|
||||||
|
const doughnut = wrapper.find(Doughnut);
|
||||||
|
const horizontal = wrapper.find(HorizontalBar);
|
||||||
|
const cols = wrapper.find('.col-sm-12');
|
||||||
|
|
||||||
|
expect(doughnut).toHaveLength(0);
|
||||||
|
expect(horizontal).toHaveLength(1);
|
||||||
|
|
||||||
|
const { datasets: [{ backgroundColor, borderColor }] } = horizontal.prop('data');
|
||||||
|
const { legend, legendCallback, scales } = horizontal.prop('options');
|
||||||
|
|
||||||
|
expect(backgroundColor).toEqual('rgba(70, 150, 229, 0.4)');
|
||||||
|
expect(borderColor).toEqual('rgba(70, 150, 229, 1)');
|
||||||
|
expect(legend).toEqual({ display: false });
|
||||||
|
expect(legendCallback).toEqual(false);
|
||||||
|
expect(scales).toEqual({
|
||||||
|
xAxes: [
|
||||||
|
{
|
||||||
|
ticks: { beginAtZero: true, precision: 0 },
|
||||||
|
stacked: true,
|
||||||
|
},
|
||||||
|
],
|
||||||
|
yAxes: [{ stacked: true }],
|
||||||
|
});
|
||||||
|
expect(cols).toHaveLength(1);
|
||||||
|
});
|
||||||
|
|
||||||
|
it.each([
|
||||||
|
[{ foo: 23 }, [ 100, 456 ], [ 23, 0 ]],
|
||||||
|
[{ foo: 50 }, [ 73, 456 ], [ 50, 0 ]],
|
||||||
|
[{ bar: 45 }, [ 123, 411 ], [ 0, 45 ]],
|
||||||
|
[{ bar: 20, foo: 13 }, [ 110, 436 ], [ 13, 20 ]],
|
||||||
|
[ undefined, [ 123, 456 ], undefined ],
|
||||||
|
])('splits highlighted data from regular data', (highlightedStats, expectedData, expectedHighlightedData) => {
|
||||||
|
wrapper = shallow(<DefaultChart isBarChart title="The chart" stats={stats} highlightedStats={highlightedStats} />);
|
||||||
|
const horizontal = wrapper.find(HorizontalBar);
|
||||||
|
|
||||||
|
const { datasets: [{ data, label }, highlightedData ] } = horizontal.prop('data');
|
||||||
|
|
||||||
|
expect(label).toEqual(highlightedStats ? 'Non-selected' : 'Visits');
|
||||||
|
expect(data).toEqual(expectedData);
|
||||||
|
expectedHighlightedData && expect(highlightedData.data).toEqual(expectedHighlightedData);
|
||||||
|
!expectedHighlightedData && expect(highlightedData).toBeUndefined();
|
||||||
|
});
|
||||||
|
});
|
||||||
@@ -1,92 +1,49 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
import { shallow } from 'enzyme';
|
import { shallow } from 'enzyme';
|
||||||
import { Doughnut, HorizontalBar } from 'react-chartjs-2';
|
import { Card, CardBody, CardHeader, CardFooter } from 'reactstrap';
|
||||||
import { keys, values } from 'ramda';
|
|
||||||
import GraphCard from '../../../src/visits/helpers/GraphCard';
|
import GraphCard from '../../../src/visits/helpers/GraphCard';
|
||||||
|
import DefaultChart from '../../../src/visits/helpers/DefaultChart';
|
||||||
|
|
||||||
describe('<GraphCard />', () => {
|
describe('<GraphCard />', () => {
|
||||||
let wrapper;
|
let wrapper;
|
||||||
const stats = {
|
const createWrapper = (title = '', footer) => {
|
||||||
foo: 123,
|
wrapper = shallow(<GraphCard title={title} footer={footer} />);
|
||||||
bar: 456,
|
|
||||||
|
return wrapper;
|
||||||
};
|
};
|
||||||
|
|
||||||
afterEach(() => wrapper && wrapper.unmount());
|
afterEach(() => wrapper && wrapper.unmount());
|
||||||
|
|
||||||
it('renders Doughnut when is not a bar chart', () => {
|
it('renders expected components', () => {
|
||||||
wrapper = shallow(<GraphCard title="The chart" stats={stats} />);
|
const wrapper = createWrapper();
|
||||||
const doughnut = wrapper.find(Doughnut);
|
const card = wrapper.find(Card);
|
||||||
const horizontal = wrapper.find(HorizontalBar);
|
const header = wrapper.find(CardHeader);
|
||||||
|
const body = wrapper.find(CardBody);
|
||||||
|
const chart = wrapper.find(DefaultChart);
|
||||||
|
const footer = wrapper.find(CardFooter);
|
||||||
|
|
||||||
expect(doughnut).toHaveLength(1);
|
expect(card).toHaveLength(1);
|
||||||
expect(horizontal).toHaveLength(0);
|
expect(header).toHaveLength(1);
|
||||||
|
expect(body).toHaveLength(1);
|
||||||
const { labels, datasets } = doughnut.prop('data');
|
expect(chart).toHaveLength(1);
|
||||||
const [{ title, data, backgroundColor, borderColor }] = datasets;
|
expect(footer).toHaveLength(0);
|
||||||
const { legend, scales } = doughnut.prop('options');
|
|
||||||
|
|
||||||
expect(title).toEqual('The chart');
|
|
||||||
expect(labels).toEqual(keys(stats));
|
|
||||||
expect(data).toEqual(values(stats));
|
|
||||||
expect(datasets).toHaveLength(1);
|
|
||||||
expect(backgroundColor).toEqual([
|
|
||||||
'#97BBCD',
|
|
||||||
'#F7464A',
|
|
||||||
'#46BFBD',
|
|
||||||
'#FDB45C',
|
|
||||||
'#949FB1',
|
|
||||||
'#57A773',
|
|
||||||
'#414066',
|
|
||||||
'#08B2E3',
|
|
||||||
'#B6C454',
|
|
||||||
'#DCDCDC',
|
|
||||||
'#463730',
|
|
||||||
]);
|
|
||||||
expect(borderColor).toEqual('white');
|
|
||||||
expect(legend).toEqual({ position: 'right' });
|
|
||||||
expect(scales).toBeUndefined();
|
|
||||||
});
|
|
||||||
|
|
||||||
it('renders HorizontalBar when is not a bar chart', () => {
|
|
||||||
wrapper = shallow(<GraphCard isBarChart title="The chart" stats={stats} />);
|
|
||||||
const doughnut = wrapper.find(Doughnut);
|
|
||||||
const horizontal = wrapper.find(HorizontalBar);
|
|
||||||
|
|
||||||
expect(doughnut).toHaveLength(0);
|
|
||||||
expect(horizontal).toHaveLength(1);
|
|
||||||
|
|
||||||
const { datasets: [{ backgroundColor, borderColor }] } = horizontal.prop('data');
|
|
||||||
const { legend, scales } = horizontal.prop('options');
|
|
||||||
|
|
||||||
expect(backgroundColor).toEqual('rgba(70, 150, 229, 0.4)');
|
|
||||||
expect(borderColor).toEqual('rgba(70, 150, 229, 1)');
|
|
||||||
expect(legend).toEqual({ display: false });
|
|
||||||
expect(scales).toEqual({
|
|
||||||
xAxes: [
|
|
||||||
{
|
|
||||||
ticks: { beginAtZero: true, precision: 0 },
|
|
||||||
stacked: true,
|
|
||||||
},
|
|
||||||
],
|
|
||||||
yAxes: [{ stacked: true }],
|
|
||||||
});
|
|
||||||
});
|
});
|
||||||
|
|
||||||
it.each([
|
it.each([
|
||||||
[{ foo: 23 }, [ 100, 456 ], [ 23, 0 ]],
|
[ 'the title', 'the title' ],
|
||||||
[{ foo: 50 }, [ 73, 456 ], [ 50, 0 ]],
|
[ () => 'the title from func', 'the title from func' ],
|
||||||
[{ bar: 45 }, [ 123, 411 ], [ 0, 45 ]],
|
])('properly renders title by parsing provided value', (title, expectedTitle) => {
|
||||||
[{ bar: 20, foo: 13 }, [ 110, 436 ], [ 13, 20 ]],
|
const wrapper = createWrapper(title);
|
||||||
[ undefined, [ 123, 456 ], undefined ],
|
const header = wrapper.find(CardHeader);
|
||||||
])('splits highlighted data from regular data', (highlightedStats, expectedData, expectedHighlightedData) => {
|
|
||||||
wrapper = shallow(<GraphCard isBarChart title="The chart" stats={stats} highlightedStats={highlightedStats} />);
|
|
||||||
const horizontal = wrapper.find(HorizontalBar);
|
|
||||||
|
|
||||||
const { datasets: [{ data, label }, highlightedData ] } = horizontal.prop('data');
|
expect(header.html()).toContain(expectedTitle);
|
||||||
|
});
|
||||||
|
|
||||||
expect(label).toEqual(highlightedStats ? 'Non-selected' : 'Visits');
|
it('renders footer only when provided', () => {
|
||||||
expect(data).toEqual(expectedData);
|
const wrapper = createWrapper('', 'the footer');
|
||||||
expectedHighlightedData && expect(highlightedData.data).toEqual(expectedHighlightedData);
|
const footer = wrapper.find(CardFooter);
|
||||||
!expectedHighlightedData && expect(highlightedData).toBeUndefined();
|
|
||||||
|
expect(footer).toHaveLength(1);
|
||||||
|
expect(footer.html()).toContain('the footer');
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user