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/loop/loop.component.ts

78 lines
2.5 KiB
TypeScript

import { Component, OnInit } from '@angular/core';
import { Subject } from 'rxjs';
import { takeUntil } from 'rxjs/operators';
import { Store } from '@ngrx/store';
import { faInfinity } from '@fortawesome/free-solid-svg-icons';
import { SwapTypeEnum } from '../../shared/services/consts-enums-functions';
import { LoopModalComponent } from './loop-modal/loop-modal.component';
import { LoopQuote } from '../../shared/models/loopModels';
import { LoopService } from '../../shared/services/loop.service';
import * as fromRTLReducer from '../../store/rtl.reducers';
import * as RTLActions from '../../store/rtl.actions';
@Component({
selector: 'rtl-loop',
templateUrl: './loop.component.html',
styleUrls: ['./loop.component.scss']
})
export class LoopComponent implements OnInit {
public faInfinity = faInfinity;
private targetConf = 2;
public inAmount = 250000;
public quotes: LoopQuote[] = [];
public swapTypeEnum = SwapTypeEnum;
public selectedSwapType: SwapTypeEnum = SwapTypeEnum.LOOP_OUT;
private unSubs: Array<Subject<void>> = [new Subject(), new Subject()];
constructor(private loopService: LoopService, private store: Store<fromRTLReducer.RTLState>) {}
ngOnInit() {}
onSelectedIndexChange(event: any) {
if(event === 1) {
this.selectedSwapType = SwapTypeEnum.LOOP_IN;
} else {
this.selectedSwapType = SwapTypeEnum.LOOP_OUT;
}
}
onLoop(direction: SwapTypeEnum) {
this.store.dispatch(new RTLActions.OpenSpinner('Getting Terms and Quotes...'));
if(direction === SwapTypeEnum.LOOP_IN) {
this.loopService.getLoopInTermsAndQuotes(this.targetConf)
.pipe(takeUntil(this.unSubs[0]))
.subscribe(response => {
this.store.dispatch(new RTLActions.CloseSpinner());
this.store.dispatch(new RTLActions.OpenAlert({ data: {
minQuote: response[0],
maxQuote: response[1],
direction: direction,
component: LoopModalComponent
}}));
});
} else {
this.loopService.getLoopOutTermsAndQuotes(this.targetConf)
.pipe(takeUntil(this.unSubs[1]))
.subscribe(response => {
this.store.dispatch(new RTLActions.CloseSpinner());
this.store.dispatch(new RTLActions.OpenAlert({ data: {
minQuote: response[0],
maxQuote: response[1],
direction: direction,
component: LoopModalComponent
}}));
});
}
}
ngOnDestroy() {
this.unSubs.forEach(completeSub => {
completeSub.next();
completeSub.complete();
});
}
}