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/shared/components/transactions-report-table/transactions-report-table.c...

117 lines
5.0 KiB
TypeScript

import { Component, ViewChild, Input, AfterViewInit, OnChanges, SimpleChanges, OnInit } from '@angular/core';
import { DatePipe } from '@angular/common';
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 { CommonService } from '../../services/common.service';
import { RTLState } from '../../../store/rtl.state';
import { openAlert } from '../../../store/rtl.actions';
@Component({
selector: 'rtl-transactions-report-table',
templateUrl: './transactions-report-table.component.html',
styleUrls: ['./transactions-report-table.component.scss'],
providers: [
{ provide: MatPaginatorIntl, useValue: getPaginatorLabel('Transactions') }
]
})
export class TransactionsReportTableComponent implements OnInit, AfterViewInit, OnChanges {
@Input() dataRange = SCROLL_RANGES[0];
@Input() dataList = [];
@Input() filterValue = '';
@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 = '';
public screenSizeEnum = ScreenSizeEnum;
constructor(private commonService: CommonService, private store: Store<RTLState>, 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() {
if (this.dataList && this.dataList.length > 0) {
this.loadTransactionsTable(this.dataList);
}
}
ngAfterViewInit() {
this.setTableWidgets();
}
ngOnChanges(changes: SimpleChanges) {
if (changes.dataList && !changes.dataList.firstChange) {
this.loadTransactionsTable(this.dataList);
}
if (changes.filterValue && !changes.filterValue.firstChange) {
this.applyFilter();
}
}
onTransactionClick(selTransaction: any) {
const reorderedTransactions = [
[{ key: 'date', value: this.dataRange === SCROLL_RANGES[1] ? this.datePipe.transform(selTransaction.date, 'MMM/yyyy') : this.datePipe.transform(selTransaction.date, 'dd/MMM/yyyy'), title: 'Date', width: 100, type: DataTypeEnum.DATE }],
[{ key: 'amount_paid', value: Math.round(selTransaction.amount_paid), title: 'Amount Paid (Sats)', width: 50, type: DataTypeEnum.NUMBER },
{ key: 'num_payments', value: selTransaction.num_payments, title: '# Payments', width: 50, type: DataTypeEnum.NUMBER }],
[{ key: 'amount_received', value: Math.round(selTransaction.amount_received), title: 'Amount Received (Sats)', width: 50, type: DataTypeEnum.NUMBER },
{ key: 'num_invoices', value: selTransaction.num_invoices, title: '# Invoices', width: 50, type: DataTypeEnum.NUMBER }]
];
this.store.dispatch(openAlert({
payload: {
data: {
type: AlertTypeEnum.INFORMATION,
alertTitle: 'Transaction Summary',
message: reorderedTransactions
}
}
}));
}
applyFilter() {
if (this.transactions) {
this.transactions.filter = this.filterValue.trim().toLowerCase();
}
}
loadTransactionsTable(trans: any[]) {
this.transactions = trans ? new MatTableDataSource([...trans]) : new MatTableDataSource([]);
this.setTableWidgets();
}
setTableWidgets() {
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.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);
};
this.transactions.paginator = this.paginator;
}
}
onDownloadCSV() {
if (this.transactions.data && this.transactions.data.length > 0) {
this.commonService.downloadFile(this.dataList, 'Transactions-report-' + this.dataRange.toLowerCase());
}
}
}