How to properly validate input values with React.JS? How to properly validate input values with React.JS? reactjs reactjs

How to properly validate input values with React.JS?


First, here is an example of what I'll mention below: http://jsbin.com/rixido/2/edit

How to properly validate input values with React.JS?

However you want. React is for rendering a data model. The data model should know what is valid or not. You can use Backbone models, JSON data, or anything you want to represent the data and it's error state.

More specifically:

React is generally agnostic towards your data. It's for rendering and dealing with events.

The rules to follow are:

  1. elements can change their state.
  2. they cannot change props.
  3. they can invoke a callback that will change top level props.

How to decide if something should be a prop or a state? Consider this: would ANY part of your app other than the text field want to know that the value entered is bad? If no, make it a state. If yes, it should be a prop.

For example, if you wanted a separate view to render "You have 2 errors on this page." then your error would have to be known to a toplevel data model.

Where should that error live?
If your app was rendering Backbone models (for example), the model itself would have a validate() method and validateError property you could use. You could render other smart objects that could do the same. React also says try to keep props to a minimum and generate the rest of the data. so if you had a validator (e.g. https://github.com/flatiron/revalidator) then your validations could trickle down and any component could check props with it's matching validation to see if it's valid.

It's largely up to you.

(I am personally using Backbone models and rendering them in React. I have a toplevel error alert that I show if there is an error anywhere, describing the error.)


You can use npm install --save redux-form

Im writing a simple email and submit button form, which validates email and submits form. with redux-form, form by default runs event.preventDefault() on html onSubmit action.

import React, {Component} from 'react';import {reduxForm} from 'redux-form';class LoginForm extends Component {  onSubmit(props) {    //do your submit stuff  }  render() {    const {fields: {email}, handleSubmit} = this.props;    return (      <form onSubmit={handleSubmit(this.onSubmit.bind(this))}>        <input type="text" placeholder="Email"               className={`form-control ${email.touched && email.invalid ? 'has-error' : '' }`}          {...email}        />          <span className="text-help">            {email.touched ? email.error : ''}          </span>        <input type="submit"/>      </form>    );  }}function validation(values) {  const errors = {};  const emailPattern = /(.+)@(.+){2,}\.(.+){2,}/;  if (!emailPattern.test(values.email)) {    errors.email = 'Enter a valid email';  }  return errors;}LoginForm = reduxForm({  form: 'LoginForm',  fields: ['email'],  validate: validation}, null, null)(LoginForm);export default LoginForm;


I have written This library which allows you to wrap your form element components, and lets you define your validators in the format :-

<Validation group="myGroup1"    validators={[            {             validator: (val) => !validator.isEmpty(val),             errorMessage: "Cannot be left empty"            },...        }]}>            <TextField value={this.state.value}                       className={styles.inputStyles}                       onChange={                        (evt)=>{                          console.log("you have typed: ", evt.target.value);                        }                       }/></Validation>