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.
79 lines
2.2 KiB
79 lines
2.2 KiB
import {
|
|
ChangeDetectionStrategy,
|
|
Component,
|
|
Input,
|
|
OnDestroy,
|
|
OnInit
|
|
} from '@angular/core';
|
|
import { MatDialog } from '@angular/material/dialog';
|
|
import { ActivatedRoute, Router } from '@angular/router';
|
|
import { PortfolioPosition } from '@ghostfolio/api/app/portfolio/interfaces/portfolio-position.interface';
|
|
import { UNKNOWN_KEY } from '@ghostfolio/helper';
|
|
import { Subject } from 'rxjs';
|
|
import { takeUntil } from 'rxjs/operators';
|
|
|
|
import { PositionDetailDialog } from './position-detail-dialog/position-detail-dialog.component';
|
|
|
|
@Component({
|
|
selector: 'gf-position',
|
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
templateUrl: './position.component.html',
|
|
styleUrls: ['./position.component.scss']
|
|
})
|
|
export class PositionComponent implements OnDestroy, OnInit {
|
|
@Input() baseCurrency: string;
|
|
@Input() deviceType: string;
|
|
@Input() isLoading: boolean;
|
|
@Input() locale: string;
|
|
@Input() position: PortfolioPosition;
|
|
@Input() range: string;
|
|
|
|
public unknownKey = UNKNOWN_KEY;
|
|
|
|
private unsubscribeSubject = new Subject<void>();
|
|
|
|
public constructor(
|
|
private dialog: MatDialog,
|
|
private route: ActivatedRoute,
|
|
private router: Router
|
|
) {
|
|
route.queryParams
|
|
.pipe(takeUntil(this.unsubscribeSubject))
|
|
.subscribe((params) => {
|
|
if (
|
|
params['positionDetailDialog'] &&
|
|
params['symbol'] &&
|
|
params['symbol'] === this.position?.symbol
|
|
) {
|
|
this.openDialog();
|
|
}
|
|
});
|
|
}
|
|
|
|
public ngOnInit() {}
|
|
|
|
public ngOnDestroy() {
|
|
this.unsubscribeSubject.next();
|
|
this.unsubscribeSubject.complete();
|
|
}
|
|
|
|
private openDialog(): void {
|
|
const dialogRef = this.dialog.open(PositionDetailDialog, {
|
|
autoFocus: false,
|
|
data: {
|
|
baseCurrency: this.baseCurrency,
|
|
deviceType: this.deviceType,
|
|
locale: this.locale,
|
|
symbol: this.position?.symbol,
|
|
symbolUrl: this.position?.url,
|
|
title: this.position?.name
|
|
},
|
|
height: this.deviceType === 'mobile' ? '97.5vh' : '80vh',
|
|
width: this.deviceType === 'mobile' ? '100vw' : '50rem'
|
|
});
|
|
|
|
dialogRef.afterClosed().subscribe(() => {
|
|
this.router.navigate(['.'], { relativeTo: this.route });
|
|
});
|
|
}
|
|
}
|
|
|