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.
57 lines
1.5 KiB
57 lines
1.5 KiB
import { DataService } from '@ghostfolio/client/services/data.service';
|
|
import { UserService } from '@ghostfolio/client/services/user/user.service';
|
|
import { Statistics, User } from '@ghostfolio/common/interfaces';
|
|
import { GfValueComponent } from '@ghostfolio/ui/value';
|
|
|
|
import { CommonModule } from '@angular/common';
|
|
import {
|
|
ChangeDetectorRef,
|
|
Component,
|
|
CUSTOM_ELEMENTS_SCHEMA,
|
|
OnDestroy,
|
|
OnInit
|
|
} from '@angular/core';
|
|
import { MatCardModule } from '@angular/material/card';
|
|
import { Subject, takeUntil } from 'rxjs';
|
|
|
|
@Component({
|
|
host: { class: 'page' },
|
|
imports: [CommonModule, GfValueComponent, MatCardModule],
|
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
selector: 'gf-open-page',
|
|
styleUrls: ['./open-page.scss'],
|
|
templateUrl: './open-page.html'
|
|
})
|
|
export class GfOpenPageComponent implements OnDestroy, OnInit {
|
|
public statistics: Statistics;
|
|
public user: User;
|
|
|
|
private unsubscribeSubject = new Subject<void>();
|
|
|
|
public constructor(
|
|
private changeDetectorRef: ChangeDetectorRef,
|
|
private dataService: DataService,
|
|
private userService: UserService
|
|
) {
|
|
const { statistics } = this.dataService.fetchInfo();
|
|
|
|
this.statistics = statistics;
|
|
}
|
|
|
|
public ngOnInit() {
|
|
this.userService.stateChanged
|
|
.pipe(takeUntil(this.unsubscribeSubject))
|
|
.subscribe((state) => {
|
|
if (state?.user) {
|
|
this.user = state.user;
|
|
|
|
this.changeDetectorRef.markForCheck();
|
|
}
|
|
});
|
|
}
|
|
|
|
public ngOnDestroy() {
|
|
this.unsubscribeSubject.next();
|
|
this.unsubscribeSubject.complete();
|
|
}
|
|
}
|
|
|