2019-07-21 17:59:47 +03:00
|
|
|
import { Component, OnInit, LOCALE_ID, Inject } from '@angular/core';
|
2020-02-16 22:15:07 +07:00
|
|
|
import { ActivatedRoute } from '@angular/router';
|
2019-07-21 17:59:47 +03:00
|
|
|
import { FormGroup, FormBuilder } from '@angular/forms';
|
2019-10-31 13:55:25 +08:00
|
|
|
import { of, merge} from 'rxjs';
|
2020-03-29 23:59:04 +07:00
|
|
|
import { switchMap } from 'rxjs/operators';
|
2020-02-16 22:15:07 +07:00
|
|
|
|
2020-02-17 00:26:57 +07:00
|
|
|
import { OptimizedMempoolStats } from '../../interfaces/node-api.interface';
|
2020-02-16 22:15:07 +07:00
|
|
|
import { WebsocketService } from '../../services/websocket.service';
|
|
|
|
import { ApiService } from '../../services/api.service';
|
|
|
|
|
|
|
|
import { StateService } from 'src/app/services/state.service';
|
2020-03-24 00:52:08 +07:00
|
|
|
import { SeoService } from 'src/app/services/seo.service';
|
2020-11-16 19:27:06 +07:00
|
|
|
import { StorageService } from 'src/app/services/storage.service';
|
2021-10-06 01:08:13 -03:00
|
|
|
import { feeLevels, chartColors } from 'src/app/app.constants';
|
2019-07-21 17:59:47 +03:00
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'app-statistics',
|
|
|
|
templateUrl: './statistics.component.html',
|
|
|
|
styleUrls: ['./statistics.component.scss']
|
|
|
|
})
|
|
|
|
export class StatisticsComponent implements OnInit {
|
2020-05-09 20:37:50 +07:00
|
|
|
network = '';
|
2020-03-28 19:24:13 +07:00
|
|
|
|
2019-07-21 17:59:47 +03:00
|
|
|
loading = true;
|
|
|
|
spinnerLoading = false;
|
2021-10-06 01:08:13 -03:00
|
|
|
feeLevels = feeLevels;
|
|
|
|
chartColors = chartColors;
|
2021-10-07 16:03:21 -03:00
|
|
|
filterFeeIndex = 1;
|
2021-10-06 15:44:05 -03:00
|
|
|
dropDownOpen = false;
|
2019-07-21 17:59:47 +03:00
|
|
|
|
2020-02-17 00:26:57 +07:00
|
|
|
mempoolStats: OptimizedMempoolStats[] = [];
|
2019-07-21 17:59:47 +03:00
|
|
|
|
|
|
|
mempoolVsizeFeesData: any;
|
|
|
|
mempoolUnconfirmedTransactionsData: any;
|
|
|
|
mempoolTransactionsWeightPerSecondData: any;
|
|
|
|
|
|
|
|
radioGroupForm: FormGroup;
|
2021-10-06 01:08:13 -03:00
|
|
|
graphWindowPreference: string;
|
2021-09-26 11:41:55 -03:00
|
|
|
inverted: boolean;
|
2019-07-21 17:59:47 +03:00
|
|
|
|
|
|
|
constructor(
|
|
|
|
@Inject(LOCALE_ID) private locale: string,
|
|
|
|
private formBuilder: FormBuilder,
|
|
|
|
private route: ActivatedRoute,
|
2020-02-16 22:15:07 +07:00
|
|
|
private websocketService: WebsocketService,
|
|
|
|
private apiService: ApiService,
|
|
|
|
private stateService: StateService,
|
2020-03-24 00:52:08 +07:00
|
|
|
private seoService: SeoService,
|
2020-11-16 19:27:06 +07:00
|
|
|
private storageService: StorageService,
|
2021-04-19 10:50:24 +04:00
|
|
|
) { }
|
2019-07-21 17:59:47 +03:00
|
|
|
|
|
|
|
ngOnInit() {
|
2021-09-26 11:41:55 -03:00
|
|
|
this.inverted = this.storageService.getValue('inverted-graph') === 'true';
|
2021-10-06 01:08:13 -03:00
|
|
|
if (!this.inverted) {
|
|
|
|
this.feeLevels = [...feeLevels].reverse();
|
|
|
|
this.chartColors = [...chartColors].reverse();
|
|
|
|
}
|
2020-12-03 18:34:19 +07:00
|
|
|
this.seoService.setTitle($localize`:@@5d4f792f048fcaa6df5948575d7cb325c9393383:Graphs`);
|
2020-05-09 20:37:50 +07:00
|
|
|
this.stateService.networkChanged$.subscribe((network) => this.network = network);
|
2021-04-19 10:50:24 +04:00
|
|
|
this.graphWindowPreference = this.storageService.getValue('graphWindowPreference') ? this.storageService.getValue('graphWindowPreference').trim() : '2h';
|
2020-09-26 22:46:26 +07:00
|
|
|
const isMobile = window.innerWidth <= 767.98;
|
2020-10-26 01:00:21 +07:00
|
|
|
let labelHops = isMobile ? 48 : 24;
|
|
|
|
|
|
|
|
if (isMobile) {
|
|
|
|
labelHops = 96;
|
|
|
|
}
|
2020-05-09 20:37:50 +07:00
|
|
|
|
2021-04-19 10:50:24 +04:00
|
|
|
this.radioGroupForm = this.formBuilder.group({
|
|
|
|
dateSpan: this.graphWindowPreference
|
|
|
|
});
|
|
|
|
|
2019-07-21 17:59:47 +03:00
|
|
|
this.route
|
|
|
|
.fragment
|
|
|
|
.subscribe((fragment) => {
|
2021-11-01 22:06:10 -03:00
|
|
|
if (['2h', '24h', '1w', '1m', '3m', '6m', '1y', '2y', '3y'].indexOf(fragment) > -1) {
|
2020-02-16 22:15:07 +07:00
|
|
|
this.radioGroupForm.controls.dateSpan.setValue(fragment, { emitEvent: false });
|
2019-07-21 17:59:47 +03:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
merge(
|
|
|
|
of(''),
|
2020-02-16 22:15:07 +07:00
|
|
|
this.radioGroupForm.controls.dateSpan.valueChanges
|
2019-07-21 17:59:47 +03:00
|
|
|
)
|
|
|
|
.pipe(
|
|
|
|
switchMap(() => {
|
|
|
|
this.spinnerLoading = true;
|
2021-04-19 10:50:24 +04:00
|
|
|
if (this.radioGroupForm.controls.dateSpan.value === '2h') {
|
2020-09-21 19:41:12 +07:00
|
|
|
this.websocketService.want(['blocks', 'live-2h-chart']);
|
2019-07-26 12:48:32 +03:00
|
|
|
return this.apiService.list2HStatistics$();
|
2019-07-21 17:59:47 +03:00
|
|
|
}
|
2020-09-21 19:41:12 +07:00
|
|
|
this.websocketService.want(['blocks']);
|
2021-04-19 10:50:24 +04:00
|
|
|
if (this.radioGroupForm.controls.dateSpan.value === '24h') {
|
2019-07-26 12:48:32 +03:00
|
|
|
return this.apiService.list24HStatistics$();
|
2019-07-21 17:59:47 +03:00
|
|
|
}
|
2021-04-19 10:50:24 +04:00
|
|
|
if (this.radioGroupForm.controls.dateSpan.value === '1w') {
|
2019-07-21 17:59:47 +03:00
|
|
|
return this.apiService.list1WStatistics$();
|
|
|
|
}
|
2021-04-19 10:50:24 +04:00
|
|
|
if (this.radioGroupForm.controls.dateSpan.value === '1m') {
|
2019-07-26 12:48:32 +03:00
|
|
|
return this.apiService.list1MStatistics$();
|
2019-07-21 17:59:47 +03:00
|
|
|
}
|
2021-04-19 10:50:24 +04:00
|
|
|
if (this.radioGroupForm.controls.dateSpan.value === '3m') {
|
2019-07-26 12:48:32 +03:00
|
|
|
return this.apiService.list3MStatistics$();
|
2019-07-21 17:59:47 +03:00
|
|
|
}
|
2021-04-19 10:50:24 +04:00
|
|
|
if (this.radioGroupForm.controls.dateSpan.value === '6m') {
|
2020-02-17 00:26:57 +07:00
|
|
|
return this.apiService.list6MStatistics$();
|
|
|
|
}
|
2021-11-01 22:06:10 -03:00
|
|
|
if (this.radioGroupForm.controls.dateSpan.value === '1y') {
|
|
|
|
return this.apiService.list1YStatistics$();
|
|
|
|
}
|
|
|
|
if (this.radioGroupForm.controls.dateSpan.value === '2y') {
|
|
|
|
return this.apiService.list2YStatistics$();
|
|
|
|
}
|
|
|
|
return this.apiService.list3YStatistics$();
|
2019-07-21 17:59:47 +03:00
|
|
|
})
|
|
|
|
)
|
2020-02-16 22:15:07 +07:00
|
|
|
.subscribe((mempoolStats: any) => {
|
2019-07-26 12:48:32 +03:00
|
|
|
this.mempoolStats = mempoolStats;
|
|
|
|
this.handleNewMempoolData(this.mempoolStats.concat([]));
|
2019-07-21 17:59:47 +03:00
|
|
|
this.loading = false;
|
|
|
|
this.spinnerLoading = false;
|
|
|
|
});
|
2019-07-26 12:48:32 +03:00
|
|
|
|
2020-02-16 22:15:07 +07:00
|
|
|
this.stateService.live2Chart$
|
2019-07-26 12:48:32 +03:00
|
|
|
.subscribe((mempoolStats) => {
|
|
|
|
this.mempoolStats.unshift(mempoolStats);
|
|
|
|
this.mempoolStats = this.mempoolStats.slice(0, this.mempoolStats.length - 1);
|
|
|
|
this.handleNewMempoolData(this.mempoolStats.concat([]));
|
|
|
|
});
|
2019-07-21 17:59:47 +03:00
|
|
|
}
|
|
|
|
|
2020-02-17 00:26:57 +07:00
|
|
|
handleNewMempoolData(mempoolStats: OptimizedMempoolStats[]) {
|
2019-07-21 17:59:47 +03:00
|
|
|
mempoolStats.reverse();
|
|
|
|
const labels = mempoolStats.map(stats => stats.added);
|
|
|
|
|
|
|
|
this.mempoolTransactionsWeightPerSecondData = {
|
|
|
|
labels: labels,
|
|
|
|
series: [mempoolStats.map((stats) => stats.vbytes_per_second)],
|
|
|
|
};
|
|
|
|
}
|
2020-11-16 19:27:06 +07:00
|
|
|
|
2021-04-18 23:17:16 -07:00
|
|
|
saveGraphPreference() {
|
|
|
|
this.storageService.setValue('graphWindowPreference', this.radioGroupForm.controls.dateSpan.value);
|
|
|
|
}
|
2021-09-26 11:41:55 -03:00
|
|
|
|
|
|
|
invertGraph() {
|
|
|
|
this.storageService.setValue('inverted-graph', !this.inverted);
|
|
|
|
document.location.reload();
|
|
|
|
}
|
2021-10-06 01:08:13 -03:00
|
|
|
|
|
|
|
filterFees(index: number) {
|
|
|
|
this.filterFeeIndex = index;
|
|
|
|
}
|
2021-10-06 15:44:05 -03:00
|
|
|
|
|
|
|
filterClick() {
|
|
|
|
this.dropDownOpen = !this.dropDownOpen;
|
|
|
|
}
|
2019-07-21 17:59:47 +03:00
|
|
|
}
|