@lagoshny/ngx-validation-messages

This module allows to simplify display form validator validation messages using single component.

Usage no npm install needed!

<script type="module">
  import lagoshnyNgxValidationMessages from 'https://cdn.skypack.dev/@lagoshny/ngx-validation-messages';
</script>

README

NgxValidationMessages

Latest npm version   Pipeline info   Total open issues   Total downloads by npm   License info  

⭐Compatible with Angular 12.x.x - 13.x.x versions that uses Ivy compilation.

⚠ If you use old View Engine compilation or Angular 6.x.x - 11.x.x you need to use 2.x.x lib version.

See more about it here.

💡 New versioning policy.

  • Versions that work with old View Engine compilation [2.0.0-2.x.x].

  • Versions that work with new Ivy compilation [3.0.0-x.x.x].

This library allows you to decrease boilerplate code when handling validations error messages.

Contents

  1. Changelog
  2. Getting started
    1. Installation
    2. Base configuration
  3. Usage
    1. Template driven approach (ngModel)
    2. Form driven approach (reactive)
    3. Without component as error container
    4. With material ui components using mat-error component
  4. How it works?
  5. Advanced configuration
    1. Override configured validation messages
    2. Custom display validation messages styles
  6. Writing custom validators
    1. Example custom validator
  7. Further improvements

Changelog

Learn about the latest improvements.

Getting started

Installation

npm install @lagoshny/ngx-validation-messages@latest --save

Base configuration

To work with main NgxValidationMessagesComponent which decrease boilerplate validation code you need in the root application module import NgxValidationMessagesModule passing configuration which contains validation messages for validators:

// ...
import { NgxValidationMessagesModule } from '@lagoshny/ngx-validation-messages';

@NgModule({
    imports: [
        NgxValidationMessagesModule.forRoot({
            messages: {
                // Key is validator name, value is validator message
                required: 'This is required filed!',
                // If validator gets params, you can specify params placeholder in the validation message
                // to get validator params values for constructing more detail message
                maxlength: 'Max count symbols are #[requiredLength]',
                minlength: 'Min count symbols are #[requiredLength]'
            }
        })
    ]
})
export class AppRootModule {
}
// ...
Note: validator's name specified in configuration case sensitive, if you will use name 'maxLength' instead 'maxlength' your message will not apply. In console output you will see error about it.

In other modules where you want to use NgxValidationMessagesComponent, you need simple import NgxValidationMessagesModule:

// ...
import { NgxValidationMessagesModule } from '@lagoshny/ngx-validation-messages';

@NgModule({
    imports: [
        NgxValidationMessagesModule
    ]
})
export class SomeModule {
}
// ...

After that you can use the NgxValidationMessagesComponent in your templates, about it see below.

Usage

1. Template driven approach (ngModel)

Usually, when you need to show validation message to a user you need to do in your component's template something like this:

  <input type="text"
         required
         minlength="3"
         [(ngModel)]="user.firstName"
         name="firstName"
         #firstNameVar="ngModel"/>
  <span class="error-block" *ngIf="(firstNameVar.touched || firstNameVar.dirty) && firstNameVar.errors">
    <span *ngIf="firstNameVar.hasError('required')">
      Please enter your first name.
    </span>
    <span *ngIf="firstNameVar.hasError('minlength')">
      The first name must be longer than 3 characters.
    </span>
  </span>

And if you add new one validator to firstName input also you need to add new blocks with validation message.

Instead of this boilerplate code you can add <ngx-validation-messages> component to your HTML markup and reduce the number of trash code:

  <input type="text"
         required
         minlength="3"
         [(ngModel)]="user.firstName"
         name="firstName"
         #firstNameVar="n~~**~~gModel"/>
  <n~~**~~gx-validation-messages [for]='firstNameVar'></ngx-validation-messages>

2. Form driven approach (reactive)

In reactive approach you define a component class which building form controls and apply control validators:

@Component(
  // ...
)
export class UserFormComponent {

    public userForm: FormGroup;

    constructor(private formBuilder: FormBuilder) {
        this.userForm = this.formBuilder.group({
            firstName: ['', [Validators.required, Validators.minLength(3)]]
        });
    }
    
}

For defined above component class you will have a HTML template like this:

  <form [formGroup]="userForm">
    ...
    <input type="text"
           required
           minlength="3"
           formControlName="firstName"/>
    <span class="error-block" *ngIf="(userForm.get('firstName').touched 
                                     || userForm.get('firstName').dirty) && userForm.get('firstName').errors">
      <span *ngIf="userForm.get('firstName').hasError('required')">
        Please enter your first name.
      </span>
      <span *ngIf="userForm.get('firstName').hasError('minlength')">
        The first name must be longer than 3 characters.
      </span>
    </span>
    ...
  </form>

As you can see there is again a lot of boilerplate code.

You can decrease it using NgxValidationMessagesComponent:

  <form [formGroup]="userForm">
    ...
    <input type="text"
           required
           minlength="3"
           formControlName="firstName"/>
    <ngx-validation-messages [for]="taskForm.get('firstName')"></ngx-validation-messages>
    ...
  </form>

3. Use without component as error container

If you need simple to display error message in common style as it does ngx-validation-messages component you can do it as below:

  <form >
    ...
    <ngx-validation-messages *ngIf="showError">
       Your error message
    </ngx-validation-messages>
    ...
  </form>

4. With material ui components using mat-error component

It's simple to use ngx-validation-messages with material ui mat-error component, to do this you need to put ngxValidationMessages directive to mat-error component like this:

<form [formGroup]="taskForm">
 ....
  <mat-form-field>
      <input matInput
             formControlName="email">
      <mat-error ngxValidationMessages [for]="taskForm.get('email')"></mat-error>
  </mat-form-field>
 ...
</form>

After that if FormControl with name email will be invalid, then configured error messages for validators applied to email will be shown in material ui style.

Also you can override configured error messages for concrete case in standard way:

  <mat-form-field>
      <input matInput
             formControlName="email">
      <mat-error ngxValidationMessages [for]="taskForm.get('email')">
          <ngx-custom-message forValidator="required">Your new message</ngx-custom-message>
      </mat-error>
  </mat-form-field>

How it works?

In both cases NgxValidationMessagesComponent will get validation messages for each applied to form control validator from passed configuration object to NgxValidationMessagesModule

For example, if you pass configuration like this:

//...

  NgxValidationMessagesModule.forRoot({
      messages: {
          required: 'This is required filed!',
          minlength: 'Min count symbols are #[requiredLength]'
      }
  })

//...

NgxValidationMessagesComponent will get This is required filed! message for required validator and Min count symbols are #[requiredLength] message with parameter placeholder for minlength validator.

  • #[requiredLength] in the example above is param placeholder value It means this placeholder will replace to real param passed to minlength validator.
Note: You need to pass correct names for param placeholder, otherwise you will get undefined value instead param value.

To get right param names you need to check what params returns concrete validator when a value is not valid.

For example maxlength or minlength standard validators return passed length param in validation result using requiredLength name and we can use its name with param placeholder in a validation message.

Advanced configuration

Override configured validation messages

If you want to specify a different message for some validator in the concrete HTML template you can use one of the following ways to override configured validation messages passed to NgxValidationMessagesModule.

1. Use NgxCustomMessageComponent to override validation message with custom HTML-tag component

To override validation message for some validator, you can use <ngx-custom-message></ngx-custom-message> component as child for <ngx-validation-messages></ngx-validation-messages>:

  ...
  <input type="text"
         required
         minlength="3"
         [(ngModel)]="user.firstName"
         name="firstName"
         #firstNameVar="ngModel"/>
  <ngx-validation-messages [for]='firstNameVar'>
    <!-- Param forValidator accepts validator name to override message -->
    <ngx-custom-message forValidator='minlength'>
      Min length for first name is #[requiredLength]
    </ngx-custom-message>
  </ngx-validation-messages>
  ...

In this case, for required validator will be used configured This is required filed! message, but for minlength validator will be used overridden Min length for first name is #[requiredLength] message instead of defined in the configuration Min count symbols are #[requiredLength] .

Note: we can also use params placeholder in redefined a validation message in the same way as in the configuration object.

2. Use NgxValidatorNameDirective to override validation message with standard HTML-tag component

The second way to override message is using directive applied to child <ngx-validation-messages></ngx-validation-messages> HTML tag:

  ...
  <input type="text"
         required
         minlength="3"
         [(ngModel)]="user.firstName"
         name="firstName"
         #firstNameVar="ngModel"/>
  <ngx-validation-messages [for]='firstNameVar'>
     <!-- Directive parameter accepts a validator name to override message -->
    <span ngxValidatorName='minlength'>
      Min length for first name is #[requiredLength]
    </span>
  </ngx-validation-messages>
  ...

Custom display validation messages styles

If you want to change display default validation message styles, you can set custom CSS classes in the passed configuration for NgxValidationMessagesModule use optional param validationMessagesStyle:

//...

  NgxValidationMessagesModule.forRoot({
      messages: {
          required: 'This is required filed!',
          minlength: 'Min count symbols are #[requiredLength]'
      },
      validationMessagesStyle: {
          // Styles for changing the view of a validation message block
          blockClassNames: 'your_block_css_class1 your_block_css_class2',
          // Styles for changing the view of validation message text inside message block
          textClassNames: 'your_text_css_class1 your_text_css_class2'
      }
  })

//...

Writing custom validators

If you want to write custom validator then for working NgxValidationMessagesComponent you need to follow some rule: returned validation result should be in the following formats:

  • if validator with/without parameters and validation was success then validator should return null or undefined

  • if validator with parameters and validation was not success then validator should return an object which contains validator name as key and passed to validator params as value. For example for range validator you will return { range: {min, max} } where min and max passed to validator params These params you can get in validation message using params placeholder.

  • if validator without parameters and validation was not success then validator should return an object which contains validator name as key and true as value. For example for passwordMatch validator you will return { passwordMatch: true }

Note: returned validator name as key is key for define validation message to this validator in configuration.

For example for described above cases you will use range and passwordMatch as keys to define validation message.

Example custom validator

Suppose you write range validator to check that input string length satisfies the specified range. Your validator takes 2 parameters min and max and compare with string length, if string length doesn't pass condition you need to return error object which contains passed min, max params:

//...

    function range(min: number, max: number): ValidatorFn {
        return (control: AbstractControl): ValidationErrors => {
            if (min === undefined || max === undefined) {
                return;
            }
            const value = control.value as string;
            if (!value) {
                return undefined;
            }

            if (value.length < min || value.length > max) {
                return {
                // Use validator name as key for returning object it
                // will use to define validation message
                    range: {
                        // Put passed params to validator error answer and you can access to this params
                        // in validation message use #[min], #[max] placeholders
                        max,
                        min
                    }
                };
            }

            return undefined;
        };
    }

//...

After that you can define validation message for range validator like this:

//...

  NgxValidationMessagesModule.forRoot({
      messages: {
          // You use validator name as range because you return error object with key 'range'
          // also you can use params placeholders returned in error 'range' object
          range: 'The string must be at least #[min] and no more than #[max] characters.',
      }
  })

//...

Further improvements

  • Apply server validation messages to form controls