Code Monkey home page Code Monkey logo

react-router-pagination's Introduction

react-router-pagination

React Router Pagination

A React Router 5 pagination component.

  • You have lots of data?
  • You want users to page through that data?
  • You want the page to be reflected in the route, and you're using React Router?

Given some simple props, React Router Pagination will create a list of links to those pages.

Example implementations are available on GitHub. You can also clone this repository and run Storybook.

Using the component

Required props:

  • A totalPages integer.

Not quite required but not quite optional props:

  • A pageNumber integer.

Optional props:

  1. A match object, for generating the to prop of each <Link /> component.
  2. An onClick handler, for when the user clicks a <Link />.

Additional props:

  1. spread
  2. format

Example

A component with props:

<Pagination
  totalPages={12}
  pageNumber={1}
/>

Generates:

<ul class="pagination">
    <li class="currentPage">
        <a href="/1">
            <span class="pageNumber">1</span>
        </a>
    </li>
    <li class="page">
        <a href="/2">
            <span class="pageNumber">2</span>
        </a>
    </li>
    <li class="page">
       <a href="/3">
           <span class="pageNumber">3</span>
       </a>
    </li>
    <li class="page">
        <a href="/4">
            <span class="pageNumber">4</span>
        </a>
    </li>
    <li class="page">
        <a href="/5">
           <span class="pageNumber">5</span>
        </a>
    </li>
    <li class="forwardPage">
        <a href="/6">
            <span class="forwardPage">»</span>
        </a>
    </li>
    <li class="lastPage">
        <a href="/12">
            <span class="pageNumber">12</span>
        </a>
    </li>
</ul>

(The default match object creates default route paths. You probably don't want that.)

About totalPages

React Router Pagination doesn't care about how many items you have and how many items you want to show per page.

It only cares about the total number of pages.

  • Your data contains 120 items which you want to display at 10 items per page.
  • Your data contains 60 items which you want to display at 5 items per page.
  • Your data contains 240 items which you want to display at 20 items per page.

In which case, totalPages should be 12.

<Pagination
  totalPages={12}
/>
  • Your data contains 121 items which you want to display at 10 items per page.
  • Your data contains 61 items which you want to display at 5 items per page.
  • Your data contains 241 items which you want to display at 20 items per page.

In which case, totalPages should be 13.

<Pagination
  totalPages={13}
/>

(Strings are coerced to numbers, and numbers are rounded.)

React Router Pagination only requires the total number of pages, which could be computed anywhere in your application ...

... But it does expose a static function for computing the totalPages:

const totalPages = Pagination.calculateTotalPages(120, 10)

Or:

const totalPages = Pagination.calculateTotalPages(121, 10)

(This is the same function the component uses internally.)

You can use this function anywhere in your application to ensure that the same value is being presented in different components.

About pageNumber

  • Your data contains 120 items which you want to display at 10 items per page.

To display page 1:

<Pagination
  totalPages={12}
  pageNumber={1}
/>

To display page 5:

<Pagination
  totalPages={12}
  pageNumber={5}
/>

(Strings are coerced to numbers, and numbers are rounded.)

React Router Pagination constrains pageNumber to a min of 1 and a max of totalPages.

Any of these will present page 1:

<Pagination
  totalPages={12}
  pageNumber={1}
/>
<Pagination
  totalPages={12}
/>
<Pagination
  totalPages={12}
  pageNumber={0}
/>

Either these will present page 12:

<Pagination
  totalPages={12}
  pageNumber={12}
/>
<Pagination
  totalPages={12}
  pageNumber={13}
/>

(Strings are coerced to numbers, and numbers are rounded.)

... React Router Pagination exposes a static function for computing the pageNumber prop:

const pageNumber = Pagination.calculatePageNumber(0, 12)

Or:

const pageNumber = Pagination.calculatePageNumber(13, 12)

Again, you can use this function anywhere in your application to ensure that the same value is being presented in different components.

Creating page routes with the match prop

The match prop has the same structure as React Router match prop.

The default has this structure:

{
  path: '/:pageNumber',
  params: {
    pageNumber: 1 /* or any integer */
  }
}

But your path is more complex. You have a <Route /> component matching the pattern:

/catalogue/products/:id

And you have a number of stores selling that product, for which you have a <Route /> component matching the pattern:

/catalogue/products/:id/stores/:pageNumber

Let's say the store id is ABCDEF.

For the list of stores, supply the Pagination component with a match prop of this structure:

{
  path: '/catalogue/products/:id/stores/:pageNumber',
  params: {
    id: 'ABCDEF'
  }
}

React Router Pagination uses the React Router utility generatePath to compute paths:

const getLinkTo = ({ path, params }, pageNumber) => generatePath(path, { ...params, pageNumber })

Given a totalPages of 12 and a spread of 5 then React Router Pagination will create a list of <Link /> components:

<ul class="pagination">
    <li class="currentPage">
        <a href="/catalogue/products/ABCDEF/stores/1">
            <span class="pageNumber">1</span>
        </a>
    </li>
    <li class="page">
        <a href="/catalogue/products/ABCDEF/stores/2">
            <span class="pageNumber">2</span>
        </a>
    </li>
    <li class="page">
       <a href="/catalogue/products/ABCDEF/stores/3">
           <span class="pageNumber">3</span>
       </a>
    </li>
    <li class="page">
        <a href="/catalogue/products/ABCDEF/stores/4">
            <span class="pageNumber">4</span>
        </a>
    </li>
    <li class="page">
        <a href="/catalogue/products/ABCDEF/stores/5">
           <span class="pageNumber">5</span>
        </a>
    </li>
    <li class="forwardPage">
        <a href="/catalogue/products/ABCDEF/stores/6">
            <span class="forwardPage">»</span>
        </a>
    </li>
    <li class="lastPage">
        <a href="/catalogue/products/ABCDEF/stores/12">
            <span class="pageNumber">12</span>
        </a>
    </li>
</ul>

What's spread?

Additional props, etc

  1. spread
  2. format

The value for spread should be an integer. It's the maximum number of page links to be displayed together.

Spread

If totalPages is 12, pageNumber is 1, and spread is 5, then links to pages 1, 2, 3, 4 and 5 will be displayed (as well as a "forward" link to page 6 and a link to the last page, 12).

Class names indicate the currentPage, the forwardPage, and the lastPage.

<ul class="pagination">
    <li class="currentPage">
        <a href="/1">
            <span class="pageNumber">1</span>
        </a>
    </li>
    <li class="page">
        <a href="/2">
            <span class="pageNumber">2</span>
        </a>
    </li>
    <li class="page">
        <a href="/3">
            <span class="pageNumber">3</span>
        </a>
    </li>
    <li class="page">
        <a href="/4">
            <span class="pageNumber">4</span>
        </a>
    </li>
    <li class="page">
        <a href="/5">
            <span class="pageNumber">5</span>
        </a>
    </li>
    <li class="forwardPage">
        <a href="/6">
            <span class="forwardPage">»</span>
        </a>
    </li>
    <li class="lastPage">
        <a href="/12">
            <span class="pageNumber">12</span>
        </a>
    </li>
</ul>

If totalPages is 12, pageNumber is 4, and spread is 5, then links to pages 1, 2, 3, 4 and 5 will be displayed (as well as a "forward" link to page 6 and a link to the last page, 12).

Class names indicate the zeroPage, the currentPage, the forwardPage, and the lastPage.

<ul class="pagination">
    <li class="zeroPage">
        <a href="/1">
            <span class="pageNumber">1</span>
        </a>
    </li>
    <li class="page">
        <a href="/2">
            <span class="pageNumber">2</span>
        </a>
    </li>
    <li class="page">
        <a href="/3">
            <span class="pageNumber">3</span>
        </a>
    </li>
    <li class="currentPage">
        <a href="/4">
            <span class="pageNumber">4</span>
        </a>
    </li>
    <li class="page">
        <a href="/5">
            <span class="pageNumber">5</span>
        </a>
    </li>
    <li class="page">
        <a href="/6">
            <span class="pageNumber">6</span>
        </a>
    </li>
    <li class="forwardPage">
        <a href="/7">
            <span class="forwardPage">»</span>
        </a>
    </li>
    <li class="lastPage">
        <a href="/12">
            <span class="pageNumber">12</span>
        </a>
    </li>
</ul>

If totalPages is 12, pageNumber is 8, and spread is 5, then links to pages 6, 7, 8, 9, and 10 will be displayed (as well as a "reverse" link to page 5, a "forward" link to page 11 and a link to the first page, 1, and the last page, 12).

Class names indicate the zeroPage, the reversePage, the currentPage, the forwardPage, and the lastPage.

<ul class="pagination">
    <li class="zeroPage">
        <a href="/1">
            <span class="pageNumber">1</span>
        </a>
    </li>
    <li class="reversePage">
        <a href="/5">
            <span class="reverse">«</span>
        </a>
    </li>
    <li class="page">
        <a href="/6">
            <span class="pageNumber">6</span>
        </a>
    </li>
    <li class="page">
        <a href="/7">
            <span class="pageNumber">7</span>
        </a>
    </li>
    <li class="currentPage">
        <a href="/8">
            <span class="pageNumber">8</span>
        </a>
    </li>
    <li class="page">
        <a href="/9">
            <span class="pageNumber">9</span>
        </a>
    </li>
    <li class="page">
        <a href="/10">
            <span class="pageNumber">10</span>
        </a>
    </li>
    <li class="forwardPage">
        <a href="/11">
            <span class="forwardPage">»</span>
        </a>
    </li>
    <li class="lastPage">
        <a href="/12">
            <span class="pageNumber">12</span>
        </a>
    </li>
</ul>

Format

Pass the format prop a value of "center" and a different calculation is used for the page links. You might prefer to try that one out than read about it. But it give it some good, solid numbers: lots of pages, with a spread of 5.

react-router-pagination's People

Contributors

sequencemedialimited avatar

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.