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.
128 lines
3.6 KiB
128 lines
3.6 KiB
import { getLocale, getLowercase } from '@ghostfolio/common/helper';
|
|
import {
|
|
AssetProfileIdentifier,
|
|
PortfolioPosition
|
|
} from '@ghostfolio/common/interfaces';
|
|
|
|
import { CommonModule } from '@angular/common';
|
|
import {
|
|
CUSTOM_ELEMENTS_SCHEMA,
|
|
ChangeDetectionStrategy,
|
|
Component,
|
|
EventEmitter,
|
|
Input,
|
|
Output,
|
|
computed,
|
|
effect,
|
|
input,
|
|
viewChild
|
|
} from '@angular/core';
|
|
import { MatButtonModule } from '@angular/material/button';
|
|
import { MatDialogModule } from '@angular/material/dialog';
|
|
import { MatPaginator, MatPaginatorModule } from '@angular/material/paginator';
|
|
import { MatSort, MatSortModule } from '@angular/material/sort';
|
|
import { MatTableDataSource, MatTableModule } from '@angular/material/table';
|
|
import { AssetSubClass } from '@prisma/client';
|
|
import { NgxSkeletonLoaderModule } from 'ngx-skeleton-loader';
|
|
|
|
import { GfEntityLogoComponent } from '../entity-logo/entity-logo.component';
|
|
import { GfValueComponent } from '../value/value.component';
|
|
|
|
@Component({
|
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
imports: [
|
|
CommonModule,
|
|
GfEntityLogoComponent,
|
|
GfValueComponent,
|
|
MatButtonModule,
|
|
MatDialogModule,
|
|
MatPaginatorModule,
|
|
MatSortModule,
|
|
MatTableModule,
|
|
NgxSkeletonLoaderModule
|
|
],
|
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
selector: 'gf-holdings-table',
|
|
styleUrls: ['./holdings-table.component.scss'],
|
|
templateUrl: './holdings-table.component.html'
|
|
})
|
|
export class GfHoldingsTableComponent {
|
|
@Input() pageSize = Number.MAX_SAFE_INTEGER;
|
|
|
|
@Output() holdingClicked = new EventEmitter<AssetProfileIdentifier>();
|
|
|
|
public readonly hasPermissionToOpenDetails = input(true);
|
|
public readonly hasPermissionToShowQuantities = input(true);
|
|
public readonly hasPermissionToShowValues = input(true);
|
|
public readonly holdings = input.required<PortfolioPosition[]>();
|
|
public readonly locale = input(getLocale());
|
|
public readonly paginator = viewChild.required(MatPaginator);
|
|
public readonly sort = viewChild.required(MatSort);
|
|
|
|
protected readonly dataSource = new MatTableDataSource<PortfolioPosition>([]);
|
|
|
|
protected readonly displayedColumns = computed(() => {
|
|
const columns = ['icon', 'nameWithSymbol', 'dateOfFirstActivity'];
|
|
|
|
if (this.hasPermissionToShowQuantities()) {
|
|
columns.push('quantity');
|
|
}
|
|
|
|
if (this.hasPermissionToShowValues()) {
|
|
columns.push('valueInBaseCurrency');
|
|
}
|
|
|
|
columns.push('allocationInPercentage');
|
|
|
|
if (this.hasPermissionToShowValues()) {
|
|
columns.push('performance');
|
|
}
|
|
|
|
columns.push('performanceInPercentage');
|
|
return columns;
|
|
});
|
|
|
|
protected readonly ignoreAssetSubClasses: AssetSubClass[] = [
|
|
AssetSubClass.CASH
|
|
];
|
|
|
|
protected readonly isLoading = computed(() => !this.holdings());
|
|
|
|
public constructor() {
|
|
this.dataSource.sortingDataAccessor = getLowercase;
|
|
|
|
// Reactive data update
|
|
effect(() => {
|
|
this.dataSource.data = this.holdings();
|
|
});
|
|
|
|
// Reactive view connection
|
|
effect(() => {
|
|
this.dataSource.paginator = this.paginator();
|
|
this.dataSource.sort = this.sort();
|
|
});
|
|
}
|
|
|
|
protected canShowDetails(holding: PortfolioPosition): boolean {
|
|
return (
|
|
this.hasPermissionToOpenDetails() &&
|
|
!!holding.assetSubClass &&
|
|
!this.ignoreAssetSubClasses.includes(holding.assetSubClass)
|
|
);
|
|
}
|
|
|
|
protected onOpenHoldingDialog({
|
|
dataSource,
|
|
symbol
|
|
}: AssetProfileIdentifier) {
|
|
this.holdingClicked.emit({ dataSource, symbol });
|
|
}
|
|
|
|
protected onShowAllHoldings() {
|
|
this.pageSize = Number.MAX_SAFE_INTEGER;
|
|
|
|
setTimeout(() => {
|
|
this.dataSource.paginator = this.paginator();
|
|
});
|
|
}
|
|
}
|
|
|