2022-04-05 20:37:18 +02:00
|
|
|
import { ChangeDetectionStrategy, ChangeDetectorRef, Component, Inject, Input, LOCALE_ID, OnInit, HostBinding } from '@angular/core';
|
2022-02-21 23:36:05 +09:00
|
|
|
import { EChartsOption, graphic } from 'echarts';
|
2022-02-19 22:09:35 +09:00
|
|
|
import { Observable } from 'rxjs';
|
2022-03-09 21:21:44 +01:00
|
|
|
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';
|
2022-02-21 15:55:27 +09:00
|
|
|
import { selectPowerOfTen } from 'src/app/bitcoin.utils';
|
2022-04-11 18:17:36 +09:00
|
|
|
import { StorageService } from 'src/app/services/storage.service';
|
|
|
|
import { MiningService } from 'src/app/services/mining.service';
|
2022-02-18 15:26:15 +09:00
|
|
|
|
|
|
|
@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;
|
2022-03-07 19:54:17 +01:00
|
|
|
top: 50%;
|
2022-02-19 22:09:35 +09:00
|
|
|
left: calc(50% - 15px);
|
|
|
|
z-index: 100;
|
|
|
|
}
|
|
|
|
`],
|
2022-03-09 21:21:44 +01:00
|
|
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
2022-02-18 15:26:15 +09:00
|
|
|
})
|
|
|
|
export class HashrateChartComponent implements OnInit {
|
2022-02-28 17:52:55 +09:00
|
|
|
@Input() tableOnly = false;
|
|
|
|
@Input() widget = false;
|
2022-02-22 15:50:14 +09:00
|
|
|
@Input() right: number | string = 45;
|
2022-02-21 14:02:41 +09:00
|
|
|
@Input() left: number | string = 75;
|
2022-02-18 15:26:15 +09:00
|
|
|
|
2022-04-11 18:17:36 +09:00
|
|
|
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,
|
2022-03-09 21:21:44 +01:00
|
|
|
private cd: ChangeDetectorRef,
|
2022-04-11 18:17:36 +09:00
|
|
|
private storageService: StorageService,
|
|
|
|
private miningService: MiningService
|
2022-02-19 22:09:35 +09:00
|
|
|
) {
|
|
|
|
}
|
2022-02-18 15:26:15 +09:00
|
|
|
|
|
|
|
ngOnInit(): void {
|
2022-04-11 18:17:36 +09:00
|
|
|
let firstRun = true;
|
|
|
|
|
|
|
|
if (this.widget) {
|
|
|
|
this.miningWindowPreference = '1y';
|
|
|
|
} else {
|
2022-02-24 20:20:18 +09:00
|
|
|
this.seoService.setTitle($localize`:@@mining.hashrate-difficulty:Hashrate and Difficulty`);
|
2022-04-11 18:17:36 +09:00
|
|
|
this.miningWindowPreference = this.miningService.getDefaultTimespan('1m');
|
2022-02-24 20:20:18 +09:00
|
|
|
}
|
2022-04-11 18:17:36 +09:00
|
|
|
this.radioGroupForm = this.formBuilder.group({ dateSpan: this.miningWindowPreference });
|
|
|
|
this.radioGroupForm.controls.dateSpan.setValue(this.miningWindowPreference);
|
2022-02-24 20:20:18 +09:00
|
|
|
|
2022-02-19 22:09:35 +09:00
|
|
|
this.hashrateObservable$ = this.radioGroupForm.get('dateSpan').valueChanges
|
|
|
|
.pipe(
|
2022-04-11 18:17:36 +09:00
|
|
|
startWith(this.miningWindowPreference),
|
2022-02-19 22:09:35 +09:00
|
|
|
switchMap((timespan) => {
|
2022-04-11 18:17:36 +09:00
|
|
|
if (!this.widget && !firstRun) {
|
|
|
|
this.storageService.setValue('miningWindowPreference', timespan);
|
|
|
|
}
|
|
|
|
firstRun = false;
|
|
|
|
this.miningWindowPreference = timespan;
|
2022-03-14 18:06:54 +01:00
|
|
|
this.isLoading = true;
|
2022-02-19 22:09:35 +09:00
|
|
|
return this.apiService.getHistoricalHashrate$(timespan)
|
|
|
|
.pipe(
|
2022-02-22 16:06:27 +09:00
|
|
|
tap((data: any) => {
|
|
|
|
// We generate duplicated data point so the tooltip works nicely
|
2022-02-22 15:50:14 +09:00
|
|
|
const diffFixed = [];
|
2022-02-22 22:53:47 +09:00
|
|
|
let diffIndex = 1;
|
2022-02-22 15:50:14 +09:00
|
|
|
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
|
|
|
|
});
|
2022-02-22 20:15:15 +09:00
|
|
|
++hashIndex;
|
2022-02-22 15:50:14 +09:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2022-02-22 22:53:47 +09:00
|
|
|
while (hashIndex < data.hashrates.length && diffIndex < data.difficulty.length &&
|
|
|
|
data.hashrates[hashIndex].timestamp <= data.difficulty[diffIndex].timestamp
|
|
|
|
) {
|
2022-02-22 15:50:14 +09:00
|
|
|
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]),
|
2022-03-09 20:10:51 +01:00
|
|
|
difficulty: diffFixed.map(val => [val.timestamp * 1000, val.difficulty]),
|
|
|
|
timestamp: data.oldestIndexedBlockTimestamp,
|
2022-02-22 15:50:14 +09:00
|
|
|
});
|
2022-02-19 22:09:35 +09:00
|
|
|
this.isLoading = false;
|
2022-03-09 21:21:44 +01:00
|
|
|
|
|
|
|
if (data.hashrates.length === 0) {
|
|
|
|
this.cd.markForCheck();
|
|
|
|
throw new Error();
|
|
|
|
}
|
2022-02-19 22:09:35 +09:00
|
|
|
}),
|
2022-02-22 15:50:14 +09:00
|
|
|
map((data: any) => {
|
2022-02-19 22:09:35 +09:00
|
|
|
const availableTimespanDay = (
|
2022-02-22 15:50:14 +09:00
|
|
|
(new Date().getTime() / 1000) - (data.oldestIndexedBlockTimestamp)
|
2022-02-19 22:09:35 +09:00
|
|
|
) / 3600 / 24;
|
2022-02-22 16:06:27 +09:00
|
|
|
|
2022-02-19 22:09:35 +09:00
|
|
|
return {
|
|
|
|
availableTimespanDay: availableTimespanDay,
|
2022-03-14 20:00:19 +01:00
|
|
|
currentDifficulty: Math.round(data.difficulty[data.difficulty.length - 1].difficulty * 100) / 100,
|
|
|
|
currentHashrate: data.hashrates[data.hashrates.length - 1].avgHashrate,
|
2022-02-19 22:09:35 +09:00
|
|
|
};
|
|
|
|
}),
|
2022-03-09 21:21:44 +01:00
|
|
|
retryWhen((errors) => errors.pipe(
|
2022-03-16 17:56:05 +01:00
|
|
|
delay(60000)
|
2022-03-09 21:21:44 +01:00
|
|
|
))
|
2022-02-19 22:09:35 +09:00
|
|
|
);
|
2022-02-21 12:22:20 +09:00
|
|
|
}),
|
|
|
|
share()
|
|
|
|
);
|
2022-02-18 15:26:15 +09:00
|
|
|
}
|
|
|
|
|
2022-02-19 22:09:35 +09:00
|
|
|
prepareChartOptions(data) {
|
2022-03-09 20:10:51 +01:00
|
|
|
let title: object;
|
2022-03-09 12:15:10 +01:00
|
|
|
if (data.hashrates.length === 0) {
|
2022-03-09 20:10:51 +01:00
|
|
|
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();
|
2022-03-09 12:15:10 +01:00
|
|
|
title = {
|
|
|
|
textStyle: {
|
2022-03-16 17:56:05 +01:00
|
|
|
color: 'grey',
|
|
|
|
fontSize: 15
|
2022-03-09 12:15:10 +01:00
|
|
|
},
|
2022-03-09 20:10:51 +01:00
|
|
|
text: `Indexing in progess - ${yyyy}-${mm}-${dd}`,
|
|
|
|
left: 'center',
|
|
|
|
top: 'center'
|
2022-03-09 12:15:10 +01:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2022-02-19 22:09:35 +09:00
|
|
|
this.chartOptions = {
|
2022-03-09 12:15:10 +01:00
|
|
|
title: title,
|
2022-03-14 18:06:54 +01:00
|
|
|
animation: false,
|
2022-02-22 15:50:14 +09:00
|
|
|
color: [
|
2022-02-22 20:15:15 +09:00
|
|
|
new graphic.LinearGradient(0, 0, 0, 0.65, [
|
2022-02-22 15:50:14 +09:00
|
|
|
{ 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: {
|
2022-03-31 18:14:07 +09:00
|
|
|
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: {
|
2022-03-07 11:41:41 +01:00
|
|
|
show: !this.isMobile() || !this.widget,
|
2022-02-19 22:09:35 +09:00
|
|
|
trigger: 'axis',
|
2022-02-22 15:50:14 +09:00
|
|
|
axisPointer: {
|
|
|
|
type: 'line'
|
|
|
|
},
|
2022-02-21 23:36:05 +09:00
|
|
|
backgroundColor: 'rgba(17, 19, 31, 1)',
|
|
|
|
borderRadius: 4,
|
|
|
|
shadowColor: 'rgba(0, 0, 0, 0.5)',
|
|
|
|
textStyle: {
|
|
|
|
color: '#b1b1b1',
|
2022-02-22 20:30:14 +09:00
|
|
|
align: 'left',
|
2022-02-21 23:36:05 +09:00
|
|
|
},
|
|
|
|
borderColor: '#000',
|
2022-03-31 18:14:07 +09:00
|
|
|
formatter: (ticks) => {
|
2022-03-16 17:56:05 +01:00
|
|
|
let hashrateString = '';
|
|
|
|
let difficultyString = '';
|
2022-02-22 20:15:15 +09:00
|
|
|
let hashratePowerOfTen: any = selectPowerOfTen(1);
|
2022-03-16 17:56:05 +01:00
|
|
|
|
|
|
|
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}`;
|
|
|
|
}
|
2022-02-22 20:15:15 +09:00
|
|
|
}
|
|
|
|
|
2022-03-16 17:56:05 +01:00
|
|
|
const date = new Date(ticks[0].data[0]).toLocaleDateString(this.locale, { year: 'numeric', month: 'short', day: 'numeric' });
|
|
|
|
|
2022-02-22 20:15:15 +09:00
|
|
|
return `
|
2022-03-10 11:48:21 +01:00
|
|
|
<b style="color: white; margin-left: 18px">${date}</b><br>
|
2022-03-16 17:56:05 +01:00
|
|
|
<span>${hashrateString}</span><br>
|
|
|
|
<span>${difficultyString}</span>
|
2022-02-22 20:15:15 +09:00
|
|
|
`;
|
2022-03-31 18:14:07 +09:00
|
|
|
}
|
2022-02-19 22:09:35 +09:00
|
|
|
},
|
2022-03-09 20:10:51 +01:00
|
|
|
xAxis: data.hashrates.length === 0 ? undefined : {
|
2022-02-19 22:09:35 +09:00
|
|
|
type: 'time',
|
2022-02-22 23:32:14 +09:00
|
|
|
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 : {
|
2022-02-22 15:50:14 +09:00
|
|
|
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',
|
|
|
|
}
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
2022-03-09 20:10:51 +01:00
|
|
|
yAxis: data.hashrates.length === 0 ? undefined : [
|
2022-02-22 15:50:14 +09:00
|
|
|
{
|
2022-03-31 18:14:07 +09:00
|
|
|
min: (value) => {
|
2022-02-22 20:15:15 +09:00
|
|
|
return value.min * 0.9;
|
|
|
|
},
|
2022-02-22 15:50:14 +09:00
|
|
|
type: 'value',
|
|
|
|
axisLabel: {
|
|
|
|
color: 'rgb(110, 112, 121)',
|
|
|
|
formatter: (val) => {
|
|
|
|
const selectedPowerOfTen: any = selectPowerOfTen(val);
|
2022-02-22 20:15:15 +09:00
|
|
|
const newVal = Math.round(val / selectedPowerOfTen.divider);
|
2022-04-11 21:17:15 +09:00
|
|
|
return `${newVal} ${selectedPowerOfTen.unit}H/s`;
|
2022-02-22 15:50:14 +09:00
|
|
|
}
|
|
|
|
},
|
|
|
|
splitLine: {
|
|
|
|
show: false,
|
2022-02-19 22:09:35 +09:00
|
|
|
}
|
|
|
|
},
|
2022-02-22 15:50:14 +09:00
|
|
|
{
|
2022-03-31 18:14:07 +09:00
|
|
|
min: (value) => {
|
2022-02-22 20:15:15 +09:00
|
|
|
return value.min * 0.9;
|
|
|
|
},
|
2022-02-22 15:50:14 +09:00
|
|
|
type: 'value',
|
|
|
|
position: 'right',
|
|
|
|
axisLabel: {
|
|
|
|
color: 'rgb(110, 112, 121)',
|
|
|
|
formatter: (val) => {
|
|
|
|
const selectedPowerOfTen: any = selectPowerOfTen(val);
|
2022-02-22 20:15:15 +09:00
|
|
|
const newVal = Math.round(val / selectedPowerOfTen.divider);
|
2022-03-31 18:14:07 +09:00
|
|
|
return `${newVal} ${selectedPowerOfTen.unit}`;
|
2022-02-22 15:50:14 +09:00
|
|
|
}
|
|
|
|
},
|
|
|
|
splitLine: {
|
2022-04-15 00:21:38 +09:00
|
|
|
lineStyle: {
|
|
|
|
type: 'dotted',
|
|
|
|
color: '#ffffff66',
|
|
|
|
opacity: 0.25,
|
|
|
|
}
|
|
|
|
},
|
2022-02-22 15:50:14 +09:00
|
|
|
}
|
|
|
|
],
|
2022-03-09 20:10:51 +01:00
|
|
|
series: data.hashrates.length === 0 ? [] : [
|
2022-02-22 15:50:14 +09:00
|
|
|
{
|
2022-04-11 21:17:15 +09:00
|
|
|
zlevel: 0,
|
2022-02-22 15:50:14 +09:00
|
|
|
name: 'Hashrate',
|
|
|
|
showSymbol: false,
|
2022-02-25 13:06:33 +09:00
|
|
|
symbol: 'none',
|
2022-02-22 15:50:14 +09:00
|
|
|
data: data.hashrates,
|
|
|
|
type: 'line',
|
|
|
|
lineStyle: {
|
|
|
|
width: 2,
|
|
|
|
},
|
2022-02-19 22:09:35 +09:00
|
|
|
},
|
2022-02-22 15:50:14 +09:00
|
|
|
{
|
2022-04-11 21:17:15 +09:00
|
|
|
zlevel: 1,
|
2022-02-22 15:50:14 +09:00
|
|
|
yAxisIndex: 1,
|
|
|
|
name: 'Difficulty',
|
|
|
|
showSymbol: false,
|
2022-02-25 13:06:33 +09:00
|
|
|
symbol: 'none',
|
2022-02-22 15:50:14 +09:00
|
|
|
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: 10,
|
2022-03-14 18:25:16 +01:00
|
|
|
moveOnMouseMove: false,
|
2022-02-19 22:09:35 +09:00
|
|
|
}, {
|
|
|
|
showDetail: false,
|
|
|
|
show: true,
|
|
|
|
type: 'slider',
|
|
|
|
brushSelect: false,
|
|
|
|
realtime: true,
|
2022-03-14 18:06:54 +01:00
|
|
|
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);
|
|
|
|
}
|
2022-02-18 15:26:15 +09:00
|
|
|
}
|