Layer detail refactor

This commit is contained in:
Michał Zieliński
2023-08-22 21:13:47 +02:00
parent dd64b34fa3
commit d019189ec1
6 changed files with 33 additions and 44 deletions

View File

@@ -6,7 +6,7 @@ import { map } from 'rxjs';
import { Record } from 'src/app/models/record.model'; import { Record } from 'src/app/models/record.model';
export enum LayerType { export enum LayerType {
Ipmort, Import,
Processed, Processed,
Administration, Administration,
Dictionary Dictionary
@@ -19,7 +19,7 @@ export class Layer extends Base {
name?: string; name?: string;
records: Record[] = []; records: Record[] = [];
created?: string; created?: string;
type?: LayerType = LayerType.Ipmort; type?: LayerType;
constructor(data: Partial<Layer> = {}) { constructor(data: Partial<Layer> = {}) {
super(); super();
@@ -28,8 +28,6 @@ export class Layer extends Base {
// eslint-disable-next-line @typescript-eslint/no-explicit-any // eslint-disable-next-line @typescript-eslint/no-explicit-any
override deserialize(input: any): this { override deserialize(input: any): this {
Object.assign(this, Object.assign(this, super.deserialize(input))); Object.assign(this, Object.assign(this, super.deserialize(input)));
console.log(input.type);
console.log(this.type);
if (this.records) { this.records = this.records.map(x => new Record().deserialize(x)); } if (this.records) { this.records = this.records.map(x => new Record().deserialize(x)); }
return this; return this;
} }

View File

@@ -1,7 +1,8 @@
<form [formGroup]="form" novalidate *ngIf="document"> <form [formGroup]="form" novalidate>
<mat-card> <mat-card>
<mat-card-header> <mat-card-header>
Layer details <mat-card-title>Layer details</mat-card-title>
<mat-card-subtitle>&nbsp;</mat-card-subtitle>
</mat-card-header> </mat-card-header>
<mat-card-content> <mat-card-content>
<div class="row"> <div class="row">
@@ -22,39 +23,29 @@
<div class="col"> <div class="col">
<mat-form-field class="full-width" appearance="outline"> <mat-form-field class="full-width" appearance="outline">
<mat-label>Created</mat-label> <mat-label>Created</mat-label>
<input matInput disabled [value]="document.created"> <input matInput disabled [value]="document?.created">
</mat-form-field> </mat-form-field>
</div> </div>
<div class="col"></div> <div class="col"></div>
</div> </div>
<table mat-table [dataSource]="dataSource" matSort matSortActive="code" matSortDisableClear matSortDirection="desc">
<mat-table #table [dataSource]="dataSource" [trackBy]="trackByUid" matSort class="animate"> <!-- ID Column -->
<ng-container matColumnDef="code"> <ng-container matColumnDef="code">
<mat-header-cell *matHeaderCellDef mat-sort-header>Code</mat-header-cell> <th mat-header-cell *matHeaderCellDef mat-sort-header>Code</th>
<mat-cell *matCellDef="let item">{{item.code}}</mat-cell> <td mat-cell *matCellDef="let row"> {{row.code}} </td>
</ng-container> </ng-container>
<ng-container matColumnDef="value"> <ng-container matColumnDef="value">
<mat-header-cell *matHeaderCellDef mat-sort-header>Value1</mat-header-cell> <th mat-header-cell *matHeaderCellDef mat-sort-header>Value1</th>
<mat-cell *matCellDef="let item">{{item.value1 | number:'1.2-2'}}</mat-cell> <td mat-cell *matCellDef="let row"> {{row.value1 | number:'1.2-2'}} </td>
<!--
<td mat-footer-cell *matFooterCellDef>Checksum: {{valueSum}}</td>
-->
</ng-container> </ng-container>
<ng-container matColumnDef="desc1"> <tr mat-header-row *matHeaderRowDef="displayedColumns, sticky: true"></tr>
<mat-header-cell *matHeaderCellDef mat-sort-header>Account</mat-header-cell> <tr mat-row *matRowDef="let row; columns: displayedColumns;"></tr>
<mat-cell *matCellDef="let item">{{item.desc1}}</mat-cell> </table>
</ng-container> <br>
{{valueSum}}
<mat-header-row *matHeaderRowDef="displayedColumns"></mat-header-row>
<mat-row *matRowDef="let item; columns: displayedColumns;"></mat-row>
<!--
<tr mat-footer-row *matFooterRowDef="displayedColumns"></tr>
-->
</mat-table>
</mat-card-content> </mat-card-content>
</mat-card> </mat-card>
</form> </form>

View File

@@ -1,8 +1,8 @@
import { DatePipe, NgIf, DecimalPipe } from '@angular/common'; import { DatePipe, NgIf, DecimalPipe, JsonPipe } from '@angular/common';
import { HttpClient } from '@angular/common/http'; import { HttpClient } from '@angular/common/http';
import { Component, OnInit, ViewChild } from '@angular/core'; import { AfterViewInit, Component, OnInit, ViewChild } from '@angular/core';
import { UntypedFormGroup, UntypedFormBuilder, FormsModule, ReactiveFormsModule } from '@angular/forms'; import { UntypedFormGroup, UntypedFormBuilder, FormsModule, ReactiveFormsModule } from '@angular/forms';
import { MatSort, MatSortModule } from '@angular/material/sort'; import { MatSort, MatSortModule, MatSortable } from '@angular/material/sort';
import { MatTableDataSource, MatTableModule } from '@angular/material/table'; import { MatTableDataSource, MatTableModule } from '@angular/material/table';
import { ActivatedRoute } from '@angular/router'; import { ActivatedRoute } from '@angular/router';
import { Layer } from 'src/app/models/layer.model'; import { Layer } from 'src/app/models/layer.model';
@@ -23,7 +23,7 @@ import { MatCardModule } from '@angular/material/card';
standalone: true, standalone: true,
imports: [FormsModule, ReactiveFormsModule, MatCardModule, MatToolbarModule, imports: [FormsModule, ReactiveFormsModule, MatCardModule, MatToolbarModule,
MatButtonModule, MatGridListModule, MatFormFieldModule, MatInputModule, MatButtonModule, MatGridListModule, MatFormFieldModule, MatInputModule,
NgIf, MatTableModule, MatSortModule, DecimalPipe], NgIf, MatTableModule, MatSortModule, DecimalPipe, JsonPipe],
providers: [DatePipe] providers: [DatePipe]
}) })
export class LayerDetailComponent implements OnInit { export class LayerDetailComponent implements OnInit {
@@ -44,25 +44,23 @@ export class LayerDetailComponent implements OnInit {
private route$: ActivatedRoute, private route$: ActivatedRoute,
private datePipe: DatePipe, private datePipe: DatePipe,
private notifications$: NotificationsService private notifications$: NotificationsService
) { } ) {
this.form = Layer.getForm(this.fb$);
}
async ngOnInit() { async ngOnInit() {
this.form = Layer.getForm(this.fb$);
this.document = await this.load(); this.document = await this.load();
this.dataSource = new MatTableDataSource<Record>(this.document.records); this.dataSource = new MatTableDataSource<Record>(this.document.records);
this.dataSource.sort = this.sort; this.dataSource.sort = this.sort;
this.document.fillForm(this.form); this.document.fillForm(this.form);
this.form.disable(); this.form.disable();
this.document.created = `${this.datePipe.transform(this.document.createdAt?.toDate(), 'short')}, ${this.document.createdBy?.userName}`; this.document.created = `${this.datePipe.transform(this.document.createdAt?.toDate(), 'short')}, ${this.document.createdBy?.userName}`;
// this.dataSource.sort.sort({ id: 'code', start: 'desc' } as MatSortable);
this.valueSum = this.document.records.map(t => t.value1 || 0).reduce((acc, value) => acc + value, 0); this.valueSum = this.document.records.map(t => t.value1 || 0).reduce((acc, value) => acc + value, 0);
} }
private async load(): Promise<Layer> { private async load(): Promise<Layer> {
return await Layer.getById(this.route$.snapshot.paramMap.get('id') || "", this.http$); return await Layer.getById(this.route$.snapshot.paramMap.get('id') || "", this.http$);
} }
trackByUid(index : number, item : Record) {
return item.id;
}
async export() { async export() {
if (await Layer.exportToGoogleSheet(this.document.id || "", this.http$)) { if (await Layer.exportToGoogleSheet(this.document.id || "", this.http$)) {
this.notifications$.add({ this.notifications$.add({

View File

@@ -12,10 +12,10 @@
<ng-container matColumnDef="type"> <ng-container matColumnDef="type">
<th mat-header-cell *matHeaderCellDef>Type</th> <th mat-header-cell *matHeaderCellDef>Type</th>
<td mat-cell *matCellDef="let element">{{element.type}}</td> <td mat-cell *matCellDef="let element">{{LayerType[element.type]}}</td>
</ng-container> </ng-container>
<tr mat-header-row *matHeaderRowDef="displayedColumns"></tr> <tr mat-header-row *matHeaderRowDef="displayedColumns, sticky: true"></tr>
<tr mat-row *matRowDef="let row; columns: displayedColumns;" [routerLink]="['Detail/', row.id]"></tr> <tr mat-row *matRowDef="let row; columns: displayedColumns;" [routerLink]="['Detail/', row.id]"></tr>
</table> </table>
</div> </div>

View File

@@ -2,7 +2,7 @@ import { HttpClient } from '@angular/common/http';
import { Component, HostListener, OnInit } from '@angular/core'; import { Component, HostListener, OnInit } from '@angular/core';
import { MatSortModule } from '@angular/material/sort'; import { MatSortModule } from '@angular/material/sort';
import { MatTableModule } from '@angular/material/table'; import { MatTableModule } from '@angular/material/table';
import { Layer } from 'src/app/models/layer.model'; import { Layer, LayerType } from 'src/app/models/layer.model';
import { MatInputModule } from '@angular/material/input'; import { MatInputModule } from '@angular/material/input';
import { MatFormFieldModule } from '@angular/material/form-field'; import { MatFormFieldModule } from '@angular/material/form-field';
import { RouterLink } from '@angular/router'; import { RouterLink } from '@angular/router';
@@ -26,6 +26,7 @@ import { NgFor } from '@angular/common';
export class LayersListComponent implements OnInit { export class LayersListComponent implements OnInit {
displayedColumns = ['number', 'name', 'type']; displayedColumns = ['number', 'name', 'type'];
dataSource!: Layer[]; dataSource!: Layer[];
LayerType = LayerType;
start = 0; start = 0;
limit = 50; limit = 50;

View File

@@ -84,6 +84,7 @@ app-root:empty+.AppLoading {
margin-right: 0; margin-right: 0;
} }
.list-container { input[disabled] {
width: 100%; color: black;
-webkit-text-fill-color: black;
} }