![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
react-pagination-js
Advanced tools
Simple and light weight pagination for react. This library is updated version of react-pagination-library. It comes with five themes and are easy to customize.
click here for live demo.
$ npm install react-pagination-js
import React from "react";
import Pagination from "react-pagination-js";
import "react-pagination-js/dist/styles.css"; // import css
class App extends React.Component {
state = {
currentPage: 1
};
changeCurrentPage = numPage => {
this.setState({ currentPage: numPage });
//fetch a data
//or update a query to get data
};
render() {
return (
<div>
<Pagination
currentPage={this.state.currentPage}
totalPages={10}
changeCurrentPage={this.changeCurrentPage}
/>
<h2>current Page:{this.state.currentPage}</h2>
</div>
);
}
}
export default App;
Name | Type | Default | Description |
---|---|---|---|
totalSize | Number | Required. Total data size | |
sizePerPage | Number | 10 | Optional. Number of data to display in page |
currentPage | Number | 1 | Required. Active page number |
changeCurrentPage | Function | Required. Page change handler. Receive current pageNumber as arg | |
theme | string | default | Optional. theme : default ,dark , bootstrap , border-bottom , circle |
showFirstLastPages | boolean | true | Optional. Show or hide first and last page. |
firstPageText | string | « | Optional. first page text. |
lastPageText | string | » | Optional. last page text. |
nextPageText | string | ⟩ | Optional. next page text. |
numberOfPagesNextToActivePage | Number | 1 | Optional. Number of page to show next to active page |
FAQs
Simple, light weight pagination for react
We found that react-pagination-js demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.