- Add Floating Action Button (FAB) with 3 quick actions - Implement Asset Price Update dialog for bulk price updates - Add bulk price update API endpoint with transaction support - Optimize multiselect, calendar, and dropdown options for mobile (44px touch targets) - Add custom date range popover to save space in Overview header - Localize number format suffixes (k/m/b for EN, rb/jt/m for ID) - Localize date format in Financial Trend (Oct 8 vs 8 Okt) - Fix negative values in trend line chart (domain auto) - Improve Asset Price Update dialog layout (compact horizontal) - Add mobile-optimized calendar with responsive cells - Fix FAB overlay and close button position - Add translations for FAB and asset price updates
106 lines
4.4 KiB
JavaScript
106 lines
4.4 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.WalletsController = void 0;
|
|
const common_1 = require("@nestjs/common");
|
|
const wallets_service_1 = require("./wallets.service");
|
|
const transactions_service_1 = require("../transactions/transactions.service");
|
|
const auth_guard_1 = require("../auth/auth.guard");
|
|
let WalletsController = class WalletsController {
|
|
wallets;
|
|
transactions;
|
|
constructor(wallets, transactions) {
|
|
this.wallets = wallets;
|
|
this.transactions = transactions;
|
|
}
|
|
list(req) {
|
|
return this.wallets.list(req.user.userId);
|
|
}
|
|
async getAllTransactions(req) {
|
|
return this.transactions.listAll(req.user.userId);
|
|
}
|
|
create(req, body) {
|
|
if (!body?.name) {
|
|
return { error: 'name is required' };
|
|
}
|
|
return this.wallets.create(req.user.userId, body);
|
|
}
|
|
update(req, id, body) {
|
|
return this.wallets.update(req.user.userId, id, body);
|
|
}
|
|
bulkUpdatePrices(req, body) {
|
|
if (!body?.updates || !Array.isArray(body.updates)) {
|
|
return { error: 'updates array is required' };
|
|
}
|
|
return this.wallets.bulkUpdatePrices(req.user.userId, body.updates);
|
|
}
|
|
delete(req, id) {
|
|
return this.wallets.delete(req.user.userId, id);
|
|
}
|
|
};
|
|
exports.WalletsController = WalletsController;
|
|
__decorate([
|
|
(0, common_1.Get)(),
|
|
__param(0, (0, common_1.Req)()),
|
|
__metadata("design:type", Function),
|
|
__metadata("design:paramtypes", [Object]),
|
|
__metadata("design:returntype", void 0)
|
|
], WalletsController.prototype, "list", null);
|
|
__decorate([
|
|
(0, common_1.Get)('transactions'),
|
|
__param(0, (0, common_1.Req)()),
|
|
__metadata("design:type", Function),
|
|
__metadata("design:paramtypes", [Object]),
|
|
__metadata("design:returntype", Promise)
|
|
], WalletsController.prototype, "getAllTransactions", null);
|
|
__decorate([
|
|
(0, common_1.Post)(),
|
|
__param(0, (0, common_1.Req)()),
|
|
__param(1, (0, common_1.Body)()),
|
|
__metadata("design:type", Function),
|
|
__metadata("design:paramtypes", [Object, Object]),
|
|
__metadata("design:returntype", void 0)
|
|
], WalletsController.prototype, "create", null);
|
|
__decorate([
|
|
(0, common_1.Put)(':id'),
|
|
__param(0, (0, common_1.Req)()),
|
|
__param(1, (0, common_1.Param)('id')),
|
|
__param(2, (0, common_1.Body)()),
|
|
__metadata("design:type", Function),
|
|
__metadata("design:paramtypes", [Object, String, Object]),
|
|
__metadata("design:returntype", void 0)
|
|
], WalletsController.prototype, "update", null);
|
|
__decorate([
|
|
(0, common_1.Patch)('bulk-update-prices'),
|
|
__param(0, (0, common_1.Req)()),
|
|
__param(1, (0, common_1.Body)()),
|
|
__metadata("design:type", Function),
|
|
__metadata("design:paramtypes", [Object, Object]),
|
|
__metadata("design:returntype", void 0)
|
|
], WalletsController.prototype, "bulkUpdatePrices", null);
|
|
__decorate([
|
|
(0, common_1.Delete)(':id'),
|
|
__param(0, (0, common_1.Req)()),
|
|
__param(1, (0, common_1.Param)('id')),
|
|
__metadata("design:type", Function),
|
|
__metadata("design:paramtypes", [Object, String]),
|
|
__metadata("design:returntype", void 0)
|
|
], WalletsController.prototype, "delete", null);
|
|
exports.WalletsController = WalletsController = __decorate([
|
|
(0, common_1.Controller)('wallets'),
|
|
(0, common_1.UseGuards)(auth_guard_1.AuthGuard),
|
|
__metadata("design:paramtypes", [wallets_service_1.WalletsService,
|
|
transactions_service_1.TransactionsService])
|
|
], WalletsController);
|
|
//# sourceMappingURL=wallets.controller.js.map
|