
Security News
White House Authorizes Private Companies to Conduct Offensive Cyber Operations
A new federal program will let vetted U.S. cybersecurity firms help investigate and disrupt foreign cybercrime groups under government direction.
ottoman-paginate
Advanced tools
This Plugin, inspired by mongoose-paginate, offers a simple, yet elegant way to implement pagination with Ottoman.js. You can also alter the return value keys directly in the query itself so that you don't need any extra code for transformation.
yarn add ottoman-paginate
Add the plugin to a schema and then use the paginate method:
const { model, Schema } = require("ottoman");
const ottomanPaginate = require("ottoman-paginate");
const person = new Schema({
name: String,
});
person.plugin(ottomanPaginate);
const PersonModel = model("Person", issueSchema);
PersonModel.paginate().then({}); // Usage
Returns a promise
Parameters
[filter] {Object} - Filter Query. Documentation[options] {Object} - Options passed to Ottoman's find() function along with other custom options for pagination.
[select] {string | string[]} - Fields to return (returns all fields by default). Documentation[sort] {string} - Sort order. Documentation[populate] {string | string[]} - Paths which should be populated with other documents. Documentation[lean] {Boolean}[consistency] {SearchConsistency} - Documentation[noCollection] {undefined | Boolean} - Documentation[populateMaxDeep] {undefined | number} - Documentation[ottomanMetaData=true] {Boolean} - If ottomanMetaData is set to false, it will not include the meta property that is usually present in the response object of Ottoman's find() function.[offset=0] {Number} - Use offset or page to set skip position[page=1] {Number}[limit=10] {Number}[customLabels] {Object} - Add custom labels to manipulate the response data.[pagination] {Boolean} - If pagination is set to false, it will return all docs without adding limit condition. (Default: True)[callback(err, result)] - If specified, the callback is called once pagination results are retrieved or when an error has occurred.Return value
Promise fulfilled with object having properties:
docs {Array} - Array of documentstotalDocs {Number} - Total number of documents in collection that match a querylimit {Number} - Limit that was usedhasPrevPage {Bool} - Availability of previous page.hasNextPage {Bool} - Availability of next page.page {Number} - Current page number.totalPages {Number} - Total number of pages.offset {Number} - Only if specified or default page/offset values were usedprevPage {Number} - Previous page number if available or nullnextPage {Number} - Next page number if available or nullpagingCounter {Number} - The starting index/serial/chronological number of first document in current page. (Eg: if page=2 and limit=10, then pagingCounter will be 11)meta {Object} - Request meta data from Ottoman.paginationMetaData {Object} - Object of pagination meta data (Disabled by default).The above properties can be renamed by setting customLabels attribute.
The following returns the first 10 documents from a collection of 100 documents.
const options = {
page: 1,
limit: 10,
};
Model.paginate({}, options, function (err, result) {
// result.docs
// result.totalDocs = 100
// result.limit = 10
// result.page = 1
// result.totalPages = 10
// result.hasNextPage = true
// result.nextPage = 2
// result.hasPrevPage = false
// result.prevPage = null
// result.pagingCounter = 1
// result.meta
});
You can change the name of the following attributes
You should pass the names of the properties you wish to change using customLabels object in options.
Set the property to false to remove it from the result.
Below is a query with custom labels.
const myCustomLabels = {
totalDocs: "itemCount",
docs: "itemsList",
limit: "perPage",
page: "currentPage",
nextPage: "next",
prevPage: "prev",
totalPages: "pageCount",
pagingCounter: "slNo",
paginationMetaData: "paginator",
};
const options = {
page: 1,
limit: 10,
customLabels: myCustomLabels,
};
Model.paginate({}, options, function (err, result) {
// result.itemsList [here docs becomes itemsList]
// result.paginator.itemCount = 100 [here totalDocs becomes itemCount]
// result.paginator.perPage = 10 [here limit becomes perPage]
// result.paginator.currentPage = 1 [here page becomes currentPage]
// result.paginator.pageCount = 10 [here totalPages becomes pageCount]
// result.paginator.next = 2 [here nextPage becomes next]
// result.paginator.prev = null [here prevPage becomes prev]
// result.paginator.slNo = 1 [here pagingCounter becomes slNo]
// result.paginator.hasNextPage = true
// result.paginator.hasPrevPage = false
});
Using offset and limit:
Model.paginate({}, { offset: 30, limit: 10 }, function (err, result) {
// result.docs
// result.totalPages
// result.limit - 10
// result.offset - 30
});
With promise:
Model.paginate({}, { offset: 30, limit: 10 }).then(function (result) {
// ...
});
var filter = {};
var options = {
select: "title date author",
sort: { date: "DESC" },
populate: "author",
offset: 20,
limit: 10,
ottomanMetaData: false,
};
Book.paginate(filter, options).then(function (result) {
// ...
});
You can use limit=0 to get only the pagination metadata:
Model.paginate({}, { limit: 0 }).then(function (result) {
// result.docs - empty array
// result.totalDocs
// result.limit - 0
});
If you need to fetch all the documents in the collection without applying a limit. Then set the pagination option to false,
const options = {
pagination: false,
};
Model.paginate({}, options, function (err, result) {
// result.docs
// result.totalDocs = 100
// result.limit = 100
// result.page = 1
// result.totalPages = 1
// result.hasNextPage = false
// result.nextPage = null
// result.hasPrevPage = false
// result.prevPage = null
// result.pagingCounter = 1
});
If you find an issue with the package or want to add a nice feature, create an issue or submit a PR.
.env file with your required variables. Check .example.env to see how it's done.yarn test
FAQs
A simple pagination library for Ottoman.js
The npm package ottoman-paginate receives a total of 158 weekly downloads. As such, ottoman-paginate popularity was classified as not popular.
We found that ottoman-paginate demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
A new federal program will let vetted U.S. cybersecurity firms help investigate and disrupt foreign cybercrime groups under government direction.

Research
/Security News
The campaign amassed more than 75,000 installs by targeting Russian-speaking users seeking access to blocked services.

Company News
Open source maintainers are under more pressure than ever. We're raising our open source program from the Team plan to the Business plan, free.