Skip to content

Repository files navigation

GitHub Workflow StatusCodeFactormin-sizedownloadsNPM

Clockwork

Clockwork is a client-side validation utilities library. It can be used natively or as part of any javascript framework, and offers 25+ validation rules out of out the box.

Installation

Pull it via npm

npm i @primitivesocial/clockwork --save

Usage

import{_v}from"@primitivesocial/clockwork";letname='primitive';if(_v.is_string(name)&&_v.min(name,3))window.alert('name is valid');

Available Rules

⚠️ All date values must be of format YYYY-MM-DD (example: '2020-01-15')

  • after Validates if a given value (date string) is after another value (date string)
letd='2020-5-1';after(d,'2020-1-1');// returns true
  • after_or_equal Validates if a given value (date string) is after or equal to another value (date string)
letd='2020-5-1';after_or_equal(d,'2020-1-1');// returns true
  • alpha Validates if a given value (string) contains only letters
letstr='clockwork';alpha(str);// returns true
  • alpha_dash Validates if a given value (string) contains only letters, dashes and underscores
letstr='primtivesocial-clock_work';alpha_dash(str);// returns true
  • alpha_numeric Validates if a given value (string) contains only letters and numbers
letstr='clockwork123';alpha_numeric(str);// returns true
  • before Validates if a given date value (date string) is before another value (date string)
letd='2020-5-1';before(d,'2020-5-5');// returns true
  • before_or_equal Validates if a given value (date string) is before or equal to another value (date string)
letd='2020-5-1';before_or_equal(d,'2020-1-1');// returns true
  • boolean Validates that a given value is boolean
letstr='clockwork';letisValid=false;boolean(str);// returns falseboolean(isValid);// returns true
  • date Validates if a given value (date string) is a valid date
letd='2020-5-1';date(d);// returns true
  • different Validates if a given value (numbers, strings, array and objects) is different from another value
letstr='clockwork';letstr2='primitive'different(str,str2);// returns true
  • ends_with Validates that a given value (string) ends with a specific string
letstr='clockwork';ends_with(str,'work');// returns true
  • integer Validates if a given value is an integer
letstr='clockwork';letamount=100;integer(str);// returns falseinteger(amount);// returns true
  • is_array Validates if a given value is an array
letarr=['foo','bar'];letamount=100;is_array(arr);// returns trueis_array(amount);// returns false
  • is_in Validates if a given value (string) is exists in an array, or a comma separated string
letstr='foo';is_in(str,['foo','bar']);// returns trueis_in(str,'foo,bar')// returns true
  • is_string Validates if a given value is a string
letstr='foo';is_string(str);// returns true
  • json Validates if a given value is a json object
letobj={foo: 'bar'};json(obj);// returns true
  • length Validates the length of a given value (string and arrays)
length('foo',3);// returns truelength(['foo','bar'],2);// returns true
  • matches_regex Validates if a given value matches a specific regex
letemail="elie@leadwithprimitive.com";matches_regex(email,"^\\S+@\\S+[\\.][0-9a-z]+$");// return true
  • max Validates if a given value (number and string) is less than the maximum specified
letamount=100;max(amount,200);// returns trueletstr='foobar';max(str,10);// returns true
  • min Validates if a given value (number and string) is more than the maximum specified
letamount=100;min(amount,10);// returns trueletstr='foobar';min(str,3);// returns true
  • not_in Validates if a given value (string) does not exist in an array, or a comma separated string
letstr='foo';not_in(str,['clockwork','primitive']);// returns truenot_in(str,'clockwork,primitive')// returns true
  • numeric Validates if a given value is numeric
letamount=100.75;numeric(amount);// returns true
  • required Validates if a given value is present
letstr='primitive';letword='';required(str);// returns true;required(word);// returns false;
  • same Validates if a given value (numbers, strings, array and objects) is the same as another value
letstr='clockwork';letstr2='primitive'same(str,str2);// returns false
  • starts_with Validates that a given value (string) starts with a specific string
letstr='clockwork';starts_with(str,'clock');// returns true
  • url Validates if a given value (string) is valid url
letstr='https://example.com';url(str);// returns true
  • uuid Validates if a given value (string) is a valid uuid
letstr='9034dfa4-49d9-4e3f-9c6d-bc6a0e2233d1';uuid(str);// returns true

Vue Integration

All the rules the package provides, can be used within the vue component validations option.

  • Configuration
import{VueClockwork}from"@primitivesocial/clockwork";Vue.use(VueClockwork);
  • Usage
exportdefault{data: ()=>{return{username: null,email: null,registration: {date: null,type: null,},types: ['student','individual','company'],registration_ends: '2020-12-31'}},validations: {'username': 'required | alpha_dash','email': 'required | email','registration.date': 'required | date | before_or_equal:registration_ends','registration.type': 'when_present | is_in:types',},methods: {save(){if(this.validator.passes()){// ...}}},created(){this.initValidator();}}
  • Displaying errors
<spanv-if="hasError('username')" class="text-red-900">{{ showError('username') }}</span>
  • Customizing error message
created(){this.initValidator();this.validator.setCustomErrorMessages({'username.alpha_dash' : 'The username must only contain letters and dashes.','username.required' : 'The username must not be empty.',})}
  • Creating custom rule
created(){this.initValidator();this.validator.extend('greater_than_ten',function(value){returnvalue>10;})}

Author & Contribution

Hey, I'm Elie Andraos, a web developer at Primitive. Pull requests are always welcome. For major changes, please open an issue first to discuss what you would like to change. You can also reach me out on twitter for any question!

About

Javascript validation utilities

Resources

Stars

8 stars

Watchers

5 watching

Forks

Releases

Packages

Used by

Contributors

Languages