Skip to content
Snippets Groups Projects
fixedvar-results.component.ts 5.8 KiB
Newer Older
import { Component, ViewChild, DoCheck } from "@angular/core";
mathias.chouet's avatar
mathias.chouet committed
import { LogComponent } from "../../components/log/log.component";
import { FixedResults } from "../../results/fixed-results";
import { VarResults } from "../../results/var-results";
import { ResultsGraphComponent } from "../results-graph/results-graph.component";
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 {
    protected _fixedResults: FixedResults;
    protected _varResults: VarResults;
     * true si les résultats doiventt être remis à jour
    protected _doUpdate = false;
mathias.chouet's avatar
mathias.chouet committed
    @ViewChild(FixedResultsComponent, { static: false })
    private fixedResultsComponent: FixedResultsComponent;
mathias.chouet's avatar
mathias.chouet committed
    @ViewChild(VarResultsComponent, { static: false })
    private varResultsComponent: VarResultsComponent;
mathias.chouet's avatar
mathias.chouet committed
    @ViewChild(LogComponent, { static: false })
    /**
     * graphique dans le cas d'un paramètre à varier
     */
mathias.chouet's avatar
mathias.chouet committed
    @ViewChild(ResultsGraphComponent, { static: false })
    private resultsGraphComponent: ResultsGraphComponent;

        this._fixedResults = undefined;
        this._varResults = undefined;
mathias.chouet's avatar
mathias.chouet committed
        if (rs !== undefined) {
mathias.chouet's avatar
mathias.chouet committed
                if (r instanceof FixedResults) {
mathias.chouet's avatar
mathias.chouet committed
                } else
                    if (r instanceof VarResults) {
mathias.chouet's avatar
mathias.chouet committed
                    }
mathias.chouet's avatar
mathias.chouet committed
        }
mathias.chouet's avatar
mathias.chouet committed
        if (this.logComponent) {
            this.logComponent.log = undefined;
        }
mathias.chouet's avatar
mathias.chouet committed
        if (this.fixedResultsComponent) {
            this.fixedResultsComponent.results = undefined;
mathias.chouet's avatar
mathias.chouet committed
        }
        if (this.varResultsComponent) {
            this.varResultsComponent.results = undefined;
mathias.chouet's avatar
mathias.chouet committed
        }
        if (this.resultsGraphComponent) {
            this.resultsGraphComponent.results = undefined;
mathias.chouet's avatar
mathias.chouet committed
        }
        // set _doUpdate flag so that results are rebuilt on the next Angular display cycle
mathias.chouet's avatar
mathias.chouet committed
        if (this._fixedResults !== undefined) {
            this._doUpdate = this._fixedResults.hasResults || this._fixedResults.hasLog;
mathias.chouet's avatar
mathias.chouet committed
        }
mathias.chouet's avatar
mathias.chouet committed
        if (this._varResults !== undefined) {
            this._doUpdate = this._doUpdate || this._varResults.hasResults || this._varResults.hasLog;
mathias.chouet's avatar
mathias.chouet committed
        }
mathias.chouet's avatar
mathias.chouet committed
        if (this._doUpdate) {
mathias.chouet's avatar
mathias.chouet committed
        }
    private mergeLog(result: Result, log: cLog) {
        if (result && result.hasLog()) {
            if (result.hasGlobalLog()) {
                log.addLog(result.globalLog);
mathias.chouet's avatar
mathias.chouet committed
            } else {
mathias.chouet's avatar
mathias.chouet committed
            }
    private get mergedGlobalLogs(): cLog {
        const res = new cLog();
mathias.chouet's avatar
mathias.chouet committed
        if (this._fixedResults) {
            this.mergeLog(this._fixedResults.result, res);
mathias.chouet's avatar
mathias.chouet committed
        }
mathias.chouet's avatar
mathias.chouet committed
    /**
     * met à jour l'affichage des résultats
     * @returns true si les résultats ont pu être mis à jour
     */
    protected updateResults() {
mathias.chouet's avatar
mathias.chouet committed
        const fixedUpdated = this._fixedResults !== undefined && this.fixedResultsComponent !== undefined;
mathias.chouet's avatar
mathias.chouet committed
        if (fixedUpdated) {
            this.fixedResultsComponent.results = this._fixedResults;
mathias.chouet's avatar
mathias.chouet committed
        }
        let graphUpdated: boolean;
        let varUpdated: boolean;
        if (this._varResults && this._varResults.hasResults) {
mathias.chouet's avatar
mathias.chouet committed
            varUpdated = this.varResultsComponent !== undefined;
mathias.chouet's avatar
mathias.chouet committed
            if (varUpdated) {
                this.varResultsComponent.results = this._varResults;
mathias.chouet's avatar
mathias.chouet committed
            }
mathias.chouet's avatar
mathias.chouet committed
            graphUpdated = this.resultsGraphComponent !== undefined;
            if (graphUpdated) {
                this.resultsGraphComponent.results = this._varResults;
mathias.chouet's avatar
mathias.chouet committed
        } else {
mathias.chouet's avatar
mathias.chouet committed
        const logUpdated = this.logComponent !== undefined;
mathias.chouet's avatar
mathias.chouet committed
        if (logUpdated) {
            this.logComponent.log = this.mergedGlobalLogs;
mathias.chouet's avatar
mathias.chouet committed
        }

        return fixedUpdated && varUpdated && logUpdated && graphUpdated;
    /**
     * affichage de la table des résultats fixés
     */
    public get showFixedResults(): boolean {
        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;
    public getFixedResultClass(i: number) {
mathias.chouet's avatar
mathias.chouet committed
        // tslint:disable-next-line:no-bitwise
        return "result_id_" + String(i & 1);
    public get fixedParams() {
        return this._fixedResults.fixedParameters;
    public get fixedResults() {
        return this._fixedResults;
    }

    public formattedLabel(p: NgParameter): string {
        return CalculatorResults.paramLabel(p, false);
    public get varResults() {
    public get hasResults(): boolean {
mathias.chouet's avatar
mathias.chouet committed
        return this._fixedResults !== undefined && this._fixedResults.hasResults;