-
-
Notifications
You must be signed in to change notification settings - Fork 32.5k
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
[Autocomplete] Fix navigation issue on mouse hover #35196
Conversation
Netlify deploy previewhttps://deploy-preview-35196--material-ui.netlify.app/ Bundle size report |
@ZeeshanTamboli can you review this pr |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The test passes on master too, it's probably not testing exactly what is needed.
@ZeeshanTamboli i'm having a trouble to write the test case for the #35141 , can you please help me on how to write the test case, the test i've written in this PR is also passing in master branch. To make things easy for you, i'm attaching video of the bug. In the video you can see, after pulpfiction option Godfather option is getting highlighted ideally Lord of the rings option should be highlighted. Screen.Recording.2022-11-29.at.10.07.43.PM.mov |
Thanks @ZeeshanTamboli for taking a look, let's wait for team to help us out. |
@michaldudak can you help me to write failing test case in master |
I can't think of a way to unit test this either, as it depends on having a mouse cursor. As for the new behavior, it seems to be consistent with the native |
@ZeeshanTamboli @michaldudak @mnajdova added test in e2e fixtures. Tested newly added test in master branch it was failing |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice work @sai6855. It looks good to me. But I'll let @michaldudak review it before merging.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍 I love this fix! I encountered this bug multiple times before.
Fixes #30178
Problem: handleOptionMouseOver from below file is expected to run only when mouse is over an option but the function is called even when dom updates happening in backgroud when listbox is scrolled.
https://github.com/mui/material-ui/blob/master/packages/mui-base/src/AutocompleteUnstyled/useAutocomplete.js.
I learnt this from downshift code base.
https://github.com/downshift-js/downshift/blob/4c3d3eab8a5d1a826f792d0b8d1302715400d7ed/src/downshift.js#L923
Solution: instead of using onMouseOver event, i used onMouseMove event as onMouseMove runs only when mouse moves.
Just FYI: even v4 autocomplete also has same issue
Before: https://www.loom.com/share/81bc73d696a84d87acc2919018350244
After: https://www.loom.com/share/cdb34134e21643c3a1ab04c730cb4361