GithubHelp home page GithubHelp logo

Comments (3)

mortenko avatar mortenko commented on May 26, 2024

hi @garettg
the problem is here

let firstPage = Math.max(1, currentPage - Math.floor(pageRangeDisplayed / 2));
  let lastPage = Math.min(totalPages, currentPage + Math.floor(pageRangeDisplayed / 2));

You can find this code here (http://deoxxa.github.io/paginator/docs/). This is used in this paginator's implementation
... and then look at the code of this paginator, which you are using and consider that paginationInfo.first_page==1 and paginationInfo.last_page ==1. this code is in src/components/Pagination.js

if (paginationInfo.first_page !== paginationInfo.last_page) {
            for(let i = paginationInfo.first_page; i <= paginationInfo.last_page; i++) {
                pages.push(
                    <Page
                        isActive={i === activePage}
                        key={i}
                        pageNumber={i}
                        pageText={i + ""}
                        onClick={onChange}
                        activeClass={activeClass}
                    />
                );
            }
        }

This means that if you use pageRange with equality 1 no page is pushed into the pages array

from react-js-pagination.

samay3191 avatar samay3191 commented on May 26, 2024

FirstPage link is always disabled if I set pageRangeDisplayed={1}. Is there any workaround for this?

from react-js-pagination.

wwwaiser avatar wwwaiser commented on May 26, 2024

fixed at 3.0.0 version

from react-js-pagination.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.