mirror of https://github.com/ghostfolio/ghostfolio
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
85 lines
2.0 KiB
85 lines
2.0 KiB
import {
|
|
ChangeDetectionStrategy,
|
|
Component,
|
|
EventEmitter,
|
|
Input,
|
|
OnChanges,
|
|
OnDestroy,
|
|
OnInit,
|
|
Output
|
|
} from '@angular/core';
|
|
import { MatTableDataSource } from '@angular/material/table';
|
|
import { Account as AccountModel } from '@prisma/client';
|
|
import { Subject, Subscription } from 'rxjs';
|
|
|
|
@Component({
|
|
selector: 'gf-accounts-table',
|
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
templateUrl: './accounts-table.component.html',
|
|
styleUrls: ['./accounts-table.component.scss']
|
|
})
|
|
export class AccountsTableComponent implements OnChanges, OnDestroy, OnInit {
|
|
@Input() accounts: AccountModel[];
|
|
@Input() baseCurrency: string;
|
|
@Input() deviceType: string;
|
|
@Input() locale: string;
|
|
@Input() showActions: boolean;
|
|
@Input() totalBalanceInBaseCurrency: number;
|
|
@Input() totalValueInBaseCurrency: number;
|
|
@Input() transactionCount: number;
|
|
|
|
@Output() accountDeleted = new EventEmitter<string>();
|
|
@Output() accountToUpdate = new EventEmitter<AccountModel>();
|
|
|
|
public dataSource: MatTableDataSource<AccountModel> =
|
|
new MatTableDataSource();
|
|
public displayedColumns = [];
|
|
public isLoading = true;
|
|
public routeQueryParams: Subscription;
|
|
|
|
private unsubscribeSubject = new Subject<void>();
|
|
|
|
public constructor() {}
|
|
|
|
public ngOnInit() {}
|
|
|
|
public ngOnChanges() {
|
|
this.displayedColumns = [
|
|
'account',
|
|
'platform',
|
|
'transactions',
|
|
'balance',
|
|
'value',
|
|
'currency'
|
|
];
|
|
|
|
if (this.showActions) {
|
|
this.displayedColumns.push('actions');
|
|
}
|
|
|
|
this.isLoading = true;
|
|
|
|
if (this.accounts) {
|
|
this.dataSource = new MatTableDataSource(this.accounts);
|
|
|
|
this.isLoading = false;
|
|
}
|
|
}
|
|
|
|
public onDeleteAccount(aId: string) {
|
|
const confirmation = confirm('Do you really want to delete this account?');
|
|
|
|
if (confirmation) {
|
|
this.accountDeleted.emit(aId);
|
|
}
|
|
}
|
|
|
|
public onUpdateAccount(aAccount: AccountModel) {
|
|
this.accountToUpdate.emit(aAccount);
|
|
}
|
|
|
|
public ngOnDestroy() {
|
|
this.unsubscribeSubject.next();
|
|
this.unsubscribeSubject.complete();
|
|
}
|
|
}
|
|
|