J'utilise une approche basée sur des modèles pour créer des formulaires dans Angular 2 et j'ai réussi à créer des validateurs personnalisés que je peux utiliser dans le modèle.
Cependant, je ne trouve pas un moyen d'afficher un message d'erreur spécifique lié à des erreurs spécifiques. Je veux différencier pourquoi le formulaire n'est pas valide. Comment puis-je y parvenir?
import { Component } from '@angular/core';
import { NgForm } from '@angular/forms';
import { Site } from './../site';
import { BackendService } from './../backend.service';
import { email } from './../validators';
import { CustomValidators } from './../validators';
@Component({
templateUrl: 'app/templates/form.component.html',
styleUrls: ['app/css/form.css'],
directives: [CustomValidators.Email, CustomValidators.Url, CustomValidators.Goof],
providers: [BackendService]
})
export class FormComponent {
active = true;
submitted = false;
model = new Site();
onSubmit() {
this.submitted = true;
console.log(this.model);
}
resetForm() {
this.model = new Site();
this.submitted = false;
this.active = false;
setTimeout(() => this.active = true, 0);
}
get diagnostics() {
return JSON.stringify(this.model)
}
}
import { Directive, forwardRef } from '@angular/core';
import { NG_VALIDATORS, FormControl } from '@angular/forms';
import { BackendService } from './backend.service';
function validateEmailFactory(backend:BackendService) {
return (c:FormControl) => {
let EMAIL_REGEXP = /^[a-z0-9!#$%&'*+\/=?^_`{|}~.-]+@[a-z0-9]([a-z0-9-]*[a-z0-9])?(\.[a-z0-9]([a-z0-9-]*[a-z0-9])?)*$/i;
return EMAIL_REGEXP.test(c.value) ? null : {
validateEmail: {
valid: false
}
};
};
}
export module CustomValidators {
@Directive({
selector: '[email][ngModel],[email][formControl]',
providers: [
{provide: NG_VALIDATORS, useExisting: forwardRef(() => CustomValidators.Email), multi: true}
]
})
export class Email {
validator:Function;
constructor(backend:BackendService) {
this.validator = validateEmailFactory(backend);
}
validate(c:FormControl) {
return this.validator(c);
}
}
@Directive({
selector: '[url][ngModel],[url][formControl]',
providers: [
{provide: NG_VALIDATORS, useExisting: forwardRef(() => CustomValidators.Url), multi: true}
]
})
export class Url {
validator:Function;
constructor(backend:BackendService) {
this.validator = validateEmailFactory(backend);
}
validate(c:FormControl) {
var pattern = /(https?:\/\/)?(www\.)?[-a-zA-Z0-9@:%._\+~#=]{2,256}\.[a-z]{2,4}\b([-a-zA-Z0-9@:%_\+.~#?&//=]*)/;
return pattern.test(c.value) ? null : {
validateEmail: {
valid: false
}
};
}
}
@Directive({
selector: '[goof][ngModel],[goof][formControl]',
providers: [
{provide: NG_VALIDATORS, useExisting: forwardRef(() => CustomValidators.Goof), multi: true}
]
})
export class Goof {
validate(c:FormControl) {
return {
validateGoof: {
valid: false
}
};
}
}
}
Vous pouvez simplement vérifier la méthode AbstractControl#hasError(...)
pour voir si le contrôle a une erreur spécifique. FormGroup
et FormControl
sont tous deux AbstractControl
s. pour FormControl
vous passez simplement en argument le nom de l'erreur. Par exemple
function regexValidator(control: FormControl): {[key:string]: boolean} {
if (!control.value.match(/^pee/)) {
return { 'badName': true };
}
}
<div *ngIf="!nameCtrl.valid && nameCtrl.hasError('badName')"
class="error">Name must start with <tt>pee</tt>.
</div>
La méthode du validateur doit renvoyer une carte chaîne/booléenne, où la clé est le nom de l'erreur. Il s'agit du nom que vous recherchez dans la méthode hasError
.
Pour FormGroup
, vous pouvez passer comme paramètre supplémentaire le chemin d'accès à FormControl
.
<div *ngIf="!form.valid && form.hasError('required', ['name'])"
class="error">Form name is required.</div>
name
est simplement l'identifiant du FormControl
pour l'entrée.
Voici un exemple avec à la fois la vérification FormControl
et FormGroup
.
import { Component } from '@angular/core';
import {
FormGroup,
FormBuilder,
FormControl,
Validators,
AbstractControl,
REACTIVE_FORM_DIRECTIVES
} from '@angular/forms';
function regexValidator(control: FormControl): {[key:string]: boolean} {
if (!control.value.match(/^pee/)) {
return { 'badName': true };
}
}
@Component({
selector: 'validation-errors-demo',
template: `
<div>
<h2>Differentiate Validation Errors</h2>
<h4>Type in "peeskillet"</h4>
<form [formGroup]="form">
<label for="name">Name: </label>
<input type="text" [formControl]="nameCtrl"/>
<div *ngIf="!nameCtrl.valid && nameCtrl.hasError('required')"
class="error">Name is required.</div>
<div *ngIf="!nameCtrl.valid && nameCtrl.hasError('badName')"
class="error">Name must start with <tt>pee</tt>.</div>
<div *ngIf="!form.valid && form.hasError('required', ['name'])"
class="error">Form name is required.</div>
</form>
</div>
`,
styles: [`
.error {
border-radius: 3px;
border: 1px solid #AB4F5B;
color: #AB4F5B;
background-color: #F7CBD1;
margin: 5px;
padding: 10px;
}
`],
directives: [REACTIVE_FORM_DIRECTIVES],
providers: [FormBuilder]
})
export class ValidationErrorsDemoComponent {
form: FormGroup;
nameCtrl: AbstractControl;
constructor(formBuilder: FormBuilder) {
let name = new FormControl('', Validators.compose([
Validators.required, regexValidator
]));
this.form = formBuilder.group({
name: name
});
this.nameCtrl = this.form.controls['name'];
}
}
Ok donc je l'ai fait fonctionner, mais c'est un peu bavard. Je n'arrivais pas à comprendre comment accéder correctement à l'individu FormControl
des entrées. J'ai donc simplement créé une référence à FormGroup
<form #f="ngForm" novalidate>
Ensuite, pour vérifier la validité, j'utilise simplement la surcharge hasError
qui a passé le chemin du nom du contrôle de formulaire. Pour <input>
qui utilisent name
et ngModel
, la valeur name
est ajoutée au FormGroup
principal avec ce nom comme FormControl
nom. Vous pouvez donc y accéder comme
`f.form.hasError('require', ['nameCtrl'])`
en supposant name=nameCtrl
. Remarquez le f.form
. f
est l'instance NgForm
qui a une variable membre FormGroup
form
.
Voici l'exemple refactorisé
import { Component, Directive } from '@angular/core';
import {
FormControl,
Validators,
AbstractControl,
NG_VALIDATORS,
REACTIVE_FORM_DIRECTIVES
} from '@angular/forms';
function validateRegex(control: FormControl): {[key:string]: boolean} {
if (!control.value || !control.value.match(/^pee/)) {
return { 'badName': true };
}
}
@Directive({
selector: '[validateRegex]',
providers: [
{ provide: NG_VALIDATORS, useValue: validateRegex, multi: true }
]
})
export class RegexValidator {
}
@Component({
moduleId: module.id,
selector: 'validation-errors-template-demo',
template: `
<div>
<h2>Differentiate Validation Errors</h2>
<h4>Type in "peeskillet"</h4>
<form #f="ngForm" novalidate>
<label for="name">Name: </label>
<input type="text" name="nameCtrl" ngModel validateRegex required />
<div *ngIf="!f.form.valid && f.form.hasError('badName', ['nameCtrl'])"
class="error">Name must start with <tt>pee</tt>.</div>
<div *ngIf="!f.form.valid && f.form.hasError('required', ['nameCtrl'])"
class="error">Name is required.</div>
</form>
</div>
`,
styles: [`
.error {
border-radius: 3px;
border: 1px solid #AB4F5B;
color: #AB4F5B;
background-color: #F7CBD1;
margin: 5px;
padding: 10px;
}
`],
directives: [REACTIVE_FORM_DIRECTIVES, RegexValidator]
})
export class ValidationErrorsTemplateDemoComponent {
}
J'ai écrit un ensemble de directives similaires à ng-messages
d'AngularJs pour résoudre ce problème dans Angular. https://github.com/DmitryEfimenko/ngx-messages
<div [val-messages]="myForm.get('email')">
<span val-message="required">Please provide email address</span>
<span val-message="server" useErrorValue="true"></span>
</div>