1.0.7 • Published 12 months ago

catify-react-pagination v1.0.7

Weekly downloads
-
License
MIT
Repository
github
Last release
12 months ago

Catify React Pagination

Catify React Pagination is a utility component that provides pagination functionality for a given dataset in React applications. It allows you to easily implement pagination and navigate through data in a paginated manner. This component is part of the Catify JS library. It uses https://www.npmjs.com/package/catify-pagination underneath the hood.

Usage

  1. Import the necessary dependencies:

import { Pagination } from "catify-pagination"; import { useState, useEffect, useRef } from "react";

  1. Import the catify-react-pagination component:

import { PaginationComponent } from "catify-react-pagination";

  1. Create a React component that uses the PaginationComponent:

`const YourComponent = () => { // Define your data and itemsPerPage

const renderCallback = (data, page, totalPages) => { // Implement your logic to update the UI with the current page data, page number, and total pages };

useEffect(() => { // Initialize pagination const paginationRef = new Pagination(data, itemsPerPage, renderCallback);

// Render initial pagination
paginationRef.render();

}, data, itemsPerPage);

return (

<div>
  {/* Render your content */}
  <PaginationComponent data={data} itemsPerPage={itemsPerPage} />
</div>

); };`

  1. Customize the renderCallback function to update your UI with the current page data, page number, and total pages.

  2. Implement the rendering logic in your component's JSX to display the paginated data and the pagination links.

  3. Make sure to provide a valid DOM element with the id "pagination" where the pagination links will be rendered.

Props

The PaginationComponent accepts the following props:

  • data (array): The array of data to be paginated.
  • itemsPerPage (number): The number of items to be displayed per page.

Example

Here is a codebox vanilla javascript implementation: https://codesandbox.io/s/catify-pagination-react-example-l7b693

License

This project is licensed under the MIT License.

Issues

If you encounter any issues or have suggestions for improvements, please create an issue on the GitHub repository.

Author

This utility was developed by MagicTheCat.

More Information

For more information, please visit the GitHub repository.

1.0.7

12 months ago

1.0.6

12 months ago

1.0.5

12 months ago

1.0.4

12 months ago

1.0.3

12 months ago

1.0.2

12 months ago

1.0.1

12 months ago