Skip to content

Commit

Permalink
fix(xychart/Tooltip): don't render glyph for null data (#1102)
Browse files Browse the repository at this point in the history
* fix(xychart/Tooltip): don't render showDatumGlyph glyph for null data

* fix(xychart/Tooltip): fix missing data logic

* fix(xychart/Tooltip): update tests for null glyph rendering
  • Loading branch information
williaster committed Mar 12, 2021
1 parent 6e2d202 commit 73fe9c9
Show file tree
Hide file tree
Showing 2 changed files with 67 additions and 47 deletions.
27 changes: 15 additions & 12 deletions packages/visx-xychart/src/components/Tooltip.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -189,18 +189,21 @@ export default function Tooltip<Datum extends object>({
});
} else if (nearestDatum) {
const { left, top } = getDatumLeftTop(nearestDatumKey, nearestDatum.datum);
glyphProps.push({
left: (left ?? 0) - radius - strokeWidth,
top: (top ?? 0) - radius - strokeWidth,
fill:
(nearestDatumKey && colorScale?.(nearestDatumKey)) ??
null ??
theme?.gridStyles?.stroke ??
theme?.htmlLabel?.color ??
'#222',
radius,
strokeWidth,
});
// don't show glyphs if coords are unavailable
if (isValidNumber(left) && isValidNumber(top)) {
glyphProps.push({
left: left - radius - strokeWidth,
top: top - radius - strokeWidth,
fill:
(nearestDatumKey && colorScale?.(nearestDatumKey)) ??
null ??
theme?.gridStyles?.stroke ??
theme?.htmlLabel?.color ??
'#222',
radius,
strokeWidth,
});
}
}
}

Expand Down
87 changes: 52 additions & 35 deletions packages/visx-xychart/test/components/Tooltip.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,13 @@ import React from 'react';
import ResizeObserver from 'resize-observer-polyfill';
import { mount } from 'enzyme';
import { Tooltip as BaseTooltip } from '@visx/tooltip';
import { DataContext, Tooltip, TooltipContext, TooltipContextType } from '../../src';
import {
DataContext,
DataRegistryEntry,
Tooltip,
TooltipContext,
TooltipContextType,
} from '../../src';
import { TooltipProps } from '../../src/components/Tooltip';
import getDataContext from '../mocks/getDataContext';

Expand All @@ -11,17 +17,17 @@ describe('<Tooltip />', () => {
| {
props?: Partial<TooltipProps<object>>;
context?: Partial<TooltipContextType<object>>;
Parent?: ({ children }: { children: React.ReactElement }) => React.ReactElement;
dataEntries?: DataRegistryEntry<any, any, any>[];
}
| undefined;

function setup({
props,
context,
Parent = ({ children }: { children: React.ReactElement }) => children,
}: SetupProps = {}) {
function setup({ props, context, dataEntries = [] }: SetupProps = {}) {
const wrapper = mount(
<Parent>
<DataContext.Provider
value={{
...getDataContext(dataEntries),
}}
>
<TooltipContext.Provider
value={{
tooltipOpen: false,
Expand All @@ -37,7 +43,7 @@ describe('<Tooltip />', () => {
{...props}
/>
</TooltipContext.Provider>
</Parent>,
</DataContext.Provider>,
);
return wrapper;
}
Expand Down Expand Up @@ -99,7 +105,20 @@ describe('<Tooltip />', () => {
it('should not render a glyph if showDatumGlyph=true and there is no nearestDatum', () => {
const wrapper = setup({
props: { showDatumGlyph: true },
context: { tooltipOpen: true },
context: {
tooltipOpen: true,
tooltipData: {
datumByKey: {},
},
},
dataEntries: [
{
key: 'd1',
xAccessor: () => 3,
yAccessor: () => 7,
data: [{}],
},
],
});
expect(wrapper.find('div.visx-tooltip-glyph')).toHaveLength(0);
});
Expand All @@ -109,10 +128,18 @@ describe('<Tooltip />', () => {
context: {
tooltipOpen: true,
tooltipData: {
nearestDatum: { distance: 1, key: '', index: 0, datum: {} },
nearestDatum: { distance: 1, key: 'd1', index: 0, datum: {} },
datumByKey: {},
},
},
dataEntries: [
{
key: 'd1',
xAccessor: () => 3,
yAccessor: () => 7,
data: [{}],
},
],
});
expect(wrapper.find('div.visx-tooltip-glyph')).toHaveLength(1);
});
Expand All @@ -128,30 +155,20 @@ describe('<Tooltip />', () => {
},
},
},
Parent: (
{ children }, // glyphs snap to data points, so scales/accessors must exist
) => (
<DataContext.Provider
value={{
...getDataContext([
{
key: 'd1',
xAccessor: () => 3,
yAccessor: () => 7,
data: [{}],
},
{
key: 'd2',
xAccessor: () => 3,
yAccessor: () => 7,
data: [{}],
},
]),
}}
>
{children}
</DataContext.Provider>
),
dataEntries: [
{
key: 'd1',
xAccessor: () => 3,
yAccessor: () => 7,
data: [{}],
},
{
key: 'd2',
xAccessor: () => 3,
yAccessor: () => 7,
data: [{}],
},
],
});
expect(wrapper.find('div.visx-tooltip-glyph')).toHaveLength(2);
});
Expand Down

0 comments on commit 73fe9c9

Please sign in to comment.