2019-03-19 00:13:01 +00:00
|
|
|
import { Component, OnInit, OnDestroy, ViewChild } from '@angular/core';
|
|
|
|
import { Subject } from 'rxjs';
|
|
|
|
import { takeUntil } from 'rxjs/operators';
|
|
|
|
import { Store } from '@ngrx/store';
|
|
|
|
|
|
|
|
import { MatTableDataSource, MatSort } from '@angular/material';
|
2019-11-21 00:14:37 +00:00
|
|
|
import { Channel, GetInfo, PendingChannels } from '../../../../../shared/models/lndModels';
|
|
|
|
import { SelNodeChild } from '../../../../../shared/models/RTLconfig';
|
|
|
|
import { LoggerService } from '../../../../../shared/services/logger.service';
|
2019-03-19 00:13:01 +00:00
|
|
|
|
2019-11-21 00:14:37 +00:00
|
|
|
import { RTLEffects } from '../../../../../store/rtl.effects';
|
|
|
|
import * as RTLActions from '../../../../../store/rtl.actions';
|
|
|
|
import * as fromRTLReducer from '../../../../../store/rtl.reducers';
|
2019-12-02 00:22:25 +00:00
|
|
|
import { AlertTypeEnum, DataTypeEnum } from '../../../../../shared/services/consts-enums-functions';
|
2019-03-19 00:13:01 +00:00
|
|
|
|
|
|
|
@Component({
|
2019-11-21 00:14:37 +00:00
|
|
|
selector: 'rtl-channel-pending-table',
|
|
|
|
templateUrl: './channel-pending-table.component.html',
|
|
|
|
styleUrls: ['./channel-pending-table.component.scss']
|
2019-03-19 00:13:01 +00:00
|
|
|
})
|
2019-11-21 00:14:37 +00:00
|
|
|
export class ChannelPendingTableComponent implements OnInit, OnDestroy {
|
2019-07-27 18:20:17 +00:00
|
|
|
@ViewChild(MatSort, { static: true }) sort: MatSort;
|
2019-09-01 19:55:52 +00:00
|
|
|
public selNode: SelNodeChild = {};
|
2019-03-19 00:13:01 +00:00
|
|
|
public selectedFilter = 0;
|
|
|
|
public information: GetInfo = {};
|
|
|
|
public pendingChannels: PendingChannels = {};
|
2019-11-22 03:59:38 +00:00
|
|
|
public displayedOpenColumns = ['channel_point', 'commit_fee', 'commit_weight', 'capacity', 'actions'];
|
2019-03-19 00:13:01 +00:00
|
|
|
public pendingOpenChannelsLength = 0;
|
|
|
|
public pendingOpenChannels: any;
|
2019-11-22 18:43:18 +00:00
|
|
|
public displayedForceClosingColumns = ['channel_point', 'recovered_balance', 'limbo_balance', 'capacity', 'actions'];
|
|
|
|
public pendingForceClosingChannelsLength = 0;
|
|
|
|
public pendingForceClosingChannels: any;
|
|
|
|
public displayedClosingColumns = ['channel_point', 'local_balance', 'remote_balance', 'capacity', 'actions'];
|
|
|
|
public pendingClosingChannelsLength = 0;
|
|
|
|
public pendingClosingChannels: any;
|
|
|
|
public displayedWaitClosingColumns = ['channel_point', 'limbo_balance', 'local_balance', 'remote_balance', 'actions'];
|
2019-03-19 00:13:01 +00:00
|
|
|
public pendingWaitClosingChannelsLength = 0;
|
|
|
|
public pendingWaitClosingChannels: any;
|
|
|
|
public flgLoading: Array<Boolean | 'error'> = [true];
|
2019-11-22 18:43:18 +00:00
|
|
|
private unSubs: Array<Subject<void>> = [new Subject(), new Subject()];
|
2019-03-19 00:13:01 +00:00
|
|
|
|
2019-08-31 02:05:27 +00:00
|
|
|
constructor(private logger: LoggerService, private store: Store<fromRTLReducer.RTLState>, private rtlEffects: RTLEffects) {
|
2019-03-19 00:13:01 +00:00
|
|
|
switch (true) {
|
|
|
|
case (window.innerWidth <= 415):
|
2019-11-22 03:59:38 +00:00
|
|
|
this.displayedOpenColumns = ['channel_point', 'commit_fee', 'actions'];
|
2019-11-22 18:43:18 +00:00
|
|
|
this.displayedForceClosingColumns = ['channel_point', 'limbo_balance', 'actions'];
|
|
|
|
this.displayedClosingColumns = ['channel_point', 'capacity', 'actions'];
|
2019-11-22 03:59:38 +00:00
|
|
|
this.displayedWaitClosingColumns = ['channel_point', 'limbo_balance', 'actions'];
|
2019-03-19 00:13:01 +00:00
|
|
|
break;
|
|
|
|
case (window.innerWidth > 415 && window.innerWidth <= 730):
|
2019-11-22 03:59:38 +00:00
|
|
|
this.displayedOpenColumns = ['channel_point', 'commit_fee', 'commit_weight', 'actions'];
|
2019-11-22 18:43:18 +00:00
|
|
|
this.displayedForceClosingColumns = ['channel_point', 'recovered_balance', 'limbo_balance', 'actions'];
|
|
|
|
this.displayedClosingColumns = ['channel_point', 'local_balance', 'remote_balance', 'actions'];
|
2019-11-22 03:59:38 +00:00
|
|
|
this.displayedWaitClosingColumns = ['channel_point', 'limbo_balance', 'capacity', 'actions'];
|
2019-03-19 00:13:01 +00:00
|
|
|
break;
|
|
|
|
case (window.innerWidth > 730 && window.innerWidth <= 1024):
|
2019-11-22 03:59:38 +00:00
|
|
|
this.displayedOpenColumns = ['channel_point', 'commit_fee', 'commit_weight', 'capacity', 'actions'];
|
2019-11-22 18:43:18 +00:00
|
|
|
this.displayedForceClosingColumns = ['channel_point', 'recovered_balance', 'limbo_balance', 'capacity', 'actions'];
|
|
|
|
this.displayedClosingColumns = ['channel_point', 'local_balance', 'remote_balance', 'capacity', 'actions'];
|
2019-11-22 03:59:38 +00:00
|
|
|
this.displayedWaitClosingColumns = ['channel_point', 'limbo_balance', 'local_balance', 'remote_balance', 'actions'];
|
2019-03-19 00:13:01 +00:00
|
|
|
break;
|
|
|
|
case (window.innerWidth > 1024 && window.innerWidth <= 1280):
|
2019-11-22 03:59:38 +00:00
|
|
|
this.displayedOpenColumns = ['channel_point', 'commit_fee', 'commit_weight', 'capacity', 'actions'];
|
2019-11-22 18:43:18 +00:00
|
|
|
this.displayedForceClosingColumns = ['channel_point', 'recovered_balance', 'limbo_balance', 'capacity', 'actions'];
|
|
|
|
this.displayedClosingColumns = ['channel_point', 'local_balance', 'remote_balance', 'capacity', 'actions'];
|
2019-11-22 03:59:38 +00:00
|
|
|
this.displayedWaitClosingColumns = ['channel_point', 'limbo_balance', 'local_balance', 'remote_balance', 'actions'];
|
2019-03-19 00:13:01 +00:00
|
|
|
break;
|
|
|
|
default:
|
2019-11-22 03:59:38 +00:00
|
|
|
this.displayedOpenColumns = ['channel_point', 'commit_fee', 'commit_weight', 'capacity', 'actions'];
|
2019-11-22 18:43:18 +00:00
|
|
|
this.displayedForceClosingColumns = ['channel_point', 'recovered_balance', 'limbo_balance', 'capacity', 'actions'];
|
|
|
|
this.displayedClosingColumns = ['channel_point', 'local_balance', 'remote_balance', 'capacity', 'actions'];
|
2019-11-22 03:59:38 +00:00
|
|
|
this.displayedWaitClosingColumns = ['channel_point', 'limbo_balance', 'local_balance', 'remote_balance', 'actions'];
|
2019-03-19 00:13:01 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ngOnInit() {
|
2019-09-01 19:55:52 +00:00
|
|
|
this.store.select('lnd')
|
2019-11-22 18:43:18 +00:00
|
|
|
.pipe(takeUntil(this.unSubs[0]))
|
2019-08-31 02:05:27 +00:00
|
|
|
.subscribe((rtlStore) => {
|
2019-09-01 19:55:52 +00:00
|
|
|
rtlStore.effectErrorsLnd.forEach(effectsErr => {
|
2019-08-24 20:35:31 +00:00
|
|
|
if (effectsErr.action === 'FetchChannels/pending') {
|
|
|
|
this.flgLoading[0] = 'error';
|
|
|
|
}
|
|
|
|
});
|
2019-09-01 19:55:52 +00:00
|
|
|
this.selNode = rtlStore.nodeSettings;
|
2019-08-24 20:35:31 +00:00
|
|
|
this.information = rtlStore.information;
|
|
|
|
this.pendingChannels = rtlStore.pendingChannels;
|
2019-11-22 03:59:38 +00:00
|
|
|
if (this.pendingChannels.total_limbo_balance) {
|
2019-03-19 00:13:01 +00:00
|
|
|
this.flgLoading[1] = false;
|
2019-11-24 22:56:57 +00:00
|
|
|
}
|
|
|
|
if (this.pendingChannels.pending_open_channels) {
|
|
|
|
this.loadOpenChannelsTable(this.pendingChannels.pending_open_channels);
|
|
|
|
}
|
|
|
|
if (this.pendingChannels.pending_force_closing_channels) {
|
|
|
|
this.loadForceClosingChannelsTable(this.pendingChannels.pending_force_closing_channels);
|
|
|
|
}
|
|
|
|
if (this.pendingChannels.pending_closing_channels) {
|
|
|
|
this.loadClosingChannelsTable(this.pendingChannels.pending_closing_channels);
|
|
|
|
}
|
|
|
|
if (this.pendingChannels.waiting_close_channels) {
|
|
|
|
this.loadWaitClosingChannelsTable(this.pendingChannels.waiting_close_channels);
|
2019-03-19 00:13:01 +00:00
|
|
|
}
|
|
|
|
if (this.flgLoading[0] !== 'error') {
|
2019-11-22 03:59:38 +00:00
|
|
|
this.flgLoading[0] = (this.information.identity_pubkey) ? false : true;
|
2019-03-19 00:13:01 +00:00
|
|
|
}
|
|
|
|
this.logger.info(rtlStore);
|
|
|
|
});
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2019-11-22 18:43:18 +00:00
|
|
|
onOpenClick(selRow: any) {
|
2019-03-19 00:13:01 +00:00
|
|
|
const selChannel = this.pendingOpenChannels.data.filter(channel => {
|
|
|
|
return channel.channel.channel_point === selRow.channel.channel_point;
|
|
|
|
})[0];
|
|
|
|
const fcChannelObj1 = JSON.parse(JSON.stringify(selChannel, ['commit_weight', 'confirmation_height', 'fee_per_kw', 'commit_fee'], 2));
|
|
|
|
const fcChannelObj2 = JSON.parse(JSON.stringify(selChannel.channel, ['channel_point', 'remote_balance', 'local_balance', 'remote_node_pub', 'capacity'], 2));
|
2019-12-02 00:22:25 +00:00
|
|
|
const preOrderedChannel: any = {};
|
|
|
|
Object.assign(preOrderedChannel, fcChannelObj1, fcChannelObj2);
|
|
|
|
const reorderedChannel = [
|
|
|
|
[{key: 'channel_point', value: preOrderedChannel.channel_point, title: 'Channel Point', width: 100, type: DataTypeEnum.STRING}],
|
|
|
|
[{key: 'remote_node_pub', value: preOrderedChannel.remote_node_pub, title: 'Peer Node Pubkey', width: 100, type: DataTypeEnum.STRING}],
|
|
|
|
[{key: 'remote_balance', value: preOrderedChannel.remote_balance, title: 'Remote Balance', width: 50, type: DataTypeEnum.NUMBER},
|
|
|
|
{key: 'local_balance', value: preOrderedChannel.local_balance, title: 'Local Balance', width: 50, type: DataTypeEnum.NUMBER}],
|
|
|
|
[{key: 'capacity', value: preOrderedChannel.capacity, title: 'Capacity', width: 50, type: DataTypeEnum.NUMBER},
|
|
|
|
{key: 'confirmation_height', value: preOrderedChannel.confirmation_height, title: 'Confirmation Height', width: 50, type: DataTypeEnum.NUMBER}],
|
|
|
|
[{key: 'fee_per_kw', value: preOrderedChannel.fee_per_kw, title: 'Fee/KW', width: 40, type: DataTypeEnum.NUMBER},
|
|
|
|
{key: 'commit_weight', value: preOrderedChannel.commit_weight, title: 'Commit Weight', width: 30, type: DataTypeEnum.NUMBER},
|
|
|
|
{key: 'commit_fee', value: preOrderedChannel.commit_fee, title: 'Commit Fee', width: 30, type: DataTypeEnum.NUMBER}]
|
|
|
|
];
|
2019-12-13 04:01:04 +00:00
|
|
|
this.store.dispatch(new RTLActions.OpenAlert({ data: {
|
2019-11-27 00:49:44 +00:00
|
|
|
type: AlertTypeEnum.INFORMATION,
|
|
|
|
alertTitle: 'Opening Channel Information',
|
2019-12-02 00:22:25 +00:00
|
|
|
message: reorderedChannel
|
2019-11-27 00:49:44 +00:00
|
|
|
}}));
|
2019-03-19 00:13:01 +00:00
|
|
|
}
|
|
|
|
|
2019-11-22 18:43:18 +00:00
|
|
|
onForceClosingClick(selRow: any) {
|
2019-03-19 00:13:01 +00:00
|
|
|
const selChannel = this.pendingForceClosingChannels.data.filter(channel => {
|
|
|
|
return channel.channel.channel_point === selRow.channel.channel_point;
|
|
|
|
})[0];
|
|
|
|
const fcChannelObj1 = JSON.parse(JSON.stringify(selChannel, ['closing_txid', 'limbo_balance', 'maturity_height', 'blocks_til_maturity', 'recovered_balance'], 2));
|
|
|
|
const fcChannelObj2 = JSON.parse(JSON.stringify(selChannel.channel, ['channel_point', 'remote_balance', 'local_balance', 'remote_node_pub', 'capacity'], 2));
|
2019-12-02 00:22:25 +00:00
|
|
|
const preOrderedChannel: any = {};
|
|
|
|
Object.assign(preOrderedChannel, fcChannelObj1, fcChannelObj2);
|
|
|
|
const reorderedChannel = [
|
|
|
|
[{key: 'channel_point', value: preOrderedChannel.channel_point, title: 'Channel Point', width: 100, type: DataTypeEnum.STRING}],
|
|
|
|
[{key: 'remote_node_pub', value: preOrderedChannel.remote_node_pub, title: 'Peer Node Pubkey', width: 100, type: DataTypeEnum.STRING}],
|
|
|
|
[{key: 'remote_balance', value: preOrderedChannel.remote_balance, title: 'Remote Balance', width: 50, type: DataTypeEnum.NUMBER},
|
|
|
|
{key: 'local_balance', value: preOrderedChannel.local_balance, title: 'Local Balance', width: 50, type: DataTypeEnum.NUMBER}],
|
|
|
|
[{key: 'capacity', value: preOrderedChannel.capacity, title: 'Capacity', width: 50, type: DataTypeEnum.NUMBER},
|
|
|
|
{key: 'limbo_balance', value: preOrderedChannel.limbo_balance, title: 'Limbo Balance', width: 100, type: DataTypeEnum.NUMBER}],
|
|
|
|
[{key: 'closing_txid', value: preOrderedChannel.closing_txid, title: 'Closing Transaction ID', width: 100, type: DataTypeEnum.STRING}],
|
|
|
|
[{key: 'maturity_height', value: preOrderedChannel.maturity_height, title: 'Maturity Height', width: 40, type: DataTypeEnum.NUMBER},
|
|
|
|
{key: 'blocks_til_maturity', value: preOrderedChannel.blocks_til_maturity, title: 'Blocks Till Maturity', width: 30, type: DataTypeEnum.NUMBER},
|
|
|
|
{key: 'recovered_balance', value: preOrderedChannel.recovered_balance, title: 'Recovered Balance', width: 30, type: DataTypeEnum.NUMBER}]
|
|
|
|
];
|
2019-12-13 04:01:04 +00:00
|
|
|
this.store.dispatch(new RTLActions.OpenAlert({ data: {
|
2019-11-27 00:49:44 +00:00
|
|
|
type: AlertTypeEnum.INFORMATION,
|
|
|
|
alertTitle: 'Force Closing Channel Information',
|
2019-12-02 00:22:25 +00:00
|
|
|
message: reorderedChannel
|
2019-11-27 00:49:44 +00:00
|
|
|
}}));
|
2019-03-19 00:13:01 +00:00
|
|
|
}
|
|
|
|
|
2019-11-22 18:43:18 +00:00
|
|
|
onClosingClick(selRow: any) {
|
2019-03-19 00:13:01 +00:00
|
|
|
const selChannel = this.pendingClosingChannels.data.filter(channel => {
|
|
|
|
return channel.channel.channel_point === selRow.channel.channel_point;
|
|
|
|
})[0];
|
|
|
|
const fcChannelObj1 = JSON.parse(JSON.stringify(selChannel, ['closing_txid'], 2));
|
|
|
|
const fcChannelObj2 = JSON.parse(JSON.stringify(selChannel.channel, ['channel_point', 'remote_balance', 'local_balance', 'remote_node_pub', 'capacity'], 2));
|
2019-12-02 00:22:25 +00:00
|
|
|
const preOrderedChannel: any = {};
|
|
|
|
Object.assign(preOrderedChannel, fcChannelObj1, fcChannelObj2);
|
|
|
|
const reorderedChannel = [
|
|
|
|
[{key: 'channel_point', value: preOrderedChannel.channel_point, title: 'Channel Point', width: 100, type: DataTypeEnum.STRING}],
|
|
|
|
[{key: 'remote_node_pub', value: preOrderedChannel.remote_node_pub, title: 'Peer Node Pubkey', width: 100, type: DataTypeEnum.STRING}],
|
|
|
|
[{key: 'remote_balance', value: preOrderedChannel.remote_balance, title: 'Remote Balance', width: 50, type: DataTypeEnum.NUMBER},
|
|
|
|
{key: 'local_balance', value: preOrderedChannel.local_balance, title: 'Local Balance', width: 50, type: DataTypeEnum.NUMBER}],
|
|
|
|
[{key: 'capacity', value: preOrderedChannel.capacity, title: 'Capacity', width: 50, type: DataTypeEnum.NUMBER},
|
|
|
|
{key: 'closing_txid', value: preOrderedChannel.closing_txid, title: 'Closing Transaction ID', width: 50, type: DataTypeEnum.STRING}]
|
|
|
|
];
|
2019-12-13 04:01:04 +00:00
|
|
|
this.store.dispatch(new RTLActions.OpenAlert({ data: {
|
2019-11-27 00:49:44 +00:00
|
|
|
type: AlertTypeEnum.INFORMATION,
|
|
|
|
alertTitle: 'Closing Channel Information',
|
2019-12-02 00:22:25 +00:00
|
|
|
message: reorderedChannel
|
2019-11-27 00:49:44 +00:00
|
|
|
}}));
|
2019-03-19 00:13:01 +00:00
|
|
|
}
|
|
|
|
|
2019-11-22 18:43:18 +00:00
|
|
|
onWaitClosingClick(selRow: any) {
|
2019-03-19 00:13:01 +00:00
|
|
|
const selChannel = this.pendingWaitClosingChannels.data.filter(channel => {
|
|
|
|
return channel.channel.channel_point === selRow.channel.channel_point;
|
|
|
|
})[0];
|
|
|
|
const fcChannelObj1 = JSON.parse(JSON.stringify(selChannel, ['limbo_balance'], 2));
|
|
|
|
const fcChannelObj2 = JSON.parse(JSON.stringify(selChannel.channel, ['channel_point', 'remote_balance', 'local_balance', 'remote_node_pub', 'capacity'], 2));
|
2019-12-02 00:22:25 +00:00
|
|
|
const preOrderedChannel: any = {};
|
|
|
|
Object.assign(preOrderedChannel, fcChannelObj1, fcChannelObj2);
|
|
|
|
const reorderedChannel = [
|
|
|
|
[{key: 'channel_point', value: preOrderedChannel.channel_point, title: 'Channel Point', width: 100, type: DataTypeEnum.STRING}],
|
|
|
|
[{key: 'remote_node_pub', value: preOrderedChannel.remote_node_pub, title: 'Peer Node Pubkey', width: 100, type: DataTypeEnum.STRING}],
|
|
|
|
[{key: 'remote_balance', value: preOrderedChannel.remote_balance, title: 'Remote Balance', width: 50, type: DataTypeEnum.NUMBER},
|
|
|
|
{key: 'local_balance', value: preOrderedChannel.local_balance, title: 'Local Balance', width: 50, type: DataTypeEnum.NUMBER}],
|
|
|
|
[{key: 'capacity', value: preOrderedChannel.capacity, title: 'Capacity', width: 50, type: DataTypeEnum.NUMBER},
|
|
|
|
{key: 'limbo_balance', value: preOrderedChannel.limbo_balance, title: 'Limbo Balance', width: 50, type: DataTypeEnum.NUMBER}]
|
|
|
|
];
|
2019-12-13 04:01:04 +00:00
|
|
|
this.store.dispatch(new RTLActions.OpenAlert({ data: {
|
2019-11-27 00:49:44 +00:00
|
|
|
type: AlertTypeEnum.INFORMATION,
|
|
|
|
alertTitle: 'Wait Closing Channel Information',
|
2019-12-02 00:22:25 +00:00
|
|
|
message: reorderedChannel
|
2019-11-27 00:49:44 +00:00
|
|
|
}}));
|
2019-03-19 00:13:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
loadOpenChannelsTable(channels) {
|
|
|
|
channels.sort(function(a, b) {
|
|
|
|
return (a.active === b.active) ? 0 : ((b.active) ? -1 : 1);
|
|
|
|
});
|
2019-11-22 03:59:38 +00:00
|
|
|
this.pendingOpenChannelsLength = (channels.length) ? channels.length : 0;
|
2019-03-19 00:13:01 +00:00
|
|
|
this.pendingOpenChannels = new MatTableDataSource<Channel>([...channels]);
|
|
|
|
this.pendingOpenChannels.sort = this.sort;
|
|
|
|
this.logger.info(this.pendingOpenChannels);
|
|
|
|
}
|
|
|
|
|
|
|
|
loadForceClosingChannelsTable(channels) {
|
|
|
|
channels.sort(function(a, b) {
|
|
|
|
return (a.active === b.active) ? 0 : ((b.active) ? -1 : 1);
|
|
|
|
});
|
2019-11-22 03:59:38 +00:00
|
|
|
this.pendingForceClosingChannelsLength = (channels.length) ? channels.length : 0;
|
2019-03-19 00:13:01 +00:00
|
|
|
this.pendingForceClosingChannels = new MatTableDataSource<Channel>([...channels]);
|
|
|
|
this.pendingForceClosingChannels.sort = this.sort;
|
|
|
|
this.logger.info(this.pendingForceClosingChannels);
|
|
|
|
}
|
|
|
|
|
|
|
|
loadClosingChannelsTable(channels) {
|
|
|
|
channels.sort(function(a, b) {
|
|
|
|
return (a.active === b.active) ? 0 : ((b.active) ? -1 : 1);
|
|
|
|
});
|
2019-11-22 03:59:38 +00:00
|
|
|
this.pendingClosingChannelsLength = (channels.length) ? channels.length : 0;
|
2019-03-19 00:13:01 +00:00
|
|
|
this.pendingClosingChannels = new MatTableDataSource<Channel>([...channels]);
|
|
|
|
this.pendingClosingChannels.sort = this.sort;
|
|
|
|
this.logger.info(this.pendingClosingChannels);
|
|
|
|
}
|
|
|
|
|
|
|
|
loadWaitClosingChannelsTable(channels) {
|
|
|
|
channels.sort(function(a, b) {
|
|
|
|
return (a.active === b.active) ? 0 : ((b.active) ? -1 : 1);
|
|
|
|
});
|
2019-11-22 03:59:38 +00:00
|
|
|
this.pendingWaitClosingChannelsLength = (channels.length) ? channels.length : 0;
|
2019-03-19 00:13:01 +00:00
|
|
|
this.pendingWaitClosingChannels = new MatTableDataSource<Channel>([...channels]);
|
|
|
|
this.pendingWaitClosingChannels.sort = this.sort;
|
|
|
|
this.logger.info(this.pendingWaitClosingChannels);
|
|
|
|
}
|
|
|
|
|
|
|
|
applyFilter(selFilter: number) {
|
|
|
|
this.selectedFilter = selFilter;
|
|
|
|
}
|
|
|
|
|
|
|
|
ngOnDestroy() {
|
2019-11-22 18:43:18 +00:00
|
|
|
this.unSubs.forEach(completeSub => {
|
2019-03-19 00:13:01 +00:00
|
|
|
completeSub.next();
|
|
|
|
completeSub.complete();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|