npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

react-router-pagination

v3.2.133

Published

A React Router Pagination component

Downloads

1,418

Readme

react-router-pagination

React Router Pagination

A React Router 6 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="current-page">
        <a href="/1">
            <span class="page-number">1</span>
        </a>
    </li>
    <li class="page">
        <a href="/2">
            <span class="page-number">2</span>
        </a>
    </li>
    <li class="page">
       <a href="/3">
           <span class="page-number">3</span>
       </a>
    </li>
    <li class="page">
        <a href="/4">
            <span class="page-number">4</span>
        </a>
    </li>
    <li class="page">
        <a href="/5">
           <span class="page-number">5</span>
        </a>
    </li>
    <li class="forward-page">
        <a href="/6">
            <span class="forward">›</span>
        </a>
    </li>
    <li class="last-page">
        <a href="/12">
            <span class="page-number">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="current-page">
        <a href="/catalogue/products/ABCDEF/stores/1">
            <span class="page-number">1</span>
        </a>
    </li>
    <li class="page">
        <a href="/catalogue/products/ABCDEF/stores/2">
            <span class="page-number">2</span>
        </a>
    </li>
    <li class="page">
       <a href="/catalogue/products/ABCDEF/stores/3">
           <span class="page-number">3</span>
       </a>
    </li>
    <li class="page">
        <a href="/catalogue/products/ABCDEF/stores/4">
            <span class="page-number">4</span>
        </a>
    </li>
    <li class="page">
        <a href="/catalogue/products/ABCDEF/stores/5">
           <span class="page-number">5</span>
        </a>
    </li>
    <li class="forward-page">
        <a href="/catalogue/products/ABCDEF/stores/6">
            <span class="forward">›</span>
        </a>
    </li>
    <li class="last-page">
        <a href="/catalogue/products/ABCDEF/stores/12">
            <span class="page-number">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 current-page, the forward-page, and the last-page.

<ul class="pagination">
    <li class="current-page">
        <a href="/1">
            <span class="page-number">1</span>
        </a>
    </li>
    <li class="page">
        <a href="/2">
            <span class="page-number">2</span>
        </a>
    </li>
    <li class="page">
        <a href="/3">
            <span class="page-number">3</span>
        </a>
    </li>
    <li class="page">
        <a href="/4">
            <span class="page-number">4</span>
        </a>
    </li>
    <li class="page">
        <a href="/5">
            <span class="page-number">5</span>
        </a>
    </li>
    <li class="forward-page">
        <a href="/6">
            <span class="forward">›</span>
        </a>
    </li>
    <li class="last-page">
        <a href="/12">
            <span class="page-number">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 zero-page, the current-page, the forward-page, and the last-page.

<ul class="pagination">
    <li class="zero-page">
        <a href="/1">
            <span class="page-number">1</span>
        </a>
    </li>
    <li class="page">
        <a href="/2">
            <span class="page-number">2</span>
        </a>
    </li>
    <li class="page">
        <a href="/3">
            <span class="page-number">3</span>
        </a>
    </li>
    <li class="current-page">
        <a href="/4">
            <span class="page-number">4</span>
        </a>
    </li>
    <li class="page">
        <a href="/5">
            <span class="page-number">5</span>
        </a>
    </li>
    <li class="page">
        <a href="/6">
            <span class="page-number">6</span>
        </a>
    </li>
    <li class="forward-page">
        <a href="/7">
            <span class="forward">›</span>
        </a>
    </li>
    <li class="last-page">
        <a href="/12">
            <span class="page-number">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 zero-page, the reverse-page, the current-page, the forward-page, and the last-page.

<ul class="pagination">
    <li class="zero-page">
        <a href="/1">
            <span class="page-number">1</span>
        </a>
    </li>
    <li class="reverse-page">
        <a href="/5">
            <span class="reverse">‹</span>
        </a>
    </li>
    <li class="page">
        <a href="/6">
            <span class="page-number">6</span>
        </a>
    </li>
    <li class="page">
        <a href="/7">
            <span class="page-number">7</span>
        </a>
    </li>
    <li class="current-page">
        <a href="/8">
            <span class="page-number">8</span>
        </a>
    </li>
    <li class="page">
        <a href="/9">
            <span class="page-number">9</span>
        </a>
    </li>
    <li class="page">
        <a href="/10">
            <span class="page-number">10</span>
        </a>
    </li>
    <li class="forward-page">
        <a href="/11">
            <span class="forward">›</span>
        </a>
    </li>
    <li class="last-page">
        <a href="/12">
            <span class="page-number">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.