-
Notifications
You must be signed in to change notification settings - Fork 0
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
My Museum Tour search pagination #48
Conversation
src/hooks/useFetch.jsx
Outdated
paginationSelector, | ||
paginationSetter, | ||
fetchingSetter, | ||
errorSetter, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not entirely sure why these setters need to be passed in when they are also created above via useState
:
const [pagination, setPagination] = useState(null);
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not sure what the original reason was for implementing useFetch
this way, but it was interfering with testing, so I made useFetch
retrieve state directly from the SearchContext
.
... to include pagination selector and setter
580364b
to
f364ff6
Compare
This is used to navigate the possibly multiple pages of results.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
No description provided.