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.
185 lines
5.0 KiB
185 lines
5.0 KiB
import { ChangeDetectorRef, Component, OnInit } from '@angular/core';
|
|
import { ActivatedRoute, Router } from '@angular/router';
|
|
import { DataService } from '@ghostfolio/client/services/data.service';
|
|
import { UNKNOWN_KEY } from '@ghostfolio/common/config';
|
|
import { prettifySymbol } from '@ghostfolio/common/helper';
|
|
import {
|
|
PortfolioPosition,
|
|
PortfolioPublicDetails
|
|
} from '@ghostfolio/common/interfaces';
|
|
import { StatusCodes } from 'http-status-codes';
|
|
import { DeviceDetectorService } from 'ngx-device-detector';
|
|
import { EMPTY, Subject } from 'rxjs';
|
|
import { catchError, takeUntil } from 'rxjs/operators';
|
|
|
|
@Component({
|
|
host: { class: 'page' },
|
|
selector: 'gf-public-page',
|
|
styleUrls: ['./public-page.scss'],
|
|
templateUrl: './public-page.html'
|
|
})
|
|
export class PublicPageComponent implements OnInit {
|
|
public continents: {
|
|
[code: string]: { name: string; value: number };
|
|
};
|
|
public countries: {
|
|
[code: string]: { name: string; value: number };
|
|
};
|
|
public deviceType: string;
|
|
public portfolioPublicDetails: PortfolioPublicDetails;
|
|
public positions: {
|
|
[symbol: string]: Pick<PortfolioPosition, 'currency' | 'name' | 'value'>;
|
|
};
|
|
public sectors: {
|
|
[name: string]: { name: string; value: number };
|
|
};
|
|
public symbols: {
|
|
[name: string]: { name: string; symbol: string; value: number };
|
|
};
|
|
|
|
private id: string;
|
|
private unsubscribeSubject = new Subject<void>();
|
|
|
|
/**
|
|
* @constructor
|
|
*/
|
|
public constructor(
|
|
private activatedRoute: ActivatedRoute,
|
|
private changeDetectorRef: ChangeDetectorRef,
|
|
private dataService: DataService,
|
|
private deviceService: DeviceDetectorService,
|
|
private router: Router
|
|
) {
|
|
this.activatedRoute.params.subscribe((params) => {
|
|
this.id = params['id'];
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Initializes the controller
|
|
*/
|
|
public ngOnInit() {
|
|
this.deviceType = this.deviceService.getDeviceInfo().deviceType;
|
|
|
|
this.dataService
|
|
.fetchPortfolioPublic(this.id)
|
|
.pipe(
|
|
takeUntil(this.unsubscribeSubject),
|
|
catchError((error) => {
|
|
if (error.status === StatusCodes.NOT_FOUND) {
|
|
console.error(error);
|
|
this.router.navigate(['/']);
|
|
}
|
|
|
|
return EMPTY;
|
|
})
|
|
)
|
|
.subscribe((portfolioPublicDetails) => {
|
|
this.portfolioPublicDetails = portfolioPublicDetails;
|
|
|
|
this.initializeAnalysisData();
|
|
|
|
this.changeDetectorRef.markForCheck();
|
|
});
|
|
}
|
|
|
|
public initializeAnalysisData() {
|
|
this.continents = {
|
|
[UNKNOWN_KEY]: {
|
|
name: UNKNOWN_KEY,
|
|
value: 0
|
|
}
|
|
};
|
|
this.countries = {
|
|
[UNKNOWN_KEY]: {
|
|
name: UNKNOWN_KEY,
|
|
value: 0
|
|
}
|
|
};
|
|
this.positions = {};
|
|
this.sectors = {
|
|
[UNKNOWN_KEY]: {
|
|
name: UNKNOWN_KEY,
|
|
value: 0
|
|
}
|
|
};
|
|
this.symbols = {
|
|
[UNKNOWN_KEY]: {
|
|
name: UNKNOWN_KEY,
|
|
symbol: UNKNOWN_KEY,
|
|
value: 0
|
|
}
|
|
};
|
|
|
|
for (const [symbol, position] of Object.entries(
|
|
this.portfolioPublicDetails.holdings
|
|
)) {
|
|
const value = position.allocationCurrent;
|
|
|
|
this.positions[symbol] = {
|
|
value,
|
|
currency: position.currency,
|
|
name: position.name
|
|
};
|
|
|
|
if (position.countries.length > 0) {
|
|
for (const country of position.countries) {
|
|
const { code, continent, name, weight } = country;
|
|
|
|
if (this.continents[continent]?.value) {
|
|
this.continents[continent].value += weight * position.value;
|
|
} else {
|
|
this.continents[continent] = {
|
|
name: continent,
|
|
value: weight * this.portfolioPublicDetails.holdings[symbol].value
|
|
};
|
|
}
|
|
|
|
if (this.countries[code]?.value) {
|
|
this.countries[code].value += weight * position.value;
|
|
} else {
|
|
this.countries[code] = {
|
|
name,
|
|
value: weight * this.portfolioPublicDetails.holdings[symbol].value
|
|
};
|
|
}
|
|
}
|
|
} else {
|
|
this.continents[UNKNOWN_KEY].value +=
|
|
this.portfolioPublicDetails.holdings[symbol].value;
|
|
|
|
this.countries[UNKNOWN_KEY].value +=
|
|
this.portfolioPublicDetails.holdings[symbol].value;
|
|
}
|
|
|
|
if (position.sectors.length > 0) {
|
|
for (const sector of position.sectors) {
|
|
const { name, weight } = sector;
|
|
|
|
if (this.sectors[name]?.value) {
|
|
this.sectors[name].value += weight * position.value;
|
|
} else {
|
|
this.sectors[name] = {
|
|
name,
|
|
value: weight * this.portfolioPublicDetails.holdings[symbol].value
|
|
};
|
|
}
|
|
}
|
|
} else {
|
|
this.sectors[UNKNOWN_KEY].value +=
|
|
this.portfolioPublicDetails.holdings[symbol].value;
|
|
}
|
|
|
|
this.symbols[prettifySymbol(symbol)] = {
|
|
name: position.name,
|
|
symbol: prettifySymbol(symbol),
|
|
value: position.value
|
|
};
|
|
}
|
|
}
|
|
|
|
public ngOnDestroy() {
|
|
this.unsubscribeSubject.next();
|
|
this.unsubscribeSubject.complete();
|
|
}
|
|
}
|
|
|