React.js pagination component based on ultimate-pagination
npm install react-ultimate-pagination
[![NPM version][npm-image]][npm-url] [![Downloads][downloads-image]][npm-url]
React.js pagination component based on ultimate-pagination. It's implemented as a higher-order component that allows easy integration of react-ultimate-pagination with different CSS frameworks or approaches.
To use react-ultimate-pagination in your project, you can write your theme or use one of already existing.
Here is a list of themed versions of react-ultimate-pagination component. To use them you don't need explicitly install this module to your project; it will be installed automatically as a dependency of themed component.
- Basic Theme (Demo)
- Bootstrap 3 Theme (Demo)
- Bootstrap 4 Theme (Demo)
- Material UI Theme (Demo)
You need to install this module only if you want to write your project or CSS framework specific theme.
You can install this module via npm:
```
npm install react-ultimate-pagination --save
This module provides createUltimatePagination(options) method that is a React.js high-order component. It means that you need to call this component with specific options to create a React.js component.
The options object contains following properties:
- itemTypeToComponent: object - an object that is used as a map from the item type to the React.js component that will be used to render this item
- WrapperComponent: React.Component - a React.js component that will be used as a wrapper for pagination items (optional, default: React.DOM.div)
The itemTypeToComponent object should contains React.js component for each item type:
- PAGE - a link to a pageELLIPSIS
- - an item that represents groups of pages that currently are not visible in paginator (can be used to navigate to the page in the group that is the nearest to the current page)FIRST_PAGE_LINK
- - a link to the first pagePREVIOUS_PAGE_LINK
- - a link to the previous pageNEXT_PAGE_LINK
- - a link to the next pageLAST_PAGE_LINK
- - a link to the last page
Each of this component receives as a props following data:PAGE
- value: number - number of pages that user should navigate to when item is activated (for items with type it also can be used as a label in UI)currentPage
- isActive: boolean - show if if the same as value of an item (can be used to highlight a current page or disable first, previous, next or last page links when user is already on first/last page)
- isDisabled: boolean - show if button should be disabled
- onClick(): function - should be called when user interacted with a component and the current page should be changed to the page represented by item (no arguments should be used, can be used for all item types)
Here is an example of basic usage:
`javascript
var React = require('react');
var ReactUltimatePagination = require('react-ultimate-pagination');
function Page(props) {
return (
style={props.isActive ? {fontWeight: 'bold'} : null}
onClick={props.onClick}
disabled={props.disabled}
>{props.value}
);
}
function Ellipsis(props) {
return
}
function FirstPageLink(props) {
return
}
function PreviousPageLink(props) {
return
}
function NextPageLink(props) {
return
}
function LastPageLink(props) {
return
}
function Wrapper(props) {
return
var itemTypeToComponent = {
'PAGE': Page,
'ELLIPSIS': Ellipsis,
'FIRST_PAGE_LINK': FirstPageLink,
'PREVIOUS_PAGE_LINK': PreviousPageLink,
'NEXT_PAGE_LINK': NextPageLink,
'LAST_PAGE_LINK': LastPageLink
};
var UltimatePagination = ReactUltimatePagination.createUltimatePagination({
itemTypeToComponent: itemTypeToComponent,
WrapperComponent: Wrapper
});
`
Created UltimatePagination` component has the following interface:
- currentPage: number - current page number
- totalPages: number - total number of pages
- boundaryPagesRange: number, optional, default: 1 - number of always visible pages at the beginning and end
- siblingPagesRange: number, optional, default: 1 - number of always visible pages before and after the current one
- hideEllipsis: bool, optional, default: false - boolean flag to hide ellipsis
- hidePreviousAndNextPageLinks: bool, optional, default: false - boolean flag to hide previous and next page links
- hideFirstAndLastPageLinks: bool, optional, default: false - boolean flag to hide first and last page links
- onChange: function - callback that will be called with new page when it should be changed by user interaction (optional)
- disabled: bool, optional, default: false - boolean flag to disable all buttons in pagination
[downloads-image]: https://img.shields.io/npm/dm/react-ultimate-pagination.svg
[npm-url]: https://www.npmjs.com/package/react-ultimate-pagination
[npm-image]: https://img.shields.io/npm/v/react-ultimate-pagination.svg