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.
139 lines
4.1 KiB
139 lines
4.1 KiB
import { CreateAccountBalanceDto } from '@ghostfolio/api/app/account-balance/create-account-balance.dto';
|
|
import { ConfirmationDialogType } from '@ghostfolio/client/core/notification/confirmation-dialog/confirmation-dialog.type';
|
|
import { NotificationService } from '@ghostfolio/client/core/notification/notification.service';
|
|
import { validateObjectForForm } from '@ghostfolio/client/util/form.util';
|
|
import { getLocale } from '@ghostfolio/common/helper';
|
|
import { AccountBalancesResponse } from '@ghostfolio/common/interfaces';
|
|
|
|
import {
|
|
CUSTOM_ELEMENTS_SCHEMA,
|
|
ChangeDetectionStrategy,
|
|
Component,
|
|
EventEmitter,
|
|
Input,
|
|
OnChanges,
|
|
OnDestroy,
|
|
OnInit,
|
|
Output,
|
|
ViewChild
|
|
} from '@angular/core';
|
|
import {
|
|
FormGroup,
|
|
FormControl,
|
|
Validators,
|
|
ReactiveFormsModule
|
|
} from '@angular/forms';
|
|
import { MatButtonModule } from '@angular/material/button';
|
|
import { DateAdapter } from '@angular/material/core';
|
|
import { MatDatepickerModule } from '@angular/material/datepicker';
|
|
import { MatFormFieldModule } from '@angular/material/form-field';
|
|
import { MatInputModule } from '@angular/material/input';
|
|
import { MatMenuModule } from '@angular/material/menu';
|
|
import { MatSort, MatSortModule } from '@angular/material/sort';
|
|
import { MatTableDataSource, MatTableModule } from '@angular/material/table';
|
|
import { get } from 'lodash';
|
|
import { Subject } from 'rxjs';
|
|
|
|
import { GfValueComponent } from '../value';
|
|
|
|
@Component({
|
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
imports: [
|
|
GfValueComponent,
|
|
MatButtonModule,
|
|
MatDatepickerModule,
|
|
MatFormFieldModule,
|
|
MatInputModule,
|
|
MatMenuModule,
|
|
MatSortModule,
|
|
MatTableModule,
|
|
ReactiveFormsModule
|
|
],
|
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
selector: 'gf-account-balances',
|
|
standalone: true,
|
|
styleUrls: ['./account-balances.component.scss'],
|
|
templateUrl: './account-balances.component.html'
|
|
})
|
|
export class GfAccountBalancesComponent
|
|
implements OnChanges, OnDestroy, OnInit
|
|
{
|
|
@Input() accountBalances: AccountBalancesResponse['balances'];
|
|
@Input() accountCurrency: string;
|
|
@Input() accountId: string;
|
|
@Input() locale = getLocale();
|
|
@Input() showActions = true;
|
|
|
|
@Output() accountBalanceCreated = new EventEmitter<CreateAccountBalanceDto>();
|
|
@Output() accountBalanceDeleted = new EventEmitter<string>();
|
|
|
|
@ViewChild(MatSort) sort: MatSort;
|
|
|
|
public accountBalanceForm = new FormGroup({
|
|
balance: new FormControl(0, Validators.required),
|
|
date: new FormControl(new Date(), Validators.required)
|
|
});
|
|
|
|
public dataSource: MatTableDataSource<
|
|
AccountBalancesResponse['balances'][0]
|
|
> = new MatTableDataSource();
|
|
|
|
public displayedColumns: string[] = ['date', 'value', 'actions'];
|
|
public Validators = Validators;
|
|
|
|
private unsubscribeSubject = new Subject<void>();
|
|
|
|
public constructor(
|
|
private dateAdapter: DateAdapter<any>,
|
|
private notificationService: NotificationService
|
|
) {}
|
|
|
|
public ngOnInit() {
|
|
this.dateAdapter.setLocale(this.locale);
|
|
}
|
|
|
|
public ngOnChanges() {
|
|
if (this.accountBalances) {
|
|
this.dataSource = new MatTableDataSource(this.accountBalances);
|
|
|
|
this.dataSource.sort = this.sort;
|
|
this.dataSource.sortingDataAccessor = get;
|
|
}
|
|
}
|
|
|
|
public onDeleteAccountBalance(aId: string) {
|
|
this.notificationService.confirm({
|
|
confirmFn: () => {
|
|
this.accountBalanceDeleted.emit(aId);
|
|
},
|
|
confirmType: ConfirmationDialogType.Warn,
|
|
title: $localize`Do you really want to delete this account balance?`
|
|
});
|
|
}
|
|
|
|
public async onSubmitAccountBalance() {
|
|
const accountBalance: CreateAccountBalanceDto = {
|
|
accountId: this.accountId,
|
|
balance: this.accountBalanceForm.get('balance').value,
|
|
date: this.accountBalanceForm.get('date').value.toISOString()
|
|
};
|
|
|
|
try {
|
|
await validateObjectForForm({
|
|
classDto: CreateAccountBalanceDto,
|
|
form: this.accountBalanceForm,
|
|
object: accountBalance
|
|
});
|
|
} catch (error) {
|
|
console.error(error);
|
|
return;
|
|
}
|
|
|
|
this.accountBalanceCreated.emit(accountBalance);
|
|
}
|
|
|
|
public ngOnDestroy() {
|
|
this.unsubscribeSubject.next();
|
|
this.unsubscribeSubject.complete();
|
|
}
|
|
}
|
|
|