Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add mouse events to line slices #2128

Merged
merged 1 commit into from
Apr 3, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 4 additions & 0 deletions packages/line/src/Line.js
Original file line number Diff line number Diff line change
Expand Up @@ -220,6 +220,10 @@ const Line = props => {
tooltip={sliceTooltip}
current={currentSlice}
setCurrent={setCurrentSlice}
onMouseEnter={onMouseEnter}
onMouseMove={onMouseMove}
onMouseLeave={onMouseLeave}
onClick={onClick}
/>
)
}
Expand Down
22 changes: 21 additions & 1 deletion packages/line/src/Slices.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,19 @@ import { memo } from 'react'
import PropTypes from 'prop-types'
import SlicesItem from './SlicesItem'

const Slices = ({ slices, axis, debug, height, tooltip, current, setCurrent }) => {
const Slices = ({
slices,
axis,
debug,
height,
tooltip,
current,
setCurrent,
onMouseEnter,
onMouseMove,
onMouseLeave,
onClick,
}) => {
return slices.map(slice => (
<SlicesItem
key={slice.id}
Expand All @@ -21,6 +33,10 @@ const Slices = ({ slices, axis, debug, height, tooltip, current, setCurrent }) =
tooltip={tooltip}
setCurrent={setCurrent}
isCurrent={current !== null && current.id === slice.id}
onMouseEnter={onMouseEnter}
onMouseMove={onMouseMove}
onMouseLeave={onMouseLeave}
onClick={onClick}
/>
))
}
Expand All @@ -44,6 +60,10 @@ Slices.propTypes = {
tooltip: PropTypes.oneOfType([PropTypes.func, PropTypes.object]).isRequired,
current: PropTypes.object,
setCurrent: PropTypes.func.isRequired,
onMouseEnter: PropTypes.func,
onMouseMove: PropTypes.func,
onMouseLeave: PropTypes.func,
onClick: PropTypes.func,
}

export default memo(Slices)
44 changes: 37 additions & 7 deletions packages/line/src/SlicesItem.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,28 +10,52 @@ import { createElement, memo, useCallback } from 'react'
import PropTypes from 'prop-types'
import { useTooltip } from '@nivo/tooltip'

const SlicesItem = ({ slice, axis, debug, tooltip, isCurrent, setCurrent }) => {
const SlicesItem = ({
slice,
axis,
debug,
tooltip,
isCurrent,
setCurrent,
onMouseEnter,
onMouseMove,
onMouseLeave,
onClick,
}) => {
const { showTooltipFromEvent, hideTooltip } = useTooltip()

const handleMouseEnter = useCallback(
event => {
showTooltipFromEvent(createElement(tooltip, { slice, axis }), event, 'right')
setCurrent(slice)
onMouseEnter && onMouseEnter(slice, event)
},
[showTooltipFromEvent, tooltip, slice]
[showTooltipFromEvent, tooltip, slice, onMouseEnter]
)

const handleMouseMove = useCallback(
event => {
showTooltipFromEvent(createElement(tooltip, { slice, axis }), event, 'right')
onMouseMove && onMouseMove(slice, event)
},
[showTooltipFromEvent, tooltip, slice]
[showTooltipFromEvent, tooltip, slice, onMouseMove]
)

const handleMouseLeave = useCallback(() => {
hideTooltip()
setCurrent(null)
}, [hideTooltip])
const handleMouseLeave = useCallback(
event => {
hideTooltip()
setCurrent(null)
onMouseLeave && onMouseLeave(slice, event)
},
[hideTooltip, slice, onMouseLeave]
)

const handleClick = useCallback(
event => {
onClick && onClick(slice, event)
},
[slice, onClick]
)

return (
<rect
Expand All @@ -47,6 +71,8 @@ const SlicesItem = ({ slice, axis, debug, tooltip, isCurrent, setCurrent }) => {
onMouseEnter={handleMouseEnter}
onMouseMove={handleMouseMove}
onMouseLeave={handleMouseLeave}
onClick={handleClick}
data-testid={`slice-${slice.id}`}
/>
)
}
Expand All @@ -59,6 +85,10 @@ SlicesItem.propTypes = {
tooltip: PropTypes.oneOfType([PropTypes.func, PropTypes.object]),
isCurrent: PropTypes.bool.isRequired,
setCurrent: PropTypes.func.isRequired,
onMouseEnter: PropTypes.func,
onMouseMove: PropTypes.func,
onMouseLeave: PropTypes.func,
onClick: PropTypes.func,
}

export default memo(SlicesItem)
50 changes: 50 additions & 0 deletions packages/line/tests/Line.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -148,3 +148,53 @@ describe('curve interpolation', () => {
})
}
})

describe('mouse events on slices', () => {
const data = [
{
id: 'A',
data: [
{ x: 0, y: 3 },
{ x: 1, y: 7 },
{ x: 2, y: 11 },
{ x: 3, y: 9 },
{ x: 4, y: 8 },
],
},
]
const baseProps = {
width: 500,
height: 300,
data: data,
animate: false,
enableSlices: 'x',
}

it('should call onMouseEnter', () => {
const onMouseEnter = jest.fn()
const wrapper = mount(<Line {...baseProps} onMouseEnter={onMouseEnter} />)
wrapper.find(`[data-testid='slice-0']`).simulate('mouseenter')
expect(onMouseEnter).toHaveBeenCalledTimes(1)
})

it('should call onMouseMove', () => {
const onMouseMove = jest.fn()
const wrapper = mount(<Line {...baseProps} onMouseMove={onMouseMove} />)
wrapper.find(`[data-testid='slice-0']`).simulate('mousemove')
expect(onMouseMove).toHaveBeenCalledTimes(1)
})

it('should call onMouseLeave', () => {
const onMouseLeave = jest.fn()
const wrapper = mount(<Line {...baseProps} onMouseLeave={onMouseLeave} />)
wrapper.find(`[data-testid='slice-0']`).simulate('mouseleave')
expect(onMouseLeave).toHaveBeenCalledTimes(1)
})

it('should call onClick', () => {
const onClick = jest.fn()
const wrapper = mount(<Line {...baseProps} onClick={onClick} />)
wrapper.find(`[data-testid='slice-0']`).simulate('click')
expect(onClick).toHaveBeenCalledTimes(1)
})
})