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.
221 lines
6.1 KiB
221 lines
6.1 KiB
import 'chartjs-adapter-date-fns';
|
|
|
|
import {
|
|
ChangeDetectionStrategy,
|
|
Component,
|
|
EventEmitter,
|
|
Input,
|
|
OnChanges,
|
|
OnDestroy,
|
|
Output,
|
|
ViewChild
|
|
} from '@angular/core';
|
|
import {
|
|
getTooltipOptions,
|
|
getTooltipPositionerMapTop,
|
|
getVerticalHoverLinePlugin
|
|
} from '@ghostfolio/common/chart-helper';
|
|
import { primaryColorRgb, secondaryColorRgb } from '@ghostfolio/common/config';
|
|
import {
|
|
getBackgroundColor,
|
|
getDateFormatString,
|
|
getTextColor,
|
|
parseDate
|
|
} from '@ghostfolio/common/helper';
|
|
import { LineChartItem, User } from '@ghostfolio/common/interfaces';
|
|
import { ColorScheme } from '@ghostfolio/common/types';
|
|
import { SymbolProfile } from '@prisma/client';
|
|
import {
|
|
Chart,
|
|
LineController,
|
|
LineElement,
|
|
LinearScale,
|
|
PointElement,
|
|
TimeScale,
|
|
Tooltip
|
|
} from 'chart.js';
|
|
import annotationPlugin from 'chartjs-plugin-annotation';
|
|
|
|
@Component({
|
|
selector: 'gf-benchmark-comparator',
|
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
templateUrl: './benchmark-comparator.component.html',
|
|
styleUrls: ['./benchmark-comparator.component.scss']
|
|
})
|
|
export class BenchmarkComparatorComponent implements OnChanges, OnDestroy {
|
|
@Input() benchmarkDataItems: LineChartItem[] = [];
|
|
@Input() benchmark: string;
|
|
@Input() benchmarks: Partial<SymbolProfile>[];
|
|
@Input() colorScheme: ColorScheme;
|
|
@Input() daysInMarket: number;
|
|
@Input() isLoading: boolean;
|
|
@Input() locale: string;
|
|
@Input() performanceDataItems: LineChartItem[];
|
|
@Input() user: User;
|
|
|
|
@Output() benchmarkChanged = new EventEmitter<string>();
|
|
|
|
@ViewChild('chartCanvas') chartCanvas;
|
|
|
|
public chart: Chart<any>;
|
|
|
|
public constructor() {
|
|
Chart.register(
|
|
annotationPlugin,
|
|
LinearScale,
|
|
LineController,
|
|
LineElement,
|
|
PointElement,
|
|
TimeScale,
|
|
Tooltip
|
|
);
|
|
|
|
Tooltip.positioners['top'] = (elements, position) =>
|
|
getTooltipPositionerMapTop(this.chart, position);
|
|
}
|
|
|
|
public ngOnChanges() {
|
|
if (this.performanceDataItems) {
|
|
this.initialize();
|
|
}
|
|
}
|
|
|
|
public onChangeBenchmark(symbolProfileId: string) {
|
|
this.benchmarkChanged.next(symbolProfileId);
|
|
}
|
|
|
|
public ngOnDestroy() {
|
|
this.chart?.destroy();
|
|
}
|
|
|
|
private initialize() {
|
|
const data = {
|
|
datasets: [
|
|
{
|
|
backgroundColor: `rgb(${primaryColorRgb.r}, ${primaryColorRgb.g}, ${primaryColorRgb.b})`,
|
|
borderColor: `rgb(${primaryColorRgb.r}, ${primaryColorRgb.g}, ${primaryColorRgb.b})`,
|
|
borderWidth: 2,
|
|
data: this.performanceDataItems.map(({ date, value }) => {
|
|
return { x: parseDate(date), y: value };
|
|
}),
|
|
label: $localize`Portfolio`
|
|
},
|
|
{
|
|
backgroundColor: `rgb(${secondaryColorRgb.r}, ${secondaryColorRgb.g}, ${secondaryColorRgb.b})`,
|
|
borderColor: `rgb(${secondaryColorRgb.r}, ${secondaryColorRgb.g}, ${secondaryColorRgb.b})`,
|
|
borderWidth: 2,
|
|
data: this.benchmarkDataItems.map(({ date, value }) => {
|
|
return { x: parseDate(date), y: value };
|
|
}),
|
|
label: $localize`Benchmark`
|
|
}
|
|
]
|
|
};
|
|
|
|
if (this.chartCanvas) {
|
|
if (this.chart) {
|
|
this.chart.data = data;
|
|
this.chart.options.plugins.tooltip = <unknown>(
|
|
this.getTooltipPluginConfiguration()
|
|
);
|
|
this.chart.update();
|
|
} else {
|
|
this.chart = new Chart(this.chartCanvas.nativeElement, {
|
|
data,
|
|
options: {
|
|
animation: false,
|
|
elements: {
|
|
line: {
|
|
tension: 0
|
|
},
|
|
point: {
|
|
hoverBackgroundColor: getBackgroundColor(this.colorScheme),
|
|
hoverRadius: 2,
|
|
radius: 0
|
|
}
|
|
},
|
|
interaction: { intersect: false, mode: 'index' },
|
|
maintainAspectRatio: true,
|
|
plugins: <unknown>{
|
|
annotation: {
|
|
annotations: {
|
|
yAxis: {
|
|
borderColor: `rgba(${getTextColor(this.colorScheme)}, 0.1)`,
|
|
borderWidth: 1,
|
|
scaleID: 'y',
|
|
type: 'line',
|
|
value: 0
|
|
}
|
|
}
|
|
},
|
|
legend: {
|
|
display: false
|
|
},
|
|
tooltip: this.getTooltipPluginConfiguration(),
|
|
verticalHoverLine: {
|
|
color: `rgba(${getTextColor(this.colorScheme)}, 0.1)`
|
|
}
|
|
},
|
|
responsive: true,
|
|
scales: {
|
|
x: {
|
|
border: {
|
|
color: `rgba(${getTextColor(this.colorScheme)}, 0.1)`,
|
|
width: 1
|
|
},
|
|
display: true,
|
|
grid: {
|
|
color: `rgba(${getTextColor(this.colorScheme)}, 0.8)`,
|
|
display: false
|
|
},
|
|
type: 'time',
|
|
time: {
|
|
tooltipFormat: getDateFormatString(this.locale),
|
|
unit: 'year'
|
|
}
|
|
},
|
|
y: {
|
|
border: {
|
|
color: `rgba(${getTextColor(this.colorScheme)}, 0.1)`,
|
|
display: false
|
|
},
|
|
display: true,
|
|
grid: {
|
|
color: `rgba(${getTextColor(this.colorScheme)}, 0.8)`,
|
|
display: false
|
|
},
|
|
position: 'right',
|
|
ticks: {
|
|
callback: (value: number) => {
|
|
return `${value.toFixed(2)} %`;
|
|
},
|
|
display: true,
|
|
mirror: true,
|
|
z: 1
|
|
}
|
|
}
|
|
}
|
|
},
|
|
plugins: [
|
|
getVerticalHoverLinePlugin(this.chartCanvas, this.colorScheme)
|
|
],
|
|
type: 'line'
|
|
});
|
|
}
|
|
}
|
|
}
|
|
|
|
private getTooltipPluginConfiguration() {
|
|
return {
|
|
...getTooltipOptions({
|
|
colorScheme: this.colorScheme,
|
|
locale: this.locale,
|
|
unit: '%'
|
|
}),
|
|
mode: 'x',
|
|
position: <unknown>'top',
|
|
xAlign: 'center',
|
|
yAlign: 'bottom'
|
|
};
|
|
}
|
|
}
|
|
|