mempool/frontend/src/app/components/blocks-list/blocks-list.component.ts

98 lines
3.5 KiB
TypeScript
Raw Normal View History

2022-03-11 17:09:13 +01:00
import { Component, OnInit, ChangeDetectionStrategy, Input } from '@angular/core';
2022-03-12 15:55:19 +01:00
import { BehaviorSubject, combineLatest, Observable, timer } from 'rxjs';
import { delayWhen, map, retryWhen, scan, skip, switchMap, tap } from 'rxjs/operators';
import { BlockExtended } from 'src/app/interfaces/node-api.interface';
import { ApiService } from 'src/app/services/api.service';
import { StateService } from 'src/app/services/state.service';
2022-03-12 15:55:19 +01:00
import { WebsocketService } from 'src/app/services/websocket.service';
@Component({
selector: 'app-blocks-list',
templateUrl: './blocks-list.component.html',
styleUrls: ['./blocks-list.component.scss'],
changeDetection: ChangeDetectionStrategy.OnPush,
})
export class BlocksList implements OnInit {
2022-03-11 17:09:13 +01:00
@Input() widget: boolean = false;
2022-03-12 15:55:19 +01:00
blocks$: Observable<any[]> = undefined;
2022-03-11 14:54:34 +01:00
isLoading = true;
2022-03-11 14:54:34 +01:00
fromBlockHeight = undefined;
paginationMaxSize: number;
page = 1;
2022-03-12 15:55:19 +01:00
lastPage = 1;
2022-03-11 14:54:34 +01:00
blocksCount: number;
fromHeightSubject: BehaviorSubject<number> = new BehaviorSubject(this.fromBlockHeight);
2022-03-11 17:09:13 +01:00
skeletonLines: number[] = [];
constructor(
private apiService: ApiService,
2022-03-12 15:55:19 +01:00
private websocketService: WebsocketService,
2022-03-11 14:54:34 +01:00
public stateService: StateService,
) {
}
ngOnInit(): void {
2022-03-12 15:55:19 +01:00
this.websocketService.want(['blocks']);
this.skeletonLines = this.widget === true ? [...Array(5).keys()] : [...Array(15).keys()];
2022-03-11 14:54:34 +01:00
this.paginationMaxSize = window.matchMedia('(max-width: 670px)').matches ? 3 : 5;
2022-03-12 15:55:19 +01:00
this.blocks$ = combineLatest([
this.fromHeightSubject.pipe(
switchMap((fromBlockHeight) => {
this.isLoading = true;
return this.apiService.getBlocks$(this.page === 1 ? undefined : fromBlockHeight)
.pipe(
tap(blocks => {
if (this.blocksCount === undefined) {
this.blocksCount = blocks[0].height;
}
this.isLoading = false;
}),
map(blocks => {
for (const block of blocks) {
// @ts-ignore: Need to add an extra field for the template
block.extras.pool.logo = `./resources/mining-pools/` +
block.extras.pool.name.toLowerCase().replace(' ', '').replace('.', '') + '.svg';
}
if (this.widget) {
return blocks.slice(0, 5);
}
return blocks;
}),
retryWhen(errors => errors.pipe(delayWhen(() => timer(1000))))
)
})
),
this.stateService.blocks$
.pipe(
skip(this.stateService.env.MEMPOOL_BLOCKS_AMOUNT - 1),
),
])
.pipe(
scan((acc, blocks) => {
if (this.page > 1 || acc.length === 0 || (this.page === 1 && this.lastPage !== 1)) {
this.lastPage = this.page;
return blocks[0];
}
this.blocksCount = Math.max(this.blocksCount, blocks[1][0].height);
// @ts-ignore: Need to add an extra field for the template
blocks[1][0].extras.pool.logo = `./resources/mining-pools/` +
blocks[1][0].extras.pool.name.toLowerCase().replace(' ', '').replace('.', '') + '.svg';
acc.unshift(blocks[1][0]);
acc = acc.slice(0, this.widget ? 5 : 15);
return acc;
}, [])
);
2022-03-11 14:54:34 +01:00
}
pageChange(page: number) {
2022-03-12 15:55:19 +01:00
this.fromHeightSubject.next(this.blocksCount - (page - 1) * 15);
}
trackByBlock(index: number, block: BlockExtended) {
return block.height;
}
}