Skip to content
Snippets Groups Projects
Commit 91f41b02 authored by paf's avatar paf
Browse files

add info field to GetFileResponseData interface and display the the additional...

add info field to GetFileResponseData interface and display the the additional useful data it can contain
parent 13079f28
No related branches found
No related tags found
No related merge requests found
......@@ -54,7 +54,12 @@
<ng-container matColumnDef="filesize">
<mat-header-cell *matHeaderCellDef mat-sort-header> Größe </mat-header-cell>
<mat-cell *matCellDef="let element"> {{element.filesizestr}} </mat-cell>
<mat-cell *matCellDef="let element">
{{element.filesizestr}}
<span *ngIf="element.info.totalSize">
/ {{element.info.totalSize | bytes }}
</span>
</mat-cell>
</ng-container>
......@@ -104,16 +109,25 @@
<mat-icon class="report-info">info</mat-icon>
<span>
{{stat.value.valid}} valide Datei{{stat.value.valid == 1 ? '' : 'en'}} vom Typ {{stat.key}}
{{(stat.value.all > stat.value.valid) ? '(von insgesamt ' + stat.value.all + ')' : ''}}
{{(stat.value.total > stat.value.valid) ? '(von insgesamt ' + stat.value.total + ')' : ''}}
</span>
</div>
</div>
<div>
<div class="vertical-align-middle">
<mat-icon class="report-warning">warning</mat-icon>
<span>
{{fileStats.testtakers}} Testteilnehmer definiert.
</span>
</div>
</div>
<div *ngIf="fileStats.valid < fileStats.all">
<div *ngIf="fileStats.valid < fileStats.total">
<div class="vertical-align-middle">
<mat-icon class="report-warning">warning</mat-icon>
<span>
{{fileStats.valid}} Datei{{fileStats.valid == 1 ? '' : 'en'}} von {{fileStats.all}}
{{fileStats.valid}} Datei{{fileStats.valid == 1 ? '' : 'en'}} von {{fileStats.total}}
sind nicht valide oder haben fehlende Abhängigkeiten und werden ignoriert!
</span>
</div>
......
......@@ -19,12 +19,13 @@ import { MainDataService } from '../../maindata.service';
interface FileStats {
types: {
[type: string]: {
all: number;
total: number;
valid: number;
}
}
all: number;
total: number;
valid: number;
testtakers: number;
}
@Component({
......@@ -47,8 +48,9 @@ export class FilesComponent implements OnInit {
@ViewChild(MatSort, { static: true }) sort: MatSort;
public fileStats: FileStats = {
types: {},
all: 0,
valid: 0
total: 0,
valid: 0,
testtakers: 0
};
constructor(
......@@ -154,20 +156,24 @@ export class FilesComponent implements OnInit {
private static getStats(fileList: GetFileResponseData[]): FileStats {
const stats: FileStats = {
types: {},
all: 0,
valid: 0
total: 0,
valid: 0,
testtakers: 0
};
fileList.forEach(file => {
if (typeof stats.types[file.type] === 'undefined') {
stats.types[file.type] = {
all: 0,
total: 0,
valid: 0
};
}
stats.types[file.type].all += 1;
stats.types[file.type].valid += (file.report.error && file.report.error.length) ? 1 : 0;
stats.all += 1;
stats.valid += (file.report.error && file.report.error.length) ? 1 : 0;
stats.types[file.type].total += 1;
stats.total += 1;
if (file.report.error && file.report.error.length) {
stats.valid += 1;
stats.types[file.type].valid += 1;
stats.testtakers += (typeof file.info.testtakers !== "undefined") ? file.info.testtakers : 0;
}
});
return stats;
}
......
......@@ -17,6 +17,9 @@ export interface GetFileResponseData {
error: string[];
warning: string[];
info: string[];
},
info: {
[key: string]: number;
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment