mirror of
https://github.com/Ride-The-Lightning/RTL
synced 2024-11-09 13:10:44 +00:00
5aac044a13
list invoice htlcs
188 lines
7.0 KiB
TypeScript
188 lines
7.0 KiB
TypeScript
import { Component, OnInit, OnDestroy, ViewChild, Input } from '@angular/core';
|
|
import { DecimalPipe } from '@angular/common';
|
|
import { Subject } from 'rxjs';
|
|
import { takeUntil } from 'rxjs/operators';
|
|
import { Store } from '@ngrx/store';
|
|
import { faHistory } from '@fortawesome/free-solid-svg-icons';
|
|
import { MatPaginatorIntl } from '@angular/material/paginator';
|
|
import { MatSort } from '@angular/material/sort';
|
|
import { MatTableDataSource } from '@angular/material/table';
|
|
|
|
import { CurrencyUnitEnum, CURRENCY_UNIT_FORMATS, PAGE_SIZE, PAGE_SIZE_OPTIONS, getPaginatorLabel, ScreenSizeEnum } from '../../../shared/services/consts-enums-functions';
|
|
import { SelNodeChild } from '../../../shared/models/RTLconfig';
|
|
import { GetInfo, Invoice } from '../../../shared/models/lndModels';
|
|
import { LoggerService } from '../../../shared/services/logger.service';
|
|
import { CommonService } from '../../../shared/services/common.service';
|
|
|
|
import { CreateInvoiceComponent } from '../create-invoice-modal/create-invoice.component';
|
|
import { InvoiceInformationComponent } from '../invoice-information-modal/invoice-information.component';
|
|
import { newlyAddedRowAnimation } from '../../../shared/animation/row-animation';
|
|
|
|
import * as LNDActions from '../../store/lnd.actions';
|
|
import * as RTLActions from '../../../store/rtl.actions';
|
|
import * as fromRTLReducer from '../../../store/rtl.reducers';
|
|
|
|
@Component({
|
|
selector: 'rtl-lightning-invoices',
|
|
templateUrl: './lightning-invoices.component.html',
|
|
styleUrls: ['./lightning-invoices.component.scss'],
|
|
animations: [newlyAddedRowAnimation],
|
|
providers: [
|
|
{ provide: MatPaginatorIntl, useValue: getPaginatorLabel('Invoices') },
|
|
]
|
|
})
|
|
export class LightningInvoicesComponent implements OnInit, OnDestroy {
|
|
@Input() showDetails = true;
|
|
@ViewChild(MatSort, { static: true }) sort: MatSort;
|
|
faHistory = faHistory;
|
|
public selNode: SelNodeChild = {};
|
|
public newlyAddedInvoiceMemo = null;
|
|
public newlyAddedInvoiceValue = null;
|
|
public flgAnimate = true;
|
|
public memo = '';
|
|
public expiry: number;
|
|
public invoiceValue: number;
|
|
public invoiceValueHint = '';
|
|
public displayedColumns = [];
|
|
public invoicePaymentReq = '';
|
|
public invoices: any;
|
|
public information: GetInfo = {};
|
|
public flgLoading: Array<Boolean | 'error'> = [true];
|
|
public flgSticky = false;
|
|
public private = false;
|
|
public expiryStep = 100;
|
|
public totalInvoices = 100;
|
|
public pageSize = PAGE_SIZE;
|
|
public pageSizeOptions = PAGE_SIZE_OPTIONS;
|
|
private firstOffset = -1;
|
|
private lastOffset = -1;
|
|
public screenSize = '';
|
|
public screenSizeEnum = ScreenSizeEnum;
|
|
private unSubs: Array<Subject<void>> = [new Subject(), new Subject(), new Subject(), new Subject(), new Subject()];
|
|
|
|
constructor(private logger: LoggerService, private store: Store<fromRTLReducer.RTLState>, private decimalPipe: DecimalPipe, private commonService: CommonService) {
|
|
this.screenSize = this.commonService.getScreenSize();
|
|
if(this.screenSize === ScreenSizeEnum.XS) {
|
|
this.flgSticky = false;
|
|
this.displayedColumns = ['creation_date', 'actions'];
|
|
} else if(this.screenSize === ScreenSizeEnum.SM) {
|
|
this.flgSticky = false;
|
|
this.displayedColumns = ['creation_date', 'value', 'actions'];
|
|
} else if(this.screenSize === ScreenSizeEnum.MD) {
|
|
this.flgSticky = false;
|
|
this.displayedColumns = ['creation_date', 'memo', 'value', 'actions'];
|
|
} else {
|
|
this.flgSticky = true;
|
|
this.displayedColumns = ['creation_date', 'settle_date', 'memo', 'value', 'amt_paid_sat', 'actions'];
|
|
}
|
|
}
|
|
|
|
ngOnInit() {
|
|
this.store.select('lnd')
|
|
.pipe(takeUntil(this.unSubs[0]))
|
|
.subscribe((rtlStore) => {
|
|
rtlStore.effectErrors.forEach(effectsErr => {
|
|
if (effectsErr.action === 'FetchInvoices') {
|
|
this.flgLoading[0] = 'error';
|
|
}
|
|
});
|
|
this.selNode = rtlStore.nodeSettings;
|
|
this.information = rtlStore.information;
|
|
this.totalInvoices = rtlStore.totalInvoices;
|
|
this.firstOffset = +rtlStore.invoices.first_index_offset;
|
|
this.lastOffset = +rtlStore.invoices.last_index_offset;
|
|
this.logger.info(rtlStore);
|
|
this.loadInvoicesTable(rtlStore.invoices.invoices ? rtlStore.invoices.invoices : []);
|
|
if (this.flgLoading[0] !== 'error') {
|
|
this.flgLoading[0] = ( rtlStore.invoices) ? false : true;
|
|
}
|
|
});
|
|
}
|
|
|
|
onAddInvoice(form: any) {
|
|
let expiryInSecs = (this.expiry ? this.expiry : 3600);
|
|
this.flgAnimate = true;
|
|
this.newlyAddedInvoiceMemo = this.memo;
|
|
this.newlyAddedInvoiceValue = this.invoiceValue;
|
|
this.store.dispatch(new RTLActions.OpenSpinner('Adding Invoice...'));
|
|
this.store.dispatch(new LNDActions.SaveNewInvoice({
|
|
memo: this.memo, invoiceValue: this.invoiceValue, private: this.private, expiry: expiryInSecs, pageSize: this.pageSize, openModal: true
|
|
}));
|
|
this.resetData();
|
|
}
|
|
|
|
onInvoiceClick(selInvoice: Invoice, event: any) {
|
|
this.store.dispatch(new RTLActions.OpenAlert({ data: {
|
|
invoice: selInvoice,
|
|
newlyAdded: false,
|
|
component: InvoiceInformationComponent
|
|
}}));
|
|
}
|
|
|
|
loadInvoicesTable(invoices) {
|
|
this.invoices = new MatTableDataSource<Invoice>([...invoices]);
|
|
this.invoices.sort = this.sort;
|
|
this.invoices.sortingDataAccessor = (data, sortHeaderId) => (data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : +data[sortHeaderId];
|
|
setTimeout(() => { this.flgAnimate = false; }, 5000);
|
|
this.logger.info(this.invoices);
|
|
}
|
|
|
|
resetData() {
|
|
this.memo = '';
|
|
this.invoiceValue = undefined;
|
|
this.private = false;
|
|
this.expiry = undefined;
|
|
this.invoiceValueHint = '';
|
|
}
|
|
|
|
applyFilter(selFilter: string) {
|
|
this.invoices.filter = selFilter;
|
|
}
|
|
|
|
onPageChange(event: any) {
|
|
let reversed = true;
|
|
let index_offset = this.firstOffset;
|
|
if (event.pageIndex < event.previousPageIndex) {
|
|
reversed = false;
|
|
index_offset = this.lastOffset;
|
|
}
|
|
if (event.pageIndex === event.previousPageIndex) {
|
|
reversed = true;
|
|
index_offset = 0;
|
|
}
|
|
this.store.dispatch(new LNDActions.FetchInvoices({num_max_invoices: event.pageSize, index_offset: index_offset, reversed: reversed}));
|
|
}
|
|
|
|
onInvoiceValueChange() {
|
|
if(this.selNode.fiatConversion && this.invoiceValue > 99) {
|
|
this.invoiceValueHint = '';
|
|
this.commonService.convertCurrency(this.invoiceValue, CurrencyUnitEnum.SATS, this.selNode.currencyUnits[2], this.selNode.fiatConversion)
|
|
.pipe(takeUntil(this.unSubs[1]))
|
|
.subscribe(data => {
|
|
this.invoiceValueHint = '= ' + data.symbol + this.decimalPipe.transform(data.OTHER, CURRENCY_UNIT_FORMATS.OTHER) + ' ' + data.unit;
|
|
});
|
|
}
|
|
}
|
|
|
|
onDownloadCSV() {
|
|
if(this.invoices.data && this.invoices.data.length > 0) {
|
|
this.commonService.downloadFile(this.invoices.data, 'Invoices');
|
|
}
|
|
}
|
|
|
|
openCreateInvoiceModal() {
|
|
this.store.dispatch(new RTLActions.OpenAlert({ data: {
|
|
pageSize: this.pageSize,
|
|
component: CreateInvoiceComponent
|
|
}}));
|
|
}
|
|
|
|
ngOnDestroy() {
|
|
this.unSubs.forEach(completeSub => {
|
|
completeSub.next();
|
|
completeSub.complete();
|
|
});
|
|
}
|
|
|
|
}
|