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

angular-async-validator

v2.0.1

Published

Makes Angular models async validation a little less painful.

Downloads

27

Readme

Build Status Coverage Status

NPM

Angular Async Validator

This module enables you to register your own validation rules, or overwrite existing ones. Makes every validation 'promise based', so it can deal with both synchronous and asynchronous validations. Also, sometimes you want validate an entire form when a model changes, which currently there are no good ways to do this, hence this module, because validation and form manipulation in Angular 1.x is a pain by itself.

Provides no validation functions out-of-the-box. You may reuse the ones from Angular without a problem.

Code was based off ui-validate initially, but it's too simple and lagging behind still using $parsers and $formatters since it need to retain 1.2 compatibility.

This module requires Angular 1.3+, and has no dependencies other than Angular itself.

It also supports 3rd party promise libraries such as RSVP, Q, Bluebird, etc.

DEMO

Motivation

Current module implementations only deal with sync validations, validators set in scopes or controllers, or provide 1 directive for each type of validation (validate-number, validate-presence, validate-stuff, etc), which is an overkill.

Async should be norm, and regardless if the validation itself isn't asynchronous, because the UI is asynchronous afterall. Plus there are a plethora of quality validation Javascript libraries, having to rely on Angular built-in ones is too limited, or you having to write a directive for each validation you need is also overkill.

Main goal is to be able with few reusable directives to rule them all, plus 1 service and 1 provider in a concise module that does it's job well without all the bells and whistles.

Install

NPM

$ npm instal angular-async-validator --save

Bower

$ bower install angular-async-validator --save

Usage

angular.module('yourapp', [
   // add this module
   'AsyncValidator'
])
// Configure your validators
.config(['AsyncValidatorProvider', function(AsyncValidatorProvider){

  AsyncValidatorProvider
  // register new reusable validation
  .register('name', ['SomeHttpService', function(SomeHttpService){
    // treat your validator like a service
    return function(value, options, model){ // receives the full blown ngModelController
      return SomeHttpService.check(model.$$rawViewValue).then(function(returnedFromServer){
        if (returnedFromServer.status === 'ok') {
          return true; // returning boolean is fine, you can throw to break the validation
        }
        return false; // may reject using $q.reject() as well, but since false will forcefully reject the validation
      });
    }
  }])
  // by default, when the validation is truthy, the final AsyncValidator.run() call will have the ngModel.$viewValue

  .register('required', [function(){
    return function(value, options, model){
      // options === {}
      // model.$viewValue / model.$error etc
      return angular.isDefined(value);
    };
  }], { silentRejection: false })

  .register('usingValidateJs', [function(){
    return function(value, options){
      if (options.someExtraOptions) {
        console.log('extra options');
      }
      return validate.single(value, {
        presence: true,
        length: {
          minimum: 5
        },
        format: /1910-100/
      });
    };
  }], { options: { someExtraOptions: true} })

  register('equals', function(){
    return function(value, options) {
      if (!angular.isDefined(options.to)) {
        return false;
      }
      return angular.equals(value, options.to);
    };
  }, { removeSync: true })
  ;

}])
// reuse validation programatically
.controller('Ctrl', ['AsyncValidator', function(AsyncValidator){

  AsyncValidator.run('name', 'Validate this string', { inlineOptions: true }).then(function(currentValidValue){
    // worked
    currentValidValue === 'Validate this string'
  }, function(){
    // failed

  });

  this.controllerValidation = function($value){
     return $value === 'asdf';
  };

  this.data = {
      n1: 'asdf',
      n2: '1234',
      n3: 'fsa',
      n4: 'fda',
      n5: 'dsa',
      n6: 'ds',
      n7: 'dsaa',
      value: '2',
      ok: 'ok'
  };

  this.hasChanged = false;
}]);

Use it in your HTML input ng-models (notice they are all expressions, therefore need to be a string):

<div ng-controller="Ctrl as ctrl">

   <input
      async-validator="{ required: 'required' }"
      async-validator-options="{ inline: true }"
      ng-model="ctrl.data.n1"
      type="text"
      >

   <input
      async-validator="'$model.$modelValue.length > 3'"
      async-validator-options-validator="{ outline: true }"
      ng-model="ctrl.data.n2"
      type="text"
      >

   <input
      async-validator="['strongpassword','length']"
      ng-model="ctrl.data.n3"
      type="text"
      >

   <input
      async-validator="'equals'"
      async-validator-options-equals="{ to: ctrl.data.n3 }"
      async-validator-watch="ctrl.data.n3"
      ng-model="ctrl.data.n4"
      type="text"
      >

   <input
      async-validator="'nome'"
      async-validator-options-nome="{ forNome: 'ok' }"
      ng-model="ctrl.data.n5"
      type="text"
      >

   <input
      async-validator="{ custom: 'ctrl.controllerValidation($value)' }"
      ng-model="ctrl.data.n6"
      type="text"
      >

   <input
      async-validator="{ inline: '$value != ctrl.data.ok && !$error.required' }"
      required
      ng-model="ctrl.data.n7"
      type="text"
      >
      <!-- can mix synchronous angular validations with async, in this case, using the "required" -->
</div>

The helper attribute async-validator-watch can watch an expression. If it changes (regardless if truthy or falsy) will trigger the $validate() call on the ngModel.

   <input
      async-validator-watch="'ctrl.hasChanged'"
      async-validator="'$model.$viewValue != ctrl.data.value'"
      ng-model="data.n6"
      type="text"
      >
   <input
      async-validator-watch="ctrl.data"
      async-validator="'$model.$viewValue != ctrl.data.value'"
      ng-model="data.n6"
      type="text"
      >
   <input
      async-validator-watch="['ctrl.data','ctrl.hasChanged']"
      async-validator="'$model.$viewValue != ctrl.data.value'"
      ng-model="data.n6"
      type="text"
      >

For your own options that apply to all validators, use async-validator-options="{}". If you need to specify specifically for one validator write it as async-validator-options-REGISTEREDNAME="{}". Scope and controller variables can be referenced in the options.

The options goes to the least specific and get merged as it becomes more specific. For example:

  <input
    async-validator="['required','specific']"
    async-validator-options="{lol: 'yes', ok: true}"
    async-validator-options-specific="{ok: false}"
    >
  <!-- required validator will receive the {lol: 'yes', ok: true} -->
  <!-- specific validator will receive the {lol: 'yes', ok: false} -->

Locals available:

  • $value current $modelValue, might be undefined / NaN
  • $error current $error in the underlaying ng-model
  • $model current ng-model exposed
  • $options current merged async-validation-options-*

async-form-validator and async-group-validator can apply validations and options to the children ngModels.

For async-form-validator, every named ngModel will be automatically added. If you want to exclude one model, add the async-validator-exclude to the element. You can also add non-named ngModels using async-validator-add.

For async-group-validator, you can use common validators for a group of ngModels, but they don't add themselves automatically like async-form-validator does, you need to manually add them using async-validator-add. async-group-validator has precedence over a async-form-validator, so you can overwrite a group inside a form.

Options are also merged from top to bottom (async-form-validator > async-group-validator > async-validator-options > async-validator-options-validator)

<form async-form-validator="{ required: 'required', dummy: 'ctrl.controllerValidation($value)' }">
  <input
      type="email"
      name="email"
      ng-model"ctrl.data.email">
  <!-- value will have to pass Angular internal required and our registered dummy validator -->

  <input
      type="tel"
      ng-model"ctrl.data.phone"
      async-validator-add
      >
  <!-- value will have to pass Angular internal required and our registered dummy validator -->

  <!-- apply the same validator to the models in the group -->

  <div async-group-validator="{ required: 'notrequired' }" async-validator-options="{ ok: true }">
    <input
        type="tel"
        ng-model"ctrl.data.street"
        async-validator-add
        >

    <input
        type="text"
        ng-model"ctrl.data.number"
        async-validator-add
        >

    <input
        type="text"
        ng-model"ctrl.data.complement"
        async-validator="{ myownrequired: 'bymyown' }"
        async-validator-exclude
        >

    <!-- async-validator-exclude will exclude the parent controller to add the validators to it -->

  </div>
</form>

Options

When registering a validator, you can pass your own options to it using the third parameter as an object and setting the options member.

  • options any options that the validator function receives as the second parameter, defaults to {}

  • overwrite if you set to false, it will throw if there's another validator with same name, defaults to true

  • removeSync removes synchronous validators if they have the same name as your registered validator, defaults to true. Eg: using <input ng-model="model" required async-validator="'required'"> will delete the default required validator

  • silentRejection if sets to false, will rethrow the error. will turn any throws and rejections into an "invalid" validation, defaults to true.

License

MIT