-
Notifications
You must be signed in to change notification settings - Fork 122
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
Click interactions with moving mouse pointer are not recognised #748
Comments
Happens when using Apple's Magic Mouse, e.g. on fast clicking clicks are not recognized. |
As noted by @Dosant we are not using directly the browser capabilities for click because we need to handle both dragging and click cases separately and we handle mouse events in redux. |
This fix reduce the situation where a click is not recognized and instead a drag event is detected. Adding a 100ms threshold allows a better click handling on situation where a mouse move event occurs during a mouse click fix elastic#748
This fix reduces the situation where a drag event is fired instead of a click one. It adds the following thresholds: - a 100ms threshold before the mouse-down time and the current time to consider the movement for dragging purposes - a 4-pixel delta between mouse-down and the current position to consider the movement for dragging purposes fix #748
# [23.2.0](v23.1.1...v23.2.0) (2020-10-06) ### Bug Fixes * **heatmap:** adjust pageSize based available chart height ([#849](#849)) ([9aa396b](9aa396b)) * **heatmap:** destroy canvas bbox calculator when done ([#844](#844)) ([42460bd](42460bd)) * **heatmap:** x-axis labels overlapping for time series data ([#850](#850)) ([9ebd879](9ebd879)) * **interactions:** recognise drag after 100ms and 4px ([#848](#848)) ([70626fe](70626fe)), closes [#748](#748) ### Features * heatmap tooltip enhancements and fixes ([#847](#847)) ([d879e05](d879e05))
🎉 This issue has been resolved in version 23.2.0 🎉 The release is available on: Your semantic-release bot 📦🚀 |
# [23.2.0](elastic/elastic-charts@v23.1.1...v23.2.0) (2020-10-06) ### Bug Fixes * **heatmap:** adjust pageSize based available chart height ([opensearch-project#849](elastic/elastic-charts#849)) ([fd56099](elastic/elastic-charts@fd56099)) * **heatmap:** destroy canvas bbox calculator when done ([opensearch-project#844](elastic/elastic-charts#844)) ([4c1fd55](elastic/elastic-charts@4c1fd55)) * **heatmap:** x-axis labels overlapping for time series data ([opensearch-project#850](elastic/elastic-charts#850)) ([7cbd151](elastic/elastic-charts@7cbd151)) * **interactions:** recognise drag after 100ms and 4px ([opensearch-project#848](elastic/elastic-charts#848)) ([f7aa7f8](elastic/elastic-charts@f7aa7f8)), closes [opensearch-project#748](elastic/elastic-charts#748) ### Features * heatmap tooltip enhancements and fixes ([opensearch-project#847](elastic/elastic-charts#847)) ([6d763fb](elastic/elastic-charts@6d763fb))
Describe the bug
Looks like
onElementClick
event works only if pointer position duringmousedown
event is the same as duringmouseup
event. If mouse pointer is moved during click, thenonElementClick
interaction isn't firing. This seems to be different from native browser behaviour, where click events are still recognised if mouse pointer is moved. This difference makes clicks in elastic charts flaky when using a mouse, because start-end positions could be different when clicking while the mouse in motion.To Reproduce
Steps to reproduce the behavior:
onElementClick
didn't fireExpected behaviour
OnElementClick
interactions firesVersion (please complete the following information):
Additional context
Noticed while working in a kibana dashboard.
Kibana Cross Issues
Add any Kibana related issues here.
Checklist
Delete any items that are not applicable to this issue.
Kibana Cross Issues
listkibana cross issue
tag is associated to the issue if any kibana cross issue is presentThe text was updated successfully, but these errors were encountered: