-
Notifications
You must be signed in to change notification settings - Fork 122
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(heatmap): remove values when brushing only over axes (#1364)
- Loading branch information
Showing
4 changed files
with
109 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
86 changes: 86 additions & 0 deletions
86
packages/charts/src/chart_types/heatmap/state/selectors/get_picked_cells.test.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
/* | ||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one | ||
* or more contributor license agreements. Licensed under the Elastic License | ||
* 2.0 and the Server Side Public License, v 1; you may not use this file except | ||
* in compliance with, at your election, the Elastic License 2.0 or the Server | ||
* Side Public License, v 1. | ||
*/ | ||
|
||
import { Store } from 'redux'; | ||
|
||
import { MockGlobalSpec, MockSeriesSpec } from '../../../../mocks/specs/specs'; | ||
import { MockStore } from '../../../../mocks/store/store'; | ||
import { ScaleType } from '../../../../scales/constants'; | ||
import { onPointerMove, onMouseDown, onMouseUp } from '../../../../state/actions/mouse'; | ||
import { GlobalChartState } from '../../../../state/chart_state'; | ||
import { createOnBrushEndCaller } from './on_brush_end_caller'; | ||
|
||
describe('Heatmap picked cells', () => { | ||
let store: Store<GlobalChartState>; | ||
let onBrushEndMock = jest.fn(); | ||
|
||
beforeEach(() => { | ||
store = MockStore.default({ width: 300, height: 300, top: 0, left: 0 }, 'chartId'); | ||
onBrushEndMock = jest.fn(); | ||
MockStore.addSpecs( | ||
[ | ||
MockGlobalSpec.settingsNoMargins(), | ||
MockSeriesSpec.heatmap({ | ||
xScaleType: ScaleType.Ordinal, | ||
data: [ | ||
{ x: 'a', y: 'ya', value: 1 }, | ||
{ x: 'b', y: 'ya', value: 2 }, | ||
{ x: 'c', y: 'ya', value: 3 }, | ||
{ x: 'a', y: 'yb', value: 4 }, | ||
{ x: 'b', y: 'yb', value: 5 }, | ||
{ x: 'c', y: 'yb', value: 6 }, | ||
{ x: 'a', y: 'yc', value: 7 }, | ||
{ x: 'b', y: 'yc', value: 8 }, | ||
{ x: 'c', y: 'yc', value: 9 }, | ||
], | ||
config: { | ||
brushTool: { visible: true }, | ||
grid: { | ||
cellHeight: { | ||
max: 'fill', | ||
}, | ||
cellWidth: { | ||
max: 'fill', | ||
}, | ||
}, | ||
xAxisLabel: { | ||
visible: true, | ||
}, | ||
yAxisLabel: { | ||
visible: true, | ||
}, | ||
margin: { top: 0, bottom: 0, left: 0, right: 0 }, | ||
onBrushEnd: onBrushEndMock, | ||
}, | ||
}), | ||
], | ||
store, | ||
); | ||
}); | ||
|
||
it('should pick cells', () => { | ||
const caller = createOnBrushEndCaller(); | ||
store.dispatch(onPointerMove({ x: 50, y: 50 }, 0)); | ||
store.dispatch(onMouseDown({ x: 50, y: 50 }, 100)); | ||
store.dispatch(onPointerMove({ x: 150, y: 250 }, 200)); | ||
store.dispatch(onMouseUp({ x: 150, y: 250 }, 300)); | ||
caller(store.getState()); | ||
const brushEvent = onBrushEndMock.mock.calls[0][0]; | ||
expect(brushEvent.x.length).toBe(2); | ||
}); | ||
it('should not include x values if only dragging along y-axis', () => { | ||
const caller = createOnBrushEndCaller(); | ||
store.dispatch(onPointerMove({ x: 0, y: 50 }, 0)); | ||
store.dispatch(onMouseDown({ x: 0, y: 50 }, 100)); | ||
store.dispatch(onPointerMove({ x: 0, y: 20 }, 200)); | ||
store.dispatch(onMouseUp({ x: 0, y: 20 }, 300)); | ||
caller(store.getState()); | ||
const brushEvent = onBrushEndMock.mock.calls[0][0]; | ||
expect(brushEvent.x.length).toBe(0); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters