Browse Source

Improve user table

* Add index
* Increase limit
* Improve alignment of cell content
pull/109/head
Thomas 4 years ago
parent
commit
fe0327f49d
  1. 2
      apps/api/src/app/admin/admin.service.ts
  2. 32
      apps/client/src/app/pages/admin/admin-page.html

2
apps/api/src/app/admin/admin.service.ts

@ -108,7 +108,7 @@ export class AdminService {
createdAt: true, createdAt: true,
id: true id: true
}, },
take: 20, take: 30,
where: { where: {
NOT: { NOT: {
Analytics: null Analytics: null

32
apps/client/src/app/pages/admin/admin-page.html

@ -73,26 +73,40 @@
<table class="gf-table"> <table class="gf-table">
<thead> <thead>
<tr class="mat-header-row"> <tr class="mat-header-row">
<th class="mat-header-cell px-1 py-2 text-center" i18n>#</th>
<th class="mat-header-cell px-1 py-2" i18n>User</th> <th class="mat-header-cell px-1 py-2" i18n>User</th>
<th class="mat-header-cell px-1 py-2" i18n>Registration Date</th> <th class="mat-header-cell px-1 py-2 text-center" i18n>
<th class="mat-header-cell px-1 py-2" i18n>Accounts</th> Registration Date
<th class="mat-header-cell px-1 py-2" i18n>Transactions</th> </th>
<th class="mat-header-cell px-1 py-2" i18n>Engagement</th> <th class="mat-header-cell px-1 py-2 text-center" i18n>
Accounts
</th>
<th class="mat-header-cell px-1 py-2 text-center" i18n>
Transactions
</th>
<th class="mat-header-cell px-1 py-2 text-center" i18n>
Engagement
</th>
<th class="mat-header-cell px-1 py-2" i18n>Last Activitiy</th> <th class="mat-header-cell px-1 py-2" i18n>Last Activitiy</th>
<th class="mat-header-cell px-1 py-2"></th> <th class="mat-header-cell px-1 py-2"></th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
<tr *ngFor="let userItem of users" class="mat-row"> <tr *ngFor="let userItem of users; let i = index" class="mat-row">
<td class="mat-cell px-1 py-2 text-right">{{ i + 1 }}</td>
<td class="mat-cell px-1 py-2"> <td class="mat-cell px-1 py-2">
{{ userItem.alias || userItem.id }} {{ userItem.alias || userItem.id }}
</td> </td>
<td class="mat-cell px-1 py-2"> <td class="mat-cell px-1 py-2 text-right">
{{ userItem.createdAt | date: defaultDateFormat }} {{ userItem.createdAt | date: defaultDateFormat }}
</td> </td>
<td class="mat-cell px-1 py-2">{{ userItem._count?.Account }}</td> <td class="mat-cell px-1 py-2 text-right">
<td class="mat-cell px-1 py-2">{{ userItem._count?.Order }}</td> {{ userItem._count?.Account }}
<td class="mat-cell px-1 py-2"> </td>
<td class="mat-cell px-1 py-2 text-right">
{{ userItem._count?.Order }}
</td>
<td class="mat-cell px-1 py-2 text-right">
{{ userItem.Analytics?.activityCount }} {{ userItem.Analytics?.activityCount }}
</td> </td>
<td class="mat-cell px-1 py-2"> <td class="mat-cell px-1 py-2">

Loading…
Cancel
Save