Choo form validation.

Published on Jan 25, 2017

Other articles in the Choo series.

  1. Choo application setup and first elements.
  2. Choo generalizing your elements.
  3. Choo linting with eslint.
  4. Choo cleaning up home page.
  5. Choo saving data in localStorage.
  6. Choo editing and deleting records.
  7. Choo version 5
  8. Adding Firebase database to our choo application
  9. Testing the use of the firebase db

We have been working in our incredible useful Tv series tracker that will help us in our mission of watch as much tv as we want for a few days now. (Yes, that was ironic).

If you have been following you may have noticed that is very easy to add an empty Show in the list.

We will add a "very" basic validation rule to the "title" field.

We can use html5 validation, just add the "required" attribute and we are pretty much done, but what's the fun on that.

As a side note I usually do prefer to use html5 validation attributes as much as I can but I have found very inconsistent support in some browsers, especially when we need to provide custom error messages and error displays.

We will look at how to integrate validate.js into our application. We can install it using npm.

  npm install --save validate.js

We will add the validation into the show and shows model. We need to validate when the Add button is click and we need to make sure to clear up any error message if the field changes and the value entered is valid.

Since we need to use the validation in 2 different places we will create a module.

  "use strict";
  const validate = require("validate.js");

  module.exports = {
    show: (data) => {
      const constraints = {
        title: {
          presence: true
        }
      };
      return validate(data, constraints);
    }
  };

In the show model we will validate when the model changes, but only for the property we need to validate.

  errors: (data) => {
    return {errors: data}
  },
  update: (payload) => {
    const obj = {};
    obj[payload.prop] = getValue(payload);
    if (payload.prop === "title") {
      obj.errors = validations.show(obj);
    }
    return obj;
  },

The shows model will check before adding a show into the list.

  add: (data, state, send, done) => {
    const errors = validations.show(data);
    data.id = uuid.v4();
    if (!errors) {
      storage.save(data);
      send("shows:refresh", storage.get(), done);
    } else {
      send("show:errors", errors, done);
    }
  },

We will add a span to display the error.

  <input type="text" oninput=${onInput("title", options)} class="form-control form-control-sm" name="title" id="title" value="${options.show.title}">
  <span class="error ${options.show.errors && options.show.errors.title ? '' : 'hidden'}">${options.show.errors && options.show.errors.title ? options.show.errors.title : ""}</span>

This solution is less than elegant. I will certainly revisit this and I will like to move all the validations into the show model or into the Add-show form in a future refactoring.

Resources