2020-03-29 18:59:04 +02:00
|
|
|
import { Component, OnInit, Input, Inject, LOCALE_ID, ChangeDetectionStrategy, OnChanges } from '@angular/core';
|
|
|
|
import { formatDate } from '@angular/common';
|
2020-07-03 18:45:19 +02:00
|
|
|
import { VbytesPipe } from 'src/app/shared/pipes/bytes-pipe/vbytes.pipe';
|
2020-03-29 18:59:04 +02:00
|
|
|
import { OptimizedMempoolStats } from 'src/app/interfaces/node-api.interface';
|
2020-05-09 15:37:50 +02:00
|
|
|
import { StateService } from 'src/app/services/state.service';
|
2020-11-16 13:27:06 +01:00
|
|
|
import { StorageService } from 'src/app/services/storage.service';
|
2021-08-21 06:46:28 +02:00
|
|
|
import { EChartsOption } from 'echarts';
|
|
|
|
import { feeLevels, chartColors } from 'src/app/app.constants';
|
|
|
|
|
2020-03-29 18:59:04 +02:00
|
|
|
@Component({
|
|
|
|
selector: 'app-mempool-graph',
|
|
|
|
templateUrl: './mempool-graph.component.html',
|
|
|
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
|
|
})
|
|
|
|
export class MempoolGraphComponent implements OnInit, OnChanges {
|
2021-08-21 06:46:28 +02:00
|
|
|
@Input() data: any[];
|
|
|
|
@Input() limitFee = 300;
|
|
|
|
@Input() height: number | string = 200;
|
|
|
|
@Input() top: number | string = 20;
|
|
|
|
@Input() right: number | string = 10;
|
|
|
|
@Input() left: number | string = 75;
|
2020-09-27 21:51:01 +02:00
|
|
|
@Input() small = false;
|
2021-08-25 06:01:35 +02:00
|
|
|
@Input() size: ('small' | 'big') = 'small';
|
2020-03-29 18:59:04 +02:00
|
|
|
|
|
|
|
mempoolVsizeFeesData: any;
|
2021-08-21 06:46:28 +02:00
|
|
|
mempoolVsizeFeesOptions: EChartsOption;
|
2021-08-25 06:01:35 +02:00
|
|
|
windowPreference: string;
|
|
|
|
hoverIndexSerie: -1;
|
2020-09-23 10:49:07 +02:00
|
|
|
|
2020-03-29 18:59:04 +02:00
|
|
|
constructor(
|
|
|
|
private vbytesPipe: VbytesPipe,
|
2020-05-09 15:37:50 +02:00
|
|
|
private stateService: StateService,
|
2021-08-25 06:01:35 +02:00
|
|
|
private storageService: StorageService,
|
2020-03-29 18:59:04 +02:00
|
|
|
@Inject(LOCALE_ID) private locale: string,
|
|
|
|
) { }
|
|
|
|
|
|
|
|
ngOnInit(): void {
|
2021-08-21 06:46:28 +02:00
|
|
|
this.mountFeeChart();
|
2020-03-29 18:59:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
ngOnChanges() {
|
2021-08-25 06:01:35 +02:00
|
|
|
this.windowPreference = this.storageService.getValue('graphWindowPreference');
|
2020-03-29 18:59:04 +02:00
|
|
|
this.mempoolVsizeFeesData = this.handleNewMempoolData(this.data.concat([]));
|
2021-08-21 06:46:28 +02:00
|
|
|
this.mountFeeChart();
|
2020-03-29 18:59:04 +02:00
|
|
|
}
|
|
|
|
|
2021-08-25 06:01:35 +02:00
|
|
|
onChartReady(myChart: any) {
|
|
|
|
myChart.on('mouseover', 'series', (serie: any) => {
|
|
|
|
this.hoverIndexSerie = serie.seriesIndex;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2020-03-29 18:59:04 +02:00
|
|
|
handleNewMempoolData(mempoolStats: OptimizedMempoolStats[]) {
|
|
|
|
mempoolStats.reverse();
|
|
|
|
const labels = mempoolStats.map(stats => stats.added);
|
2021-08-21 06:46:28 +02:00
|
|
|
const finalArrayVByte = this.generateArray(mempoolStats);
|
2020-03-29 18:59:04 +02:00
|
|
|
|
|
|
|
// Only Liquid has lower than 1 sat/vb transactions
|
2020-05-17 12:06:09 +02:00
|
|
|
if (this.stateService.network !== 'liquid') {
|
2021-08-21 06:46:28 +02:00
|
|
|
finalArrayVByte.shift();
|
2020-03-29 18:59:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return {
|
|
|
|
labels: labels,
|
2021-08-21 06:46:28 +02:00
|
|
|
series: finalArrayVByte
|
2020-03-29 18:59:04 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
generateArray(mempoolStats: OptimizedMempoolStats[]) {
|
|
|
|
const finalArray: number[][] = [];
|
|
|
|
let feesArray: number[] = [];
|
|
|
|
|
|
|
|
for (let index = 37; index > -1; index--) {
|
|
|
|
feesArray = [];
|
|
|
|
mempoolStats.forEach((stats) => {
|
|
|
|
const theFee = stats.vsizes[index].toString();
|
|
|
|
if (theFee) {
|
|
|
|
feesArray.push(parseInt(theFee, 10));
|
|
|
|
} else {
|
|
|
|
feesArray.push(0);
|
|
|
|
}
|
|
|
|
});
|
2021-08-25 06:01:35 +02:00
|
|
|
if (finalArray.length) {
|
|
|
|
feesArray = feesArray.map((value, i) => value + finalArray[finalArray.length - 1][i]);
|
|
|
|
}
|
2020-03-29 18:59:04 +02:00
|
|
|
finalArray.push(feesArray);
|
|
|
|
}
|
|
|
|
finalArray.reverse();
|
|
|
|
return finalArray;
|
|
|
|
}
|
2021-08-21 06:46:28 +02:00
|
|
|
|
|
|
|
mountFeeChart(){
|
|
|
|
const { labels, series } = this.mempoolVsizeFeesData;
|
|
|
|
|
2021-08-25 06:01:35 +02:00
|
|
|
const feeLevelsOrdered = feeLevels.map((sat, i, arr) => {
|
|
|
|
if (i <= 26) {
|
|
|
|
if (i === 0) { return '0 - 1'; }
|
|
|
|
if (i === 26) { return '350+'; }
|
|
|
|
return arr[i - 1] + ' - ' + sat;
|
|
|
|
}
|
2021-08-21 06:46:28 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
const yAxisSeries = series.map((value: Array<number>, index: number) => {
|
2021-08-25 06:01:35 +02:00
|
|
|
if (index <= 26){
|
|
|
|
return {
|
|
|
|
name: feeLevelsOrdered[index],
|
|
|
|
type: 'line',
|
|
|
|
stack: 'total',
|
|
|
|
smooth: false,
|
|
|
|
markPoint: {
|
|
|
|
symbol: 'rect',
|
2021-08-21 06:46:28 +02:00
|
|
|
},
|
|
|
|
lineStyle: {
|
2021-08-25 06:01:35 +02:00
|
|
|
width: 0,
|
|
|
|
opacity: 0,
|
2021-08-21 06:46:28 +02:00
|
|
|
},
|
2021-08-25 06:01:35 +02:00
|
|
|
symbolSize: (this.size === 'big') ? 15 : 10,
|
|
|
|
showSymbol: false,
|
|
|
|
areaStyle: {
|
|
|
|
opacity: 1,
|
|
|
|
color: chartColors[index],
|
|
|
|
},
|
|
|
|
emphasis: {
|
|
|
|
focus: 'series',
|
|
|
|
},
|
|
|
|
itemStyle: {
|
|
|
|
borderWidth: 30,
|
|
|
|
color: chartColors[index],
|
|
|
|
borderColor: chartColors[index],
|
|
|
|
},
|
|
|
|
data: this.vbytesPipe.transform(value, 2, 'vB', 'MvB', true)
|
|
|
|
};
|
|
|
|
}
|
2021-08-21 06:46:28 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
this.mempoolVsizeFeesOptions = {
|
|
|
|
color: chartColors,
|
|
|
|
tooltip: {
|
|
|
|
trigger: 'axis',
|
|
|
|
position: (pos, params, el, elRect, size) => {
|
|
|
|
const positions = { top: -20 };
|
|
|
|
positions[['left', 'right'][+(pos[0] < size.viewSize[0] / 2)]] = 80;
|
|
|
|
return positions;
|
|
|
|
},
|
2021-08-25 06:01:35 +02:00
|
|
|
extraCssText: `width: ${(this.size === 'big') ? '200px' : '170px'};
|
2021-08-21 06:46:28 +02:00
|
|
|
background: transparent;
|
|
|
|
border: none;
|
|
|
|
box-shadow: none;`,
|
|
|
|
axisPointer: {
|
2021-08-25 06:01:35 +02:00
|
|
|
type: 'line',
|
2021-08-21 06:46:28 +02:00
|
|
|
},
|
|
|
|
formatter: (params: any) => {
|
|
|
|
const colorSpan = (index: number) => `<div class="indicator" style="background-color: ` + chartColors[index] + `"></div>`;
|
2021-08-25 06:01:35 +02:00
|
|
|
const legendName = (index: number) => feeLevelsOrdered[index];
|
|
|
|
let itemFormatted = `<div class="title">${params[0].axisValue}</div>`;
|
|
|
|
let total = 0;
|
2021-08-21 06:46:28 +02:00
|
|
|
params.map((item: any, index: number) => {
|
2021-08-25 06:01:35 +02:00
|
|
|
total += item.value;
|
|
|
|
if (index <= 26) {
|
|
|
|
let activeItemClass = '';
|
|
|
|
if (this.hoverIndexSerie === index){
|
|
|
|
activeItemClass = 'active';
|
|
|
|
}
|
|
|
|
itemFormatted += `<div class="item ${activeItemClass}">
|
|
|
|
${colorSpan(index)} ${legendName(index)}
|
2021-08-21 06:46:28 +02:00
|
|
|
<div class="grow"></div>
|
2021-08-25 06:01:35 +02:00
|
|
|
<div class="value">${this.vbytesPipe.transform(item.value, 2, 'vB', 'MvB', false)}</div>
|
2021-08-21 06:46:28 +02:00
|
|
|
</div>`;
|
|
|
|
}
|
|
|
|
});
|
2021-08-25 06:01:35 +02:00
|
|
|
const totalDiv = `<div class="total-label">Total
|
|
|
|
<span class="total-value">${this.vbytesPipe.transform(total, 2, 'vB', 'MvB', true)}</span>
|
|
|
|
</div>`;
|
|
|
|
const bigClass = (this.size === 'big') ? 'fees-wrapper-tooltip-chart-big' : '';
|
|
|
|
return `<div class="fees-wrapper-tooltip-chart ${bigClass}">${itemFormatted} ${totalDiv}</div>`;
|
2021-08-21 06:46:28 +02:00
|
|
|
}
|
|
|
|
},
|
2021-08-25 06:01:35 +02:00
|
|
|
dataZoom: [{
|
|
|
|
type: 'inside',
|
|
|
|
realtime: true,
|
|
|
|
}, {
|
|
|
|
show: (this.size === 'big') ? true : false,
|
|
|
|
type: 'slider',
|
|
|
|
brushSelect: false,
|
|
|
|
realtime: true,
|
|
|
|
selectedDataBackground: {
|
|
|
|
lineStyle: {
|
|
|
|
color: '#fff',
|
|
|
|
opacity: 0.45,
|
|
|
|
},
|
|
|
|
areaStyle: {
|
|
|
|
opacity: 0,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}],
|
2021-08-21 06:46:28 +02:00
|
|
|
grid: {
|
|
|
|
height: this.height,
|
|
|
|
right: this.right,
|
|
|
|
top: this.top,
|
|
|
|
left: this.left,
|
|
|
|
},
|
|
|
|
xAxis: [
|
|
|
|
{
|
|
|
|
type: 'category',
|
|
|
|
boundaryGap: false,
|
2021-08-25 06:01:35 +02:00
|
|
|
axisLine: { onZero: false },
|
2021-08-27 04:29:39 +02:00
|
|
|
data: labels.map((value: any) => formatDate(value, 'MM/dd - HH:mm', this.locale)),
|
2021-08-21 06:46:28 +02:00
|
|
|
}
|
|
|
|
],
|
|
|
|
yAxis: {
|
|
|
|
type: 'value',
|
2021-08-25 06:01:35 +02:00
|
|
|
axisLine: { onZero: false },
|
2021-08-21 06:46:28 +02:00
|
|
|
axisLabel: {
|
|
|
|
formatter: (value: number) => (`${this.vbytesPipe.transform(value, 2, 'vB', 'MvB', true)}`),
|
|
|
|
},
|
|
|
|
splitLine: {
|
|
|
|
lineStyle: {
|
|
|
|
type: 'dotted',
|
|
|
|
color: '#ffffff66',
|
|
|
|
opacity: 0.25,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
series: yAxisSeries
|
|
|
|
};
|
|
|
|
}
|
2020-03-29 18:59:04 +02:00
|
|
|
}
|