You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
RTL/src/app/lnd/on-chain/on-chain-label-modal/on-chain-label-modal.compon...

70 lines
2.4 KiB
TypeScript

import { Component, OnInit, OnDestroy, ViewChild, Inject } from '@angular/core';
import { Subject } from 'rxjs';
import { takeUntil } from 'rxjs/operators';
import { MAT_DIALOG_DATA, MatDialogRef } from '@angular/material/dialog';
import { faExclamationTriangle } from '@fortawesome/free-solid-svg-icons';
import { Store } from '@ngrx/store';
import { MatSnackBar } from '@angular/material/snack-bar';
import { UTXO } from '../../../shared/models/lndModels';
import { OnChainLabelUTXO } from '../../../shared/models/alertData';
import { DataService } from '../../../shared/services/data.service';
import { RTLState } from '../../../store/rtl.state';
import { CommonService } from '../../../shared/services/common.service';
import { fetchTransactions, fetchUTXOs } from '../../store/lnd.actions';
@Component({
selector: 'rtl-on-chain-lebel-modal',
templateUrl: './on-chain-label-modal.component.html',
styleUrls: ['./on-chain-label-modal.component.scss']
})
export class OnChainLabelModalComponent implements OnInit, OnDestroy {
@ViewChild('form', { static: true }) form: any;
public faExclamationTriangle = faExclamationTriangle;
public utxo: UTXO = null;
public label = '';
public labelError = '';
private unSubs: Array<Subject<void>> = [new Subject(), new Subject(), new Subject(), new Subject(), new Subject()];
constructor(public dialogRef: MatDialogRef<OnChainLabelModalComponent>, @Inject(MAT_DIALOG_DATA) public data: OnChainLabelUTXO, private dataService: DataService, private store: Store<RTLState>, private snackBar: MatSnackBar, private commonService: CommonService) { }
ngOnInit() {
this.utxo = this.data.utxo;
this.label = this.utxo.label;
}
onLabelUTXO(): boolean | void {
if (!this.label || this.label === '') {
return true;
}
this.labelError = '';
this.dataService.labelUTXO(this.utxo.outpoint.txid_bytes, this.label, true).
pipe(takeUntil(this.unSubs[0])).
subscribe({
next: (res) => {
this.store.dispatch(fetchTransactions());
this.store.dispatch(fetchUTXOs());
this.snackBar.open('Successfully labelled the UTXO.');
this.dialogRef.close();
}, error: (err) => {
this.labelError = err;
}
});
}
resetData() {
this.labelError = '';
this.label = '';
}
ngOnDestroy() {
this.unSubs.forEach((completeSub) => {
completeSub.next(<any>null);
completeSub.complete();
});
}
}