import { Component, OnInit, OnDestroy, ViewChild } 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 { faRoute, faExclamationTriangle } from '@fortawesome/free-solid-svg-icons'; import { Routes } from '../../../shared/models/clnModels'; import { AlertTypeEnum, CLN_DEFAULT_PAGE_SETTINGS, DataTypeEnum, PAGE_SIZE, ScreenSizeEnum, SortOrderEnum } from '../../../shared/services/consts-enums-functions'; import { CommonService } from '../../../shared/services/common.service'; import { CLNEffects } from '../../store/cln.effects'; import { RTLState } from '../../../store/rtl.state'; import { openAlert } from '../../../store/rtl.actions'; import { getQueryRoutes } from '../../store/cln.actions'; import { PageSettings, TableSetting } from '../../../shared/models/pageSettings'; import { clnPageSettings } from '../../store/cln.selector'; import { ApiCallStatusPayload } from '../../../shared/models/apiCallsPayload'; @Component({ selector: 'rtl-cln-query-routes', templateUrl: './query-routes.component.html', styleUrls: ['./query-routes.component.scss'] }) export class CLNQueryRoutesComponent implements OnInit, OnDestroy { @ViewChild(MatSort, { static: false }) sort: MatSort | undefined; @ViewChild('queryRoutesForm', { static: true }) form: any; public PAGE_ID = 'graph_lookup'; public tableSetting: TableSetting = { tableId: 'query_routes', recordsPerPage: PAGE_SIZE, sortBy: 'id', sortOrder: SortOrderEnum.ASCENDING }; public destinationPubkey = ''; public amount: number | null = null; public qrHops: any = new MatTableDataSource([]); public displayedColumns: any[] = []; public flgLoading: Array = [false]; // 0: peers public faRoute = faRoute; public faExclamationTriangle = faExclamationTriangle; public screenSize = ''; public screenSizeEnum = ScreenSizeEnum; private unSubs: Array> = [new Subject(), new Subject(), new Subject(), new Subject()]; constructor(private store: Store, private clnEffects: CLNEffects, private commonService: CommonService) { this.screenSize = this.commonService.getScreenSize(); } ngOnInit() { this.store.select(clnPageSettings).pipe(takeUntil(this.unSubs[0])). subscribe((settings: { pageSettings: PageSettings[], apiCallStatus: ApiCallStatusPayload }) => { this.tableSetting = settings.pageSettings.find((page) => page.pageId === this.PAGE_ID)?.tables.find((table) => table.tableId === this.tableSetting.tableId) || CLN_DEFAULT_PAGE_SETTINGS.find((page) => page.pageId === this.PAGE_ID)?.tables.find((table) => table.tableId === this.tableSetting.tableId)!; if (this.screenSize === ScreenSizeEnum.XS || this.screenSize === ScreenSizeEnum.SM) { this.displayedColumns = JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)); } else { this.displayedColumns = JSON.parse(JSON.stringify(this.tableSetting.columnSelection)); } this.displayedColumns.push('actions'); }); this.clnEffects.setQueryRoutesCL.pipe(takeUntil(this.unSubs[1])).subscribe((queryRoute) => { this.qrHops.data = []; if (queryRoute.route && queryRoute.route.length && queryRoute.route.length > 0) { this.flgLoading[0] = false; this.qrHops = new MatTableDataSource([...queryRoute.route]); } else { this.flgLoading[0] = 'error'; } this.qrHops.sort = this.sort; this.qrHops.sortingDataAccessor = (data: any, sortHeaderId: string) => ((data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null); }); } onQueryRoutes(): boolean | void { if (!this.destinationPubkey || !this.amount) { return true; } this.flgLoading[0] = true; this.store.dispatch(getQueryRoutes({ payload: { destPubkey: this.destinationPubkey, amount: this.amount * 1000 } })); } resetData() { this.destinationPubkey = ''; this.amount = null; this.flgLoading[0] = false; this.qrHops.data = []; this.form.resetForm(); } onHopClick(selHop: Routes, event: any) { const reorderedHop = [ [{ key: 'id', value: selHop.id, title: 'ID', width: 100, type: DataTypeEnum.STRING }], [{ key: 'channel', value: selHop.channel, title: 'Channel', width: 50, type: DataTypeEnum.STRING }, { key: 'alias', value: selHop.alias, title: 'Peer Alias', width: 50, type: DataTypeEnum.STRING }], [{ key: 'amount_msat', value: selHop.amount_msat, title: 'Amount (mSat)', width: 34, type: DataTypeEnum.NUMBER }, { key: 'direction', value: selHop.direction, title: 'Direction', width: 33, type: DataTypeEnum.STRING }, { key: 'delay', value: selHop.delay, title: 'Delay', width: 33, type: DataTypeEnum.NUMBER }] ]; this.store.dispatch(openAlert({ payload: { data: { type: AlertTypeEnum.INFORMATION, alertTitle: 'Route Information', message: reorderedHop } } })); } ngOnDestroy() { this.unSubs.forEach((completeSub) => { completeSub.next(null); completeSub.complete(); }); } }