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/home/channel-liquidity-info/channel-liquidity-info.comp...

66 lines
2.2 KiB
TypeScript

import { Component, Input, OnInit, OnDestroy } from '@angular/core';
4 years ago
import { Router } from '@angular/router';
import { Subject } from 'rxjs';
import { takeUntil } from 'rxjs/operators';
import { Store } from '@ngrx/store';
import { SwapTypeEnum } from '../../../shared/services/consts-enums-functions';
import { Channel } from '../../../shared/models/lndModels';
import { LoopModalComponent } from '../../loop/loop-modal/loop-modal.component';
import { LoopService } from '../../../shared/services/loop.service';
import * as fromRTLReducer from '../../../store/rtl.reducers';
import * as RTLActions from '../../../store/rtl.actions';
@Component({
selector: 'rtl-channel-liquidity-info',
templateUrl: './channel-liquidity-info.component.html',
styleUrls: ['./channel-liquidity-info.component.scss']
})
export class ChannelLiquidityInfoComponent implements OnInit, OnDestroy {
@Input() direction: string;
@Input() totalLiquidity: number;
@Input() allChannels: Channel[];
public showLoop: boolean;
private targetConf = 6;
private unSubs: Array<Subject<void>> = [new Subject(), new Subject()];
constructor(private router: Router, private loopService: LoopService, private store: Store<fromRTLReducer.RTLState>) {}
ngOnInit() {
this.store.select('lnd')
.pipe(takeUntil(this.unSubs[0]))
.subscribe((rtlStore) => {
this.showLoop = (rtlStore.nodeSettings.swapServerUrl && rtlStore.nodeSettings.swapServerUrl.trim() !== '') ? true : false;
});
}
4 years ago
goToChannels() {
this.router.navigateByUrl('/lnd/peerschannels');
}
onLoopOut(channel: Channel) {
this.store.dispatch(new RTLActions.OpenSpinner('Getting Terms and Quotes...'));
this.loopService.getLoopOutTermsAndQuotes(this.targetConf)
.pipe(takeUntil(this.unSubs[1]))
.subscribe(response => {
this.store.dispatch(new RTLActions.CloseSpinner());
this.store.dispatch(new RTLActions.OpenAlert({ minHeight: '56rem', data: {
channel: channel,
minQuote: response[0],
maxQuote: response[1],
direction: SwapTypeEnum.LOOP_OUT,
component: LoopModalComponent
}}));
});
}
ngOnDestroy() {
this.unSubs.forEach(completeSub => {
completeSub.next();
completeSub.complete();
});
}
}