-
Notifications
You must be signed in to change notification settings - Fork 22
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
Notify user when not all text search results are shown #235
Comments
Currently, the REST-API does not provide a total count of search results (see relevant warmshowers.org drupal code). And as a user, I would be pretty annoyed by such a message. If there are more results for my search query, I want to see them. What about lazy loading/endless scrolling, e.g. using Google Paging library? This could also reduce bandwidth use as it allows to lower the current limit of 100. Examples are provided here. |
I like the idea of adding a endless scrolling feature. And it will work for text search results. Also, it seems that the Google paging library is closed source, isn't it? We are trying to move away from such libraries (see #279). Is there any FLOSS library that does the same? |
Sorry for closing this. |
Google Paging is released under Apache Version 2, see source code. |
In the text search we currently only show the first 50 results. If there are more than 50 we should do a toast to show how many more there are. Something like "Only 50 of 198 results are shown. Please use a more specific search."
The text was updated successfully, but these errors were encountered: