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 @@
+
1">
+
+
+ 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: [],