Newer
Older
import { Component, ViewChild, Input, Output, EventEmitter, OnChanges } from "@angular/core";
francois.grand
committed
import { I18nService } from "../../services/internationalisation.service";
import { NgParameter, ParamRadioConfig } from "../../formulaire/elements/ngparam";
import { NgParamInputComponent } from "../ngparam-input/ngparam-input.component";
francois.grand
committed
import { ServiceFactory } from "../../services/service-factory";
import { ParamValueMode, ParallelStructure, ParamCalculability } from "jalhyd";
import { FormulaireService } from "../../services/formulaire.service";
francois.grand
committed
import { ParamLinkComponent } from "../param-link/param-link.component";
import { ParamValuesComponent } from "../param-values/param-values.component";
francois.grand
committed
/**
* Sélecteur de mode pour chaque paramètre: fixé, varier, calculer, lié
*/
@Component({
selector: "param-field-line",
francois.grand
committed
templateUrl: "./param-field-line.component.html",
styleUrls: [
"./param-field-line.component.scss"
francois.grand
committed
]
export class ParamFieldLineComponent implements OnChanges {
francois.grand
committed
francois.grand
committed
constructor() {
this.intlService = ServiceFactory.i18nService;
this._formService = ServiceFactory.formulaireService;
this.valid = new EventEmitter();
this.inputChange = new EventEmitter();
francois.grand
committed
}
return this.intlService.localizeText("INFO_PARAMFIELD_PARAMFIXE");
}
return this.intlService.localizeText("INFO_PARAMFIELD_PARAMVARIER");
}
return this.intlService.localizeText("INFO_PARAMFIELD_PARAMCALCULER");
}
francois.grand
committed
return this.intlService.localizeText("INFO_PARAMFIELD_PARAMLIE");
}
// états booléens des boutons
public get isRadioFixChecked(): boolean {
return this.param.radioState === ParamRadioConfig.FIX;
public get isRadioVarChecked(): boolean {
return this.param.radioState === ParamRadioConfig.VAR;
}
public get isRadioCalChecked(): boolean {
return this.param.radioState === ParamRadioConfig.CAL;
}
public get isRadioLinkChecked(): boolean {
return this.param.radioState === ParamRadioConfig.LINK;
francois.grand
committed
}
/**
* validité des saisies du composant
*/
public get isValid(): boolean {
switch (this.param.radioState) {
case ParamRadioConfig.FIX:
case ParamRadioConfig.VAR:
return this._isRangeValid;
case ParamRadioConfig.LINK:
// at first this._paramLinkComponent is undefined until view is refreshed
return this._paramLinkComponent ? this._paramLinkComponent.isValid : true;
default:
return true;
}
}
public get formHasResults(): boolean {
return ServiceFactory.formulaireService.currentFormHasResults;
@Input()
private _paramLinkComponent: ParamLinkComponent;
@Output()
private valid: EventEmitter<void>;
@Output()
private inputChange: EventEmitter<void>;
/** événement signalant un appui sur TAB ou SHIFT+TAB */
@Output()
protected tabPressed = new EventEmitter<any>();
/** true si la valeur saisie est valide */
/** true si le min-max/liste est valide */
private intlService: I18nService;
private _formService: FormulaireService;
/*
* gestion des événements clic sur les radios :
* envoi d'un message au composant parent
* cf. https://angular.io/guide/component-interaction#parent-listens-for-child-event
*/
@Output()
private radio = new EventEmitter<any>();
/**
* calcule la présence du radio "paramètre fixé"
*/
public hasRadioFix(): boolean {
switch (this.param.radioConfig) {
return this.hasRadioLink(); // gné ?
default:
return true;
}
}
/**
* calcule la présence du radio "paramètre à varier"
*/
public hasRadioVar(): boolean {
switch (this.param.radioConfig) {
case ParamRadioConfig.VAR:
case ParamRadioConfig.CAL:
return true;
default:
return false;
}
}
/**
* calcule la présence du radio "paramètre à calculer"
*/
switch (this.param.radioConfig) {
case ParamRadioConfig.CAL:
return true;
default:
return false;
}
}
/**
* calcule la présence du radio "paramètre lié" (importé d'un autre module de calcul)
// au moins 2 modules de calcul ouverts
return this._formService.getLinkableValues(this.param).length > 0;
// ou un seul module de calcul "ouvrages parallèles"
if (this._formService.formulaires[0].currentNub instanceof ParallelStructure) {
const ps: ParallelStructure = this._formService.formulaires[0].currentNub;
return this._formService.getLinkableValues(this.param).length > 0;
/**
* Returns true if the current parameter is in CALC mode but no SINGLE
* parameter is available to take its place
*/
public canExitCalcMode() {
let ret = true;
if (this.param.paramDefinition.isCalculated) {
const nub = this.param.paramDefinition.parentNub;
const p = nub.findFirstCalculableParameter(this.param.paramDefinition);
ret = (p !== undefined);
}
return ret;
}
mathias.chouet
committed
/**
* Returns true if setting this parameter to Calc mode leads to a links loop
*/
public get isRadioCalDisabled(): boolean {
// find all Nubs that have to be calculated for this one to run
const nub = this.param.paramDefinition.originNub;
const requiredNubs = nub.getRequiredNubsDeep();
// if one of those Nubs depends on the parameter we're about to set
// to Calc mode, then we shouldn't do so
for (const r of requiredNubs) {
if (r.dependsOnParameter(this.param.paramDefinition)) {
return true;
}
}
return false;
}
public get radioCalTitle(): string {
if (this.isRadioCalDisabled) {
return this.intlService.localizeText("INFO_PARAMFIELD_CANNOT_CALC_LINKS_LOOP");
}
return "";
}
const oldValue = this.param.valueMode;
this.param.valueMode = ParamValueMode.SINGLE;
// prevent setting LISTE mode back to MINMAX if someone clicks "variable" again
// after setting variable mode to LISTE
if (oldValue !== ParamValueMode.MINMAX && oldValue !== ParamValueMode.LISTE) {
this.param.valueMode = ParamValueMode.MINMAX; // min/max par défaut
}
if (this._paramValuesComponent) {
// re-open modal when clicking the "var" mode button again (PoLS)
this._paramValuesComponent.openDialog();
}
this.param.setCalculated(); // sets mode to CALCUL and more
// did some nasty rascal tick the "create module with empty fields" evil option,
// then chose to set a DICHO param to CALC mode without setting a value first ?
if (
this.param.paramDefinition.calculability === ParamCalculability.DICHO
&& this.param.paramDefinition.singleValue === undefined
) {
// restore dedicated initValue
this.param.paramDefinition.singleValue = this.param.paramDefinition.initValue;
}
this.param.valueMode = ParamValueMode.LINK;
this.radio.emit({
"param": this.param,
"oldValueMode": oldValue
});
// MAJ validité
this.emitValidity();
}
/**
* Renvoie l'événement au composant du dessus
*/
public onTabPressed(event) {
this.tabPressed.emit(event);
}
/**
* émission d'un événement de validité
*/
private emitValidity() {
this.valid.emit();
}
/**
* réception d'un événement de NgParamInputComponent
*/
public onInputChange(event: any) {
switch (event.action) {
case "valid":
this._isInputValid = event.value;
this.emitValidity();
break;
case "model":
mathias.chouet
committed
this.inputChange.emit(event);
}
}
/**
* réception d'un événement de validité de ParamValuesComponent
*/
this._isRangeValid = event;
public ngOnChanges() {
this._ngParamInputComponent.model = this.param;
this._ngParamInputComponent.showError = this.isRadioFixChecked;
}
/**
* relit la valeur dans l'interface et met à jour le NgParameter
*/
public updateParameterFromUI() {
this._ngParamInputComponent.updateModelFromUI();
}
francois.grand
committed
/**
* met à jour les paramètres liés
*/
public updateLinkedParameter() {
francois.grand
committed
this._paramLinkComponent.updateParamList();
francois.grand
committed
}