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

regular-validator

v1.1.7

Published

regularjs validator

Downloads

27

Readme

regular-validator

A mixin for RegularJS

这个插件用来验证数据。可以将规则声明在任意标签上(表单元素,div,img,...),支持自定义验证,支持关联验证。

This plugin is aim to verify data. So it not only support the validation of form elements, but can validate data on all elements(eg: div, img). Custom validation and correlating validation are supported too.

Installation

npm install regular-validator
# or
bower install regular-validator

How to use

use RegularValidator as a mixin

import Validator from 'regular-validator'
let Comp = Regular.extend({
	// ...
}).use(Validator)
// ...

add rules on the HTML tags

  • common validate (input/select/textarea)
<!--use 'name' or 'data-name' assign a name-->
<input name="phone" type="text" r-validator={phone} r-required="required" r-type='number'/>

<!--results-->
<!--if id is invalid-->
{#if validation.id.invalid}<p>Phone must be number.</p>{/if}
<!--if the rule(required/type/...) is invalid-->
{#if validation.id.required}<p>Phone is required.</p>{/if}
{#if validation.id.type}<p>Phone must be number.</p>{/if}
  • or on other tags (img/div/...)
<img name='img' src={img} r-validator={img} r-required="required" />
  • custom validate method, returns result of bool type
 <input name="email" type="email" r-validator={email}  r-custom={this.validateEmail(email)}/>
// js
// ...
// email is invalid when it returns false
validateEmail(email) {
  return email == '[email protected]'
},
// ...
  • correlating validation, correlate variables changes will also trigger the validation
<!--either startTime or endTime's change can trigger the validation of the endTime-->
<input name="endtime" type='text' r-validator={endTime} r-related={startTime} r-custom={this.validate()}/>
// js
// ...
validate() {
  var data = this.data;
  return data.startTime < data.endTime;
},
// ...

Built-in rules

required, type, length, min, max, pattern, custom

priority

required > type > length > min > max > pattern > custom

built-in types

iso_date, url, email, number, date, time

Result structure

  • field result (data.validation[fieldname])
{
  "origin": "",
  "element": {},
  "name": "email",
  "handler": [{
    "priority": 1,
    "directive": "r-required"
  }, {
    "priority": 2,
    "directive": "r-type"
  }, {
    "priority": 200,
    "directive": "r-custom"
  }],
  "model": {
    "type": "expression",
    "body": "c._sg_('email', d, e)",
    "constant": false,
    "setbody": null
  },
  "untouched": false,
  "touched": true,
  "modified": true,
  "dirty": true,
  "pristine": false,
  "invalid": false,
  "valid": false,
  "required": false,
  "type": false,
  "custom": false
}
  • validator summary result (data.validation)
{
  "untouched": false,
  "touched": true,
  "modified": true,
  "dirty": true,
  "pristine": false,
  "invalid": false,
  "valid": false
}