From 2eac4122c242b88e02c6594606a4c0bf7b5cc983 Mon Sep 17 00:00:00 2001 From: mantovanig Date: Wed, 5 May 2021 17:59:39 +0200 Subject: [PATCH] feat: add account filter with chips on transactions --- .../transactions-table.component.html | 21 +++++++++++++++ .../transactions-table.component.ts | 26 +++++++++++++++++++ .../transactions-table.module.ts | 2 ++ 3 files changed, 49 insertions(+) diff --git a/apps/client/src/app/components/transactions-table/transactions-table.component.html b/apps/client/src/app/components/transactions-table/transactions-table.component.html index 9d2165180..6f36fee58 100644 --- a/apps/client/src/app/components/transactions-table/transactions-table.component.html +++ b/apps/client/src/app/components/transactions-table/transactions-table.component.html @@ -1,3 +1,24 @@ +
+ + + All + + + {{ account }} + + +
+ (); @ViewChild(MatSort) sort: MatSort; + @ViewChild(MatChipList) chipsList: MatChipList; public dataSource: MatTableDataSource = new MatTableDataSource(); public defaultDateFormat = DEFAULT_DATE_FORMAT; @@ -46,6 +52,8 @@ export class TransactionsTableComponent public isLoading = true; public routeQueryParams: Subscription; + chipsAccount: string[] = []; + private unsubscribeSubject = new Subject(); public constructor( @@ -89,10 +97,28 @@ export class TransactionsTableComponent this.dataSource = new MatTableDataSource(this.transactions); this.dataSource.sort = this.sort; + this.chipsAccount = [ + ...new Set(this.transactions.map((t) => t.Account?.name)) + ]; + this.isLoading = false; } } + public applyAccountFilter(event: MatChipSelectionChange) { + if (event.selected) { + const selectedAccount = event.source.value.trim(); + if (selectedAccount === 'All') { + this.dataSource.data = this.transactions; + } else { + const filtered = this.transactions.filter( + (f) => f.Account.name === selectedAccount + ); + this.dataSource.data = filtered; + } + } + } + public applyFilter(event: Event) { const filterValue = (event.target as HTMLInputElement).value; this.dataSource.filter = filterValue.trim().toLowerCase(); diff --git a/apps/client/src/app/components/transactions-table/transactions-table.module.ts b/apps/client/src/app/components/transactions-table/transactions-table.module.ts index 34d66e84a..f35625645 100644 --- a/apps/client/src/app/components/transactions-table/transactions-table.module.ts +++ b/apps/client/src/app/components/transactions-table/transactions-table.module.ts @@ -5,6 +5,7 @@ import { MatInputModule } from '@angular/material/input'; import { MatMenuModule } from '@angular/material/menu'; import { MatSortModule } from '@angular/material/sort'; import { MatTableModule } from '@angular/material/table'; +import { MatChipsModule } from '@angular/material/chips'; import { RouterModule } from '@angular/router'; import { GfSymbolModule } from '@ghostfolio/client/pipes/symbol/symbol.module'; import { NgxSkeletonLoaderModule } from 'ngx-skeleton-loader'; @@ -29,6 +30,7 @@ import { TransactionsTableComponent } from './transactions-table.component'; MatSortModule, MatTableModule, NgxSkeletonLoaderModule, + MatChipsModule, RouterModule ], providers: [],