Greetings!
Thank you so much for taking time out to maintain react-select
One of our users reported that the dropdowns in our product (the ones powered by react-select) were not loading further options when she scrolled to the bottom. On further investigation, we realized that this was because react-select does not fire onMenuScrollToBottom when the scrolling is performed by dragging the scrollbar to the bottom using a mouse-drag. Unfortunately for us and for this user, her mouse lacks a scroll wheel and so this is the only way she can scroll to the bottom.
Here's a code sandbox demonstrating this issue: https://codesandbox.io/s/x20ppz92xw Note that when scrolled using the mousewheel, an alert dialog is displayed when the menu is scrolled to the bottom. However, when the scrollbar is dragged to the bottom using the mouse, the alert dialog isn't displayed.
Looking at the source code, I can see that the ScrollCaptor is only listening for the wheel, touchstart and touchmove events. The use-case of dragging the scrollbar with a mouse is ignored.
I've confirmed that this works in the previous major version (v1.2.1)
I understood that onMenuScrollToBottom is weakness of react-select. It also not working with keyboard navigation and for asynchronous select. My workaround is redefine MenuList component.
https://github.com/vtaits/react-select-async-paginate/blob/master/src/wrap-menu-list.jsx
It is my decorator, but is uses custom handler handleScrolledToBottom, you can replace it with onMenuScrollToBottom. Looped setTimeout is not beautiful but works.
any updates on this one? I am having the same issue, I am relying on onMenuScrollToBottom to fetch and append paginated values to a drop down, it won't work if the user used keyboard or scrollbar dragging :/.
Also looking for an update. This seems like a core bug and necessary for accessibility
Any updates on this one ?
I understood that
onMenuScrollToBottomis weakness ofreact-select. It also not working with keyboard navigation and for asynchronous select. My workaround is redefineMenuListcomponent.https://github.com/vtaits/react-select-async-paginate/blob/master/src/wrap-menu-list.jsx
It is my decorator, but is uses custom handler
handleScrolledToBottom, you can replace it withonMenuScrollToBottom. LoopedsetTimeoutis not beautiful but works.
Here is the correct link of the wrapper https://github.com/vtaits/react-select-async-paginate/blob/master/packages/react-select-async-paginate/src/wrap-menu-list.jsx
Most helpful comment
Here is the correct link of the wrapper https://github.com/vtaits/react-select-async-paginate/blob/master/packages/react-select-async-paginate/src/wrap-menu-list.jsx