import { Component, OnInit, OnDestroy, ViewChild, Input, AfterViewInit } from '@angular/core'; import { DecimalPipe, DatePipe } from '@angular/common'; import { Subject } from 'rxjs'; import { filter, takeUntil } from 'rxjs/operators'; import { Store } from '@ngrx/store'; import { Actions } from '@ngrx/effects'; import { faHistory } from '@fortawesome/free-solid-svg-icons'; import { MatPaginator, 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, APICallStatusEnum, UI_MESSAGES, CLNActions, CLN_DEFAULT_PAGE_SETTINGS, SortOrderEnum, CLN_PAGE_DEFS, DEFAULT_INVOICE_EXPIRY } from '../../../../shared/services/consts-enums-functions'; import { ApiCallStatusPayload } from '../../../../shared/models/apiCallsPayload'; import { SelNodeChild } from '../../../../shared/models/RTLconfig'; import { GetInfo, Invoice, ListInvoices } from '../../../../shared/models/clnModels'; import { LoggerService } from '../../../../shared/services/logger.service'; import { CommonService } from '../../../../shared/services/common.service'; import { CLNCreateInvoiceComponent } from '../create-invoice-modal/create-invoice.component'; import { CLNInvoiceInformationComponent } from '../invoice-information-modal/invoice-information.component'; import { RTLEffects } from '../../../../store/rtl.effects'; import { RTLState } from '../../../../store/rtl.state'; import { openAlert, openConfirmation } from '../../../../store/rtl.actions'; import { deleteExpiredInvoice, invoiceLookup, saveNewInvoice } from '../../../store/cln.actions'; import { clnNodeInformation, clnNodeSettings, clnPageSettings, listInvoices } from '../../../store/cln.selector'; import { ColumnDefinition, PageSettings, TableSetting } from '../../../../shared/models/pageSettings'; import { CamelCaseWithReplacePipe } from '../../../../shared/pipes/app.pipe'; import { MAT_SELECT_CONFIG } from '@angular/material/select'; @Component({ selector: 'rtl-cln-lightning-invoices-table', templateUrl: './lightning-invoices-table.component.html', styleUrls: ['./lightning-invoices-table.component.scss'], providers: [ { provide: MAT_SELECT_CONFIG, useValue: { overlayPanelClass: 'rtl-select-overlay' } }, { provide: MatPaginatorIntl, useValue: getPaginatorLabel('Invoices') } ] }) export class CLNLightningInvoicesTableComponent implements OnInit, AfterViewInit, OnDestroy { @Input() calledFrom = 'transactions'; // Transactions/home @ViewChild(MatSort, { static: false }) sort: MatSort | undefined; @ViewChild(MatPaginator, { static: false }) paginator: MatPaginator | undefined; faHistory = faHistory; public nodePageDefs = CLN_PAGE_DEFS; public selFilterBy = 'all'; public colWidth = '20rem'; public PAGE_ID = 'transactions'; public tableSetting: TableSetting = { tableId: 'invoices', recordsPerPage: PAGE_SIZE, sortBy: 'expires_at', sortOrder: SortOrderEnum.DESCENDING }; public selNode: SelNodeChild | null = {}; public newlyAddedInvoiceMemo = ''; public newlyAddedInvoiceValue = 0; public description = ''; public expiry: number | null; public invoiceValue: number | null = null; public invoiceValueHint = ''; public displayedColumns: any[] = []; public invoicePaymentReq = ''; public invoices: any = new MatTableDataSource([]); public invoiceJSONArr: Invoice[] = []; public information: GetInfo = {}; public private = false; public expiryStep = 100; public pageSize = PAGE_SIZE; public pageSizeOptions = PAGE_SIZE_OPTIONS; public screenSize = ''; public screenSizeEnum = ScreenSizeEnum; public errorMessage = ''; public selFilter = ''; public apiCallStatus: ApiCallStatusPayload | null = null; public apiCallStatusEnum = APICallStatusEnum; private unSubs: Array> = [new Subject(), new Subject(), new Subject(), new Subject(), new Subject(), new Subject(), new Subject(), new Subject(), new Subject()]; constructor(private logger: LoggerService, private store: Store, private decimalPipe: DecimalPipe, private commonService: CommonService, private rtlEffects: RTLEffects, private datePipe: DatePipe, private actions: Actions, private camelCaseWithReplace: CamelCaseWithReplacePipe) { this.screenSize = this.commonService.getScreenSize(); } ngOnInit() { this.store.select(clnNodeSettings).pipe(takeUntil(this.unSubs[0])).subscribe((nodeSettings: SelNodeChild | null) => { this.selNode = nodeSettings; }); this.store.select(clnNodeInformation).pipe(takeUntil(this.unSubs[1])).subscribe((nodeInfo: GetInfo) => { this.information = nodeInfo; }); this.store.select(clnPageSettings).pipe(takeUntil(this.unSubs[2])). subscribe((settings: { pageSettings: PageSettings[], apiCallStatus: ApiCallStatusPayload }) => { this.errorMessage = ''; this.apiCallStatus = settings.apiCallStatus; if (this.apiCallStatus.status === APICallStatusEnum.ERROR) { this.errorMessage = this.apiCallStatus.message || ''; } this.tableSetting = settings.pageSettings.find((page) => page.pageId === this.PAGE_ID)?.tables.find((table) => table.tableId === this.tableSetting.tableId) || CLN_DEFAULT_PAGE_SETTINGS.find((page) => page.pageId === this.PAGE_ID)?.tables.find((table) => table.tableId === this.tableSetting.tableId)!; if (this.screenSize === ScreenSizeEnum.XS || this.screenSize === ScreenSizeEnum.SM) { this.displayedColumns = JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)); } else { this.displayedColumns = JSON.parse(JSON.stringify(this.tableSetting.columnSelection)); } this.displayedColumns.unshift('status'); this.displayedColumns.push('actions'); this.pageSize = this.tableSetting.recordsPerPage ? +this.tableSetting.recordsPerPage : PAGE_SIZE; this.colWidth = this.displayedColumns.length ? ((this.commonService.getContainerSize().width / this.displayedColumns.length) / 14) + 'rem' : '20rem'; this.logger.info(this.displayedColumns); }); this.store.select(listInvoices).pipe(takeUntil(this.unSubs[3])). subscribe((invoicesSeletor: { listInvoices: ListInvoices, apiCallStatus: ApiCallStatusPayload }) => { this.errorMessage = ''; this.apiCallStatus = invoicesSeletor.apiCallStatus; if (this.apiCallStatus.status === APICallStatusEnum.ERROR) { this.errorMessage = !this.apiCallStatus.message ? '' : (typeof (this.apiCallStatus.message) === 'object') ? JSON.stringify(this.apiCallStatus.message) : this.apiCallStatus.message; } this.invoiceJSONArr = invoicesSeletor.listInvoices.invoices || []; if (this.invoiceJSONArr && this.invoiceJSONArr.length > 0 && this.sort && this.paginator && this.displayedColumns.length > 0) { this.loadInvoicesTable(this.invoiceJSONArr); } this.logger.info(invoicesSeletor); }); this.actions.pipe(takeUntil(this.unSubs[4]), filter((action) => (action.type === CLNActions.SET_LOOKUP_CLN || action.type === CLNActions.UPDATE_API_CALL_STATUS_CLN))). subscribe((resLookup: any) => { if (resLookup.type === CLNActions.SET_LOOKUP_CLN) { if (this.invoiceJSONArr && this.invoiceJSONArr.length > 0 && this.sort && this.paginator && resLookup.payload) { this.updateInvoicesData(JSON.parse(JSON.stringify(resLookup.payload))); this.loadInvoicesTable(this.invoiceJSONArr); } } }); } ngAfterViewInit() { if (this.invoiceJSONArr && this.invoiceJSONArr.length > 0 && this.sort && this.paginator && this.displayedColumns.length > 0) { this.loadInvoicesTable(this.invoiceJSONArr); } } openCreateInvoiceModal() { this.store.dispatch(openAlert({ payload: { data: { pageSize: this.pageSize, component: CLNCreateInvoiceComponent } } })); } onAddInvoice(form: any) { if (!this.invoiceValue) { this.invoiceValue = 0; } const expiryInSecs = (this.expiry ? this.expiry : DEFAULT_INVOICE_EXPIRY); this.newlyAddedInvoiceMemo = 'ulbl' + Math.random().toString(36).slice(2) + Date.now(); this.newlyAddedInvoiceValue = this.invoiceValue; this.store.dispatch(saveNewInvoice({ payload: { label: this.newlyAddedInvoiceMemo, amount: this.invoiceValue * 1000, description: this.description, expiry: expiryInSecs, private: this.private } })); this.resetData(); } onDeleteExpiredInvoices() { this.store.dispatch(openConfirmation({ payload: { data: { type: 'CONFIRM', titleMessage: 'Delete Expired Invoices', noBtnText: 'Cancel', yesBtnText: 'Delete Invoices' } } })); this.rtlEffects.closeConfirm. pipe(takeUntil(this.unSubs[5])). subscribe((confirmRes) => { if (confirmRes) { this.store.dispatch(deleteExpiredInvoice({ payload: null })); } }); } onInvoiceClick(selInvoice: Invoice) { const reCreatedInvoice: Invoice = { amount_msat: selInvoice.amount_msat, label: selInvoice.label, expires_at: selInvoice.expires_at, paid_at: selInvoice.paid_at, bolt11: selInvoice.bolt11, payment_hash: selInvoice.payment_hash, description: selInvoice.description, status: selInvoice.status, amount_received_msat: selInvoice.amount_received_msat }; this.store.dispatch(openAlert({ payload: { data: { invoice: reCreatedInvoice, newlyAdded: false, component: CLNInvoiceInformationComponent } } })); } resetData() { this.description = ''; this.invoiceValue = null; this.private = false; this.expiry = null; this.invoiceValueHint = ''; } applyFilter() { this.invoices.filter = this.selFilter.trim().toLowerCase(); } getLabel(column: string) { const returnColumn: ColumnDefinition = this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find((col) => col.column === column); return returnColumn ? returnColumn.label ? returnColumn.label : this.camelCaseWithReplace.transform(returnColumn.column, '_') : this.commonService.titleCase(column); } setFilterPredicate() { this.invoices.filterPredicate = (rowData: Invoice, fltr: string) => { let rowToFilter = ''; switch (this.selFilterBy) { case 'all': rowToFilter = this.datePipe.transform(new Date((rowData.paid_at || 0) * 1000), 'dd/MMM/y HH:mm')?.toLowerCase()! + (this.datePipe.transform(new Date((rowData.expires_at || 0) * 1000), 'dd/MMM/y HH:mm')?.toLowerCase()) + ((rowData.bolt12) ? 'bolt12' : (rowData.bolt11) ? 'bolt11' : 'keysend') + JSON.stringify(rowData).toLowerCase(); break; case 'status': rowToFilter = rowData?.status === 'paid' ? 'paid' : rowData?.status === 'unpaid' ? 'unpaid' : 'expired'; break; case 'expires_at': case 'paid_at': rowToFilter = this.datePipe.transform(new Date((rowData[this.selFilterBy] || 0) * 1000), 'dd/MMM/y HH:mm')?.toLowerCase() || ''; break; case 'type': rowToFilter = rowData?.bolt12 ? 'bolt12' : (rowData?.bolt11 && rowData?.label?.includes('keysend-')) ? 'keysend' : 'bolt11'; break; case 'msatoshi': rowToFilter = ((rowData['amount_msat'] || 0) / 1000)?.toString() || ''; break; case 'msatoshi_received': rowToFilter = ((rowData['amount_received_msat'] || 0) / 1000)?.toString() || ''; break; default: rowToFilter = typeof rowData[this.selFilterBy] === 'undefined' ? '' : typeof rowData[this.selFilterBy] === 'string' ? rowData[this.selFilterBy].toLowerCase() : typeof rowData[this.selFilterBy] === 'boolean' ? (rowData[this.selFilterBy] ? 'yes' : 'no') : rowData[this.selFilterBy].toString(); break; } return (this.selFilterBy === 'status' || this.selFilterBy === 'type') ? rowToFilter.indexOf(fltr) === 0 : rowToFilter.includes(fltr); }; } onInvoiceValueChange() { if (this.selNode && this.selNode.fiatConversion && this.invoiceValue! > 99) { this.invoiceValueHint = ''; this.commonService.convertCurrency(this.invoiceValue!, CurrencyUnitEnum.SATS, CurrencyUnitEnum.OTHER, (this.selNode?.currencyUnits && this.selNode.currencyUnits.length > 2 ? this.selNode.currencyUnits[2] : ''), this.selNode.fiatConversion). pipe(takeUntil(this.unSubs[6])). subscribe({ next: (data) => { this.invoiceValueHint = '= ' + this.decimalPipe.transform(data.OTHER, CURRENCY_UNIT_FORMATS.OTHER) + ' ' + data.unit; }, error: (err) => { this.invoiceValueHint = 'Conversion Error: ' + err; } }); } } onRefreshInvoice(selInvoice: Invoice) { this.store.dispatch(invoiceLookup({ payload: selInvoice.label! })); } updateInvoicesData(newInvoice: Invoice) { this.invoiceJSONArr = this.invoiceJSONArr?.map((invoice) => ((invoice.label === newInvoice.label) ? newInvoice : invoice)); } loadInvoicesTable(invs: Invoice[]) { this.invoices = (invs) ? new MatTableDataSource([...invs]) : new MatTableDataSource([]); this.invoices.sort = this.sort; this.invoices.sortingDataAccessor = (data: any, sortHeaderId: string) => { switch (sortHeaderId) { case 'msatoshi': return data['amount_msat']; case 'msatoshi_received': return data['amount_received_msat']; default: return (data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null; } }; this.invoices.paginator = this.paginator; this.applyFilter(); this.setFilterPredicate(); } onDownloadCSV() { if (this.invoices.data && this.invoices.data.length > 0) { this.commonService.downloadFile(this.invoices.data, 'Invoices'); } } ngOnDestroy() { this.unSubs.forEach((completeSub) => { completeSub.next(null); completeSub.complete(); }); } }