mempool/frontend/src/app/components/block-rewards-graph/block-rewards-graph.component.ts

327 lines
9.8 KiB
TypeScript
Raw Normal View History

import { ChangeDetectionStrategy, Component, Inject, Input, LOCALE_ID, OnInit } from '@angular/core';
2022-04-11 20:57:13 +09:00
import { EChartsOption, graphic } from 'echarts';
import { Observable } from 'rxjs';
2022-04-11 20:57:13 +09:00
import { map, share, startWith, switchMap, tap } from 'rxjs/operators';
2022-09-21 17:23:45 +02:00
import { ApiService } from '../../services/api.service';
import { SeoService } from '../../services/seo.service';
import { formatNumber } from '@angular/common';
2022-11-28 11:55:23 +09:00
import { UntypedFormBuilder, UntypedFormGroup } from '@angular/forms';
import { download, formatterXAxis } from '../../shared/graphs.utils';
2022-09-21 17:23:45 +02:00
import { MiningService } from '../../services/mining.service';
import { StorageService } from '../../services/storage.service';
import { ActivatedRoute } from '@angular/router';
2022-09-21 17:23:45 +02:00
import { FiatShortenerPipe } from '../../shared/pipes/fiat-shortener.pipe';
import { FiatCurrencyPipe } from '../../shared/pipes/fiat-currency.pipe';
2022-04-11 20:57:13 +09:00
@Component({
selector: 'app-block-rewards-graph',
templateUrl: './block-rewards-graph.component.html',
styleUrls: ['./block-rewards-graph.component.scss'],
styles: [`
.loadingGraphs {
position: absolute;
top: 50%;
left: calc(50% - 15px);
z-index: 100;
}
`],
changeDetection: ChangeDetectionStrategy.OnPush,
})
export class BlockRewardsGraphComponent implements OnInit {
@Input() right: number | string = 45;
@Input() left: number | string = 75;
miningWindowPreference: string;
2022-11-28 11:55:23 +09:00
radioGroupForm: UntypedFormGroup;
2022-04-11 20:57:13 +09:00
chartOptions: EChartsOption = {};
chartInitOptions = {
renderer: 'svg',
};
statsObservable$: Observable<any>;
isLoading = true;
formatNumber = formatNumber;
timespan = '';
2022-05-05 16:18:28 +09:00
chartInstance: any = undefined;
2022-04-11 20:57:13 +09:00
currency: string;
2022-04-11 20:57:13 +09:00
constructor(
@Inject(LOCALE_ID) public locale: string,
private seoService: SeoService,
private apiService: ApiService,
2022-11-28 11:55:23 +09:00
private formBuilder: UntypedFormBuilder,
2022-04-11 20:57:13 +09:00
private miningService: MiningService,
private storageService: StorageService,
private route: ActivatedRoute,
private fiatShortenerPipe: FiatShortenerPipe,
private fiatCurrencyPipe: FiatCurrencyPipe,
2022-04-11 20:57:13 +09:00
) {
this.currency = 'USD';
2022-04-11 20:57:13 +09:00
}
ngOnInit(): void {
this.seoService.setTitle($localize`:@@8ba8fe810458280a83df7fdf4c614dfc1a826445:Block Rewards`);
this.miningWindowPreference = this.miningService.getDefaultTimespan('3m');
2022-04-11 20:57:13 +09:00
this.radioGroupForm = this.formBuilder.group({ dateSpan: this.miningWindowPreference });
this.radioGroupForm.controls.dateSpan.setValue(this.miningWindowPreference);
this.route
.fragment
.subscribe((fragment) => {
if (['1m', '3m', '6m', '1y', '2y', '3y', 'all'].indexOf(fragment) > -1) {
this.radioGroupForm.controls.dateSpan.setValue(fragment, { emitEvent: false });
}
});
2022-04-11 20:57:13 +09:00
this.statsObservable$ = this.radioGroupForm.get('dateSpan').valueChanges
.pipe(
startWith(this.radioGroupForm.controls.dateSpan.value),
2022-04-11 20:57:13 +09:00
switchMap((timespan) => {
this.storageService.setValue('miningWindowPreference', timespan);
this.timespan = timespan;
this.isLoading = true;
return this.apiService.getHistoricalBlockRewards$(timespan)
.pipe(
tap((response) => {
2022-04-11 20:57:13 +09:00
this.prepareChartOptions({
blockRewards: response.body.map(val => [val.timestamp * 1000, val.avgRewards / 100000000, val.avgHeight]),
blockRewardsFiat: response.body.filter(val => val[this.currency] > 0).map(val => [val.timestamp * 1000, val.avgRewards / 100000000 * val[this.currency], val.avgHeight]),
2022-04-11 20:57:13 +09:00
});
this.isLoading = false;
}),
map((response) => {
2022-04-11 20:57:13 +09:00
return {
blockCount: parseInt(response.headers.get('x-total-count'), 10),
2022-04-11 20:57:13 +09:00
};
}),
);
}),
share()
);
}
prepareChartOptions(data) {
let title: object;
if (data.blockRewards.length === 0) {
title = {
textStyle: {
color: 'grey',
fontSize: 15
},
text: $localize`:@@23555386d8af1ff73f297e89dd4af3f4689fb9dd:Indexing blocks`,
left: 'center',
top: 'center'
};
}
const scaleFactor = 0.1;
2022-04-11 20:57:13 +09:00
this.chartOptions = {
title: title,
2022-04-11 20:57:13 +09:00
animation: false,
color: [
new graphic.LinearGradient(0, 0, 0, 1, [
{ offset: 0, color: '#FDD835' },
{ offset: 1, color: '#FB8C00' },
2022-04-11 20:57:13 +09:00
]),
new graphic.LinearGradient(0, 0, 0, 1, [
{ offset: 0, color: '#C0CA33' },
{ offset: 1, color: '#1B5E20' },
]),
2022-04-11 20:57:13 +09:00
],
grid: {
top: 20,
bottom: 80,
right: this.right,
left: this.left,
},
tooltip: {
show: !this.isMobile(),
trigger: 'axis',
axisPointer: {
type: 'line'
},
backgroundColor: 'rgba(17, 19, 31, 1)',
borderRadius: 4,
shadowColor: 'rgba(0, 0, 0, 0.5)',
textStyle: {
color: '#b1b1b1',
align: 'left',
},
borderColor: '#000',
formatter: function (data) {
if (data.length <= 0) {
return '';
}
let tooltip = `<b style="color: white; margin-left: 2px">
${formatterXAxis(this.locale, this.timespan, parseInt(data[0].axisValue, 10))}</b><br>`;
for (const tick of data) {
if (tick.seriesIndex === 0) {
tooltip += `${tick.marker} ${tick.seriesName}: ${formatNumber(tick.data[1], this.locale, '1.3-3')} BTC<br>`;
} else if (tick.seriesIndex === 1) {
tooltip += `${tick.marker} ${tick.seriesName}: ${this.fiatCurrencyPipe.transform(tick.data[1], null, this.currency)}<br>`;
}
}
tooltip += `<small>* On average around block ${data[0].data[2]}</small>`;
return tooltip;
}.bind(this)
2022-04-11 20:57:13 +09:00
},
xAxis: data.blockRewards.length === 0 ? undefined :
{
2022-04-11 20:57:13 +09:00
type: 'time',
splitNumber: this.isMobile() ? 5 : 10,
axisLabel: {
hideOverlap: true,
}
},
legend: data.blockRewards.length === 0 ? undefined : {
data: [
{
name: 'Rewards BTC',
inactiveColor: 'rgb(110, 112, 121)',
textStyle: {
color: 'white',
},
icon: 'roundRect',
},
{
name: 'Rewards ' + this.currency,
inactiveColor: 'rgb(110, 112, 121)',
textStyle: {
color: 'white',
},
icon: 'roundRect',
},
],
2022-04-11 20:57:13 +09:00
},
yAxis: data.blockRewards.length === 0 ? undefined : [
2022-04-11 20:57:13 +09:00
{
type: 'value',
axisLabel: {
color: 'rgb(110, 112, 121)',
formatter: (val) => {
return `${val} BTC`;
}
},
min: (value) => {
return Math.round(value.min * (1.0 - scaleFactor) * 10) / 10;
},
max: (value) => {
return Math.round(value.max * (1.0 + scaleFactor) * 10) / 10;
},
2022-04-11 20:57:13 +09:00
splitLine: {
2022-04-15 00:21:38 +09:00
lineStyle: {
type: 'dotted',
color: '#ffffff66',
opacity: 0.25,
}
},
2022-04-11 20:57:13 +09:00
},
{
min: (value) => {
return Math.round(value.min * (1.0 - scaleFactor) * 10) / 10;
},
max: (value) => {
return Math.round(value.max * (1.0 + scaleFactor) * 10) / 10;
},
type: 'value',
position: 'right',
axisLabel: {
color: 'rgb(110, 112, 121)',
formatter: function(val) {
return this.fiatShortenerPipe.transform(val, null, this.currency);
}.bind(this)
},
splitLine: {
show: false,
},
},
2022-04-11 20:57:13 +09:00
],
series: data.blockRewards.length === 0 ? undefined : [
2022-04-11 20:57:13 +09:00
{
legendHoverLink: false,
2022-04-11 20:57:13 +09:00
zlevel: 0,
yAxisIndex: 0,
name: 'Rewards BTC',
2022-04-11 20:57:13 +09:00
data: data.blockRewards,
type: 'line',
smooth: 0.25,
symbol: 'none',
},
{
legendHoverLink: false,
zlevel: 1,
yAxisIndex: 1,
name: 'Rewards ' + this.currency,
data: data.blockRewardsFiat,
type: 'line',
smooth: 0.25,
symbol: 'none',
2022-04-11 20:57:13 +09:00
lineStyle: {
width: 2,
opacity: 0.75,
},
areaStyle: {
opacity: 0.05,
}
2022-04-11 20:57:13 +09:00
},
],
dataZoom: data.blockRewards.length === 0 ? undefined : [{
2022-04-11 20:57:13 +09:00
type: 'inside',
realtime: true,
zoomLock: true,
maxSpan: 100,
minSpan: 5,
2022-04-11 20:57:13 +09:00
moveOnMouseMove: false,
}, {
showDetail: false,
show: true,
type: 'slider',
brushSelect: false,
realtime: true,
left: 20,
right: 15,
selectedDataBackground: {
lineStyle: {
color: '#fff',
opacity: 0.45,
},
areaStyle: {
opacity: 0,
}
},
}],
};
}
2022-05-05 16:18:28 +09:00
onChartInit(ec) {
this.chartInstance = ec;
}
2022-04-11 20:57:13 +09:00
isMobile() {
return (window.innerWidth <= 767.98);
}
2022-05-05 16:18:28 +09:00
onSaveChart() {
// @ts-ignore
const prevBottom = this.chartOptions.grid.bottom;
const now = new Date();
// @ts-ignore
this.chartOptions.grid.bottom = 40;
this.chartOptions.backgroundColor = '#11131f';
2022-05-05 16:18:28 +09:00
this.chartInstance.setOption(this.chartOptions);
download(this.chartInstance.getDataURL({
pixelRatio: 2,
excludeComponents: ['dataZoom'],
}), `block-rewards-${this.timespan}-${Math.round(now.getTime() / 1000)}.svg`);
2022-05-05 16:18:28 +09:00
// @ts-ignore
this.chartOptions.grid.bottom = prevBottom;
this.chartOptions.backgroundColor = 'none';
2022-05-05 16:18:28 +09:00
this.chartInstance.setOption(this.chartOptions);
}
2022-04-11 20:57:13 +09:00
}