react-validation-handler
0.2.0 • Public • Published React-Validator-Handler
This React package is for validate separated form fields using namespace
s.
Getting Started
npm
npm i react-validation-handler
yarn
yarn add react-validation-handler
Usage
basic :
import React from 'react';
import ErrorHandler from 'react-validation-handler'
...
let input1 = '';
...
<ErrorHandler
value={input1}
namespace="form1"
id="form1Input1"
body={({updateValue}) => {
return (
<input onChange={e => {
input1 = e.target.value;
updateValue(input1);
}}/>
)
}}
/>
...
import Form1 from '/path/to/Form1';
import { ErrorHooks } from 'react-validation-handler'
...
<Form1 />
<button onClick={ _ => {
ErrorHooks.validate('form1').then( (hasErros, errors) => {
});
}}>validate form1</button>
...
validate a target field
...
<Form1 />
<button onClick={ _ => {
ErrorHooks.check('form1Input1').then( (hasError, errors) => {
});
}}>validate form1Input1</button>
...
ErrorHandler
property |
required |
default |
description |
body |
true |
- |
component body //input, textarea, ... |
namespace |
true |
- |
to identify field group name |
value |
true |
- |
current field value |
id |
true |
- |
current field id |
rules |
false |
{required: true} |
rules for current field (only number , email are available for now) |
Rules
rule |
type |
default |
description |
Status |
required |
Boolean |
true |
set field to required |
DONE |
email |
Boolean |
false |
set field as email, it should be a valid email |
DONE |
char |
Boolean |
false |
set field as string, it's only valid valid names {/^[A-Za-z-' ]+$/} |
DONE |
number |
Boolean |
false |
set field as number, it should be a valid number |
DONE |
equalTo |
String |
'' |
set field to equal another ErrorHandler Field ID " |
DONE |
pattern |
object |
{} |
object with two keys regex to test the entred value and message to be displayed in case error |
DONE |
min |
Number |
-1 |
field value length should be greater or equal to min value |
DONE |
max |
Number |
-1 |
field value length should be less or equal to min value |
DONE |
Package Sidebar
Install
npm i react-validation-handler
Weekly Downloads