Newer
Older
François
committed
import { Component, ViewChild, DoCheck } from "@angular/core";
import { LogComponent } from "../../components/log/log.component";
import { FixedResults } from "../../results/fixed-results";
import { VarResults } from "../../results/var-results";
François
committed
import { ResultsGraphComponent } from "../results-graph/results-graph.component";
francois.grand
committed
import { CalculatorResults } from "../../results/calculator-results";
import { Result, cLog } from "jalhyd";
import { NgParameter } from "../../formulaire/ngparam";
import { FixedResultsComponent } from "./fixed-results.component";
import { VarResultsComponent } from "./var-results.component";
import { ResultsComponent } from "./results.component";
@Component({
selector: "fixedvar-results",
templateUrl: "./fixedvar-results.component.html",
styleUrls: [
"./fixedvar-results.component.scss"
]
})
export class FixedVarResultsComponent extends ResultsComponent implements DoCheck {
/**
* résultats non mis en forme
*/
protected _fixedResults: FixedResults;
protected _varResults: VarResults;
François
committed
/**
* true si les résultats doiventt être remis à jour
François
committed
*/
@ViewChild(FixedResultsComponent, { static: false })
private fixedResultsComponent: FixedResultsComponent;
francois.grand
committed
private varResultsComponent: VarResultsComponent;
francois.grand
committed
/**
* composant journal
*/
private logComponent: LogComponent;
/**
* graphique dans le cas d'un paramètre à varier
*/
@ViewChild(ResultsGraphComponent, { static: false })
François
committed
private resultsGraphComponent: ResultsGraphComponent;
francois.grand
committed
public set results(rs: CalculatorResults[]) {
this._fixedResults = undefined;
this._varResults = undefined;
francois.grand
committed
for (const r of rs) {
this._fixedResults = r;
this._varResults = r;
francois.grand
committed
}
francois.grand
committed
this.updateView();
}
public updateView() {
if (this.logComponent) {
this.logComponent.log = undefined;
}
this.fixedResultsComponent.results = undefined;
this.varResultsComponent.results = undefined;
this.resultsGraphComponent.results = undefined;
francois.grand
committed
mathias.chouet
committed
// set _doUpdate flag so that results are rebuilt on the next Angular display cycle
this._doUpdate = false;
this._doUpdate = this._fixedResults.hasResults || this._fixedResults.hasLog;
this._doUpdate = this._doUpdate || this._varResults.hasResults || this._varResults.hasLog;
}
François
committed
public ngDoCheck() {
francois.grand
committed
this._doUpdate = !this.updateResults();
François
committed
}
private mergeLog(result: Result, log: cLog) {
if (result && result.hasLog()) {
if (result.hasGlobalLog()) {
log.addLog(result.globalLog);
log.addLog(result.log);
private get mergedGlobalLogs(): cLog {
const res = new cLog();
this.mergeLog(this._fixedResults.result, res);
return res;
}
francois.grand
committed
* met à jour l'affichage des résultats
* @returns true si les résultats ont pu être mis à jour
*/
const fixedUpdated = this._fixedResults !== undefined && this.fixedResultsComponent !== undefined;
this.fixedResultsComponent.results = this._fixedResults;
let graphUpdated: boolean;
let varUpdated: boolean;
if (this._varResults && this._varResults.hasResults) {
this.varResultsComponent.results = this._varResults;
if (graphUpdated) {
this.resultsGraphComponent.results = this._varResults;
francois.grand
committed
this.resultsGraphComponent.updateView();
}
varUpdated = true;
graphUpdated = true;
}
this.logComponent.log = this.mergedGlobalLogs;
return fixedUpdated && varUpdated && logUpdated && graphUpdated;
François
committed
/**
* affichage de la table des résultats fixés
*/
return this._fixedResults && this._fixedResults.hasResults;
}
/**
* affichage de la table des résultats variés
*/
public get showVarResults(): boolean {
return this._varResults && this._varResults.hasResults;
}
return "result_id_" + String(i & 1);
}
return this._fixedResults.fixedParameters;
}
public get fixedResults() {
return this._fixedResults;
}
public formattedLabel(p: NgParameter): string {
return CalculatorResults.paramLabel(p, false);
public get varResults() {
return this._varResults;
francois.grand
committed
return this._fixedResults !== undefined && this._fixedResults.hasResults;
francois.grand
committed
}