sweetpagination

1.0.15 • Public • Published

Sweet Pagination

A ReactJS component to render a pagination.

By installing this component and writing only a little bit of code you can obtain this:

Some Styles

Sweet Pagination Style

Sweet Pagination Style

Sweet Pagination Style

Installation

Install Sweet Pagination with npm:

npm i sweetpagination --save

Basic Usage

import React, { useState } from "react";
import SweetPagination from "sweetpagination";

function Items() {
  const [currentPageData, setCurrentPageData] = useState(new Array(2).fill());
  // Example items, to simulate fetching from another resources.
  const items = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14];
  return (
    <div>
      {currentPageData.map((item) => (
        <div>
          <h3>Item #{item}</h3>
        </div>
      ))}

      <SweetPagination
        currentPageData={setCurrentPageData}
        getData={items}
      />
    </div>
  );
}

Change Per-Page Data

If you want, you can show the data as you wish on the page then follow the code below.

Add this props dataPerPage={10} remember props type always Number.

      <SweetPagination
        currentPageData={setCurrentPageData}
        getData={items}
        dataPerPage={10}
      />

Add Navigation

If you want to add navigation button then follow the code below. Add this props navigation={true} remember props type always Boolean.

      <SweetPagination
        currentPageData={setCurrentPageData}
        getData={items}
        dataPerPage={10}
        navigation={true}
      />

Add Pre Loaded Style

If you want, you can add the pre loaded style then follow the code below. Add this props getStyle={'style-1'} remember props type always String.

      <SweetPagination
        currentPageData={setCurrentPageData}
        getData={items}
        dataPerPage={10}
        navigation={true}
        getStyle={'style-1'}
      />

Available Pre-Loaded Style List

  1. style-1
  2. style-2

Added You Custom Style

If you want, you can add your custom style then follow the code below. Add this props getStyle={'style-custom'} remember props type always String.

      <SweetPagination
        currentPageData={setCurrentPageData}
        getData={items}
        dataPerPage={10}
        navigation={true}
        getStyle={'style-custom'}
      />

Add CSS

    .style-custom{
      //add your coustom code here
    }

Copyright © All rights reserved by Jahidul Islam Zim

Package Sidebar

Install

npm i sweetpagination

Weekly Downloads

117

Version

1.0.15

License

ISC

Unpacked Size

43.4 kB

Total Files

10

Last publish

Collaborators

  • jahidulislamzim