87 lines
2.5 KiB
TypeScript
87 lines
2.5 KiB
TypeScript
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 { UserService } from '@ghostfolio/client/services/user/user.service';
|
|
import { PortfolioSummary, User } from '@ghostfolio/common/interfaces';
|
|
import { hasPermission, permissions } from '@ghostfolio/common/permissions';
|
|
import { Subject } from 'rxjs';
|
|
import { takeUntil } from 'rxjs/operators';
|
|
|
|
@Component({
|
|
selector: 'gf-home-summary',
|
|
styleUrls: ['./home-summary.scss'],
|
|
templateUrl: './home-summary.html'
|
|
})
|
|
export class HomeSummaryComponent implements OnDestroy, OnInit {
|
|
public hasImpersonationId: boolean;
|
|
public hasPermissionToUpdateUserSettings: boolean;
|
|
public isLoading = true;
|
|
public summary: PortfolioSummary;
|
|
public user: User;
|
|
|
|
private unsubscribeSubject = new Subject<void>();
|
|
|
|
public constructor(
|
|
private changeDetectorRef: ChangeDetectorRef,
|
|
private dataService: DataService,
|
|
private impersonationStorageService: ImpersonationStorageService,
|
|
private userService: UserService
|
|
) {
|
|
this.userService.stateChanged
|
|
.pipe(takeUntil(this.unsubscribeSubject))
|
|
.subscribe((state) => {
|
|
if (state?.user) {
|
|
this.user = state.user;
|
|
|
|
this.hasPermissionToUpdateUserSettings = hasPermission(
|
|
this.user.permissions,
|
|
permissions.updateUserSettings
|
|
);
|
|
|
|
this.changeDetectorRef.markForCheck();
|
|
}
|
|
});
|
|
}
|
|
|
|
public ngOnInit() {
|
|
this.impersonationStorageService
|
|
.onChangeHasImpersonation()
|
|
.pipe(takeUntil(this.unsubscribeSubject))
|
|
.subscribe((aId) => {
|
|
this.hasImpersonationId = !!aId;
|
|
});
|
|
|
|
this.update();
|
|
}
|
|
|
|
public onChangeEmergencyFund(emergencyFund: number) {
|
|
this.dataService
|
|
.putUserSetting({ emergencyFund })
|
|
.pipe(takeUntil(this.unsubscribeSubject))
|
|
.subscribe(() => {
|
|
this.update();
|
|
});
|
|
}
|
|
|
|
public ngOnDestroy() {
|
|
this.unsubscribeSubject.next();
|
|
this.unsubscribeSubject.complete();
|
|
}
|
|
|
|
private update() {
|
|
this.isLoading = true;
|
|
|
|
this.dataService
|
|
.fetchPortfolioSummary()
|
|
.pipe(takeUntil(this.unsubscribeSubject))
|
|
.subscribe((response) => {
|
|
this.summary = response;
|
|
this.isLoading = false;
|
|
|
|
this.changeDetectorRef.markForCheck();
|
|
});
|
|
|
|
this.changeDetectorRef.markForCheck();
|
|
}
|
|
}
|