-
Notifications
You must be signed in to change notification settings - Fork 68
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
Load more and redundant subscriptions #150
Comments
How would you want to avoid that? And why? This way it only takes the least amount of docs required to the client. |
The use case is the 'load more' used as pagination. Load more should just add new subscriptions ( the next results) but keep the previous ones. Current behavior: the previous results subscriptions are stopped and the new subscriptions are done for the previous docs plus the new ones. The aim is to keep the curent results available even if a search runs (cause of load more activation for ie) . Ofc, the final amont client side docs stays the same. See the https://www.youtube.com/watch?v=FUTuLM-0hMI at 3:50, typically what i want to reproduced. Hope it is clear enough. |
👍 |
As I can't see that this has any impact on the UI (tested with https://github.com/matteodem/easy-search-leaderboard) I'll leave this open for people to submit PRs. |
Hi,
Is it possible to avoid the unsubscription of the current results when using load more?
Currently, all results are unsub then sub again with the larger set.
The text was updated successfully, but these errors were encountered: