Newer
Older
import { Component, Input, ChangeDetectorRef } from "@angular/core";
francois.grand
committed
import { NumericalString } from "jalhyd";
francois.grand
committed
import { GenericInputComponent } from "../generic-input/generic-input.component";
import { InternationalisationService } from "../../services/internationalisation/internationalisation.service";
import { NgParameter } from "../../formulaire/ngparam";
francois.grand
committed
@Component({
selector: "ngparam-step",
templateUrl: "../generic-input/generic-input.component.html"
})
export class NgParamStepComponent extends GenericInputComponent {
constructor(private intlService: InternationalisationService, cdRef: ChangeDetectorRef) {
super(cdRef);
francois.grand
committed
}
/**
* paramètre géré
*/
private get _param(): NgParameter {
return this._model;
}
francois.grand
committed
protected getModelValue(): any {
return this._param.stepValue;
francois.grand
committed
}
protected setModelValue(v: any) {
this._param.stepValue = v;
francois.grand
committed
}
protected validateModelValue(v: any): { isValid: boolean, message: string } {
let msg = undefined;
let valid = false;
if (this._param == undefined)
msg = "internal error, model undefined";
else {
if (this._param.isMinMaxValid) {
if (!this._param.checkStep(v)) {
msg = "La valeur n'est pas dans " + this._param.stepRefValue.toString();
}
else {
valid = v > 0;
if (!valid)
msg = "La valeur ne peut pas être <= 0";
}
francois.grand
committed
}
return { isValid: valid, message: msg };
}
protected modelToUI(v: any): string {
if (typeof (v) == "number")
return String(v);
return "<invalid>";
}
protected validateUIValue(ui: string): { isValid: boolean, message: string } {
let valid: boolean = false;
let msg: string = undefined;
let v: NumericalString = new NumericalString(ui);
if (!v.isNumerical)
msg = "Veuillez entrer une valeur numérique";
else
valid = true;
return { isValid: valid, message: msg };
}
protected uiToModel(ui: string) {
return +ui;
}
}