diff --git a/apps/api/src/app/account/account.controller.ts b/apps/api/src/app/account/account.controller.ts index 581e52c0b..69a4f827a 100644 --- a/apps/api/src/app/account/account.controller.ts +++ b/apps/api/src/app/account/account.controller.ts @@ -47,6 +47,20 @@ export class AccountController { ); } + const account = await this.accountService.account({ + id_userId: { + id, + userId: this.request.user.id + } + }); + + if (account.isDefault) { + throw new HttpException( + getReasonPhrase(StatusCodes.FORBIDDEN), + StatusCodes.FORBIDDEN + ); + } + return this.accountService.deleteAccount( { id_userId: { @@ -70,7 +84,7 @@ export class AccountController { let accounts = await this.accountService.accounts({ include: { Platform: true }, - orderBy: { name: 'desc' }, + orderBy: { name: 'asc' }, where: { userId: impersonationUserId || this.request.user.id } }); @@ -166,6 +180,13 @@ export class AccountController { } }); + if (!originalAccount) { + throw new HttpException( + getReasonPhrase(StatusCodes.FORBIDDEN), + StatusCodes.FORBIDDEN + ); + } + if (data.platformId) { const platformId = data.platformId; delete data.platformId; diff --git a/apps/api/src/app/account/create-account.dto.ts b/apps/api/src/app/account/create-account.dto.ts index 9134a3f1d..c5e5275ab 100644 --- a/apps/api/src/app/account/create-account.dto.ts +++ b/apps/api/src/app/account/create-account.dto.ts @@ -1,35 +1,14 @@ -import { Currency, DataSource, Type } from '@prisma/client'; -import { IsISO8601, IsNumber, IsString, ValidateIf } from 'class-validator'; +import { AccountType } from '@prisma/client'; +import { IsString, ValidateIf } from 'class-validator'; export class CreateAccountDto { @IsString() - accountId: string; + accountType: AccountType; @IsString() - currency: Currency; - - @IsString() - dataSource: DataSource; - - @IsISO8601() - date: string; - - @IsNumber() - fee: number; + name: string; @IsString() @ValidateIf((object, value) => value !== null) platformId: string | null; - - @IsNumber() - quantity: number; - - @IsString() - symbol: string; - - @IsString() - type: Type; - - @IsNumber() - unitPrice: number; } diff --git a/apps/api/src/app/account/interfaces/order-with-platform.type.ts b/apps/api/src/app/account/interfaces/order-with-platform.type.ts deleted file mode 100644 index 10cc70e1a..000000000 --- a/apps/api/src/app/account/interfaces/order-with-platform.type.ts +++ /dev/null @@ -1,3 +0,0 @@ -import { Order, Platform } from '@prisma/client'; - -export type OrderWithPlatform = Order & { Platform?: Platform }; diff --git a/apps/api/src/app/account/update-account.dto.ts b/apps/api/src/app/account/update-account.dto.ts index 9c31ed5df..ee5e21a9e 100644 --- a/apps/api/src/app/account/update-account.dto.ts +++ b/apps/api/src/app/account/update-account.dto.ts @@ -1,38 +1,17 @@ -import { Currency, DataSource, Type } from '@prisma/client'; -import { IsISO8601, IsNumber, IsString, ValidateIf } from 'class-validator'; +import { AccountType } from '@prisma/client'; +import { IsString, ValidateIf } from 'class-validator'; export class UpdateAccountDto { @IsString() - accountId: string; + accountType: AccountType; @IsString() - currency: Currency; + id: string; @IsString() - dataSource: DataSource; - - @IsISO8601() - date: string; - - @IsNumber() - fee: number; + name: string; @IsString() @ValidateIf((object, value) => value !== null) platformId: string | null; - - @IsString() - id: string; - - @IsNumber() - quantity: number; - - @IsString() - symbol: string; - - @IsString() - type: Type; - - @IsNumber() - unitPrice: number; } diff --git a/apps/api/src/app/order/order.controller.ts b/apps/api/src/app/order/order.controller.ts index 0c459b2a7..fa6d2724d 100644 --- a/apps/api/src/app/order/order.controller.ts +++ b/apps/api/src/app/order/order.controller.ts @@ -184,6 +184,13 @@ export class OrderController { } }); + if (!originalOrder) { + throw new HttpException( + getReasonPhrase(StatusCodes.FORBIDDEN), + StatusCodes.FORBIDDEN + ); + } + const date = parseISO(data.date); const accountId = data.accountId; diff --git a/apps/client/src/app/components/accounts-table/accounts-table.component.html b/apps/client/src/app/components/accounts-table/accounts-table.component.html index 5796d82ac..2b7a1f3a3 100644 --- a/apps/client/src/app/components/accounts-table/accounts-table.component.html +++ b/apps/client/src/app/components/accounts-table/accounts-table.component.html @@ -64,7 +64,12 @@ - diff --git a/apps/client/src/app/components/accounts-table/accounts-table.component.ts b/apps/client/src/app/components/accounts-table/accounts-table.component.ts index a35751172..b3e2c41e3 100644 --- a/apps/client/src/app/components/accounts-table/accounts-table.component.ts +++ b/apps/client/src/app/components/accounts-table/accounts-table.component.ts @@ -13,7 +13,7 @@ import { MatDialog } from '@angular/material/dialog'; import { MatSort } from '@angular/material/sort'; import { MatTableDataSource } from '@angular/material/table'; import { ActivatedRoute, Router } from '@angular/router'; -import { Order as OrderModel } from '@prisma/client'; +import { Account as AccountModel } from '@prisma/client'; import { Subject, Subscription } from 'rxjs'; @Component({ @@ -23,18 +23,18 @@ import { Subject, Subscription } from 'rxjs'; styleUrls: ['./accounts-table.component.scss'] }) export class AccountsTableComponent implements OnChanges, OnDestroy, OnInit { - @Input() accounts: OrderModel[]; + @Input() accounts: AccountModel[]; @Input() baseCurrency: string; @Input() deviceType: string; @Input() locale: string; @Input() showActions: boolean; @Output() accountDeleted = new EventEmitter(); - @Output() accountToUpdate = new EventEmitter(); + @Output() accountToUpdate = new EventEmitter(); @ViewChild(MatSort) sort: MatSort; - public dataSource: MatTableDataSource = new MatTableDataSource(); + public dataSource: MatTableDataSource = new MatTableDataSource(); public displayedColumns = []; public isLoading = true; public routeQueryParams: Subscription; @@ -52,12 +52,12 @@ export class AccountsTableComponent implements OnChanges, OnDestroy, OnInit { public ngOnChanges() { this.displayedColumns = ['account', 'type', 'platform']; - this.isLoading = true; - if (this.showActions) { this.displayedColumns.push('actions'); } + this.isLoading = true; + if (this.accounts) { this.dataSource = new MatTableDataSource(this.accounts); this.dataSource.sort = this.sort; @@ -74,7 +74,7 @@ export class AccountsTableComponent implements OnChanges, OnDestroy, OnInit { } } - public onUpdateAccount(aAccount: OrderModel) { + public onUpdateAccount(aAccount: AccountModel) { this.accountToUpdate.emit(aAccount); } diff --git a/apps/client/src/app/components/header/header.component.html b/apps/client/src/app/components/header/header.component.html index d48791d07..9f1497436 100644 --- a/apps/client/src/app/components/header/header.component.html +++ b/apps/client/src/app/components/header/header.component.html @@ -163,7 +163,7 @@ i18n mat-menu-item [ngClass]="{ 'font-weight-bold': currentRoute === 'account' }" - >AccountGhostfolio Account { - const transaction: UpdateOrderDto = data?.transaction; + const account: UpdateAccountDto = data?.account; - if (transaction) { - this.dataService.putAccount(transaction).subscribe({ + if (account) { + this.dataService.putAccount(account).subscribe({ next: () => { this.fetchAccounts(); } @@ -179,19 +165,10 @@ export class AccountsPageComponent implements OnInit { private openCreateAccountDialog(): void { const dialogRef = this.dialog.open(CreateOrUpdateAccountDialog, { data: { - accounts: this.user?.accounts, - transaction: { - accountId: this.user?.accounts.find((account) => { - return account.isDefault; - })?.id, - currency: null, - date: new Date(), - fee: 0, - platformId: null, - quantity: null, - symbol: null, - type: 'BUY', - unitPrice: null + account: { + accountType: AccountType.SECURITIES, + name: null, + platformId: null } }, height: this.deviceType === 'mobile' ? '97.5vh' : '80vh', @@ -199,10 +176,10 @@ export class AccountsPageComponent implements OnInit { }); dialogRef.afterClosed().subscribe((data: any) => { - const transaction: UpdateOrderDto = data?.transaction; + const account: CreateAccountDto = data?.account; - if (transaction) { - this.dataService.postAccount(transaction).subscribe({ + if (account) { + this.dataService.postAccount(account).subscribe({ next: () => { this.fetchAccounts(); } diff --git a/apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.component.ts b/apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.component.ts index 24a7df79b..1ab5accb3 100644 --- a/apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.component.ts +++ b/apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.component.ts @@ -1,47 +1,25 @@ -import { - ChangeDetectionStrategy, - ChangeDetectorRef, - Component, - Inject -} from '@angular/core'; -import { FormControl, Validators } from '@angular/forms'; -import { MatAutocompleteSelectedEvent } from '@angular/material/autocomplete'; +import { ChangeDetectionStrategy, Component, Inject } from '@angular/core'; import { MAT_DIALOG_DATA, MatDialogRef } from '@angular/material/dialog'; -import { LookupItem } from '@ghostfolio/api/app/symbol/interfaces/lookup-item.interface'; import { Currency } from '@prisma/client'; -import { Observable, Subject } from 'rxjs'; -import { - debounceTime, - distinctUntilChanged, - startWith, - switchMap, - takeUntil -} from 'rxjs/operators'; +import { Subject } from 'rxjs'; import { DataService } from '../../../services/data.service'; import { CreateOrUpdateAccountDialogParams } from './interfaces/interfaces'; @Component({ host: { class: 'h-100' }, - selector: 'create-or-update-account-dialog', + selector: 'gf-create-or-update-account-dialog', changeDetection: ChangeDetectionStrategy.OnPush, styleUrls: ['./create-or-update-account-dialog.scss'], templateUrl: 'create-or-update-account-dialog.html' }) export class CreateOrUpdateAccountDialog { public currencies: Currency[] = []; - public filteredLookupItems: Observable; - public isLoading = false; public platforms: { id: string; name: string }[]; - public searchSymbolCtrl = new FormControl( - this.data.transaction.symbol, - Validators.required - ); private unsubscribeSubject = new Subject(); public constructor( - private cd: ChangeDetectorRef, private dataService: DataService, public dialogRef: MatDialogRef, @Inject(MAT_DIALOG_DATA) public data: CreateOrUpdateAccountDialogParams @@ -52,51 +30,12 @@ export class CreateOrUpdateAccountDialog { this.currencies = currencies; this.platforms = platforms; }); - - this.filteredLookupItems = this.searchSymbolCtrl.valueChanges.pipe( - startWith(''), - debounceTime(400), - distinctUntilChanged(), - switchMap((aQuery: string) => { - if (aQuery) { - return this.dataService.fetchSymbols(aQuery); - } - - return []; - }) - ); } public onCancel(): void { this.dialogRef.close(); } - public onUpdateSymbol(event: MatAutocompleteSelectedEvent) { - this.isLoading = true; - this.data.transaction.symbol = event.option.value; - - this.dataService - .fetchSymbolItem(this.data.transaction.symbol) - .pipe(takeUntil(this.unsubscribeSubject)) - .subscribe(({ currency, dataSource, marketPrice }) => { - this.data.transaction.currency = currency; - this.data.transaction.dataSource = dataSource; - this.data.transaction.unitPrice = marketPrice; - - this.isLoading = false; - - this.cd.markForCheck(); - }); - } - - public onUpdateSymbolByTyping(value: string) { - this.data.transaction.currency = null; - this.data.transaction.dataSource = null; - this.data.transaction.unitPrice = null; - - this.data.transaction.symbol = value; - } - public ngOnDestroy() { this.unsubscribeSubject.next(); this.unsubscribeSubject.complete(); diff --git a/apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html b/apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html index bfadfd8a0..985bd135a 100644 --- a/apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html +++ b/apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html @@ -1,145 +1,25 @@
-

Update account

-

Add account

+

Update account

+

Add account

- Symbol or ISIN - - - - - {{ lookupItem.symbol | gfSymbol }}{{ lookupItem.name }} - - - - + Name +
Type - - BUY - SELL - - -
-
- - Currency - - {{ currency }} - - -
-
- - Data Source - - -
-
- - Date - - - - -
-
- - Fee - - -
-
- - Quantity - - -
-
- - Unit Price - - -
-
- - Account - - {{ account.name }} + + SECURITIES
Platform - + {{ platform.name }} Save diff --git a/apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.module.ts b/apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.module.ts index f0990f4a7..4d7b0da77 100644 --- a/apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.module.ts +++ b/apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.module.ts @@ -1,15 +1,11 @@ import { CommonModule } from '@angular/common'; import { NgModule } from '@angular/core'; import { FormsModule, ReactiveFormsModule } from '@angular/forms'; -import { MatAutocompleteModule } from '@angular/material/autocomplete'; import { MatButtonModule } from '@angular/material/button'; -import { MatDatepickerModule } from '@angular/material/datepicker'; import { MatDialogModule } from '@angular/material/dialog'; import { MatFormFieldModule } from '@angular/material/form-field'; import { MatInputModule } from '@angular/material/input'; -import { MatProgressSpinnerModule } from '@angular/material/progress-spinner'; import { MatSelectModule } from '@angular/material/select'; -import { GfSymbolModule } from '@ghostfolio/client/pipes/symbol/symbol.module'; import { CreateOrUpdateAccountDialog } from './create-or-update-account-dialog.component'; @@ -18,15 +14,11 @@ import { CreateOrUpdateAccountDialog } from './create-or-update-account-dialog.c exports: [], imports: [ CommonModule, - GfSymbolModule, FormsModule, - MatAutocompleteModule, MatButtonModule, - MatDatepickerModule, MatDialogModule, MatFormFieldModule, MatInputModule, - MatProgressSpinnerModule, MatSelectModule, ReactiveFormsModule ], diff --git a/apps/client/src/app/pages/accounts/create-or-update-account-dialog/interfaces/interfaces.ts b/apps/client/src/app/pages/accounts/create-or-update-account-dialog/interfaces/interfaces.ts index 51cb3bdda..ffe4f14f6 100644 --- a/apps/client/src/app/pages/accounts/create-or-update-account-dialog/interfaces/interfaces.ts +++ b/apps/client/src/app/pages/accounts/create-or-update-account-dialog/interfaces/interfaces.ts @@ -1,9 +1,5 @@ import { Account } from '@prisma/client'; -import { Order } from '../../interfaces/order.interface'; - export interface CreateOrUpdateAccountDialogParams { - accountId: string; - accounts: Account[]; - transaction: Order; + account: Account; } diff --git a/apps/client/src/app/pages/accounts/interfaces/order.interface.ts b/apps/client/src/app/pages/accounts/interfaces/order.interface.ts deleted file mode 100644 index 12f6626a2..000000000 --- a/apps/client/src/app/pages/accounts/interfaces/order.interface.ts +++ /dev/null @@ -1,15 +0,0 @@ -import { Currency, DataSource } from '@prisma/client'; - -export interface Order { - accountId: string; - currency: Currency; - dataSource: DataSource; - date: Date; - fee: number; - id: string; - quantity: number; - platformId: string; - symbol: string; - type: string; - unitPrice: number; -} diff --git a/apps/client/src/app/pages/transactions/create-or-update-transaction-dialog/interfaces/interfaces.ts b/apps/client/src/app/pages/transactions/create-or-update-transaction-dialog/interfaces/interfaces.ts index 66a62eecc..89223e404 100644 --- a/apps/client/src/app/pages/transactions/create-or-update-transaction-dialog/interfaces/interfaces.ts +++ b/apps/client/src/app/pages/transactions/create-or-update-transaction-dialog/interfaces/interfaces.ts @@ -1,6 +1,4 @@ -import { Account } from '@prisma/client'; - -import { Order } from '../../interfaces/order.interface'; +import { Account, Order } from '@prisma/client'; export interface CreateOrUpdateTransactionDialogParams { accountId: string; diff --git a/apps/client/src/app/pages/transactions/interfaces/order.interface.ts b/apps/client/src/app/pages/transactions/interfaces/order.interface.ts deleted file mode 100644 index 12f6626a2..000000000 --- a/apps/client/src/app/pages/transactions/interfaces/order.interface.ts +++ /dev/null @@ -1,15 +0,0 @@ -import { Currency, DataSource } from '@prisma/client'; - -export interface Order { - accountId: string; - currency: Currency; - dataSource: DataSource; - date: Date; - fee: number; - id: string; - quantity: number; - platformId: string; - symbol: string; - type: string; - unitPrice: number; -} diff --git a/apps/client/src/app/pages/transactions/transactions-page.component.ts b/apps/client/src/app/pages/transactions/transactions-page.component.ts index 10b522316..7e9304d2b 100644 --- a/apps/client/src/app/pages/transactions/transactions-page.component.ts +++ b/apps/client/src/app/pages/transactions/transactions-page.component.ts @@ -1,6 +1,7 @@ import { ChangeDetectorRef, Component, OnInit } from '@angular/core'; import { MatDialog } from '@angular/material/dialog'; import { ActivatedRoute, Router } from '@angular/router'; +import { CreateOrderDto } from '@ghostfolio/api/app/order/create-order.dto'; import { UpdateOrderDto } from '@ghostfolio/api/app/order/update-order.dto'; import { User } from '@ghostfolio/api/app/user/interfaces/user.interface'; import { DataService } from '@ghostfolio/client/services/data.service'; @@ -199,7 +200,7 @@ export class TransactionsPageComponent implements OnInit { }); dialogRef.afterClosed().subscribe((data: any) => { - const transaction: UpdateOrderDto = data?.transaction; + const transaction: CreateOrderDto = data?.transaction; if (transaction) { this.dataService.postOrder(transaction).subscribe({ diff --git a/apps/client/src/app/services/data.service.ts b/apps/client/src/app/services/data.service.ts index fec978c49..d7232227d 100644 --- a/apps/client/src/app/services/data.service.ts +++ b/apps/client/src/app/services/data.service.ts @@ -1,9 +1,11 @@ import { HttpClient } from '@angular/common/http'; import { Injectable } from '@angular/core'; import { Access } from '@ghostfolio/api/app/access/interfaces/access.interface'; +import { CreateAccountDto } from '@ghostfolio/api/app/account/create-account.dto'; import { UpdateAccountDto } from '@ghostfolio/api/app/account/update-account.dto'; import { AdminData } from '@ghostfolio/api/app/admin/interfaces/admin-data.interface'; import { InfoItem } from '@ghostfolio/api/app/info/interfaces/info-item.interface'; +import { CreateOrderDto } from '@ghostfolio/api/app/order/create-order.dto'; import { UpdateOrderDto } from '@ghostfolio/api/app/order/update-order.dto'; import { PortfolioItem } from '@ghostfolio/api/app/portfolio/interfaces/portfolio-item.interface'; import { PortfolioOverview } from '@ghostfolio/api/app/portfolio/interfaces/portfolio-overview.interface'; @@ -20,6 +22,7 @@ import { UserItem } from '@ghostfolio/api/app/user/interfaces/user-item.interfac import { User } from '@ghostfolio/api/app/user/interfaces/user.interface'; import { UpdateUserSettingsDto } from '@ghostfolio/api/app/user/update-user-settings.dto'; import { Order as OrderModel } from '@prisma/client'; +import { Account as AccountModel } from '@prisma/client'; @Injectable({ providedIn: 'root' @@ -30,7 +33,7 @@ export class DataService { public constructor(private http: HttpClient) {} public fetchAccounts() { - return this.http.get('/api/account'); + return this.http.get('/api/account'); } public fetchAdminData() { @@ -117,11 +120,11 @@ export class DataService { return this.http.get(`/api/auth/anonymous/${accessToken}`); } - public postAccount(aAccount: UpdateAccountDto) { + public postAccount(aAccount: CreateAccountDto) { return this.http.post(`/api/account`, aAccount); } - public postOrder(aOrder: UpdateOrderDto) { + public postOrder(aOrder: CreateOrderDto) { return this.http.post(`/api/order`, aOrder); } diff --git a/libs/helper/src/lib/permissions.ts b/libs/helper/src/lib/permissions.ts index 5a2eb313f..8964d770d 100644 --- a/libs/helper/src/lib/permissions.ts +++ b/libs/helper/src/lib/permissions.ts @@ -32,9 +32,12 @@ export function getPermissions(aRole: Role): string[] { case 'ADMIN': return [ permissions.accessAdminControl, + permissions.createAccount, permissions.createOrder, + permissions.deleteAccount, permissions.deleteOrder, permissions.readForeignPortfolio, + permissions.updateAccount, permissions.updateOrder, permissions.updateUserSettings ]; @@ -44,8 +47,11 @@ export function getPermissions(aRole: Role): string[] { case 'USER': return [ + permissions.createAccount, permissions.createOrder, + permissions.deleteAccount, permissions.deleteOrder, + permissions.updateAccount, permissions.updateOrder, permissions.updateUserSettings ];