Skip to content
Advertisement

Paging in react

good morning, how are you? I’m having a problem with pagination, when I click to change the page it appears the page results and goes back to the first one right away, would you know how to help me?

For example, if I click on page 2, its results appear but it immediately goes back to page 1, I don’t know if it can be route or something like that

Dear, every time I click on a button it refreshes the page, I can’t say if it could be route

JavaScript

I will leave my paginator component next

JavaScript

Advertisement

Answer

Just add one more parameter to pagination component for active page to set current page. You can pass as below

AccontShow component

JavaScript

Now in Pagination component take activePage parameter

JavaScript

Now in pageNumbers map check for current page and add css class and css styling to that ‘li’ item to display as active

JavaScript

Here I’ve added ‘page-item-active’ class conditionally, you can change it and dd styling to that class

P.S. : Updated <a> tag from pagination component

Thanks and voteup if useful 🙂

Advertisement