Tutorial

Red Hot Form Validation for React Using calidation

Published on July 23, 2018
Default avatar

By joshtronic

Red Hot Form Validation for React Using calidation

While we believe that this content benefits our community, we have not yet thoroughly reviewed it. If you have any suggestions for improvements, please let us know by clicking the “report an issue“ button at the bottom of the tutorial.

Validation comes in two varieties. Back end (or server-side) to check that everything sent by the client is good and front end (or client-side) to check on things before anything is sent. While both necessary, client-side validation leads to significantly improved user experience without the overhead of going back and forth with a server.

calidation is a library that aids in client-side form validation by providing a component that you can wrap your forms in. This component accepts a configuration with your validation rules and accepts a function as a child that contains the field values, any errors and whether or not the form is valid.

To get started, add calidation to your project with npm or yarn:

Via npm:

  1. npm add calidation --save
  1. yarn add calidation

With calidation added to our project, we can put together a simple login form with ease!

import React, { Component, Fragment } from "react";
import { FormValidation } from "calidation";

class LoginForm extends Component {
  onSubmit = ({ fields, errors, isValid }) => {
    if (isValid) {
      // This is where we'd handle our submission...
      // `fields` is an object, { field: value }
      console.log('Everything is good:', fields);
    } else {
      // `errors` is also an object!
      console.log('Something is wrong:', errors);
    }
  };

  render() {
    const config = {
      email: {
        isRequired: "Email field is required!",
        isEmail: "Valid emails only, please!"
      },
      password: {
        isRequired: "Password field required!",
        isMinLength: {
          message: "16+ character password is required",
          length: 16
        }
      }
    };

    return (
      <FormValidation onSubmit={this.onSubmit} config={config}>
        {({ fields, errors, submitted }) => (
          <Fragment>
            <label for="email">Email</label>
            <input
              name="email"
              type="email"
              value={fields.email}
            />
            {submitted && errors.email &&
              <div className="error">{errors.email}</div>
            }
            <label for="password">Password</label>
            <input
              name="password"
              type="password"
              value={fields.password}
            />
            {submitted && errors.password &&
              <div className="error">{errors.password}</div>
            }
            <button>Login</button>
          </Fragment>
        )}
      </FormValidation>
    );
  }
}

export default LoginForm;

The library even takes care of checking the input as it is entered without any additional event handlers written by us.

Coming from the land of validator and debouncing change events for each input, this approach is a breath of fresh air.


The login form example is really just the tip of the iceberg as the calidation library provides so much more than the few validation methods we utilized. It even supports rolling your own validation methods and conditional rules!

Here’s a full list of validation methods you get out of the box:

{
  field: {
    isRequired: 'This field is required',
    isNumber: 'This field must be a number',
    isEqual: {
      message: 'This field must equal 10',
      value: 10,
    },
    isGreaterThan: {
      message: 'This field must be greater than 0',
      value: 0,
    },
    isLessThan: {
      message: 'This field must be less than 20',
      value: 20,
    },
    isEmail: 'This field must be a valid email address',
    isRegexMatch: {
      message: 'This field is alphanumeric',
      regex: /^[a-z0-9]$/,
    },
    isWhitelisted: {
      message: 'Field must be crocodilian',
      whitelist: ['alligator', 'crocodile'],
    },
    isBlacklisted: {
      message: 'Field must NOT be crocodilian',
      blacklist: ['alligator', 'crocodile'],
    },
    isMinLength: {
      message: 'Field must be at least 10 characters',
      length: 10,
    },
    isMaxLength: {
      message: 'Field must be no more than 20 characters',
      length: 10,
    },
    isExactLength: {
      message: 'Field must be exactly 5 characters',
      length: 5,
    },
  }
}

More advanced topics like rolling your own “calidator” and conditional validation logic are very well documented by the library’s author.

And for a live demo of our login component from earlier, you can check out this CodeSandbox.

Thanks for learning with the DigitalOcean Community. Check out our offerings for compute, storage, networking, and managed databases.

Learn more about us


About the authors
Default avatar
joshtronic

author

Still looking for an answer?

Ask a questionSearch for more help

Was this helpful?
 
Leave a comment


This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

Try DigitalOcean for free

Click below to sign up and get $200 of credit to try our products over 60 days!

Sign up

Join the Tech Talk
Success! Thank you! Please check your email for further details.

Please complete your information!

Get our biweekly newsletter

Sign up for Infrastructure as a Newsletter.

Hollie's Hub for Good

Working on improving health and education, reducing inequality, and spurring economic growth? We'd like to help.

Become a contributor

Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.

Welcome to the developer cloud

DigitalOcean makes it simple to launch in the cloud and scale up as you grow — whether you're running one virtual machine or ten thousand.

Learn more
DigitalOcean Cloud Control Panel