From 81db3852e6063866b94b9a2880b37759b17ce436 Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Sat, 19 Nov 2022 09:57:28 +0100 Subject: [PATCH] Feature/add sorting to accounts table (#1459) * Add sorting * Update changelog --- CHANGELOG.md | 4 ++++ .../accounts-table/accounts-table.component.html | 16 ++++++++++++---- .../accounts-table/accounts-table.component.ts | 7 ++++++- .../accounts-table/accounts-table.module.ts | 2 ++ 4 files changed, 24 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2ec7fb10d..9d3905111 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +### Added + +- Added support for sorting in the accounts table + ### Changed - Improved the _Activities_ tab icon diff --git a/apps/client/src/app/components/accounts-table/accounts-table.component.html b/apps/client/src/app/components/accounts-table/accounts-table.component.html index 3be8520dd..a1df7e2d5 100644 --- a/apps/client/src/app/components/accounts-table/accounts-table.component.html +++ b/apps/client/src/app/components/accounts-table/accounts-table.component.html @@ -1,4 +1,4 @@ -
+ |
|
@@ -88,8 +93,9 @@
|
|
@@ -122,8 +128,9 @@
|
@@ -158,6 +165,7 @@
*matHeaderCellDef
class="d-lg-none d-xl-none px-1 text-right"
mat-header-cell
+ mat-sort-header
>
|
diff --git a/apps/client/src/app/components/accounts-table/accounts-table.component.ts b/apps/client/src/app/components/accounts-table/accounts-table.component.ts
index 5e2e4886b..df5a1c589 100644
--- a/apps/client/src/app/components/accounts-table/accounts-table.component.ts
+++ b/apps/client/src/app/components/accounts-table/accounts-table.component.ts
@@ -6,8 +6,10 @@ import {
OnChanges,
OnDestroy,
OnInit,
- Output
+ Output,
+ ViewChild
} from '@angular/core';
+import { MatSort } from '@angular/material/sort';
import { MatTableDataSource } from '@angular/material/table';
import { Router } from '@angular/router';
import { Account as AccountModel } from '@prisma/client';
@@ -32,6 +34,8 @@ export class AccountsTableComponent implements OnChanges, OnDestroy, OnInit {
@Output() accountDeleted = new EventEmitter
---|