Reputation: 966
I'm using ReactiveSearch 3.30.0.
Here's how I use the ReactiveList
component in my Next.js project.
<ReactiveList
....
infiniteScroll={true}
showLoader={true}
pagination={false}
loader={<MyCustomLoader/>}
....
/>
The problem is during the loading that occurs,
the MyCustomLoader
is always at the bottom.
Expected outcome for the MyCustomLoader
is,
MyCustomLoader
at top
andMyCustomLoader
at bottomThe reason is, since my results list is long and scrollable, the loader is not shown when I click a filter item. It is actually rendered on the DOM, because I could see it when zoomed out the browser window (but is outside visible area to the user).
Related GitHub issue https://github.com/appbaseio/reactivesearch/issues/749
Any workaround is highly appreciated. Thanks.
Upvotes: 1
Views: 61