Skip to content

This project aims to handle pagination core object in Javascript independent of UI

License

Notifications You must be signed in to change notification settings

pagino/pagino-js

Folders and files

NameName
Last commit message
Last commit date

Latest commit

May 29, 2023
cb0cadd · May 29, 2023

History

47 Commits
Apr 20, 2021
Feb 20, 2021
Feb 18, 2021
Feb 18, 2021
Feb 17, 2021
May 29, 2023
Feb 20, 2021
Feb 20, 2021
May 29, 2023
May 29, 2023
Feb 20, 2021

Repository files navigation

Pagino

Pagino is a JavaScript class designed to handle pagination logic independently.

Installation

npm i pagino

How It Works

Basic Usage:

import Pagino from 'pagino';

const pagino = new Pagino();
pagino.setCount(10);
pagino.setPage(1);
pagino.getPages();
/**
 * ['first', 'previous', 1, 2, 3, 4, 5, 'end-ellipsis', 10, 'next', 'last']
 */

pagino.setPage(5);
pagino.getPages();
/**
 * ['first', 'previous', 1,'start-ellipsis', 4, 5, 6, 'end-ellipsis', 10, 'next', 'last']
 */

Chain Mode:

You can chain multiple methods together

pagino
  .setCount(10)
  .setPage(1)
  .getPages();

Options:

The following values are the default options

const pagino = new Pagino({
  showFirst: true,
  showPrevious: true,
  showNext: true,
  showLast: true,
  page: 1,
  count: undefined,
  siblingCount: 1,
  boundaryCount: 1,
});

Navigate

Instead of using setPage, you can use the next, previous, first, and last methods:

pagino.next();
pagino.previous();
pagino.first();
pagino.last();

Event

You can listen for page and count changes

const pagino = new Pagino({
  ...
  onChange: (page, count) => {
    console.log(page, count)
  },
  ...
});

Using with Deno

import Pagino from 'https://raw.githubusercontent.com/pagino/pagino-js/main/src/index.ts';