From f5fe776cd0bbc0c74d7e4a23a2946412d9ba1b89 Mon Sep 17 00:00:00 2001 From: ShahanaFarooqui Date: Wed, 19 Oct 2022 16:39:50 -0700 Subject: [PATCH] CLN Page Layout Complete --- .../utxo-tables/utxos/utxos.component.ts | 2 +- .../routing/routing-report.component.html | 2 +- .../transactions-report.component.html | 2 +- .../transactions-report.component.ts | 33 ++++- .../forwarding-history.component.ts | 6 +- .../payments/lightning-payments.component.ts | 2 +- .../page-settings.component.html | 6 +- .../transactions-report-table.component.ts | 16 +-- .../shared/services/consts-enums-functions.ts | 128 +++++++++++------- 9 files changed, 124 insertions(+), 73 deletions(-) diff --git a/src/app/cln/on-chain/utxo-tables/utxos/utxos.component.ts b/src/app/cln/on-chain/utxo-tables/utxos/utxos.component.ts index 5b640c63..7f8f2ce0 100644 --- a/src/app/cln/on-chain/utxo-tables/utxos/utxos.component.ts +++ b/src/app/cln/on-chain/utxo-tables/utxos/utxos.component.ts @@ -32,7 +32,7 @@ export class CLNOnChainUtxosComponent implements OnInit, AfterViewInit, OnDestro @ViewChild(MatPaginator, { static: false }) paginator: MatPaginator | undefined; @Input() numDustUTXOs = 0; @Input() isDustUTXO = false; - public PAGE_ID = 'on-chain'; + public PAGE_ID = 'on_chain'; public tableSetting: TableSetting = { tableId: 'utxos', recordsPerPage: PAGE_SIZE, sortBy: 'status', sortOrder: SortOrderEnum.DESCENDING }; public displayedColumns: any[] = []; public utxos: UTXO[]; diff --git a/src/app/cln/reports/routing/routing-report.component.html b/src/app/cln/reports/routing/routing-report.component.html index 5ef997f7..1122c430 100644 --- a/src/app/cln/reports/routing/routing-report.component.html +++ b/src/app/cln/reports/routing/routing-report.component.html @@ -42,7 +42,7 @@
- +
diff --git a/src/app/cln/reports/transactions/transactions-report.component.html b/src/app/cln/reports/transactions/transactions-report.component.html index 2670e1b6..61674d3a 100644 --- a/src/app/cln/reports/transactions/transactions-report.component.html +++ b/src/app/cln/reports/transactions/transactions-report.component.html @@ -35,7 +35,7 @@
- +
diff --git a/src/app/cln/reports/transactions/transactions-report.component.ts b/src/app/cln/reports/transactions/transactions-report.component.ts index bde15fa0..fb676b03 100644 --- a/src/app/cln/reports/transactions/transactions-report.component.ts +++ b/src/app/cln/reports/transactions/transactions-report.component.ts @@ -5,13 +5,14 @@ import { Store } from '@ngrx/store'; import { Payment, Invoice, ListInvoices } from '../../../shared/models/clnModels'; import { CommonService } from '../../../shared/services/common.service'; -import { MONTHS, ScreenSizeEnum, SCROLL_RANGES } from '../../../shared/services/consts-enums-functions'; +import { APICallStatusEnum, CLN_DEFAULT_PAGE_SETTINGS, MONTHS, PAGE_SIZE, ScreenSizeEnum, SCROLL_RANGES, SortOrderEnum } from '../../../shared/services/consts-enums-functions'; import { fadeIn } from '../../../shared/animation/opacity-animation'; import { RTLState } from '../../../store/rtl.state'; -import { payments, listInvoices } from '../../store/cln.selector'; +import { payments, listInvoices, clnPageSettings } from '../../store/cln.selector'; import { ApiCallStatusPayload } from '../../../shared/models/apiCallsPayload'; import { LoggerService } from '../../../shared/services/logger.service'; +import { PageSettingsCLN, TableSetting } from '../../../shared/models/pageSettings'; @Component({ selector: 'rtl-cln-transactions-report', @@ -26,6 +27,9 @@ export class CLNTransactionsReportComponent implements OnInit, OnDestroy { public secondsInADay = 24 * 60 * 60; public payments: Payment[] = []; public invoices: Invoice[] = []; + public PAGE_ID = 'reports'; + public tableSetting: TableSetting = { tableId: 'transactions', recordsPerPage: PAGE_SIZE, sortBy: 'date', sortOrder: SortOrderEnum.DESCENDING }; + public displayedColumns: any[] = ['date', 'amount_paid', 'num_payments', 'amount_received', 'num_invoices']; public transactionsReportSummary = { paymentsSelectedPeriod: 0, invoicesSelectedPeriod: 0, amountPaidSelectedPeriod: 0, amountReceivedSelectedPeriod: 0 }; public transactionFilterValue = ''; public today = new Date(Date.now()); @@ -41,14 +45,33 @@ export class CLNTransactionsReportComponent implements OnInit, OnDestroy { public showYAxisLabel = true; public screenSize = ''; public screenSizeEnum = ScreenSizeEnum; - private unSubs: Array> = [new Subject(), new Subject()]; + private unSubs: Array> = [new Subject(), new Subject(), new Subject(), new Subject()]; constructor(private logger: LoggerService, private commonService: CommonService, private store: Store) { } ngOnInit() { this.screenSize = this.commonService.getScreenSize(); this.showYAxisLabel = !(this.screenSize === ScreenSizeEnum.XS || this.screenSize === ScreenSizeEnum.SM); - this.store.select(payments).pipe(takeUntil(this.unSubs[0]), + this.store.select(clnPageSettings).pipe(takeUntil(this.unSubs[0])). + subscribe((settings: { pageSettings: PageSettingsCLN[], apiCallStatus: ApiCallStatusPayload }) => { + if (settings.apiCallStatus.status === APICallStatusEnum.ERROR) { + if (this.screenSize === ScreenSizeEnum.XS || this.screenSize === ScreenSizeEnum.SM) { + this.displayedColumns = ['date', 'amount_paid', 'amount_received']; + } else { + this.displayedColumns = ['date', 'amount_paid', 'num_payments', 'amount_received', 'num_invoices']; + } + } else { + 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.push('actions'); + this.logger.info(this.displayedColumns); + }); + this.store.select(payments).pipe(takeUntil(this.unSubs[1]), withLatestFrom(this.store.select(listInvoices))). subscribe(([paymentsSelector, invoicesSelector]: [{ payments: Payment[], apiCallStatus: ApiCallStatusPayload }, { listInvoices: ListInvoices, apiCallStatus: ApiCallStatusPayload }]) => { this.payments = paymentsSelector.payments; @@ -56,7 +79,7 @@ export class CLNTransactionsReportComponent implements OnInit, OnDestroy { this.transactionsReportData = this.filterTransactionsForSelectedPeriod(this.startDate, this.endDate); this.transactionsNonZeroReportData = this.prepareTableData(); }); - this.commonService.containerSizeUpdated.pipe(takeUntil(this.unSubs[1])).subscribe((CONTAINER_SIZE) => { + this.commonService.containerSizeUpdated.pipe(takeUntil(this.unSubs[2])).subscribe((CONTAINER_SIZE) => { switch (this.screenSize) { case ScreenSizeEnum.MD: this.screenPaddingX = CONTAINER_SIZE.width / 10; diff --git a/src/app/cln/routing/forwarding-history/forwarding-history.component.ts b/src/app/cln/routing/forwarding-history/forwarding-history.component.ts index 5e5d8d89..6df76b76 100644 --- a/src/app/cln/routing/forwarding-history/forwarding-history.component.ts +++ b/src/app/cln/routing/forwarding-history/forwarding-history.component.ts @@ -32,9 +32,10 @@ export class CLNForwardingHistoryComponent implements OnInit, OnChanges, AfterVi @ViewChild(MatSort, { static: false }) sort: MatSort | undefined; @ViewChild(MatPaginator, { static: false }) paginator: MatPaginator | undefined; + @Input() pageId = 'routing'; + @Input() tableId = 'forwarding_history'; @Input() eventsData = []; @Input() filterValue = ''; - public PAGE_ID = 'routing'; public tableSetting: TableSetting = { tableId: 'forwarding_history', recordsPerPage: PAGE_SIZE, sortBy: 'received_time', sortOrder: SortOrderEnum.DESCENDING }; public successfulEvents: ForwardingEvent[] = []; public displayedColumns: any[] = []; @@ -63,7 +64,8 @@ export class CLNForwardingHistoryComponent implements OnInit, OnChanges, AfterVi 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)!; + this.tableSetting.tableId = this.tableId; + this.tableSetting = settings.pageSettings.find((page) => page.pageId === this.pageId)?.tables.find((table) => table.tableId === this.tableSetting.tableId) || CLN_DEFAULT_PAGE_SETTINGS.find((page) => page.pageId === this.pageId)?.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 { diff --git a/src/app/cln/transactions/payments/lightning-payments.component.ts b/src/app/cln/transactions/payments/lightning-payments.component.ts index a1880ee7..f9f6ef61 100644 --- a/src/app/cln/transactions/payments/lightning-payments.component.ts +++ b/src/app/cln/transactions/payments/lightning-payments.component.ts @@ -9,7 +9,7 @@ import { MatPaginator, MatPaginatorIntl } from '@angular/material/paginator'; import { MatSort } from '@angular/material/sort'; import { MatTableDataSource } from '@angular/material/table'; import { GetInfo, Payment, PayRequest } from '../../../shared/models/clnModels'; -import { PAGE_SIZE, PAGE_SIZE_OPTIONS, getPaginatorLabel, AlertTypeEnum, DataTypeEnum, ScreenSizeEnum, CurrencyUnitEnum, CURRENCY_UNIT_FORMATS, APICallStatusEnum, UI_MESSAGES, PaymentTypes, CLN_TABLES_DEF, CLN_DEFAULT_PAGE_SETTINGS, SORT_ORDERS, SortOrderEnum } from '../../../shared/services/consts-enums-functions'; +import { PAGE_SIZE, PAGE_SIZE_OPTIONS, getPaginatorLabel, AlertTypeEnum, DataTypeEnum, ScreenSizeEnum, CurrencyUnitEnum, CURRENCY_UNIT_FORMATS, APICallStatusEnum, UI_MESSAGES, PaymentTypes, CLN_DEFAULT_PAGE_SETTINGS, SortOrderEnum } from '../../../shared/services/consts-enums-functions'; import { ApiCallStatusPayload } from '../../../shared/models/apiCallsPayload'; import { DataService } from '../../../shared/services/data.service'; import { LoggerService } from '../../../shared/services/logger.service'; diff --git a/src/app/shared/components/node-config/page-settings/page-settings.component.html b/src/app/shared/components/node-config/page-settings/page-settings.component.html index a580f43f..fbe4fd1a 100644 --- a/src/app/shared/components/node-config/page-settings/page-settings.component.html +++ b/src/app/shared/components/node-config/page-settings/page-settings.component.html @@ -35,7 +35,7 @@ - + {{field | camelcaseWithReplace:'_'}} @@ -43,11 +43,11 @@ - + {{field | camelcaseWithReplace:'_'}} - Column selection should be between 2 and {{tableFieldsDef[table.tableId].maxColumns}} + Column selection should be between 2 and {{tableFieldsDef[page.pageId][table.tableId].maxColumns}} diff --git a/src/app/shared/components/transactions-report-table/transactions-report-table.component.ts b/src/app/shared/components/transactions-report-table/transactions-report-table.component.ts index f7968d8f..65c7ed19 100644 --- a/src/app/shared/components/transactions-report-table/transactions-report-table.component.ts +++ b/src/app/shared/components/transactions-report-table/transactions-report-table.component.ts @@ -5,11 +5,12 @@ import { Store } from '@ngrx/store'; import { MatPaginator, MatPaginatorIntl } from '@angular/material/paginator'; import { MatSort } from '@angular/material/sort'; import { MatTableDataSource } from '@angular/material/table'; -import { PAGE_SIZE, PAGE_SIZE_OPTIONS, getPaginatorLabel, AlertTypeEnum, DataTypeEnum, ScreenSizeEnum, SCROLL_RANGES } from '../../services/consts-enums-functions'; +import { PAGE_SIZE, PAGE_SIZE_OPTIONS, getPaginatorLabel, AlertTypeEnum, DataTypeEnum, ScreenSizeEnum, SCROLL_RANGES, SortOrderEnum } from '../../services/consts-enums-functions'; import { CommonService } from '../../services/common.service'; import { RTLState } from '../../../store/rtl.state'; import { openAlert } from '../../../store/rtl.actions'; +import { TableSetting } from '../../models/pageSettings'; @Component({ selector: 'rtl-transactions-report-table', @@ -24,12 +25,13 @@ export class TransactionsReportTableComponent implements OnInit, AfterViewInit, @Input() dataRange = SCROLL_RANGES[0]; @Input() dataList = []; @Input() filterValue = ''; + @Input() displayedColumns: any[] = ['date', 'amount_paid', 'num_payments', 'amount_received', 'num_invoices']; + @Input() tableSetting: TableSetting = { tableId: 'transactions', recordsPerPage: PAGE_SIZE, sortBy: 'date', sortOrder: SortOrderEnum.DESCENDING }; @ViewChild(MatSort, { static: false }) sort: MatSort | undefined; @ViewChild(MatPaginator, { static: false }) paginator: MatPaginator | undefined; public timezoneOffset = new Date(Date.now()).getTimezoneOffset() * 60; public scrollRanges = SCROLL_RANGES; public transactions: any; - public displayedColumns: any[] = []; public pageSize = PAGE_SIZE; public pageSizeOptions = PAGE_SIZE_OPTIONS; public screenSize = ''; @@ -37,16 +39,10 @@ export class TransactionsReportTableComponent implements OnInit, AfterViewInit, constructor(private commonService: CommonService, private store: Store, private datePipe: DatePipe) { this.screenSize = this.commonService.getScreenSize(); - if (this.screenSize === ScreenSizeEnum.XS || this.screenSize === ScreenSizeEnum.SM) { - this.displayedColumns = ['date', 'amount_paid', 'amount_received', 'actions']; - } else if (this.screenSize === ScreenSizeEnum.MD) { - this.displayedColumns = ['date', 'amount_paid', 'num_payments', 'amount_received', 'num_invoices', 'actions']; - } else { - this.displayedColumns = ['date', 'amount_paid', 'num_payments', 'amount_received', 'num_invoices', 'actions']; - } } ngOnInit() { + this.pageSize = this.tableSetting.recordsPerPage ? +this.tableSetting.recordsPerPage : PAGE_SIZE; if (this.dataList && this.dataList.length > 0) { this.loadTransactionsTable(this.dataList); } @@ -58,6 +54,7 @@ export class TransactionsReportTableComponent implements OnInit, AfterViewInit, ngOnChanges(changes: SimpleChanges) { if (changes.dataList && !changes.dataList.firstChange) { + this.pageSize = this.tableSetting.recordsPerPage ? +this.tableSetting.recordsPerPage : PAGE_SIZE; this.loadTransactionsTable(this.dataList); } if (changes.filterValue && !changes.filterValue.firstChange) { @@ -99,6 +96,7 @@ export class TransactionsReportTableComponent implements OnInit, AfterViewInit, if (this.transactions && this.transactions.data && this.transactions.data.length > 0) { this.transactions.sortingDataAccessor = (data: any, sortHeaderId: string) => ((data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null); this.transactions.sort = this.sort; + this.transactions.sort?.sort({ id: this.tableSetting.sortBy, start: this.tableSetting.sortOrder, disableClear: true }); this.transactions.filterPredicate = (rowData: any, fltr: string) => { const newRowData = ((rowData.date) ? (this.datePipe.transform(rowData.date, 'dd/MMM') + '/' + rowData.date.getFullYear()).toLowerCase() : '') + JSON.stringify(rowData).toLowerCase(); return newRowData.includes(fltr); diff --git a/src/app/shared/services/consts-enums-functions.ts b/src/app/shared/services/consts-enums-functions.ts index b1eaa341..59ebbd98 100644 --- a/src/app/shared/services/consts-enums-functions.ts +++ b/src/app/shared/services/consts-enums-functions.ts @@ -675,7 +675,7 @@ export enum SortOrderEnum { export const SORT_ORDERS = ['asc', 'desc']; export const CLN_DEFAULT_PAGE_SETTINGS: PageSettingsCLN[] = [ - { pageId: 'on-chain', tables: [ + { pageId: 'on_chain', tables: [ { tableId: 'utxos', recordsPerPage: PAGE_SIZE, sortBy: 'blockheight', sortOrder: SortOrderEnum.DESCENDING, columnSelectionSM: ['txid', 'value'], columnSelection: ['txid', 'output', 'value', 'blockheight'] }, @@ -726,64 +726,92 @@ export const CLN_DEFAULT_PAGE_SETTINGS: PageSettingsCLN[] = [ { tableId: 'local_failed', recordsPerPage: PAGE_SIZE, sortBy: 'received_time', sortOrder: SortOrderEnum.DESCENDING, columnSelectionSM: ['received_time', 'in_channel_alias', 'in_msatoshi'], columnSelection: ['received_time', 'in_channel_alias', 'in_msatoshi', 'style', 'failreason'] } + ] }, + { pageId: 'reports', tables: [ + { tableId: 'routing', recordsPerPage: PAGE_SIZE, sortBy: 'received_time', sortOrder: SortOrderEnum.DESCENDING, + columnSelectionSM: ['received_time', 'in_msatoshi', 'out_msatoshi'], + columnSelection: ['received_time', 'resolved_time', 'in_channel_alias', 'out_channel_alias', 'in_msatoshi', 'out_msatoshi', 'fee'] }, + { tableId: 'transactions', recordsPerPage: PAGE_SIZE, sortBy: 'date', sortOrder: SortOrderEnum.DESCENDING, + columnSelectionSM: ['date', 'amount_paid', 'amount_received'], + columnSelection: ['date', 'amount_paid', 'num_payments', 'amount_received', 'num_invoices'] } ] } ]; export const CLN_TABLES_DEF = { - utxos: { - maxColumns: 7, - allowedColumns: ['txid', 'address', 'scriptpubkey', 'output', 'value', 'blockheight', 'reserved'] + on_chain: { + utxos: { + maxColumns: 7, + allowedColumns: ['txid', 'address', 'scriptpubkey', 'output', 'value', 'blockheight', 'reserved'] + }, + dust_utxos: { + maxColumns: 7, + allowedColumns: ['txid', 'address', 'scriptpubkey', 'output', 'value', 'blockheight', 'reserved'] + } }, - dust_utxos: { - maxColumns: 7, - allowedColumns: ['txid', 'address', 'scriptpubkey', 'output', 'value', 'blockheight', 'reserved'] + peers_channels: { + open_channels: { + maxColumns: 8, + allowedColumns: ['short_channel_id', 'alias', 'id', 'channel_id', 'funding_txid', 'connected', 'our_channel_reserve_satoshis', 'their_channel_reserve_satoshis', 'msatoshi_total', 'spendable_msatoshi', 'msatoshi_to_us', 'msatoshi_to_them', 'balancedness'] + }, + pending_inactive_channels: { + maxColumns: 8, + allowedColumns: ['alias', 'id', 'channel_id', 'funding_txid', 'connected', 'state', 'our_channel_reserve_satoshis', 'their_channel_reserve_satoshis', 'msatoshi_total', 'spendable_msatoshi', 'msatoshi_to_us', 'msatoshi_to_them'] + }, + peers: { + maxColumns: 3, + allowedColumns: ['alias', 'id', 'netaddr'] + } }, liquidity_ads: { - maxColumns: 8, - allowedColumns: ['alias', 'nodeid', 'last_timestamp', 'compact_lease', 'lease_fee', 'routing_fee', 'channel_opening_fee', 'funding_weight'] - }, - open_channels: { - maxColumns: 8, - allowedColumns: ['short_channel_id', 'alias', 'id', 'channel_id', 'funding_txid', 'connected', 'our_channel_reserve_satoshis', 'their_channel_reserve_satoshis', 'msatoshi_total', 'spendable_msatoshi', 'msatoshi_to_us', 'msatoshi_to_them', 'balancedness'] - }, - pending_inactive_channels: { - maxColumns: 8, - allowedColumns: ['alias', 'id', 'channel_id', 'funding_txid', 'connected', 'state', 'our_channel_reserve_satoshis', 'their_channel_reserve_satoshis', 'msatoshi_total', 'spendable_msatoshi', 'msatoshi_to_us', 'msatoshi_to_them'] - }, - peers: { - maxColumns: 3, - allowedColumns: ['alias', 'id', 'netaddr'] - }, - payments: { - maxColumns: 5, - allowedColumns: ['created_at', 'type', 'payment_hash', 'bolt11', 'destination', 'memo', 'label', 'msatoshi_sent', 'msatoshi'] - }, - invoices: { - maxColumns: 6, - allowedColumns: ['expires_at', 'paid_at', 'type', 'description', 'label', 'payment_hash', 'bolt11', 'msatoshi', 'msatoshi_received'] - }, - offers: { - maxColumns: 4, - allowedColumns: ['offer_id', 'single_use', 'used', 'bolt12'] - }, - offer_bookmarks: { - maxColumns: 5, - allowedColumns: ['lastUpdatedAt', 'title', 'amountMSat', 'description', 'vendor', 'bolt12'] - }, - forwarding_history: { - maxColumns: 8, - allowedColumns: ['received_time', 'resolved_time', 'in_channel', 'in_channel_alias', 'out_channel', 'out_channel_alias', 'payment_hash', 'in_msatoshi', 'out_msatoshi', 'fee'] + liquidity_ads: { + maxColumns: 8, + allowedColumns: ['alias', 'nodeid', 'last_timestamp', 'compact_lease', 'lease_fee', 'routing_fee', 'channel_opening_fee', 'funding_weight'] + } }, - routing_peers: { - maxColumns: 5, - allowedColumns: ['channel_id', 'alias', 'events', 'total_amount', 'total_fee'] + transactions: { + payments: { + maxColumns: 5, + allowedColumns: ['created_at', 'type', 'payment_hash', 'bolt11', 'destination', 'memo', 'label', 'msatoshi_sent', 'msatoshi'] + }, + invoices: { + maxColumns: 6, + allowedColumns: ['expires_at', 'paid_at', 'type', 'description', 'label', 'payment_hash', 'bolt11', 'msatoshi', 'msatoshi_received'] + }, + offers: { + maxColumns: 4, + allowedColumns: ['offer_id', 'single_use', 'used', 'bolt12'] + }, + offer_bookmarks: { + maxColumns: 5, + allowedColumns: ['lastUpdatedAt', 'title', 'amountMSat', 'description', 'vendor', 'bolt12'] + } }, - failed: { - maxColumns: 7, - allowedColumns: ['received_time', 'resolved_time', 'in_channel', 'in_channel_alias', 'out_channel', 'out_channel_alias', 'in_msatoshi', 'out_msatoshi', 'fee'] + routing: { + forwarding_history: { + maxColumns: 8, + allowedColumns: ['received_time', 'resolved_time', 'in_channel', 'in_channel_alias', 'out_channel', 'out_channel_alias', 'payment_hash', 'in_msatoshi', 'out_msatoshi', 'fee'] + }, + routing_peers: { + maxColumns: 5, + allowedColumns: ['channel_id', 'alias', 'events', 'total_amount', 'total_fee'] + }, + failed: { + maxColumns: 7, + allowedColumns: ['received_time', 'resolved_time', 'in_channel', 'in_channel_alias', 'out_channel', 'out_channel_alias', 'in_msatoshi', 'out_msatoshi', 'fee'] + }, + local_failed: { + maxColumns: 6, + allowedColumns: ['received_time', 'in_channel', 'in_channel_alias', 'in_msatoshi', 'style', 'failreason'] + } }, - local_failed: { - maxColumns: 6, - allowedColumns: ['received_time', 'in_channel', 'in_channel_alias', 'in_msatoshi', 'style', 'failreason'] + reports: { + routing: { + maxColumns: 8, + allowedColumns: ['received_time', 'resolved_time', 'in_channel', 'in_channel_alias', 'out_channel', 'out_channel_alias', 'payment_hash', 'in_msatoshi', 'out_msatoshi', 'fee'] + }, + transactions: { + maxColumns: 5, + allowedColumns: ['date', 'amount_paid', 'num_payments', 'amount_received', 'num_invoices'] + } } };