94 lines
3.8 KiB
JavaScript
94 lines
3.8 KiB
JavaScript
"use strict";
|
|
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
};
|
|
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
};
|
|
var __param = (this && this.__param) || function (paramIndex, decorator) {
|
|
return function (target, key) { decorator(target, key, paramIndex); }
|
|
};
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.ProductController = void 0;
|
|
const common_1 = require("@nestjs/common");
|
|
const product_service_1 = require("./product.service");
|
|
const client_1 = require("@prisma/client");
|
|
let ProductController = class ProductController {
|
|
productService;
|
|
constructor(productService) {
|
|
this.productService = productService;
|
|
}
|
|
async getProduct(id) {
|
|
return this.productService.getProduct(Number(id));
|
|
}
|
|
async getProducts(skip, take, search, maxPrice) {
|
|
if (search) {
|
|
return this.productService.searchProducts(search);
|
|
}
|
|
return this.productService.getProducts({
|
|
skip: skip ? Number(skip) : undefined,
|
|
take: take ? Number(take) : undefined,
|
|
where: maxPrice
|
|
? {
|
|
prices: {
|
|
some: {
|
|
regularPrice: {
|
|
lte: Number(maxPrice),
|
|
},
|
|
},
|
|
},
|
|
}
|
|
: undefined,
|
|
});
|
|
}
|
|
async createProduct(data) {
|
|
return this.productService.createProduct(data);
|
|
}
|
|
async updateProduct(id, data) {
|
|
return this.productService.updateProduct({
|
|
where: { id: Number(id) },
|
|
data,
|
|
});
|
|
}
|
|
};
|
|
exports.ProductController = ProductController;
|
|
__decorate([
|
|
(0, common_1.Get)(':id'),
|
|
__param(0, (0, common_1.Param)('id')),
|
|
__metadata("design:type", Function),
|
|
__metadata("design:paramtypes", [String]),
|
|
__metadata("design:returntype", Promise)
|
|
], ProductController.prototype, "getProduct", null);
|
|
__decorate([
|
|
(0, common_1.Get)(),
|
|
__param(0, (0, common_1.Query)('skip')),
|
|
__param(1, (0, common_1.Query)('take')),
|
|
__param(2, (0, common_1.Query)('search')),
|
|
__param(3, (0, common_1.Query)('maxPrice')),
|
|
__metadata("design:type", Function),
|
|
__metadata("design:paramtypes", [String, String, String, String]),
|
|
__metadata("design:returntype", Promise)
|
|
], ProductController.prototype, "getProducts", null);
|
|
__decorate([
|
|
(0, common_1.Post)(),
|
|
__param(0, (0, common_1.Body)()),
|
|
__metadata("design:type", Function),
|
|
__metadata("design:paramtypes", [Object]),
|
|
__metadata("design:returntype", Promise)
|
|
], ProductController.prototype, "createProduct", null);
|
|
__decorate([
|
|
(0, common_1.Put)(':id'),
|
|
__param(0, (0, common_1.Param)('id')),
|
|
__param(1, (0, common_1.Body)()),
|
|
__metadata("design:type", Function),
|
|
__metadata("design:paramtypes", [String, Object]),
|
|
__metadata("design:returntype", Promise)
|
|
], ProductController.prototype, "updateProduct", null);
|
|
exports.ProductController = ProductController = __decorate([
|
|
(0, common_1.Controller)('products'),
|
|
__metadata("design:paramtypes", [product_service_1.ProductService])
|
|
], ProductController);
|
|
//# sourceMappingURL=product.controller.js.map
|