Skip to content
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

dashboard: Update pages during search #61

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

jryberg
Copy link

@jryberg jryberg commented Feb 11, 2025

This fix page number during search. Page number might be on page 5 and the user search for something that are outside current number of pages.

This commit will set page number to 1 and recalculate number of pages during search.

return items

@rx.var(cache=True)
def page_number(self) -> int:
return (self.offset // self.limit) + 1

@rx.var(cache=True)
@rx.var(cache=False)
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

does this not work as a cached var anymore? when total_items or limit changes, it should be recalculated, is that not enough?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants