import { Component, OnInit, ViewChild, OnDestroy, AfterViewInit } from '@angular/core'; import { Subject } from 'rxjs'; import { takeUntil } from 'rxjs/operators'; import { Store } from '@ngrx/store'; import { MatSort } from '@angular/material/sort'; import { MatTableDataSource } from '@angular/material/table'; import { MatPaginator, MatPaginatorIntl } from '@angular/material/paginator'; import { ForwardingEvent, RoutingPeers, SwitchRes } from '../../../shared/models/lndModels'; import { AlertTypeEnum, APICallStatusEnum, DataTypeEnum, getPaginatorLabel, PAGE_SIZE, PAGE_SIZE_OPTIONS, ScreenSizeEnum } from '../../../shared/services/consts-enums-functions'; import { ApiCallStatusPayload } from '../../../shared/models/apiCallsPayload'; import { LoggerService } from '../../../shared/services/logger.service'; import { CommonService } from '../../../shared/services/common.service'; import { openAlert } from '../../../store/rtl.actions'; import { RTLState } from '../../../store/rtl.state'; import { forwardingHistory } from '../../store/lnd.selector'; @Component({ selector: 'rtl-routing-peers', templateUrl: './routing-peers.component.html', styleUrls: ['./routing-peers.component.scss'], providers: [ { provide: MatPaginatorIntl, useValue: getPaginatorLabel('Routing peers') } ] }) export class RoutingPeersComponent implements OnInit, AfterViewInit, OnDestroy { @ViewChild('tableIn', { read: MatSort, static: false }) sortIn: MatSort; @ViewChild('tableOut', { read: MatSort, static: false }) sortOut: MatSort; @ViewChild('paginatorIn', { static: false }) paginatorIn: MatPaginator | undefined; @ViewChild('paginatorOut', { static: false }) paginatorOut: MatPaginator | undefined; public routingPeersData: any[] = []; public displayedColumns: any[] = []; public RoutingPeersIncoming = new MatTableDataSource([]); public RoutingPeersOutgoing = new MatTableDataSource([]); public flgSticky = false; public pageSize = PAGE_SIZE; public pageSizeOptions = PAGE_SIZE_OPTIONS; public screenSize = ''; public screenSizeEnum = ScreenSizeEnum; public errorMessage = ''; public filterIn = ''; public filterOut = ''; public apiCallStatus: ApiCallStatusPayload | null = null; public apiCallStatusEnum = APICallStatusEnum; private unSubs: Array> = [new Subject(), new Subject(), new Subject()]; constructor(private logger: LoggerService, private commonService: CommonService, private store: Store) { this.screenSize = this.commonService.getScreenSize(); if (this.screenSize === ScreenSizeEnum.XS) { this.flgSticky = false; this.displayedColumns = ['chan_id', 'events', 'actions']; } else if (this.screenSize === ScreenSizeEnum.SM) { this.flgSticky = false; this.displayedColumns = ['chan_id', 'alias', 'events', 'total_amount']; } else if (this.screenSize === ScreenSizeEnum.MD) { this.flgSticky = false; this.displayedColumns = ['chan_id', 'alias', 'events', 'total_amount']; } else { this.flgSticky = true; this.displayedColumns = ['chan_id', 'alias', 'events', 'total_amount']; } } ngOnInit() { this.store.select(forwardingHistory).pipe(takeUntil(this.unSubs[0])). subscribe((fhSelector: { forwardingHistory: SwitchRes, apiCallStatus: ApiCallStatusPayload }) => { this.errorMessage = ''; this.apiCallStatus = fhSelector.apiCallStatus; if (fhSelector.apiCallStatus?.status === APICallStatusEnum.ERROR) { this.errorMessage = !this.apiCallStatus.message ? '' : (typeof (this.apiCallStatus.message) === 'object') ? JSON.stringify(this.apiCallStatus.message) : this.apiCallStatus.message; } if (fhSelector.forwardingHistory.forwarding_events) { this.routingPeersData = fhSelector.forwardingHistory.forwarding_events; } else { this.routingPeersData = []; } if (this.routingPeersData.length > 0 && this.sortIn && this.paginatorIn && this.sortOut && this.paginatorOut) { this.loadRoutingPeersTable(this.routingPeersData); } this.logger.info(fhSelector.apiCallStatus); this.logger.info(fhSelector.forwardingHistory); }); } ngAfterViewInit() { if (this.routingPeersData.length > 0) { this.loadRoutingPeersTable(this.routingPeersData); } } onRoutingPeerClick(selRPeer: RoutingPeers, event: any, direction: string) { let alertTitle = ' Routing Information'; if (direction === 'in') { alertTitle = 'Incoming' + alertTitle; } else { alertTitle = 'Outgoing' + alertTitle; } const reorderedRoutingPeer = [ [{ key: 'chan_id', value: selRPeer.chan_id, title: 'Channel ID', width: 50, type: DataTypeEnum.STRING }, { key: 'alias', value: selRPeer.alias, title: 'Peer Alias', width: 50, type: DataTypeEnum.STRING }], [{ key: 'events', value: selRPeer.events, title: 'Events', width: 50, type: DataTypeEnum.NUMBER }, { key: 'total_amount', value: selRPeer.total_amount, title: 'Total Amount (Sats)', width: 50, type: DataTypeEnum.NUMBER }] ]; this.store.dispatch(openAlert({ payload: { data: { type: AlertTypeEnum.INFORMATION, alertTitle: alertTitle, message: reorderedRoutingPeer } } })); } loadRoutingPeersTable(forwardingEvents: ForwardingEvent[]) { if (forwardingEvents.length > 0) { const results = this.groupRoutingPeers(forwardingEvents); this.RoutingPeersIncoming = new MatTableDataSource(results[0]); this.RoutingPeersIncoming.sort = this.sortIn; this.RoutingPeersIncoming.filterPredicate = (rpIn: RoutingPeers, fltr: string) => JSON.stringify(rpIn).toLowerCase().includes(fltr); this.RoutingPeersIncoming.paginator = this.paginatorIn!; this.logger.info(this.RoutingPeersIncoming); this.RoutingPeersOutgoing = new MatTableDataSource(results[1]); this.RoutingPeersOutgoing.sort = this.sortOut; this.RoutingPeersOutgoing.filterPredicate = (rpOut: RoutingPeers, fltr: string) => JSON.stringify(rpOut).toLowerCase().includes(fltr); this.RoutingPeersOutgoing.paginator = this.paginatorOut!; this.logger.info(this.RoutingPeersOutgoing); } else { // To reset table after other Forwarding history calls this.RoutingPeersIncoming = new MatTableDataSource([]); this.RoutingPeersOutgoing = new MatTableDataSource([]); } this.applyIncomingFilter(); this.applyOutgoingFilter(); } groupRoutingPeers(forwardingEvents: ForwardingEvent[]) { const incomingResults: any = []; const outgoingResults: any = []; forwardingEvents.forEach((event) => { const incoming: any = incomingResults.find((result) => result.chan_id === event.chan_id_in); const outgoing: any = outgoingResults.find((result) => result.chan_id === event.chan_id_out); if (!incoming) { incomingResults.push({ chan_id: event.chan_id_in, alias: event.alias_in, events: 1, total_amount: +(event.amt_in || 0) }); } else { incoming.events++; incoming.total_amount = +incoming.total_amount + +(event.amt_in || 0); } if (!outgoing) { outgoingResults.push({ chan_id: event.chan_id_out, alias: event.alias_out, events: 1, total_amount: +(event.amt_out || 0) }); } else { outgoing.events++; outgoing.total_amount = +outgoing.total_amount + +(event.amt_out || 0); } }); return [this.commonService.sortDescByKey(incomingResults, 'total_amount'), this.commonService.sortDescByKey(outgoingResults, 'total_amount')]; } applyIncomingFilter() { this.RoutingPeersIncoming.filter = this.filterIn.toLowerCase(); } applyOutgoingFilter() { this.RoutingPeersOutgoing.filter = this.filterOut.toLowerCase(); } ngOnDestroy() { this.unSubs.forEach((completeSub) => { completeSub.next(null); completeSub.complete(); }); } }