2.0.0 • Published 4 years ago

jetspeed-knex-paginator v2.0.0

Weekly downloads
1
License
ISC
Repository
github
Last release
4 years ago

Knex-Paginator

Warning: do not use in production. This is not being actively maintained.

Simple paginator for Knex. It adds the .paginate() function to knex's query builder.

How to set up

To use this paginator, first you will have to install it:

npm i knex-paginator --save

Then, simply add the following lines to your Knex set up:

const knex = require('knex')(config);

const setupPaginator = require('knex-paginator');
setupPaginator(knex);

Function definition

paginate(perPage = 10, page = 1, isLengthAware = false)
ArgumentDescription
perPage (integer, defaults to 10)Items to show per page.
page (integer, defaults to 1)Current page.
isLengthAware (boolean. Defaults to false)Whether the paginator is aware of its length or not.

Note: If isLengthAware is set to true, the performance will be worst, as it will have to perform an extra query to get the length.

How to use

Example with callback

knex('products')
    .where('price', '<', 20)
    .paginate(15, 1, true)
    .then(paginator => {
        console.log(paginator.current_page);
        console.log(paginator.data);
    });

Example with async/await

const paginator = await knex('products')
    .where('price', '<', 20)
    .paginate(15, 1, true);

console.log(paginator.current_page);
console.log(paginator.data);

The paginator object

The function returns an object that contains the following data:

Always returned:

KeyValue
per_pageItems per page.
current_pageCurrent page number.
fromID of the first item of the current page.
toID of the last item of the current page.
dataThe actual data of the current page.

Returned if isLengthAware == true:

KeyValue
totalTotal items that the full query contains.
last_pageLast page number.