mempool/frontend/src/app/components/hashrate-chart/hashrate-chart.component.ts

355 lines
11 KiB
TypeScript
Raw Normal View History

2022-04-05 20:37:18 +02:00
import { ChangeDetectionStrategy, ChangeDetectorRef, Component, Inject, Input, LOCALE_ID, OnInit, HostBinding } from '@angular/core';
import { EChartsOption, graphic } from 'echarts';
2022-02-19 22:09:35 +09:00
import { Observable } from 'rxjs';
import { delay, map, retryWhen, share, startWith, switchMap, tap } from 'rxjs/operators';
2022-02-19 22:09:35 +09:00
import { ApiService } from 'src/app/services/api.service';
import { SeoService } from 'src/app/services/seo.service';
import { formatNumber } from '@angular/common';
import { FormBuilder, FormGroup } from '@angular/forms';
import { selectPowerOfTen } from 'src/app/bitcoin.utils';
import { StorageService } from 'src/app/services/storage.service';
import { MiningService } from 'src/app/services/mining.service';
@Component({
selector: 'app-hashrate-chart',
templateUrl: './hashrate-chart.component.html',
2022-02-19 22:09:35 +09:00
styleUrls: ['./hashrate-chart.component.scss'],
styles: [`
.loadingGraphs {
position: absolute;
top: 50%;
2022-02-19 22:09:35 +09:00
left: calc(50% - 15px);
z-index: 100;
}
`],
changeDetection: ChangeDetectionStrategy.OnPush,
})
export class HashrateChartComponent implements OnInit {
@Input() tableOnly = false;
@Input() widget = false;
@Input() right: number | string = 45;
2022-02-21 14:02:41 +09:00
@Input() left: number | string = 75;
miningWindowPreference: string;
2022-02-19 22:09:35 +09:00
radioGroupForm: FormGroup;
chartOptions: EChartsOption = {};
chartInitOptions = {
2022-02-21 14:02:41 +09:00
renderer: 'svg',
2022-02-19 22:09:35 +09:00
};
2022-04-05 20:37:18 +02:00
@HostBinding('attr.dir') dir = 'ltr';
2022-02-19 22:09:35 +09:00
hashrateObservable$: Observable<any>;
isLoading = true;
formatNumber = formatNumber;
constructor(
@Inject(LOCALE_ID) public locale: string,
private seoService: SeoService,
private apiService: ApiService,
private formBuilder: FormBuilder,
private cd: ChangeDetectorRef,
private storageService: StorageService,
private miningService: MiningService
2022-02-19 22:09:35 +09:00
) {
}
ngOnInit(): void {
let firstRun = true;
if (this.widget) {
this.miningWindowPreference = '1y';
} else {
this.seoService.setTitle($localize`:@@mining.hashrate-difficulty:Hashrate and Difficulty`);
this.miningWindowPreference = this.miningService.getDefaultTimespan('1m');
}
this.radioGroupForm = this.formBuilder.group({ dateSpan: this.miningWindowPreference });
this.radioGroupForm.controls.dateSpan.setValue(this.miningWindowPreference);
2022-02-19 22:09:35 +09:00
this.hashrateObservable$ = this.radioGroupForm.get('dateSpan').valueChanges
.pipe(
startWith(this.miningWindowPreference),
2022-02-19 22:09:35 +09:00
switchMap((timespan) => {
if (!this.widget && !firstRun) {
this.storageService.setValue('miningWindowPreference', timespan);
}
firstRun = false;
this.miningWindowPreference = timespan;
this.isLoading = true;
2022-02-19 22:09:35 +09:00
return this.apiService.getHistoricalHashrate$(timespan)
.pipe(
tap((response) => {
const data = response.body;
// We generate duplicated data point so the tooltip works nicely
const diffFixed = [];
let diffIndex = 1;
let hashIndex = 0;
while (hashIndex < data.hashrates.length) {
if (diffIndex >= data.difficulty.length) {
while (hashIndex < data.hashrates.length) {
diffFixed.push({
timestamp: data.hashrates[hashIndex].timestamp,
difficulty: data.difficulty[data.difficulty.length - 1].difficulty
});
++hashIndex;
}
break;
}
while (hashIndex < data.hashrates.length && diffIndex < data.difficulty.length &&
data.hashrates[hashIndex].timestamp <= data.difficulty[diffIndex].timestamp
) {
diffFixed.push({
timestamp: data.hashrates[hashIndex].timestamp,
difficulty: data.difficulty[diffIndex - 1].difficulty
});
++hashIndex;
}
++diffIndex;
}
this.prepareChartOptions({
hashrates: data.hashrates.map(val => [val.timestamp * 1000, val.avgHashrate]),
difficulty: diffFixed.map(val => [val.timestamp * 1000, val.difficulty]),
});
2022-02-19 22:09:35 +09:00
this.isLoading = false;
if (data.hashrates.length === 0) {
this.cd.markForCheck();
throw new Error();
}
2022-02-19 22:09:35 +09:00
}),
map((response) => {
const data = response.body;
2022-02-19 22:09:35 +09:00
return {
blockCount: parseInt(response.headers.get('x-total-count'), 10),
2022-03-14 20:00:19 +01:00
currentDifficulty: Math.round(data.difficulty[data.difficulty.length - 1].difficulty * 100) / 100,
currentHashrate: data.currentHashrate
2022-02-19 22:09:35 +09:00
};
}),
retryWhen((errors) => errors.pipe(
delay(60000)
))
2022-02-19 22:09:35 +09:00
);
}),
share()
);
}
2022-02-19 22:09:35 +09:00
prepareChartOptions(data) {
let title: object;
if (data.hashrates.length === 0) {
const lastBlock = new Date(data.timestamp * 1000);
const dd = String(lastBlock.getDate()).padStart(2, '0');
const mm = String(lastBlock.getMonth() + 1).padStart(2, '0'); // January is 0!
const yyyy = lastBlock.getFullYear();
title = {
textStyle: {
color: 'grey',
fontSize: 15
},
text: `Indexing in progess - ${yyyy}-${mm}-${dd}`,
left: 'center',
top: 'center'
};
}
2022-02-19 22:09:35 +09:00
this.chartOptions = {
title: title,
animation: false,
color: [
new graphic.LinearGradient(0, 0, 0, 0.65, [
{ offset: 0, color: '#F4511E' },
{ offset: 0.25, color: '#FB8C00' },
{ offset: 0.5, color: '#FFB300' },
{ offset: 0.75, color: '#FDD835' },
{ offset: 1, color: '#7CB342' }
]),
'#D81B60',
],
2022-02-21 14:02:41 +09:00
grid: {
top: 20,
bottom: this.widget ? 30 : 70,
2022-02-21 14:02:41 +09:00
right: this.right,
left: this.left,
},
2022-02-19 22:09:35 +09:00
tooltip: {
show: !this.isMobile() || !this.widget,
2022-02-19 22:09:35 +09:00
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: (ticks) => {
let hashrateString = '';
let difficultyString = '';
let hashratePowerOfTen: any = selectPowerOfTen(1);
for (const tick of ticks) {
if (tick.seriesIndex === 0) { // Hashrate
let hashrate = tick.data[1];
if (this.isMobile()) {
hashratePowerOfTen = selectPowerOfTen(tick.data[1]);
hashrate = Math.round(tick.data[1] / hashratePowerOfTen.divider);
}
hashrateString = `${tick.marker} ${tick.seriesName}: ${formatNumber(hashrate, this.locale, '1.0-0')} ${hashratePowerOfTen.unit}H/s`;
} else if (tick.seriesIndex === 1) { // Difficulty
let difficultyPowerOfTen = hashratePowerOfTen;
let difficulty = tick.data[1];
if (this.isMobile()) {
difficultyPowerOfTen = selectPowerOfTen(tick.data[1]);
difficulty = Math.round(tick.data[1] / difficultyPowerOfTen.divider);
}
difficultyString = `${tick.marker} ${tick.seriesName}: ${formatNumber(difficulty, this.locale, '1.2-2')} ${difficultyPowerOfTen.unit}`;
}
}
const date = new Date(ticks[0].data[0]).toLocaleDateString(this.locale, { year: 'numeric', month: 'short', day: 'numeric' });
return `
<b style="color: white; margin-left: 18px">${date}</b><br>
<span>${hashrateString}</span><br>
<span>${difficultyString}</span>
`;
}
2022-02-19 22:09:35 +09:00
},
xAxis: data.hashrates.length === 0 ? undefined : {
2022-02-19 22:09:35 +09:00
type: 'time',
splitNumber: (this.isMobile() || this.widget) ? 5 : 10,
2022-04-11 21:17:15 +09:00
axisLabel: {
hideOverlap: true,
}
2022-02-19 22:09:35 +09:00
},
2022-03-14 20:00:19 +01:00
legend: (this.widget || data.hashrates.length === 0) ? undefined : {
data: [
{
name: 'Hashrate',
inactiveColor: 'rgb(110, 112, 121)',
textStyle: {
color: 'white',
},
icon: 'roundRect',
itemStyle: {
color: '#FFB300',
},
},
{
name: 'Difficulty',
inactiveColor: 'rgb(110, 112, 121)',
textStyle: {
color: 'white',
},
icon: 'roundRect',
itemStyle: {
color: '#D81B60',
}
},
],
},
yAxis: data.hashrates.length === 0 ? undefined : [
{
min: (value) => {
return value.min * 0.9;
},
type: 'value',
axisLabel: {
color: 'rgb(110, 112, 121)',
formatter: (val) => {
const selectedPowerOfTen: any = selectPowerOfTen(val);
const newVal = Math.round(val / selectedPowerOfTen.divider);
2022-04-11 21:17:15 +09:00
return `${newVal} ${selectedPowerOfTen.unit}H/s`;
}
},
splitLine: {
show: false,
2022-02-19 22:09:35 +09:00
}
},
{
min: (value) => {
return value.min * 0.9;
},
type: 'value',
position: 'right',
axisLabel: {
color: 'rgb(110, 112, 121)',
formatter: (val) => {
const selectedPowerOfTen: any = selectPowerOfTen(val);
const newVal = Math.round(val / selectedPowerOfTen.divider);
return `${newVal} ${selectedPowerOfTen.unit}`;
}
},
splitLine: {
2022-04-15 00:21:38 +09:00
lineStyle: {
type: 'dotted',
color: '#ffffff66',
opacity: 0.25,
}
},
}
],
series: data.hashrates.length === 0 ? [] : [
{
2022-04-11 21:17:15 +09:00
zlevel: 0,
name: 'Hashrate',
showSymbol: false,
2022-02-25 13:06:33 +09:00
symbol: 'none',
data: data.hashrates,
type: 'line',
lineStyle: {
width: 2,
},
2022-02-19 22:09:35 +09:00
},
{
2022-04-11 21:17:15 +09:00
zlevel: 1,
yAxisIndex: 1,
name: 'Difficulty',
showSymbol: false,
2022-02-25 13:06:33 +09:00
symbol: 'none',
data: data.difficulty,
type: 'line',
lineStyle: {
width: 3,
}
}
],
2022-02-19 22:09:35 +09:00
dataZoom: this.widget ? null : [{
type: 'inside',
realtime: true,
zoomLock: true,
maxSpan: 100,
minSpan: 5,
moveOnMouseMove: false,
2022-02-19 22:09:35 +09:00
}, {
showDetail: false,
show: true,
type: 'slider',
brushSelect: false,
realtime: true,
left: 20,
right: 15,
2022-02-19 22:09:35 +09:00
selectedDataBackground: {
lineStyle: {
color: '#fff',
opacity: 0.45,
},
areaStyle: {
opacity: 0,
}
},
}],
};
}
isMobile() {
return (window.innerWidth <= 767.98);
}
}