Newer
Older
import { Component, Input, AfterViewInit, Output, EventEmitter } from "@angular/core";
import { NgParameter } from "../../formulaire/elements/ngparam";
import { DialogEditParamValuesComponent } from "../dialog-edit-param-values/dialog-edit-param-values.component";
import { MatDialog } from "@angular/material/dialog";
import { I18nService } from "../../services/internationalisation.service";
francois.grand
committed
@Component({
selector: "param-values",
templateUrl: "./param-values.component.html",
styleUrls: [
"./param-values.component.scss"
francois.grand
committed
]
})
export class ParamValuesComponent implements AfterViewInit, Observer {
francois.grand
committed
@Input()
public param: NgParameter;
francois.grand
committed
@Input()
public title: string;
francois.grand
committed
/**
* événement signalant un changement de valeur du modèle
*/
@Output()
protected change = new EventEmitter<any>();
francois.grand
committed
private editValuesDialog: MatDialog,
private i18nService: I18nService
francois.grand
committed
return this.param.valueMode === ParamValueMode.MINMAX;
public get isListe() {
return this.param.valueMode === ParamValueMode.LISTE;
francois.grand
committed
}
// if inside a child Nub, prefix with child position to disambiguate
if (nub && nub.parent && nub.intlType) {
id = nub.findPositionInParent() + "_" + id;
}
return id;
}
// modification des valeurs variables
François Grand
committed
const dlgRef = this.editValuesDialog.open(
DialogEditParamValuesComponent,
{
François Grand
committed
dlgRef.afterClosed().toPromise().then(result => {
François Grand
committed
if (result.cancelled) {
François Grand
committed
this.change.emit({
action: "cancelvar"
});
François Grand
committed
}
François Grand
committed
});
mathias.chouet
committed
// subscribe to parameter values change (through dialog actions)
francois.grand
committed
}
/**
* événement de changement de la valeur du modèle
*/
private emitModelChanged() {
mathias.chouet
committed
this.change.emit({
action: "model",
value: this.param.getValue(),
symbol: this.param.symbol
});
}
public update(sender: any, data: any): void {
if (sender instanceof DialogEditParamValuesComponent) {
switch (data.action) {
case "ngparamAfterMinValue":
case "ngparamAfterMaxValue":
case "ngparamAfterStepValue":
case "ngparamAfterListValue":
// tell the form to clear the results
this.emitModelChanged();
break;
}
}
}
public get uitextEditValues(): string {
return this.i18nService.localizeText("INFO_PARAMFIELD_PARAMVARIER_EDIT_VALUES");
}