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.
179 lines
5.2 KiB
179 lines
5.2 KiB
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 {
|
|
AssetProfileIdentifier,
|
|
PortfolioPosition,
|
|
User
|
|
} from '@ghostfolio/common/interfaces';
|
|
import { hasPermission, permissions } from '@ghostfolio/common/permissions';
|
|
import {
|
|
HoldingType,
|
|
HoldingsViewMode,
|
|
ToggleOption
|
|
} from '@ghostfolio/common/types';
|
|
|
|
import { ChangeDetectorRef, Component, OnDestroy, OnInit } from '@angular/core';
|
|
import { FormControl } from '@angular/forms';
|
|
import { Router } from '@angular/router';
|
|
import { DeviceDetectorService } from 'ngx-device-detector';
|
|
import { Subject } from 'rxjs';
|
|
import { skip, takeUntil } from 'rxjs/operators';
|
|
|
|
@Component({
|
|
selector: 'gf-home-holdings',
|
|
styleUrls: ['./home-holdings.scss'],
|
|
templateUrl: './home-holdings.html'
|
|
})
|
|
export class HomeHoldingsComponent implements OnDestroy, OnInit {
|
|
public static DEFAULT_HOLDINGS_VIEW_MODE: HoldingsViewMode = 'TABLE';
|
|
|
|
public deviceType: string;
|
|
public hasImpersonationId: boolean;
|
|
public hasPermissionToAccessHoldingsChart: boolean;
|
|
public hasPermissionToCreateOrder: boolean;
|
|
public holdings: PortfolioPosition[];
|
|
public holdingType: HoldingType = 'ACTIVE';
|
|
public holdingTypeOptions: ToggleOption[] = [
|
|
{ label: $localize`Active`, value: 'ACTIVE' },
|
|
{ label: $localize`Closed`, value: 'CLOSED' }
|
|
];
|
|
public user: User;
|
|
public viewModeFormControl = new FormControl<HoldingsViewMode>(
|
|
HomeHoldingsComponent.DEFAULT_HOLDINGS_VIEW_MODE
|
|
);
|
|
|
|
private unsubscribeSubject = new Subject<void>();
|
|
|
|
public constructor(
|
|
private changeDetectorRef: ChangeDetectorRef,
|
|
private dataService: DataService,
|
|
private deviceService: DeviceDetectorService,
|
|
private impersonationStorageService: ImpersonationStorageService,
|
|
private router: Router,
|
|
private userService: UserService
|
|
) {}
|
|
|
|
public ngOnInit() {
|
|
this.deviceType = this.deviceService.getDeviceInfo().deviceType;
|
|
|
|
this.impersonationStorageService
|
|
.onChangeHasImpersonation()
|
|
.pipe(takeUntil(this.unsubscribeSubject))
|
|
.subscribe((impersonationId) => {
|
|
this.hasImpersonationId = !!impersonationId;
|
|
});
|
|
|
|
this.userService.stateChanged
|
|
.pipe(takeUntil(this.unsubscribeSubject))
|
|
.subscribe((state) => {
|
|
if (state?.user) {
|
|
this.user = state.user;
|
|
|
|
this.hasPermissionToAccessHoldingsChart = hasPermission(
|
|
this.user.permissions,
|
|
permissions.accessHoldingsChart
|
|
);
|
|
|
|
this.hasPermissionToCreateOrder = hasPermission(
|
|
this.user.permissions,
|
|
permissions.createOrder
|
|
);
|
|
|
|
this.initialize();
|
|
|
|
this.changeDetectorRef.markForCheck();
|
|
}
|
|
});
|
|
|
|
this.viewModeFormControl.valueChanges
|
|
.pipe(
|
|
// Skip inizialization: "new FormControl"
|
|
skip(1),
|
|
takeUntil(this.unsubscribeSubject)
|
|
)
|
|
.subscribe((holdingsViewMode) => {
|
|
this.dataService
|
|
.putUserSetting({ holdingsViewMode })
|
|
.pipe(takeUntil(this.unsubscribeSubject))
|
|
.subscribe(() => {
|
|
this.userService.remove();
|
|
|
|
this.userService
|
|
.get()
|
|
.pipe(takeUntil(this.unsubscribeSubject))
|
|
.subscribe((user) => {
|
|
this.user = user;
|
|
|
|
this.changeDetectorRef.markForCheck();
|
|
});
|
|
});
|
|
});
|
|
}
|
|
|
|
public onChangeHoldingType(aHoldingType: HoldingType) {
|
|
this.holdingType = aHoldingType;
|
|
|
|
this.initialize();
|
|
}
|
|
|
|
public onSymbolClicked({ dataSource, symbol }: AssetProfileIdentifier) {
|
|
if (dataSource && symbol) {
|
|
this.router.navigate([], {
|
|
queryParams: { dataSource, symbol, holdingDetailDialog: true }
|
|
});
|
|
}
|
|
}
|
|
|
|
public ngOnDestroy() {
|
|
this.unsubscribeSubject.next();
|
|
this.unsubscribeSubject.complete();
|
|
}
|
|
|
|
private fetchHoldings() {
|
|
const filters = this.userService.getFilters();
|
|
|
|
if (this.holdingType === 'CLOSED') {
|
|
filters.push({ id: 'CLOSED', type: 'HOLDING_TYPE' });
|
|
}
|
|
|
|
return this.dataService.fetchPortfolioHoldings({
|
|
filters,
|
|
range: this.user?.settings?.dateRange
|
|
});
|
|
}
|
|
|
|
private initialize() {
|
|
this.viewModeFormControl.disable();
|
|
|
|
if (
|
|
this.hasPermissionToAccessHoldingsChart &&
|
|
this.holdingType === 'ACTIVE'
|
|
) {
|
|
this.viewModeFormControl.enable({ emitEvent: false });
|
|
|
|
this.viewModeFormControl.setValue(
|
|
this.deviceType === 'mobile'
|
|
? HomeHoldingsComponent.DEFAULT_HOLDINGS_VIEW_MODE
|
|
: this.user?.settings?.holdingsViewMode ||
|
|
HomeHoldingsComponent.DEFAULT_HOLDINGS_VIEW_MODE,
|
|
{ emitEvent: false }
|
|
);
|
|
} else if (this.holdingType === 'CLOSED') {
|
|
this.viewModeFormControl.setValue(
|
|
HomeHoldingsComponent.DEFAULT_HOLDINGS_VIEW_MODE,
|
|
{ emitEvent: false }
|
|
);
|
|
}
|
|
|
|
this.holdings = undefined;
|
|
|
|
this.fetchHoldings()
|
|
.pipe(takeUntil(this.unsubscribeSubject))
|
|
.subscribe(({ holdings }) => {
|
|
this.holdings = holdings;
|
|
|
|
this.changeDetectorRef.markForCheck();
|
|
});
|
|
}
|
|
}
|
|
|