- Add goals feature (models, migrations, API, web pages) - Add reserved/centralized wallet balance service - Add wallet detail page and overview components - Add new UI components (progress, multi-select, FAB) - Remove stray empty -H/-d files from working tree
86 lines
4.3 KiB
JavaScript
Executable File
86 lines
4.3 KiB
JavaScript
Executable File
"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.WalletsBalanceController = void 0;
|
|
const common_1 = require("@nestjs/common");
|
|
const wallet_balance_service_1 = require("./wallet-balance.service");
|
|
const auth_guard_1 = require("../auth/auth.guard");
|
|
let WalletsBalanceController = class WalletsBalanceController {
|
|
walletBalanceService;
|
|
constructor(walletBalanceService) {
|
|
this.walletBalanceService = walletBalanceService;
|
|
}
|
|
async getAllBalances(req) {
|
|
try {
|
|
console.log('[BalanceController] Getting balances for user:', req.user.userId);
|
|
const balances = await this.walletBalanceService.getAllUserWalletBalances(req.user.userId);
|
|
console.log('[BalanceController] Got balances:', balances.length);
|
|
const result = balances.map(balance => ({
|
|
walletId: balance.walletId,
|
|
kind: balance.kind,
|
|
currency: balance.currency,
|
|
unit: balance.unit,
|
|
totalBalance: Number(balance.totalBalance),
|
|
reservedBalance: Number(balance.reservedBalance),
|
|
availableBalance: Number(balance.availableBalance),
|
|
totalUnits: balance.totalUnits ? Number(balance.totalUnits) : undefined,
|
|
pricePerUnit: balance.pricePerUnit ? Number(balance.pricePerUnit) : undefined,
|
|
totalValue: balance.totalValue ? Number(balance.totalValue) : undefined,
|
|
}));
|
|
console.log('[BalanceController] Returning:', result);
|
|
return result;
|
|
}
|
|
catch (error) {
|
|
console.error('[BalanceController] Error getting balances:', error);
|
|
throw error;
|
|
}
|
|
}
|
|
async getBalance(req, walletId) {
|
|
const balance = await this.walletBalanceService.calculateBalance(walletId);
|
|
return {
|
|
walletId: balance.walletId,
|
|
kind: balance.kind,
|
|
currency: balance.currency,
|
|
unit: balance.unit,
|
|
totalBalance: Number(balance.totalBalance),
|
|
reservedBalance: Number(balance.reservedBalance),
|
|
availableBalance: Number(balance.availableBalance),
|
|
totalUnits: balance.totalUnits ? Number(balance.totalUnits) : undefined,
|
|
pricePerUnit: balance.pricePerUnit ? Number(balance.pricePerUnit) : undefined,
|
|
totalValue: balance.totalValue ? Number(balance.totalValue) : undefined,
|
|
};
|
|
}
|
|
};
|
|
exports.WalletsBalanceController = WalletsBalanceController;
|
|
__decorate([
|
|
(0, common_1.Get)('balances'),
|
|
__param(0, (0, common_1.Request)()),
|
|
__metadata("design:type", Function),
|
|
__metadata("design:paramtypes", [Object]),
|
|
__metadata("design:returntype", Promise)
|
|
], WalletsBalanceController.prototype, "getAllBalances", null);
|
|
__decorate([
|
|
(0, common_1.Get)(':id/balance'),
|
|
__param(0, (0, common_1.Request)()),
|
|
__param(1, (0, common_1.Param)('id')),
|
|
__metadata("design:type", Function),
|
|
__metadata("design:paramtypes", [Object, String]),
|
|
__metadata("design:returntype", Promise)
|
|
], WalletsBalanceController.prototype, "getBalance", null);
|
|
exports.WalletsBalanceController = WalletsBalanceController = __decorate([
|
|
(0, common_1.Controller)('wallets'),
|
|
(0, common_1.UseGuards)(auth_guard_1.AuthGuard),
|
|
__metadata("design:paramtypes", [wallet_balance_service_1.WalletBalanceService])
|
|
], WalletsBalanceController);
|
|
//# sourceMappingURL=wallets-balance.controller.js.map
|