import { Component, OnInit, OnDestroy } from '@angular/core'; import { Router, ResolveEnd, ActivatedRoute, Event } from '@angular/router'; import { Subject } from 'rxjs'; import { takeUntil, filter } from 'rxjs/operators'; import { Store } from '@ngrx/store'; import { faExchangeAlt, faChartPie } from '@fortawesome/free-solid-svg-icons'; import { CLNOnChainSendModalComponent } from './on-chain-send-modal/on-chain-send-modal.component'; import { SelNodeChild } from '../../shared/models/RTLconfig'; import { RTLState } from '../../store/rtl.state'; import { openAlert } from '../../store/rtl.actions'; import { utxoBalances, clnNodeSettings } from '../store/cln.selector'; import { Balance, LocalRemoteBalance, UTXO } from '../../shared/models/clnModels'; import { ApiCallStatusPayload } from '../../shared/models/apiCallsPayload'; @Component({ selector: 'rtl-cln-on-chain', templateUrl: './on-chain.component.html', styleUrls: ['./on-chain.component.scss'] }) export class CLNOnChainComponent implements OnInit, OnDestroy { public selNode: SelNodeChild | null = {}; public faExchangeAlt = faExchangeAlt; public faChartPie = faChartPie; public balances = [{ title: 'Total Balance', dataValue: 0 }, { title: 'Confirmed', dataValue: 0 }, { title: 'Unconfirmed', dataValue: 0 }]; public links = [{ link: 'receive', name: 'Receive' }, { link: 'send', name: 'Send' }, { link: 'sweep', name: 'Sweep All' }]; public activeLink = this.links[0].link; public tables = [{ id: 0, name: 'utxos' }, { id: 1, name: 'dustUtxos' }]; public selectedTable = this.tables[0]; private unSubs: Array> = [new Subject(), new Subject(), new Subject(), new Subject()]; constructor(private store: Store, private router: Router, private activatedRoute: ActivatedRoute) { } ngOnInit() { const linkFound = this.links.find((link) => this.router.url.includes(link.link)); this.activeLink = linkFound ? linkFound.link : this.links[0].link; this.selectedTable = this.tables.find((table) => table.name === this.router.url.substring(this.router.url.lastIndexOf('/') + 1)) || this.tables[0]; this.router.events.pipe(takeUntil(this.unSubs[0]), filter((e) => e instanceof ResolveEnd)). subscribe({ next: (value: ResolveEnd | Event) => { const linkFound = this.links.find((link) => (value).urlAfterRedirects.includes(link.link)); this.activeLink = linkFound ? linkFound.link : this.links[0].link; this.selectedTable = this.tables.find((table) => table.name === (value).urlAfterRedirects.substring((value).urlAfterRedirects.lastIndexOf('/') + 1)) || this.tables[0]; } }); this.store.select(clnNodeSettings).pipe(takeUntil(this.unSubs[1])). subscribe((nodeSettings: SelNodeChild | null) => { this.selNode = nodeSettings; }); this.store.select(utxoBalances).pipe(takeUntil(this.unSubs[2])). subscribe((utxoBalancesSeletor: { utxos: UTXO[], balance: Balance, localRemoteBalance: LocalRemoteBalance, apiCallStatus: ApiCallStatusPayload }) => { this.balances = [{ title: 'Total Balance', dataValue: utxoBalancesSeletor.balance.totalBalance || 0 }, { title: 'Confirmed', dataValue: (utxoBalancesSeletor.balance.confBalance || 0) }, { title: 'Unconfirmed', dataValue: (utxoBalancesSeletor.balance.unconfBalance || 0) }]; }); } openSendFundsModal(sweepAll: boolean) { this.store.dispatch(openAlert({ payload: { data: { sweepAll: sweepAll, component: CLNOnChainSendModalComponent } } })); } onSelectedTableIndexChanged(event: number) { this.selectedTable = this.tables.find((table) => table.id === event) || this.tables[0]; this.router.navigate(['./', this.activeLink, this.selectedTable.name], { relativeTo: this.activatedRoute }); } ngOnDestroy() { this.unSubs.forEach((completeSub) => { completeSub.next(null); completeSub.complete(); }); } }