I need to validate a field to only have numbers in a range. So I have tried to write a directive:
@Directive({
selector: "[input-limitation]",
host: {
'(input)': 'onChange($event)',
}
})
export class InputLimitationDirective {
@Input("input-limitation") settings: InputLimitationSettings;
public constructor(private el: ElementRef) {
let self = this;
console.log(":::::::::::::::: el.nativeElement", el.nativeElement);
//jQuery(el.nativeElement).on('keypress', function (e) { self.onChange(e) });
};
private onChange($event) {
console.log("InputLimitationDirective", this.settings);
if (this.settings.InputType = "number") {
return this.numberLimitation($event);
}
}
private numberLimitation($event: any) {
let val: number = $event.target.value;
console.log("InputLimitationDirective", val);
console.log(val, this.settings.MinValue);
console.log(!val, val*1 < this.settings.MinValue*1);
if (!val || val*1 <= this.settings.MinValue*1) {
console.log("1 case");
event.preventDefault();
event.stopPropagation();
return false;
}
else if (val*1 >= this.settings.MaxValue*1) {
console.log("2 case");
event.preventDefault();
event.stopPropagation();
return false;
};
return true;
}
}
And use in in this way:
<input (change)="totalAmountChanged($event.target.value)"
[(ngModel)]="model.UsedVolume"
[disabled]="!isEditMode"
type="number"
[input-limitation]="usedVolumeInputLimitationsSettings"
pattern="^[1-9]\d*$" min="1" max="999" maxlength="3"
class="form-control length-3-input" />
But it is some big problem: 1. This limitation fired AFTER Angular 2 model changed, so I will get 0 value in model (but I need 1 as a min value). 2. This just change input value, but not Angular 2 model value.
So, is it possible to validate and prevent some inputs before Angular model changed?