import { ChangeDetectorRef, Component, OnDestroy, OnInit } from '@angular/core'; import { DataService } from '@ghostfolio/client/services/data.service'; import { ImpersonationStorageService } from '@ghostfolio/client/services/impersonation-storage.service'; import { RANGE, SettingsStorageService } from '@ghostfolio/client/services/settings-storage.service'; import { UserService } from '@ghostfolio/client/services/user/user.service'; import { defaultDateRangeOptions } from '@ghostfolio/common/config'; import { PortfolioPerformance, User } from '@ghostfolio/common/interfaces'; import { hasPermission, permissions } from '@ghostfolio/common/permissions'; import { DateRange } from '@ghostfolio/common/types'; import { LineChartItem } from '@ghostfolio/ui/line-chart/interfaces/line-chart.interface'; import { DeviceDetectorService } from 'ngx-device-detector'; import { Subject } from 'rxjs'; import { takeUntil } from 'rxjs/operators'; @Component({ selector: 'gf-home-overview', styleUrls: ['./home-overview.scss'], templateUrl: './home-overview.html' }) export class HomeOverviewComponent implements OnDestroy, OnInit { public dateRange: DateRange; public dateRangeOptions = defaultDateRangeOptions; public deviceType: string; public hasError: boolean; public hasImpersonationId: boolean; public hasPermissionToCreateOrder: boolean; public historicalDataItems: LineChartItem[]; public isAllTimeHigh: boolean; public isAllTimeLow: boolean; public isLoadingPerformance = true; public performance: PortfolioPerformance; public showDetails = false; public user: User; private unsubscribeSubject = new Subject(); /** * @constructor */ public constructor( private changeDetectorRef: ChangeDetectorRef, private dataService: DataService, private deviceService: DeviceDetectorService, private impersonationStorageService: ImpersonationStorageService, private settingsStorageService: SettingsStorageService, private userService: UserService ) { this.userService.stateChanged .pipe(takeUntil(this.unsubscribeSubject)) .subscribe((state) => { if (state?.user) { this.user = state.user; this.hasPermissionToCreateOrder = hasPermission( this.user.permissions, permissions.createOrder ); this.changeDetectorRef.markForCheck(); } }); } /** * Initializes the controller */ public ngOnInit() { this.deviceType = this.deviceService.getDeviceInfo().deviceType; this.impersonationStorageService .onChangeHasImpersonation() .pipe(takeUntil(this.unsubscribeSubject)) .subscribe((aId) => { this.hasImpersonationId = !!aId; this.changeDetectorRef.markForCheck(); }); this.dateRange = this.user.settings.viewMode === 'ZEN' ? 'max' : this.settingsStorageService.getSetting(RANGE) ?? 'max'; this.showDetails = !this.hasImpersonationId && !this.user.settings.isRestrictedView && this.user.settings.viewMode !== 'ZEN'; this.update(); } public onChangeDateRange(aDateRange: DateRange) { this.dateRange = aDateRange; this.settingsStorageService.setSetting(RANGE, this.dateRange); this.update(); } public ngOnDestroy() { this.unsubscribeSubject.next(); this.unsubscribeSubject.complete(); } private update() { this.isLoadingPerformance = true; this.dataService .fetchChart({ range: this.dateRange }) .pipe(takeUntil(this.unsubscribeSubject)) .subscribe((chartData) => { this.historicalDataItems = chartData.chart.map((chartDataItem) => { return { date: chartDataItem.date, value: chartDataItem.value }; }); this.isAllTimeHigh = chartData.isAllTimeHigh; this.isAllTimeLow = chartData.isAllTimeLow; this.changeDetectorRef.markForCheck(); }); this.dataService .fetchPortfolioPerformance({ range: this.dateRange }) .pipe(takeUntil(this.unsubscribeSubject)) .subscribe((response) => { this.hasError = response.hasErrors; this.performance = response.performance; this.isLoadingPerformance = false; this.changeDetectorRef.markForCheck(); }); this.changeDetectorRef.markForCheck(); } }