Socket
Socket
Sign inDemoInstall

react-responsive-pagination

Package Overview
Dependencies
Maintainers
1
Versions
128
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-responsive-pagination

React component for responsive pagination


Version published
Weekly downloads
7.3K
increased by14.93%
Maintainers
1
Weekly downloads
 
Created
Source

React Responsive Pagination

npm version minzipped size GitHub license Test Release semantic-release

A responsive React pagination component which intelligently renders to the available width

🌟 Just updated for React 18 🌟

⚡️ LIVE DEMO - try it out for yourself! ⚡️

react-responsive-pagination example

📕 Visit https://react-responsive-pagination.elantha.com to get started 🚀

🥾 Works out of the box with Bootstrap 4.x

Using Bootstrap? See the Bootstrap 4 Getting Started Guide

🎨 Supports custom styling

Custom styles? No problem - see the Custom Styles Guide

⏳ Quick Start

npm install react-responsive-pagination
// ... make sure appropriate css is in the project (see guides above)
import React, { useState } from 'react';
import Pagination from 'react-responsive-pagination';

function MyApp() {
  const [currentPage, setCurrentPage] = useState(4);

  const totalPages = 17;

  return (
    <Pagination
      current={currentPage}
      total={totalPages}
      onPageChange={setCurrentPage}
    />
  );
}

✔︎ Requirements / Compatibility

  • React 18, 17 and 16.8 upwards
  • Modern browsers only - not suitable for IE 11

🔧 Props

Common Props

PropDescription
current
number
(required)
The current active page. Indexed from 1
total
number
(required)
The total number of pages
onPageChange
(newPage: number) => void
(required)
A callback handler which is called when the user clicks a new page, note that the active page will not change unless the current prop is updated to reflect the new page (as in the example above). The newPage value is indexed from 1
maxWidth
number
(optional)
The maximum width (in pixels) of the pagination component. Specify a value if you want to override the automatic sizing. Note this width may be exceeded in the case where it's not possible to output a small enough component

ClassName Props

See Overriding default classNames for more information

PropDescription
className
string
(optional)
Class name for the top level <ul> container
Defaults to pagination, overrides extraClassName prop (below)
extraClassName
string
(optional)
Useful when using Bootstrap styles, extra classNames to be added to the top level <ul> container. Use this prop to override the default justify value - for example to align elements to the start of the page use: justify-content-start
Defaults to justify-content-center, not applicable if className prop (above) is set
pageItemClassName
string
(optional)
Class name for all the <li> elements
Defaults to page-item
pageLinkClassName
string
(optional)
Class name for <a> or <span> child elements within an <li> element:
<li ...><a class='page-link'>1</a></li>
Defaults to page-link
activeItemClassName
string
(optional)
Appended to <li> class name for the active element:
<li class='page-item active'><a class='page-link'>1</a></li>
Defaults to active
disabledItemClassName
string
(optional)
Appended to <li> class name for non-clickable elements (disabled nav buttons and the break/ellipsis):
<li class='page-item disabled'><span class='page-link'>...</span></li>
Defaults to disabled
srOnlyClassName
string
(optional)
Class for screen reader only content (which should be visually hidden) - see an example of typical css for this purpose
Defaults to sr-only

Label Props

PropDescription
previousLabel
string
(optional)
The label for the previous button, defaults to «
nextLabel
string
(optional)
The label for the next button, defaults to »

See Props Reference for the full list

ℹ About Auto Sizing

More info in the FAQ

Keywords

FAQs

Package last updated on 13 Jun 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc