Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/smth-for/mongoose-cursor
Cursor based custom library for Mongoose with customizable labels.
https://github.com/smth-for/mongoose-cursor
cursor-logic mongoose mongoose-cursor mongoosejs
Last synced: 15 days ago
JSON representation
Cursor based custom library for Mongoose with customizable labels.
- Host: GitHub
- URL: https://github.com/smth-for/mongoose-cursor
- Owner: smth-for
- License: mit
- Created: 2020-08-26T13:08:05.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-05-14T14:38:04.000Z (over 3 years ago)
- Last Synced: 2024-11-12T05:38:19.421Z (3 months ago)
- Topics: cursor-logic, mongoose, mongoose-cursor, mongoosejs
- Language: JavaScript
- Size: 562 KB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
[![Banner](static/moongooseCursor.jpg)](https://smth.it)
# mongoose-cursor
[![npm version](https://img.shields.io/npm/v/@smth-for/mongoose-cursor.svg)](https://www.npmjs.com/package/@smth-for/mongoose-cursor)[![Dependency Status](https://david-dm.org/smth-for/moongoose-cursor.svg)](https://david-dm.org/smth-for/moongoose-cursor)
[![devDependency Status](https://david-dm.org/smth-for/moongoose-cursor/dev-status.svg)](https://david-dm.org/smth-for/moongoose-cursor#info=devDependencies)
[![contributions welcome](https://img.shields.io/badge/contributions-welcome-brightgreen.svg?style=flat)](https://github.com/smth-for/moongoose-cursor/issues)
[![Downloads](https://img.shields.io/npm/dm/@smth-for/mongoose-cursor.svg)](https://img.shields.io/npm/dm/@smth-for/mongoose-cursor.svg)
[![HitCount](http://hits.dwyl.com/smth-for/moongoose-cursor.svg)](http://hits.dwyl.com/smth-for/moongoose-cursor)> A cursor based custom library for [Mongoose](http://mongoosejs.com) with customizable labels.
## Why This Plugin
moongoose-cursor is a cursor based library having a cursor wrapper. The plugin can be used as both page as well as cursor pagination. The main usage of the plugin is you can alter the return value keys directly in the query itself so that you don't need any extra code for transformation.The below documentation is in progress. Feel free to contribute. :)
## Installation
```sh
npm install @smth-for/mongoose-cursor
```## Usage
Add plugin to a schema and then use model `cursor` method:
```js
const mongoose = require('mongoose');
const moongooseCursor = require('moongoose-cursor');const mySchema = new mongoose.Schema({
/* your schema definition */
});mySchema.plugin(moongooseCursor);
const myModel = mongoose.model('SampleModel', mySchema);
myModel.cursor().then({}) // Usage
```### Model.cursor([query], [options], [callback])
Returns promise
**Parameters**
* `[query]` {Object} - Query criteria. [Documentation](https://docs.mongodb.org/manual/tutorial/query-documents)
* `[options]` {Object}
- `[select]` {Object | String} - Fields to return (by default returns all fields). [Documentation](http://mongoosejs.com/docs/api.html#query_Query-select)
- `[collation]` {Object} - Specify the collation [Documentation](https://docs.mongodb.com/manual/reference/collation/)
- `[sort]` {Object | String} - Sort order. [Documentation](http://mongoosejs.com/docs/api.html#query_Query-sort)
- `[populate]` {Array | Object | String} - Paths which should be populated with other documents. [Documentation](http://mongoosejs.com/docs/api.html#query_Query-populate)
- `[projection]` {String | Object} - Get/set the query projection. [Documentation](https://mongoosejs.com/docs/api/query.html#query_Query-projection)
- `[lean=false]` {Boolean} - Should return plain javascript objects instead of Mongoose documents? [Documentation](http://mongoosejs.com/docs/api.html#query_Query-lean)
- `[leanWithId=true]` {Boolean} - If `lean` and `leanWithId` are `true`, adds `id` field with string representation of `_id` to every document
- `[limit=10]` {Number}
- `[customLabels]` {Object} - Developers can provide custom labels for manipulating the response data.
- `[key]` {String} - Key field in Scheme for apply a cursor logic (Default: `_id`)
- `[startingAfter]` {String} - Apply a cursor logic for starting result after value (Default: null)
- `[endingBefore]` {String} - Apply a cursor logic for ending result before value (Default: null)
- `[forceCountFn]` {Boolean} - Set this to true, if you need to support $geo queries.
- `[read]` {Object} - Determines the MongoDB nodes from which to read. Below are the available options.
- `[pref]`: One of the listed preference options or aliases.
- `[tags]`: Optional tags for this query. (Must be used with `[pref]`)
- `[options]` {Object} - Options passed to Mongoose's `find()` function. [Documentation](https://mongoosejs.com/docs/api.html#query_Query-setOptions)**Return value**
Promise fulfilled with object having properties:
* `docs` {Array} - Array of documents
* `totalDocs` {Number} - Total number of documents in collection that match a query
* `limit` {Number} - Limit that was used
* `hasMore` {Boolean} - Result have a another docs
* `startingAfter` {String} - Appling a cursor logic for starting result after value (Default: null)
* `endingBefore` {String} - Appling a cursor logic for ending result before value (Default: null)
* `meta` {Object} - Object of pagination meta data (Default false).Please note that the above properties can be renamed by setting customLabels attribute.
### Sample Usage
#### Return first 10 documents from 100
```javascript
const options = {
limit: 10,
collation: {
locale: 'en'
}
};Model.cursor({}, options, function(err, result) {
// result.docs
// result.totalDocs = 100
// result.limit = 10
// result.hasMore = true
});
```### With custom return labels
Now developers can specify the return field names if they want. Below are the list of attributes whose name can be changed.
* totalDocs
* docs
* limit
* key
* hasMore
* startingAfter
* endingBefore
* metaYou should pass the names of the properties you wish to changes using `customLabels` object in options.
Set the property to false to remove it from the result.
Same query with custom labels```javascript
const myCustomLabels = {
totalDocs: 'itemCount',
docs: 'itemsList',
limit: 'limit',
hasMore: 'another',
startingAfter: 'starting',
endingBefore: 'endingBefore',
meta: 'meta'
};const options = {
limit: 10,
customLabels: myCustomLabels
};Model.cursor({}, options, function(err, result) {
// result.itemsList [here docs become itemsList]
// result.meta.itemCount = 100 [here totalDocs becomes itemCount]
});
```With promise:
```js
Model.cursor({}, { limit: 10 }).then(function(result) {
// ...
});
```#### More advanced example
```javascript
var query = {};
var options = {
select: 'title date author',
sort: { date: -1 },
populate: 'author',
lean: true,
limit: 10
};Book.cursor(query, options).then(function(result) {
// ...
});
```#### Zero limit
You can use `limit=0` to get only metadata:
```javascript
Model.cursor({}, { limit: 0 }).then(function(result) {
// result.docs - empty array
// result.totalDocs
// result.limit - 0
});
```#### Set custom default options for all queries
config.js:
```javascript
var mongoosePaginate = require('moongoose-cursor');mongoosePaginate.cursor.options = {
lean: true,
limit: 20
};
```controller.js:
```javascript
Model.cursor().then(function(result) {
// result.docs - array of plain javascript objects
// result.limit - 20
});
```#### Fetch all docs without cursor.
If you need to fetch all the documents in the collection without applying a limit. Then set `cursor` as false,```javascript
const options = {
pagination: false
};Model.cursor({}, options, function(err, result) {
// result.docs
// result.totalDocs = 100
// result.limit = 100
});
```#### Setting read preference.
Determines the MongoDB nodes from which to read.```js
const options = {
lean: true,
limit: 10,
read: {
pref: 'secondary',
tags: [{
region: 'South'
}]
}
};
Model.cursor({}, options, function(err, result) {
// Result
});
```Below are some references to understand more about preferences,
- https://github.com/Automattic/mongoose/blob/master/lib/query.js#L1008
- https://docs.mongodb.com/manual/core/read-preference/
- http://mongodb.github.io/node-mongodb-native/driver-articles/anintroductionto1_1and2_2.html#read-preferences## Note
There are few operators that this plugin does not support natively, below are the list and suggested replacements,* $where: $expr
* $near: $geoWithin with $center
* $nearSphere: $geoWithin with $centerSphereBut we have added another option. So if you need to use $near and $nearSphere please set `forceCountFn` as true and try running the query.
```js
const options = {
lean: true,
limit: 10,
forceCountFn: true
};
Model.cursor({}, options, function(err, result) {
// Result
});
```## Join SMTH Community
![Discord Banner 2](https://discordapp.com/api/guilds/748546400631128204/widget.png?style=banner2)[INVITATION LINK](https://discord.gg/H6NkzZy)
## Code of Conduct
[![Contributor Covenant](https://img.shields.io/badge/Contributor%20Covenant-v2.0%20adopted-ff69b4.svg)](CODE_OF_CONDUCT.md)## License
[MIT](LICENSE)
## Special Thanks
* [mongoose-paginate-v2](https://github.com/aravindnc/mongoose-paginate-v2)