Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
import { Component, ViewChild, ElementRef } from "@angular/core";
import { MacroRugo } from "jalhyd";
import * as XLSX from "xlsx";
import { ApplicationSetupService } from "../../services/app-setup/app-setup.service";
import { I18nService } from "../../services/internationalisation/internationalisation.service";
import { ResultsComponent } from "../fixedvar-results/results.component";
import { MacrorugoCompoundResults } from "../../results/macrorugo-compound-results";
@Component({
selector: "macrorugo-compound-results-table",
templateUrl: "./macrorugo-compound-results-table.component.html",
styleUrls: [
"./macrorugo-compound-results-table.component.scss"
]
})
export class MacrorugoCompoundResultsTableComponent extends ResultsComponent {
/** résultats non mis en forme */
private _mrcResults: MacrorugoCompoundResults;
/** entêtes des colonnes */
private _headers: string[];
/** résultats mis en forme */
private _dataSet: any[];
@ViewChild("tableContainer", { static: false })
table: ElementRef;
constructor(
protected appSetupService: ApplicationSetupService,
protected intlService: I18nService
) {
super();
}
public set results(r: MacrorugoCompoundResults) {
this._mrcResults = r;
this._dataSet = [];
if (
this._mrcResults
&& this._mrcResults.childrenResults
&& this._mrcResults.childrenResults.length > 0
&& ! this._mrcResults.hasOnlyErrors()
) {
const pr = this._mrcResults;
const nDigits = this.appSetupService.displayDigits;
// when a parameter is variating, index of the variating parameter
// values to build the data from
const vi = pr.variableIndex;
// refresh headers here if language changed
this._headers = pr.headers;
// lines 1 - n-1
for (let i = 0; i < pr.childrenResults.length; i++) {
// @TODO protect loop contents with if(vCalc) ? Will hide erroneous apron results..
const res = pr.childrenResults[i].resultElements[vi].values;
const nub = (pr.childrenResults[i].sourceNub as MacroRugo);
// does ZF1 or B vary ?
let zf1: number;
try {
if (nub.prms.ZF1.hasMultipleValues) {
zf1 = nub.prms.ZF1.getInferredValuesList()[vi];
} else {
zf1 = nub.prms.ZF1.singleValue;
}
} catch (e) {
// silent fail
let b: number;
try {
if (nub.prms.B.hasMultipleValues) {
b = nub.prms.B.getInferredValuesList()[vi];
} else {
b = nub.prms.B.singleValue;
}
} catch (e) {
// silent fail
}
this._dataSet.push([
i + 1, // n° radier
(zf1 !== undefined ? zf1.toFixed(nDigits) : "-"),
(b !== undefined ? b.toFixed(nDigits) : "-"),
res.Q.toFixed(nDigits),
res.ZF2.toFixed(nDigits),
res.Vdeb.toFixed(nDigits),
res.Fr.toFixed(nDigits),
res.Vmax.toFixed(nDigits),
res.PV.toFixed(nDigits),
this.intlService.localizeText("INFO_ENUM_MACRORUGOFLOWTYPE_" + res.ENUM_MacroRugoFlowType),
res.Q_GuideTech.toFixed(nDigits),
(res.V_GuideTech !== undefined ? res.V_GuideTech.toFixed(nDigits) : "-"),
res.xCenter.toFixed(nDigits)
]);
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
}
}
}
public get headers() {
return this._headers;
}
/**
* Returns a combination of parameters and results for mat-table
*/
public get dataSet() {
return this._dataSet;
}
public exportAsSpreadsheet() {
// automagic <table> extraction
const ws: XLSX.WorkSheet = XLSX.utils.table_to_sheet(this.table.nativeElement);
const wb: XLSX.WorkBook = XLSX.utils.book_new();
XLSX.utils.book_append_sheet(wb, ws, "default");
// save and download
XLSX.writeFile(wb, "MacrorugoCompoundResults.xlsx");
}
public get uitextExportAsSpreadsheet() {
return this.intlService.localizeText("INFO_RESULTS_EXPORT_AS_SPREADSHEET");
}
public get uitextEnterFSTitle() {
return this.intlService.localizeText("INFO_GRAPH_BUTTON_TITLE_ENTER_FS");
}
public get uitextExitFSTitle() {
return this.intlService.localizeText("INFO_GRAPH_BUTTON_TITLE_EXIT_FS");
}
}