Skip to content

Commit ac8727b

Browse files
committed
Added limit query to products
1 parent 81baaa4 commit ac8727b

File tree

2 files changed

+30
-15
lines changed

2 files changed

+30
-15
lines changed

controllers/productController.js

+10-9
Original file line numberDiff line numberDiff line change
@@ -23,18 +23,19 @@ function ifObjectIsEmpty(object) {
2323

2424
exports.getAllProducts = catchAsync(async (req, res, next) => {
2525
const products = new APIFeatures(Product.find(), req.query)
26-
.filter()
26+
?.filter()
2727
?.sort()
28-
?.limitFields();
28+
?.limitFields()
29+
?.limitResults();
2930

3031
// Check if valid promise is got
31-
if (!products)
32-
return next(
33-
new AppError(
34-
'Please provide a valid query parameters check documentation!',
35-
400
36-
)
37-
);
32+
// if (!products)
33+
// return next(
34+
// new AppError(
35+
// 'Please provide a valid query parameters check documentation!',
36+
// 400
37+
// )
38+
// );
3839

3940
const result = await products.model;
4041
// check if first item got any item in there

utils/apiFeatures.js

+20-6
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,20 @@ class APIFeatures {
55
}
66

77
filter() {
8-
const queryObj = { ...this.queryString };
9-
const excludedFields = ['sort', 'fields', 'limit'];
10-
excludedFields.forEach((el) => delete queryObj[el]);
8+
if (this.queryString) {
9+
const queryObj = { ...this.queryString };
10+
const excludedFields = ['sort', 'fields', 'limit'];
11+
excludedFields.forEach((el) => delete queryObj[el]);
1112

12-
let queryStr = JSON.stringify(queryObj);
13-
queryStr = queryStr.replace(/\b(gt|gte|lt|lte)\b/g, (match) => `$${match}`);
13+
let queryStr = JSON.stringify(queryObj);
14+
queryStr = queryStr.replace(
15+
/\b(gt|gte|lt|lte)\b/g,
16+
(match) => `$${match}`
17+
);
1418

15-
this.model = this.model.find(JSON.parse(queryStr));
19+
this.model = this.model.find(JSON.parse(queryStr));
20+
return this;
21+
}
1622
return this;
1723
}
1824

@@ -40,6 +46,14 @@ class APIFeatures {
4046

4147
return this;
4248
}
49+
50+
limitResults() {
51+
if (this.queryString.limit) {
52+
this.model = this.model.limit(this.queryString.limit * 1);
53+
return this;
54+
}
55+
return this;
56+
}
4357
}
4458

4559
module.exports = APIFeatures;

0 commit comments

Comments
 (0)