Browse Source

Clean up

pull/2427/head
Thomas 2 years ago
parent
commit
712b9026cb
  1. 24
      apps/client/src/app/components/admin-overview/admin-overview.component.ts
  2. 4
      apps/client/src/app/components/admin-overview/admin-overview.html

24
apps/client/src/app/components/admin-overview/admin-overview.component.ts

@ -43,7 +43,7 @@ export class AdminOverviewComponent implements OnDestroy, OnInit {
public transactionCount: number; public transactionCount: number;
public userCount: number; public userCount: number;
public user: User; public user: User;
public version:any public version: string;
private unsubscribeSubject = new Subject<void>(); private unsubscribeSubject = new Subject<void>();
@ -204,16 +204,18 @@ export class AdminOverviewComponent implements OnDestroy, OnInit {
this.adminService this.adminService
.fetchAdminData() .fetchAdminData()
.pipe(takeUntil(this.unsubscribeSubject)) .pipe(takeUntil(this.unsubscribeSubject))
.subscribe(({ exchangeRates, settings, transactionCount, userCount ,version }) => { .subscribe(
this.coupons = (settings[PROPERTY_COUPONS] as Coupon[]) ?? []; ({ exchangeRates, settings, transactionCount, userCount, version }) => {
this.customCurrencies = settings[PROPERTY_CURRENCIES] as string[]; this.coupons = (settings[PROPERTY_COUPONS] as Coupon[]) ?? [];
this.exchangeRates = exchangeRates; this.customCurrencies = settings[PROPERTY_CURRENCIES] as string[];
this.transactionCount = transactionCount; this.exchangeRates = exchangeRates;
this.userCount = userCount; this.transactionCount = transactionCount;
this.version = version this.userCount = userCount;
this.version = version;
this.changeDetectorRef.markForCheck();
}); this.changeDetectorRef.markForCheck();
}
);
} }
private generateCouponCode(aLength: number) { private generateCouponCode(aLength: number) {

4
apps/client/src/app/components/admin-overview/admin-overview.html

@ -5,7 +5,9 @@
<mat-card-content> <mat-card-content>
<div class="d-flex my-3"> <div class="d-flex my-3">
<div class="w-50" i18n>Version</div> <div class="w-50" i18n>Version</div>
<div class="w-50">{{ version }}</div> <div class="w-50">
<gf-value [value]="version" />
</div>
</div> </div>
<div class="d-flex my-3"> <div class="d-flex my-3">
<div class="w-50" i18n>User Count</div> <div class="w-50" i18n>User Count</div>

Loading…
Cancel
Save