[Koha-bugs] [Bug 32474] Implement infinite scroll in vue-select

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Tue Jan 31 10:51:11 CET 2023


https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32474

--- Comment #11 from Jonathan Druart <jonathan.druart+koha at gmail.com> ---
Additionally:

* This is only displayed for the second fetch.

+            <li v-show="hasNextPage" ref="load" class="loader">
+                {{ $__("Loading more options...") }}
+            </li>

To recreate (add a 'sleep 5' in Koha::REST::V1::Acquisitions::Vendors->list):
open the dropdown list
scroll down
=> You see "Loading more options..."
scroll down again
=> We are loading more options but there is no visual feedback.

* There is a frustrating behaviour, if you are at the bottom of the dropdown
and it's still fetching, the scrollbar will hit the top when the new data are
fetched (feel like a broken lift)

* this.limit += 10

What's the point of this?
Feel like this should be 20 (see returnedValuesPerPage)
If so we need a variable in store and retrieve it from there when we need it.

-- 
You are receiving this mail because:
You are watching all bug changes.


More information about the Koha-bugs mailing list