Last active
June 6, 2019 13:18
-
-
Save ionutmilica/6141bc95a65d57b1572ab21ef34ba5e4 to your computer and use it in GitHub Desktop.
Simple paginator function for knex
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = (knex) => { | |
return async (query, options) => { | |
const perPage = options.perPage || 10; | |
let page = options.page || 1; | |
const countQuery = knex.count('* as total').from(query.clone().as('inner')); | |
if (page < 1) { | |
page = 1; | |
} | |
const offset = (page - 1) * perPage; | |
query.offset(offset); | |
if (perPage > 0) { | |
query.limit(perPage); | |
} | |
const [data, countRows] = await Promise.all([ | |
query, | |
countQuery | |
]); | |
const total = countRows[0].total; | |
return { | |
pagination: { | |
total: total, | |
perPage, | |
currentPage: page, | |
lastPage: Math.ceil(total / perPage), | |
from: offset, | |
to: offset + data.length, | |
}, | |
data: data | |
}; | |
}; | |
}; | |
/* | |
Usage: | |
const paginator = require('./knex-paginator.js'); | |
const ticketsQuery = knex('tickets').select('*').orderBy('created_at', 'ASC'); | |
paginator(knex)(ticketsQuery, { | |
perPage: 1, | |
}).then(({ data, pagination }) => { | |
console.log(data, pagination); | |
}).catch(err => { | |
console.log(err); | |
}); | |
*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment