npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

ngx-error-message

v3.0.1

Published

A package to display error messages in angular forms

Downloads

473

Readme

NgxErrorMessage

pipeline status Quality Gate Status Coverage Vulnerabilities

Features

  • Dynamic directive that display error for input fields in reactive or template driven form dynamically.

Dependencies

Latest version available for each version of Angular

| ngx-error-message | Angular | | ----------------- | ------------ | | 3.0.1 | 14.x to 18.x | | 3.0.0 | 14.x to 18.x | | 2.2.1 | 10.x to 14.x | | 2.2.0 | 10.x to 14.x | | 2.1.0 | 9.x to 13.x | | 2.0.1 | 8.x to 11.x | | 2.0.0 | 8.x to 11.x | | 1.3.0 | 9.x 8.x 7.x |

Live Example

You can check how this library works in the following link, on a live example: ngx-error-message-example

Installation

npm install ngx-error-message --save

The @ngx-translate package is an optional dependency if you wish to use translations. Install it using the following commands:

npm install @ngx-translate/core --save
npm install @ngx-translate/http-loader --save

For more information about ngx-translate, refer to the ngx-translate GitHub repository.

Setup

Step 1: Add NgxErrorMessageModule to your app module. Make sure you have also configured ngx-translate. This module allows you to configure custom error messages for forms. You can configure the module globally using forRoot or in specific modules using forChild.

Global Default configuration

import { BrowserModule } from '@angular/platform-browser'
import { NgModule } from '@angular/core'
import { HttpClientModule, HttpClient } from '@angular/common/http'
import {
  TranslateModule,
  TranslateLoader,
  TranslateService,
} from '@ngx-translate/core'
import { TranslateHttpLoader } from '@ngx-translate/http-loader'

// Part of configuration ngx-translate loader function
export function HttpLoaderFactory(http: HttpClient) {
  return new TranslateHttpLoader(http) // Make sure your assets files are in default assets/i18n/*
}

@NgModule({
  declarations: [AppComponent],
  imports: [
    BrowserModule,
    AppRoutingModule,
    HttpClientModule, // Required module for ngx-translate
    // Required ngx-translate module
    TranslateModule.forRoot({
      defaultLanguage: 'en',
      useDefaultLang: true,
      loader: {
        provide: TranslateLoader,
        useFactory: HttpLoaderFactory,
        deps: [HttpClient],
      },
    }),
    NgxErrorMessageModule.forRoot(), // NgxErrorMessageModule added default config
    // other modules...
  ],
  providers: [],
  bootstrap: [AppComponent],
})
export class AppModule {}

Global configuration with custom validationsPrefix and patternPrefix names

  // Same as above the rest of the config
  NgxErrorMessageModule.forRoot({
    validationsPrefix: 'VALIDATIONS',
    patternsPrefix: 'PATTERNS',
  }),

Global configuration without internationalization

  // Same as above the rest of the config. But omit the part related to TranslateModule
  NgxErrorMessageModule.forRoot({
    errorMessages: {
      required: 'This field is required.',
      maxlength: 'The maximum allowed length is {{param}}.',
      minlength: 'The minimum allowed length is {{param}}.',
      email: 'This is not a valid email address.',
      min: 'The minimum allowed value is {{param}}.',
      max: 'The maximum allowed value is {{param}}.',
      pattern: {
        numeric: 'The valid format is numeric.',
        alphabet: 'The valid format is alphabetic.',
        smallLetters: 'The valid format is lowercase letters.',
        capitalLetters: 'The valid format is uppercase letters.',
        alphaNumeric: 'The valid format is alphanumeric.',
        phoneNumber: 'Invalid phone number.',
        websiteUrl: 'Invalid website URL.',
        ip: 'Invalid IP address.',
        custom: "The valid format is alphanumeric and '.' is allowed.",
      },
      avoidMultipleZero: 'It cannot start with multiple zeros.',
    },
  }),

Step 2: Add the error message settings in the JSON file. Ngx-translate and other internationalization packages manage JSON files for each language used in the application. For example, if your application manages the English language, you must create it in assets/i18n/en.json. In this file, you will have all the errors you need. Each property in the JSON will be named as the error displayed by the form (using reactive forms). For example, when a field has an error, you can access the error object using form.get('field').errors. The error object will have the following structure:

{
  required: true
}

To display a message for each error, your JSON file should look like this:

{
  "validations": {
    "required": "The field is required.",
    "maxlength": "The maximum length allowed is {{param}}.",
    "minlength": "The minimum allowed length is {{param}}.",
    "email": "It is not a valid email.",
    "min": "The minimum allowed is {{param}}.",
    "max": "The maximum allowed is {{param}}.",
    "pattern": {
      "numeric": "The valid format is numeric.",
      "alphabet": "The valid format is alphabetical.",
      "smallLetters": "The valid format is lowercase letters.",
      "capitalLetters": "The valid format is capital letters.",
      "alphaNumeric": "The valid format is alphanumeric.",
      "phoneNumber": "Invalid phone number.",
      "websiteUrl": "Invalid website URL.",
      "ip": "Invalid IP address."
    }
  }
}

Make sure to respect all key names and the name of the param variable. Changing these keys may cause the library to not work as expected.

Step 3: Add the following classes to your styles.css file. You can customize these styles or ignore the border and color styles.

.error-container {
  border: 1px solid red;
  color: red;
}

.error-message {
  color: red;
}

Usage

After the configuration, you can use the directive as shown in the following example:

<!-- Example of using the directive -->
<input
  type="password"
  formControlName="password"
  placeholder="Password"
  class="form-control"
  ngxErrorMessage
/>
import { regEx } from 'ngx-error-message'; // Important import to use pattern validations created in the library

ngOnInit() {
  this.form = this.fb.group({
    // Other form controls
    password: [null, [Validators.required, Validators.minLength(6), Validators.maxLength(50), Validators.pattern(regEx.alphaNumeric)]]
  });
}

// Easy trick to get form controls in HTML and TypeScript
get formControls() { return this.form.controls; }

You can enhance the functionality of the directive by including optional parameters:

  • classNames: CSS classes for the error container and message.
  • patternKey: Pattern key for custom validations.
  • when: Conditions under which the error message is shown.

Customization

Custom error message styles

To customize the error message styles in the NgxErrorMessageDirective, you can use the classNames attribute. This attribute allows you to specify custom CSS classes for the error container and the error message. By default, the directive uses the classes error-container and error-message.

<form [formGroup]="form">
  <div>
    <label for="email">Email</label>
    <input
      id="email"
      formControlName="email"
      ngxErrorMessage="Email"
      [classNames]="{ control: 'custom-error-container', message: 'custom-error-message' }"
    />
  </div>
</form>

In this example, the custom classes custom-error-container and custom-error-message are used instead of the default classes. You can define these classes in your styles.css file:

.custom-error-container {
  border: 1px solid blue;
  color: blue;
}

.custom-error-message {
  color: blue;
}

Custom conditions for showing error messages

The when attribute allows you to specify custom conditions under which the error message is shown. This attribute can accept a ErrorWhenType or an array of ErrorWhenType. By default, the error message is shown when the form control is invalid and touched. You can customize this behavior by providing specific conditions.

<form [formGroup]="form">
  <div>
    <label for="email">Email</label>
    <input
      id="email"
      formControlName="email"
      ngxErrorMessage="Email"
      [when]="['dirty', 'touched']"
    />
  </div>
</form>

The ErrorWhenType type:

type ErrorWhenType = 'dirty' | 'invalid' | 'pristine' | 'touched' | 'untouched'

Adding a New Validation Pattern

If you need to add a new validation pattern that is not covered by the default validations, you can add your pattern to a constant. For example:

const customPattern = /^[a-zA-Z0-9.]+$/

After adding the pattern, you need to include it in the JSON file with a corresponding error message:

{
  "validations": {
    "pattern": {
      "customPattern": "The valid format is alphanumeric and the '.' is allowed"
    }
  }
}

In your HTML file, add the patternKey attribute to the directive:

<input
  type="text"
  formControlName="username"
  placeholder="Username"
  class="form-control"
  ngxErrorMessage
  patternKey="customPattern"
/>

Adding a Custom Validation

To add a custom validator, create a validator function or set an error in the form control. For example, if you want to avoid multiple zeros in an input field, you can create the following validator function:

avoidMultipleZero(control: AbstractControl) {
  const value = control.value;
  const isZeros = value ? value.startsWith('00') : false;
  return isZeros ? { avoidMultipleZero: true } : null;
}

Then, add the validator to your form control:

ngOnInit() {
  this.form = this.fb.group({
    // Other form controls
    salary: [null, [Validators.pattern(regEx.numeric), this.avoidMultipleZero]]
  });
}

Finally, add the error message for this validation in the JSON file:

{
  "validations": {
    // Other validations
    "avoidMultipleZero": "Can't start with multiple zeros"
  }
}

License

MIT


Github @darioegb  ·