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

dao-angular-valid

v3.4.0

Published

form validation for angular

Downloads

2

Readme

DaoValid for Angular

An input-validation plugin for Angular.

Dependency

Angular.

Compatibility

Unknown. Only tested in Angular 1.3.15 with Chrome.

Features

  • Reusable rules
  • Easy to define your own rules
  • Support multiple-rule-validation
  • Support async-rule-validation

Install

  1. Import "dao-angular-valid.js" to your project.

  2. Inject dao-valid to your APP.

     angular.module('yourAPP',["daoValidAngular"])
    	
  3. Complete!

Usage

If you just want to simply show invalid message and toggle submit button, the directive version is enough and convenient.

If you need add custom success or failure callback function, you can use service version(not ready now).

Directive Version

<input 
	// The value you want to validate.
    ng-model="ctrl.ip" 
    
    dao-valid
    
    // A boolean value to show whether the value is valid, this should be binded to the param which can disable the submit button.
    dao-valid-toggle="disabled"
    
    // The rules you want to apply on this input. Muutiple rules should be divided by comma.
    dao-valid-rule="notEmpty,ipv4"
    
    // The name which will display in the wrong message.
    dao-valid-name="IP Address"

    // Some other value you may need in validation which will be passed to the validation function.
    dao-valid-option="{id:1234}"
>

###Custom Rules

Just modify angular-validation-rules.js.

And then Run "gulp" to build.

Or just modify 'DaoValidRules' in "dao-angular-valid.js" like this:

.factory('DaoValidRules', function() {

	var rules={}
	
	// Validation Rules Here--------------------------------------
    rules.notEmpty = {
    
      //The wrong message which will display when the input fails to pass the validation.
      msg: " can not be empty.",


      // str is the value you want to check, option is an object you set in dao-valid-option.
      validate: function(str, option) {
      	
	    //the validate function should return true or false
        return str !== undefined && str.trim() !== ''
      }
      
    }
}

Async rules are different. They must return a Promise object. Like this:

 rules.uniqueName = {
   msg: " already exists.",

   // Must add an "async" property and set it true to tell the directive this is an async function.
   async:true,
   
   // instead of return true or false, you should pass 2 callbacks, success for valid, fail for invalid.
   validate: function(str) {
   
     var that=this
 
     // Must return a Promise
     return new Promise(function(resolve,reject){
     
       //Maybe some xhr here.
       checkName(str,function(res){

         if(res==='OK'){
         
           // If the input passes the validation, you should resolve an object like this.
           resolve({
             valid:true,
             str:str
           })
           
         } else {
         
           // If it fails, you also need resolve an object.
           resolve({
             valid:false,
             msg:that.msg
           })
           
         }

       })
       
     })
   }
 }

###Service Version(currently not ready)

Validation([
    {
        name:"DisplayName",
        key:"mydata",
        value:$scope.mydata,
        validators:"notEmpty,ipv4"
    },
	{
		name:"DisplayName2",
		key:"mydata2",
		value:$scope.mydata2,
		validators:"notEmpty,ipv4"
	},
])
.success(function(res){
    //valid callback
})
.fail(function(rej){
    //invalid callback
})

valid callback response:

"valid"!

valid callback response:

{
	result: false,
	msg:{
		mydata:["DisplayName can not be empty"," DisplayNamemust be IPv4"]
		mydata2:["DisplayName2 can not be empty"]
	}
}