2
0
mirror of https://github.com/Ride-The-Lightning/RTL synced 2024-11-09 13:10:44 +00:00
RTL/src/app/cln/on-chain/utxo-tables/utxo-tables.component.ts

52 lines
1.7 KiB
TypeScript
Raw Normal View History

import { Component, OnInit, OnDestroy, Input, Output, EventEmitter } from '@angular/core';
import { Subject } from 'rxjs';
import { takeUntil } from 'rxjs/operators';
import { Store } from '@ngrx/store';
import { UTXO } from '../../../shared/models/clnModels';
import { LoggerService } from '../../../shared/services/logger.service';
2021-12-29 23:08:41 +00:00
import { RTLState } from '../../../store/rtl.state';
import { utxos } from '../../store/cln.selector';
2021-12-29 23:08:41 +00:00
import { ApiCallStatusPayload } from '../../../shared/models/apiCallsPayload';
@Component({
selector: 'rtl-cln-utxo-tables',
templateUrl: './utxo-tables.component.html',
styleUrls: ['./utxo-tables.component.scss']
})
export class CLNUTXOTablesComponent implements OnInit, OnDestroy {
2021-08-28 21:03:18 +00:00
@Input() selectedTableIndex = 0;
2021-08-28 21:03:18 +00:00
@Output() readonly selectedTableIndexChange = new EventEmitter<number>();
public numUtxos = 0;
public numDustUtxos = 0;
2022-11-03 20:03:27 +00:00
public DUST_AMOUNT = 1000;
2021-12-29 23:08:41 +00:00
private unSubs: Array<Subject<void>> = [new Subject(), new Subject()];
2021-12-29 23:08:41 +00:00
constructor(private logger: LoggerService, private store: Store<RTLState>) { }
ngOnInit() {
2021-12-29 23:08:41 +00:00
this.store.select(utxos).pipe(takeUntil(this.unSubs[0])).
subscribe((utxosSeletor: { utxos: UTXO[], apiCallStatus: ApiCallStatusPayload }) => {
if (utxosSeletor.utxos && utxosSeletor.utxos.length > 0) {
this.numUtxos = utxosSeletor.utxos.length || 0;
2022-11-03 20:03:27 +00:00
this.numDustUtxos = utxosSeletor.utxos?.filter((utxo) => +(utxo.value || 0) < this.DUST_AMOUNT).length || 0;
}
2021-12-29 23:08:41 +00:00
this.logger.info(utxosSeletor);
});
}
onSelectedIndexChanged(event) {
this.selectedTableIndexChange.emit(event);
}
ngOnDestroy() {
2021-08-28 21:03:18 +00:00
this.unSubs.forEach((completeSub) => {
completeSub.next(<any>null);
completeSub.complete();
});
}
2021-08-28 21:03:18 +00:00
}