93 lines
4.2 KiB
JavaScript
93 lines
4.2 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.UserController = void 0;
|
|
const common_1 = require("@nestjs/common");
|
|
const user_service_1 = require("./user.service");
|
|
let UserController = class UserController {
|
|
userService;
|
|
constructor(userService) {
|
|
this.userService = userService;
|
|
}
|
|
async getWatchlist(userId) {
|
|
return this.userService.getWatchlist(Number(userId));
|
|
}
|
|
async addToWatchlist(userId, data) {
|
|
return this.userService.addToWatchlist(Number(userId), data.productId);
|
|
}
|
|
async removeFromWatchlist(userId, productId) {
|
|
return this.userService.removeFromWatchlist(Number(userId), Number(productId));
|
|
}
|
|
async getNotifications(userId) {
|
|
return this.userService.getNotifications(Number(userId));
|
|
}
|
|
async configureNotification(userId, data) {
|
|
return this.userService.configureNotification(Number(userId), data);
|
|
}
|
|
async removeNotification(userId, productId) {
|
|
return this.userService.removeNotification(Number(userId), Number(productId));
|
|
}
|
|
};
|
|
exports.UserController = UserController;
|
|
__decorate([
|
|
(0, common_1.Get)(':userId/watchlist'),
|
|
__param(0, (0, common_1.Param)('userId')),
|
|
__metadata("design:type", Function),
|
|
__metadata("design:paramtypes", [String]),
|
|
__metadata("design:returntype", Promise)
|
|
], UserController.prototype, "getWatchlist", null);
|
|
__decorate([
|
|
(0, common_1.Post)(':userId/watchlist'),
|
|
__param(0, (0, common_1.Param)('userId')),
|
|
__param(1, (0, common_1.Body)()),
|
|
__metadata("design:type", Function),
|
|
__metadata("design:paramtypes", [String, Object]),
|
|
__metadata("design:returntype", Promise)
|
|
], UserController.prototype, "addToWatchlist", null);
|
|
__decorate([
|
|
(0, common_1.Delete)(':userId/watchlist/:productId'),
|
|
__param(0, (0, common_1.Param)('userId')),
|
|
__param(1, (0, common_1.Param)('productId')),
|
|
__metadata("design:type", Function),
|
|
__metadata("design:paramtypes", [String, String]),
|
|
__metadata("design:returntype", Promise)
|
|
], UserController.prototype, "removeFromWatchlist", null);
|
|
__decorate([
|
|
(0, common_1.Get)(':userId/notifications'),
|
|
__param(0, (0, common_1.Param)('userId')),
|
|
__metadata("design:type", Function),
|
|
__metadata("design:paramtypes", [String]),
|
|
__metadata("design:returntype", Promise)
|
|
], UserController.prototype, "getNotifications", null);
|
|
__decorate([
|
|
(0, common_1.Post)(':userId/notifications'),
|
|
__param(0, (0, common_1.Param)('userId')),
|
|
__param(1, (0, common_1.Body)()),
|
|
__metadata("design:type", Function),
|
|
__metadata("design:paramtypes", [String, Object]),
|
|
__metadata("design:returntype", Promise)
|
|
], UserController.prototype, "configureNotification", null);
|
|
__decorate([
|
|
(0, common_1.Delete)(':userId/notifications/:productId'),
|
|
__param(0, (0, common_1.Param)('userId')),
|
|
__param(1, (0, common_1.Param)('productId')),
|
|
__metadata("design:type", Function),
|
|
__metadata("design:paramtypes", [String, String]),
|
|
__metadata("design:returntype", Promise)
|
|
], UserController.prototype, "removeNotification", null);
|
|
exports.UserController = UserController = __decorate([
|
|
(0, common_1.Controller)('users'),
|
|
__metadata("design:paramtypes", [user_service_1.UserService])
|
|
], UserController);
|
|
//# sourceMappingURL=user.controller.js.map
|