Skip to content
Snippets Groups Projects
param-values.component.ts 3.27 KiB
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";
mathias.chouet's avatar
mathias.chouet committed
import { ParamValueMode, Observer, Structure } from "jalhyd";
import { I18nService } from "../../services/internationalisation.service";

@Component({
    selector: "param-values",
    templateUrl: "./param-values.component.html",
    styleUrls: [
        "./param-values.component.scss"
export class ParamValuesComponent implements AfterViewInit, Observer {
    @Input()
    public param: NgParameter;
    @Input()
    public title: string;
    /**
     * événement signalant un changement de valeur du modèle
     */
    @Output()
    protected change = new EventEmitter<any>();
        private editValuesDialog: MatDialog,
        private i18nService: I18nService
    public get isMinMax() {
        return this.param.valueMode === ParamValueMode.MINMAX;
    public get isListe() {
        return this.param.valueMode === ParamValueMode.LISTE;
    public get infoText() {
mathias.chouet's avatar
mathias.chouet committed
        return NgParameter.preview(this.param.paramDefinition);
francois.grand's avatar
francois.grand committed
    }

mathias.chouet's avatar
mathias.chouet committed
    public get inputId() {
        let id = "var_" + this.param.symbol;
        // if inside a child Nub, prefix with child position to disambiguate
mathias.chouet's avatar
mathias.chouet committed
        const nub = this.param.paramDefinition.parentNub;
        if (nub && nub.parent && nub.intlType) {
mathias.chouet's avatar
mathias.chouet committed
            id = nub.findPositionInParent() + "_" + id;
        }
        return id;
    }

    public openDialog() {
        // modification des valeurs variables
            DialogEditParamValuesComponent,
            {
                disableClose: true,
                data: {
                    param: this.param
mathias.chouet's avatar
mathias.chouet committed
                autoFocus: false,
                panelClass: "dialogMinWidth320px"
        dlgRef.afterClosed().toPromise().then(result => {
    public ngAfterViewInit() {
        // subscribe to parameter values change (through dialog actions)
        this.param.addObserver(this);

    /**
     * événement de changement de la valeur du modèle
     */
    private emitModelChanged() {
        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");
    }