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

ng-rxforms-validation

v1.0.1

Published

A simple library service to bes used with Angular Reactive forms to unit test validation logic, avoid har coding validation mes=ssages in the the apps html and change validation dynamically at run time.

Downloads

5

Readme

RxFormsValidation

A Simple Angular library service to validate reactive forms inside the component

Purpose

Move validation messages to the component class which helps.

  • Easily unit test validation logic.

  • No hard coding of validation messages in the application like in the example html below.

      <div class="form-group"
        [ngClass]="{'has-error': ((employeeForm.get('fullName').touched ||
                                   employeeForm.get('fullName').dirty) &&
                                   employeeForm.get('fullName').errors)}">
      <label class="col-sm-2 control-label" for="fullName">Full Name</label>
      <div class="col-sm-8">
          <input id="fullName" type="text" class="form-control" formControlName="fullName">
          <span class="help-block"
              *ngIf="((employeeForm.get('fullName').touched ||
                      employeeForm.get('fullName').dirty) &&
                      employeeForm.get('fullName').errors)">
          <span *ngIf="employeeForm.get('fullName').errors.required">
              Full Name is required
          </span>
          <span *ngIf="employeeForm.get('fullName').errors.minlength ||
                      employeeForm.get('fullName').errors.maxlength">
              Full Name must be greater than 2 characters and less than 10 characters
          </span>
          </span>
      </div>
      </div>
  • The RxFormsValidation service helps to get rid of all the error messages clutter form all your components html files. All the complex logic is moved to the component class

  • Change validation dynamically at run time.

Installation

npm i ng-rxforms-validation

API

  1. Register the RxFormsValidationModule in your app module

import { RxFormsValidationModule } from 'ng-rxforms-validation'
  1. Add RxFormsValidationModule to imports array in app.module.ts
imports:[RxFormsValidationModule]
  1. Import RxFormsValidationService from 'ng-rxforms' library.
import { RxFormsValidationService } from 'ng-rxforms-validation';
  1. Import RxFormsValidationService into the component you like to remove redundant validation messages in side the components html.

    • In our tester app I have imported into the app.component.ts like below

  2. Import RxFormsValidationService in app.component.ts

import { RxFormsValidationService } from 'ng-rxforms-validation';
  1. Inject RxFormsValidationService
  constructor(private _validationMessages: RxFormsValidationService){}
  1. for any validation messages on the forms use the FormGroup i.e employeeForm in our app. When any of the form control value in employee form changes the function validate() is called which triggers the RxFormsValidationService's showValidationErrors() method. You can do this in ngOnInit()

     this.employeeForm.valueChanges.subscribe(data =>{
       this.validate();
     });
  2. Use the showValidationMessages() method.

     validate(){
    this._validationMessages.showValidationErrors(this.form, this.formErrors,this.validationMessages)
     }
  3. Parameters to the showValidationErrors() method are described below.

| parameter | type | Description | | --- | --- |--- | | form | FormGroup | Angular FormGroup which extends AbstractControl | formErrors | object | An empty object which holds the error messages of a particular FormControl | | validationMessages | object | An object which holds all the validation messages in your application |

  1. When a control loses focus, our validation is not triggered. This is because valueChanges observable does not emit an event when the control loses focus. It only emits an event when the value changes. Bind the blur() event and call the validate() method in the app.component.html to the input element which has the formControlName (blur)=validate().

  2. Use the formErrors object in the app.component.html file with int the [ngClass]. The UI will bind to this object to display the validation errors directive as below [ngClass]="{'has-error':formErrors.fullName}"

  3. Our sample application passes the following params to the showValidationMessages()

  •      formErrors= {};
  •       validationMessages = {
              'fullName' :{
              'required' : 'Full Name is required.',
              'minlength' : 'Full Name must be greater than 2 characters.',
              'maxlength': 'Full Name must be less than 10 characters'
              },
              'email' :{
              'required': 'Email is required.',
              'emailDomain':'Email domain should be sora.com'
              },
              'confirmEmail' :{
              'required': 'Confirm Email is required.',
              'emailDomain':'Confirm Email domain should be sora.com'
              },
              'emailGroup':{
              'emailMismatch':'Email and Confirm Email do not match'
              },
              'phone' :{
              'required': 'Phone is required.'
              }
          };
    
          ```
    

NOTE

RxFormsValidation library depends on ReactiveFormsModule( Ofcourse angular needs it to work with Reactive Forms right ;) )