import { Component, OnInit, OnDestroy, ViewChild } from '@angular/core'; import { Subject } from 'rxjs'; import { takeUntil } from 'rxjs/operators'; import { Store } from '@ngrx/store'; import { MatPaginator, MatPaginatorIntl } from '@angular/material/paginator'; import { MatSort } from '@angular/material/sort'; import { MatTableDataSource } from '@angular/material/table'; import { GetInfo, Channel } from '../../../../../shared/models/clModels'; import { PAGE_SIZE, PAGE_SIZE_OPTIONS, getPaginatorLabel, ScreenSizeEnum, FEE_RATE_TYPES } from '../../../../../shared/services/consts-enums-functions'; import { LoggerService } from '../../../../../shared/services/logger.service'; import { CommonService } from '../../../../../shared/services/common.service'; import { CLChannelInformationComponent } from '../../channel-information-modal/channel-information.component'; import { CLEffects } from '../../../../store/cl.effects'; import { RTLEffects } from '../../../../../store/rtl.effects'; import * as RTLActions from '../../../../../store/rtl.actions'; import * as fromRTLReducer from '../../../../../store/rtl.reducers'; @Component({ selector: 'rtl-cl-channel-pending-table', templateUrl: './channel-pending-table.component.html', styleUrls: ['./channel-pending-table.component.scss'], providers: [ { provide: MatPaginatorIntl, useValue: getPaginatorLabel('Channels') } ] }) export class CLChannelPendingTableComponent implements OnInit, OnDestroy { @ViewChild(MatSort, { static: true }) sort: MatSort; @ViewChild(MatPaginator, {static: true}) paginator: MatPaginator; public totalBalance = 0; public displayedColumns = []; public channels: any; public myChanPolicy: any = {}; public information: GetInfo = {}; public numPeers = -1; public feeRateTypes = FEE_RATE_TYPES; public flgLoading: Array = [true]; public selectedFilter = ''; public selFilter = ''; public flgSticky = false; public pageSize = PAGE_SIZE; public pageSizeOptions = PAGE_SIZE_OPTIONS; public screenSize = ''; public screenSizeEnum = ScreenSizeEnum; private unSubs: Array> = [new Subject(), new Subject(), new Subject(), new Subject(), new Subject(), new Subject()]; constructor(private logger: LoggerService, private store: Store, private rtlEffects: RTLEffects, private clEffects: CLEffects, private commonService: CommonService) { this.screenSize = this.commonService.getScreenSize(); if(this.screenSize === ScreenSizeEnum.XS) { this.flgSticky = false; this.displayedColumns = ['alias', 'state', 'actions']; } else if(this.screenSize === ScreenSizeEnum.SM) { this.flgSticky = false; this.displayedColumns = ['alias', 'connected', 'state', 'actions']; } else if(this.screenSize === ScreenSizeEnum.MD) { this.flgSticky = false; this.displayedColumns = ['alias', 'connected', 'state', 'msatoshi_total', 'actions']; } else { this.flgSticky = true; this.displayedColumns = ['alias', 'connected', 'state', 'msatoshi_total', 'actions']; } } ngOnInit() { this.store.select('cl') .pipe(takeUntil(this.unSubs[0])) .subscribe((rtlStore) => { rtlStore.effectErrors.forEach(effectsErr => { if (effectsErr.action === 'FetchChannels') { this.flgLoading[0] = 'error'; } }); this.information = rtlStore.information; this.numPeers = (rtlStore.peers && rtlStore.peers.length) ? rtlStore.peers.length : 0; this.totalBalance = rtlStore.balance.totalBalance; if (rtlStore.allChannels) { this.loadChannelsTable(rtlStore.allChannels.filter(channel => !(channel.state === 'CHANNELD_NORMAL' && channel.connected))); } if (this.flgLoading[0] !== 'error') { this.flgLoading[0] = (rtlStore.allChannels) ? false : true; } this.logger.info(rtlStore); }); } applyFilter() { this.selectedFilter = this.selFilter; this.channels.filter = this.selFilter; } onChannelClick(selChannel: Channel, event: any) { this.store.dispatch(new RTLActions.OpenAlert({ data: { channel: selChannel, showCopy: true, component: CLChannelInformationComponent }})); } loadChannelsTable(mychannels) { mychannels.sort(function(a, b) { return (a.active === b.active) ? 0 : ((b.active) ? 1 : -1); }); this.channels = new MatTableDataSource([...mychannels]); this.channels.filterPredicate = (channel: Channel, fltr: string) => { const newChannel = ((channel.connected) ? 'connected' : 'disconnected') + (channel.channel_id ? channel.channel_id : '') + (channel.short_channel_id ? channel.short_channel_id : '') + (channel.id ? channel.id : '') + (channel.alias ? channel.alias : '') + (channel.private ? 'private' : 'public') + (channel.state ? channel.state.toLowerCase() : '') + (channel.funding_txid ? channel.funding_txid : '') + (channel.msatoshi_to_us ? channel.msatoshi_to_us : '') + (channel.msatoshi_total ? channel.msatoshi_total : '') + (channel.their_channel_reserve_satoshis ? channel.their_channel_reserve_satoshis : '') + (channel.our_channel_reserve_satoshis ? channel.our_channel_reserve_satoshis : '') + (channel.spendable_msatoshi ? channel.spendable_msatoshi : ''); return newChannel.includes(fltr.toLowerCase()); }; this.channels.sort = this.sort; this.channels.paginator = this.paginator; this.logger.info(this.channels); } onDownloadCSV() { if(this.channels.data && this.channels.data.length > 0) { this.commonService.downloadFile(this.channels.data, 'Pending-inactive-channels'); } } ngOnDestroy() { this.unSubs.forEach(completeSub => { completeSub.next(); completeSub.complete(); }); } }