mirror of
https://github.com/mempool/mempool.git
synced 2025-01-10 15:30:05 +01:00
158 lines
4.7 KiB
TypeScript
158 lines
4.7 KiB
TypeScript
import { Component, OnInit, LOCALE_ID, Inject } from '@angular/core';
|
|
import { ActivatedRoute } from '@angular/router';
|
|
import { formatDate } from '@angular/common';
|
|
import { FormGroup, FormBuilder } from '@angular/forms';
|
|
import { of, merge} from 'rxjs';
|
|
import { switchMap } from 'rxjs/operators';
|
|
|
|
import { OptimizedMempoolStats } from '../../interfaces/node-api.interface';
|
|
import { WebsocketService } from '../../services/websocket.service';
|
|
import { ApiService } from '../../services/api.service';
|
|
|
|
import * as Chartist from 'chartist';
|
|
import { StateService } from 'src/app/services/state.service';
|
|
import { SeoService } from 'src/app/services/seo.service';
|
|
|
|
@Component({
|
|
selector: 'app-statistics',
|
|
templateUrl: './statistics.component.html',
|
|
styleUrls: ['./statistics.component.scss']
|
|
})
|
|
export class StatisticsComponent implements OnInit {
|
|
network = '';
|
|
|
|
loading = true;
|
|
spinnerLoading = false;
|
|
|
|
mempoolStats: OptimizedMempoolStats[] = [];
|
|
|
|
mempoolVsizeFeesData: any;
|
|
mempoolUnconfirmedTransactionsData: any;
|
|
mempoolTransactionsWeightPerSecondData: any;
|
|
|
|
mempoolVsizeFeesOptions: any;
|
|
transactionsWeightPerSecondOptions: any;
|
|
|
|
radioGroupForm: FormGroup;
|
|
|
|
constructor(
|
|
@Inject(LOCALE_ID) private locale: string,
|
|
private formBuilder: FormBuilder,
|
|
private route: ActivatedRoute,
|
|
private websocketService: WebsocketService,
|
|
private apiService: ApiService,
|
|
private stateService: StateService,
|
|
private seoService: SeoService,
|
|
) {
|
|
this.radioGroupForm = this.formBuilder.group({
|
|
dateSpan: '2h'
|
|
});
|
|
}
|
|
|
|
ngOnInit() {
|
|
this.seoService.setTitle('Graphs');
|
|
this.stateService.networkChanged$.subscribe((network) => this.network = network);
|
|
|
|
const labelInterpolationFnc = (value: any, index: any) => {
|
|
const nr = 6;
|
|
|
|
switch (this.radioGroupForm.controls.dateSpan.value) {
|
|
case '2h':
|
|
case '24h':
|
|
value = formatDate(value, 'HH:mm', this.locale);
|
|
break;
|
|
case '1w':
|
|
value = formatDate(value, 'dd/MM HH:mm', this.locale);
|
|
break;
|
|
case '1m':
|
|
case '3m':
|
|
case '6m':
|
|
case '1y':
|
|
value = formatDate(value, 'dd/MM', this.locale);
|
|
}
|
|
|
|
return index % nr === 0 ? value : null;
|
|
};
|
|
|
|
this.transactionsWeightPerSecondOptions = {
|
|
showArea: false,
|
|
showLine: true,
|
|
showPoint: false,
|
|
low: 0,
|
|
axisY: {
|
|
offset: 40
|
|
},
|
|
axisX: {
|
|
labelInterpolationFnc: labelInterpolationFnc
|
|
},
|
|
plugins: [
|
|
Chartist.plugins.ctTargetLine({
|
|
value: 1667
|
|
}),
|
|
]
|
|
};
|
|
|
|
this.route
|
|
.fragment
|
|
.subscribe((fragment) => {
|
|
if (['2h', '24h', '1w', '1m', '3m', '6m', '1y'].indexOf(fragment) > -1) {
|
|
this.radioGroupForm.controls.dateSpan.setValue(fragment, { emitEvent: false });
|
|
}
|
|
});
|
|
|
|
merge(
|
|
of(''),
|
|
this.radioGroupForm.controls.dateSpan.valueChanges
|
|
)
|
|
.pipe(
|
|
switchMap(() => {
|
|
this.spinnerLoading = true;
|
|
if (this.radioGroupForm.controls.dateSpan.value === '2h') {
|
|
this.websocketService.want(['blocks', 'live-2h-chart']);
|
|
return this.apiService.list2HStatistics$();
|
|
}
|
|
this.websocketService.want(['blocks']);
|
|
if (this.radioGroupForm.controls.dateSpan.value === '24h') {
|
|
return this.apiService.list24HStatistics$();
|
|
}
|
|
if (this.radioGroupForm.controls.dateSpan.value === '1w') {
|
|
return this.apiService.list1WStatistics$();
|
|
}
|
|
if (this.radioGroupForm.controls.dateSpan.value === '1m') {
|
|
return this.apiService.list1MStatistics$();
|
|
}
|
|
if (this.radioGroupForm.controls.dateSpan.value === '3m') {
|
|
return this.apiService.list3MStatistics$();
|
|
}
|
|
if (this.radioGroupForm.controls.dateSpan.value === '6m') {
|
|
return this.apiService.list6MStatistics$();
|
|
}
|
|
return this.apiService.list1YStatistics$();
|
|
})
|
|
)
|
|
.subscribe((mempoolStats: any) => {
|
|
this.mempoolStats = mempoolStats;
|
|
this.handleNewMempoolData(this.mempoolStats.concat([]));
|
|
this.loading = false;
|
|
this.spinnerLoading = false;
|
|
});
|
|
|
|
this.stateService.live2Chart$
|
|
.subscribe((mempoolStats) => {
|
|
this.mempoolStats.unshift(mempoolStats);
|
|
this.mempoolStats = this.mempoolStats.slice(0, this.mempoolStats.length - 1);
|
|
this.handleNewMempoolData(this.mempoolStats.concat([]));
|
|
});
|
|
}
|
|
|
|
handleNewMempoolData(mempoolStats: OptimizedMempoolStats[]) {
|
|
mempoolStats.reverse();
|
|
const labels = mempoolStats.map(stats => stats.added);
|
|
|
|
this.mempoolTransactionsWeightPerSecondData = {
|
|
labels: labels,
|
|
series: [mempoolStats.map((stats) => stats.vbytes_per_second)],
|
|
};
|
|
}
|
|
}
|