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.
127 lines
3.8 KiB
127 lines
3.8 KiB
import { GfFearAndGreedIndexComponent } from '@ghostfolio/client/components/fear-and-greed-index/fear-and-greed-index.component';
|
|
import { DataService } from '@ghostfolio/client/services/data.service';
|
|
import { UserService } from '@ghostfolio/client/services/user/user.service';
|
|
import { resetHours } from '@ghostfolio/common/helper';
|
|
import {
|
|
Benchmark,
|
|
HistoricalDataItem,
|
|
MarketDataOfMarketsResponse,
|
|
ToggleOption,
|
|
User
|
|
} from '@ghostfolio/common/interfaces';
|
|
import { FearAndGreedIndexMode } from '@ghostfolio/common/types';
|
|
import { GfBenchmarkComponent } from '@ghostfolio/ui/benchmark';
|
|
import { GfLineChartComponent } from '@ghostfolio/ui/line-chart';
|
|
import { GfToggleComponent } from '@ghostfolio/ui/toggle';
|
|
|
|
import {
|
|
ChangeDetectionStrategy,
|
|
ChangeDetectorRef,
|
|
Component,
|
|
CUSTOM_ELEMENTS_SCHEMA,
|
|
OnDestroy,
|
|
OnInit
|
|
} from '@angular/core';
|
|
import { DeviceDetectorService } from 'ngx-device-detector';
|
|
import { Subject } from 'rxjs';
|
|
import { takeUntil } from 'rxjs/operators';
|
|
|
|
@Component({
|
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
imports: [
|
|
GfBenchmarkComponent,
|
|
GfFearAndGreedIndexComponent,
|
|
GfLineChartComponent,
|
|
GfToggleComponent
|
|
],
|
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
selector: 'gf-markets',
|
|
styleUrls: ['./markets.scss'],
|
|
templateUrl: './markets.html'
|
|
})
|
|
export class GfMarketsComponent implements OnDestroy, OnInit {
|
|
public benchmarks: Benchmark[];
|
|
public deviceType: string;
|
|
public fearAndGreedIndex: number;
|
|
public fearAndGreedIndexData: MarketDataOfMarketsResponse['fearAndGreedIndex'];
|
|
public fearLabel = $localize`Fear`;
|
|
public greedLabel = $localize`Greed`;
|
|
public historicalDataItems: HistoricalDataItem[];
|
|
public fearAndGreedIndexMode: FearAndGreedIndexMode = 'STOCKS';
|
|
public fearAndGreedIndexModeOptions: ToggleOption[] = [
|
|
{ label: $localize`Stocks`, value: 'STOCKS' },
|
|
{ label: $localize`Cryptocurrencies`, value: 'CRYPTOCURRENCIES' }
|
|
];
|
|
public readonly numberOfDays = 365;
|
|
public user: User;
|
|
|
|
private unsubscribeSubject = new Subject<void>();
|
|
|
|
public constructor(
|
|
private changeDetectorRef: ChangeDetectorRef,
|
|
private dataService: DataService,
|
|
private deviceService: DeviceDetectorService,
|
|
private userService: UserService
|
|
) {
|
|
this.deviceType = this.deviceService.getDeviceInfo().deviceType;
|
|
|
|
this.userService.stateChanged
|
|
.pipe(takeUntil(this.unsubscribeSubject))
|
|
.subscribe((state) => {
|
|
if (state?.user) {
|
|
this.user = state.user;
|
|
|
|
this.changeDetectorRef.markForCheck();
|
|
}
|
|
});
|
|
}
|
|
|
|
public ngOnInit() {
|
|
this.dataService
|
|
.fetchMarketDataOfMarkets({ includeHistoricalData: this.numberOfDays })
|
|
.pipe(takeUntil(this.unsubscribeSubject))
|
|
.subscribe(({ fearAndGreedIndex }) => {
|
|
this.fearAndGreedIndexData = fearAndGreedIndex;
|
|
|
|
this.initialize();
|
|
|
|
this.changeDetectorRef.markForCheck();
|
|
});
|
|
|
|
this.dataService
|
|
.fetchBenchmarks()
|
|
.pipe(takeUntil(this.unsubscribeSubject))
|
|
.subscribe(({ benchmarks }) => {
|
|
this.benchmarks = benchmarks;
|
|
|
|
this.changeDetectorRef.markForCheck();
|
|
});
|
|
}
|
|
|
|
public initialize() {
|
|
this.fearAndGreedIndex =
|
|
this.fearAndGreedIndexData[this.fearAndGreedIndexMode]?.marketPrice;
|
|
|
|
this.historicalDataItems = [
|
|
...(this.fearAndGreedIndexData[this.fearAndGreedIndexMode]
|
|
?.historicalData ?? []),
|
|
{
|
|
date: resetHours(new Date()).toISOString(),
|
|
value: this.fearAndGreedIndex
|
|
}
|
|
];
|
|
}
|
|
|
|
public onChangeFearAndGreedIndexMode(
|
|
aFearAndGreedIndexMode: FearAndGreedIndexMode
|
|
) {
|
|
this.fearAndGreedIndexMode = aFearAndGreedIndexMode;
|
|
|
|
this.initialize();
|
|
}
|
|
|
|
public ngOnDestroy() {
|
|
this.unsubscribeSubject.next();
|
|
this.unsubscribeSubject.complete();
|
|
}
|
|
}
|
|
|