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.
158 lines
4.9 KiB
158 lines
4.9 KiB
import { GfPortfolioPerformanceComponent } from '@ghostfolio/client/components/portfolio-performance/portfolio-performance.component';
|
|
import { LayoutService } from '@ghostfolio/client/core/layout.service';
|
|
import { DataService } from '@ghostfolio/client/services/data.service';
|
|
import { ImpersonationStorageService } from '@ghostfolio/client/services/impersonation-storage.service';
|
|
import { UserService } from '@ghostfolio/client/services/user/user.service';
|
|
import { NUMERICAL_PRECISION_THRESHOLD_6_FIGURES } from '@ghostfolio/common/config';
|
|
import {
|
|
AssetProfileIdentifier,
|
|
LineChartItem,
|
|
PortfolioPerformance,
|
|
User
|
|
} from '@ghostfolio/common/interfaces';
|
|
import { hasPermission, permissions } from '@ghostfolio/common/permissions';
|
|
import { internalRoutes } from '@ghostfolio/common/routes/routes';
|
|
import { GfLineChartComponent } from '@ghostfolio/ui/line-chart';
|
|
|
|
import { CommonModule } from '@angular/common';
|
|
import {
|
|
ChangeDetectorRef,
|
|
Component,
|
|
CUSTOM_ELEMENTS_SCHEMA,
|
|
OnDestroy,
|
|
OnInit
|
|
} from '@angular/core';
|
|
import { MatButtonModule } from '@angular/material/button';
|
|
import { RouterModule } from '@angular/router';
|
|
import { DeviceDetectorService } from 'ngx-device-detector';
|
|
import { Subject } from 'rxjs';
|
|
import { takeUntil } from 'rxjs/operators';
|
|
|
|
@Component({
|
|
imports: [
|
|
CommonModule,
|
|
GfLineChartComponent,
|
|
GfPortfolioPerformanceComponent,
|
|
MatButtonModule,
|
|
RouterModule
|
|
],
|
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
selector: 'gf-home-overview',
|
|
styleUrls: ['./home-overview.scss'],
|
|
templateUrl: './home-overview.html'
|
|
})
|
|
export class GfHomeOverviewComponent implements OnDestroy, OnInit {
|
|
public deviceType: string;
|
|
public errors: AssetProfileIdentifier[];
|
|
public hasError: boolean;
|
|
public hasImpersonationId: boolean;
|
|
public hasPermissionToCreateActivity: boolean;
|
|
public historicalDataItems: LineChartItem[];
|
|
public isAllTimeHigh: boolean;
|
|
public isAllTimeLow: boolean;
|
|
public isLoadingPerformance = true;
|
|
public performance: PortfolioPerformance;
|
|
public performanceLabel = $localize`Performance`;
|
|
public precision = 2;
|
|
public routerLinkAccounts = internalRoutes.accounts.routerLink;
|
|
public routerLinkPortfolio = internalRoutes.portfolio.routerLink;
|
|
public routerLinkPortfolioActivities =
|
|
internalRoutes.portfolio.subRoutes.activities.routerLink;
|
|
public showDetails = false;
|
|
public unit: string;
|
|
public user: User;
|
|
|
|
private unsubscribeSubject = new Subject<void>();
|
|
|
|
public constructor(
|
|
private changeDetectorRef: ChangeDetectorRef,
|
|
private dataService: DataService,
|
|
private deviceService: DeviceDetectorService,
|
|
private impersonationStorageService: ImpersonationStorageService,
|
|
private layoutService: LayoutService,
|
|
private userService: UserService
|
|
) {
|
|
this.userService.stateChanged
|
|
.pipe(takeUntil(this.unsubscribeSubject))
|
|
.subscribe((state) => {
|
|
if (state?.user) {
|
|
this.user = state.user;
|
|
|
|
this.hasPermissionToCreateActivity = hasPermission(
|
|
this.user.permissions,
|
|
permissions.createOrder
|
|
);
|
|
|
|
this.update();
|
|
}
|
|
});
|
|
}
|
|
|
|
public ngOnInit() {
|
|
this.deviceType = this.deviceService.getDeviceInfo().deviceType;
|
|
|
|
this.showDetails =
|
|
!this.user.settings.isRestrictedView &&
|
|
this.user.settings.viewMode !== 'ZEN';
|
|
|
|
this.unit = this.showDetails ? this.user.settings.baseCurrency : '%';
|
|
|
|
this.impersonationStorageService
|
|
.onChangeHasImpersonation()
|
|
.pipe(takeUntil(this.unsubscribeSubject))
|
|
.subscribe((impersonationId) => {
|
|
this.hasImpersonationId = !!impersonationId;
|
|
|
|
this.changeDetectorRef.markForCheck();
|
|
});
|
|
|
|
this.layoutService.shouldReloadContent$
|
|
.pipe(takeUntil(this.unsubscribeSubject))
|
|
.subscribe(() => {
|
|
this.update();
|
|
});
|
|
}
|
|
|
|
public ngOnDestroy() {
|
|
this.unsubscribeSubject.next();
|
|
this.unsubscribeSubject.complete();
|
|
}
|
|
|
|
private update() {
|
|
this.historicalDataItems = null;
|
|
this.isLoadingPerformance = true;
|
|
|
|
this.dataService
|
|
.fetchPortfolioPerformance({
|
|
range: this.user?.settings?.dateRange
|
|
})
|
|
.pipe(takeUntil(this.unsubscribeSubject))
|
|
.subscribe(({ chart, errors, performance }) => {
|
|
this.errors = errors;
|
|
this.performance = performance;
|
|
|
|
this.historicalDataItems = chart.map(
|
|
({ date, netPerformanceInPercentageWithCurrencyEffect }) => {
|
|
return {
|
|
date,
|
|
value: netPerformanceInPercentageWithCurrencyEffect * 100
|
|
};
|
|
}
|
|
);
|
|
|
|
if (
|
|
this.deviceType === 'mobile' &&
|
|
this.performance.currentValueInBaseCurrency >=
|
|
NUMERICAL_PRECISION_THRESHOLD_6_FIGURES
|
|
) {
|
|
this.precision = 0;
|
|
}
|
|
|
|
this.isLoadingPerformance = false;
|
|
|
|
this.changeDetectorRef.markForCheck();
|
|
});
|
|
|
|
this.changeDetectorRef.markForCheck();
|
|
}
|
|
}
|
|
|