An Overview For Users

This documentation is for developers who just want to learn enough about this specification to be able to use all form packages that implement it.

If you are interested in creating a compatible package, you'll also want to read the full spec.

The Composable Form Specification is not tied to any framework or library, but we're going to use React for the code examples here.

The "Form" Type

Not surprisingly, the core of the Composable Form Specification is the "Form" component. Any component exported by a package can be used as a "Form" component if it properly implements the specification.

When using reacto-form, code that uses a simple empty Form component looks something like this:

import React, { Component } from 'react';
import { Form } from 'reacto-form';
import mySubmissionFunction from './mySubmissionFunction';

class SomePage extends Component {
  render() {
    return (
      <Form onSubmit={mySubmissionFunction}>
      </Form>
    );
  }
}

Now let's pretend I decide I like the features of another "Form" component from a different package better. I update the code:

import React, { Component } from 'react';
import { Form } from 'other-form';
import mySubmissionFunction from './mySubmissionFunction';

class SomePage extends Component {
  render() {
    return (
      <Form onSubmit={mySubmissionFunction}>
      </Form>
    );
  }
}

Note that only one thing changed here: reacto-form package name became other-form. Because both components conform to the specification for a Form-type component, I can rely on my form to continue working without any further changes.

(In reality, competing components may have other non-spec properties that differ, but the spec attempts to cover as many important properties as possible.)

For additional user documentation, refer to the Form Type Reference.

The "Input" Type

Anyway, let's add some inputs to our form.

import React, { Component } from 'react';
import { Form } from 'reacto-form';
import { Input } from 'reacto-form-inputs';
import mySubmissionFunction from './mySubmissionFunction';

class SomePage extends Component {
  render() {
    return (
      <Form onSubmit={mySubmissionFunction}>
        <Input name="firstName" type="text" />
        <Input name="lastName" type="text" />
      </Form>
    );
  }
}

Only the name property is required on inputs. An input can render pretty much anything (and it's not limited to HTML either, so, for example, React Native implementations are possible).

Inputs can output a value of any data type, so you would have to read package documentation to know what the resulting value will be. In the example here, the values will be strings.

For additional user documentation, refer to the Input Type Reference.

Submission

We will now add a Submit button:

import React, { Component } from 'react';
import { Form } from 'reacto-form';
import { Input } from 'reacto-form-inputs';
import mySubmissionFunction from './mySubmissionFunction';

class SomePage extends Component {
  render() {
    return (
      <Form ref={i => { this.form = i; }} onSubmit={mySubmissionFunction}>
        <Input name="firstName" type="text" />
        <Input name="lastName" type="text" />
        <button type="button" onClick={() => { this.form.submit(); }}>Submit</button>
      </Form>
    );
  }
}

As per the specification, the Form component (regardless of which package provides it) will have a submit() instance method and will call the onSubmit function based on that.

The data passed to onSubmit is an object created by combining all of the descendant values. In this case:

{
  firstName: 'John',
  lastName: 'Candy',
}

Object Path Notation

But you are not limited to simple key names for the name properties; you can use object path notation to provide any property accessor. These are parsed with lodash.get and lodash.set.

For example:

<Input name="addresses[0].city" type="text" value="Anchorage" />
<Input name="addresses[0].postalCode" type="text" value="99501" />

Would result in a submission of:

{
  addresses: [
    {
      city: 'Anchorage',
      postalCode: '99501',
    },
  ],
}

NOTE: Numeric keys are not supported.

The "Field" Type

In most cases, you'll want some additional stuff around your input: a label, error messages, descriptive text, a requiredness indicator, an icon, borders, padding. A Field-type component provides these things.

import React, { Component } from 'react';
import { Form } from 'reacto-form';
import { Field, Input } from 'reacto-form-inputs';
import mySubmissionFunction from './mySubmissionFunction';

class SomePage extends Component {
  render() {
    return (
      <Form onSubmit={mySubmissionFunction}>
        <Field label="First Name">
          <Input name="firstName" type="text" />
        </Field>
        <Field label="Last Name">
          <Input name="lastName" type="text" />
        </Field>
      </Form>
    );
  }
}

Field components don't have many requirements or restrictions. They can do pretty much anything they want as long as they render their children.

For additional user documentation, refer to the Field Type Reference.

Nesting Forms

A Form component is really just a group of inputs resulting in a single JavaScript object. As such, you can put forms within forms. Forms that have parent forms will track and gather their descendant input values just as top-level forms do, but they'll delegate validation and submission to the top-level form.

A nested form must have a name property with an object path notation string like an input.

A nesting example:

import React, { Component } from 'react';
import { Form } from 'reacto-form';
import { Field, Input } from 'reacto-form-inputs';
import mySubmissionFunction from './mySubmissionFunction';

class SomePage extends Component {
  render() {
    return (
      <Form onSubmit={mySubmissionFunction}>
        <Field label="First Name">
          <Input name="firstName" type="text" />
        </Field>
        <Field label="Last Name">
          <Input name="lastName" type="text" />
        </Field>
        <h2>Mailing Address</h2>
        <Form name="addresses[0]">
          <Field label="City">
            <Input name="city" type="text" />
          </Field>
          <Field label="Postal Code">
            <Input name="postalCode" type="text" />
          </Field>
        </Form>
      </Form>
    );
  }
}

Note that object path notation begins from the closest form, so the "city" input value is saved to the path addresses[0].city in the onSubmit data.

Packages can choose to export entire premade forms as long as they conform the the specification for Form-type components. So for example, you might be able to plug in an open source address form component like this:

import React, { Component } from 'react';
import { Form } from 'reacto-form';
import { Field, Input } from 'reacto-form-inputs';
import AddressForm from 'nifty-address-form-package';
import mySubmissionFunction from './mySubmissionFunction';

class SomePage extends Component {
  render() {
    return (
      <Form onSubmit={mySubmissionFunction}>
        <Field label="First Name">
          <Input name="firstName" type="text" />
        </Field>
        <Field label="Last Name">
          <Input name="lastName" type="text" />
        </Field>
        <h2>Mailing Address</h2>
        <AddressForm name="addresses.mailing" />
        <h2>Physical Address</h2>
        <AddressForm name="addresses.physical" />
      </Form>
    );
  }
}

Forms vs Inputs

You may have noticed that forms and inputs have many of the same properties. They are very similar, with the following differences:

The "FormList" Type

A FormList maps to an array in your data structure, that is, some arbitrary number of similar items that can be added, edited, and removed.

When using a FormList, you include children that serve as the template for each item in the list. Among these children can be at most one ErrorsBlock and exactly one item data element, which is either an input (for an array of scalar data) or a form (for an array of objects).

When using an ErrorsBlock as a child of FormList, omit the names property. When using an Input or Form as a child of FormList, omit the name property. These properties are added by FormList, which specifies the correct index for each item.

Here is a twist on an earlier example, if we wanted to let a user enter any number of addresses:

import React, { Component } from 'react';
import { Form, FormList } from 'reacto-form';
import { Field, Input } from 'reacto-form-inputs';
import AddressForm from 'nifty-address-form-package';
import mySubmissionFunction from './mySubmissionFunction';

class SomePage extends Component {
  render() {
    return (
      <Form onSubmit={mySubmissionFunction}>
        <Field label="First Name">
          <Input name="firstName" type="text" />
        </Field>
        <Field label="Last Name">
          <Input name="lastName" type="text" />
        </Field>
        <h2>Addresses</h2>
        <FormList name="addresses">
          <AddressForm />
        </FormList>
      </Form>
    );
  }
}

For additional user documentation, refer to the FormList Type Reference.

Validation and Displaying Errors

The Form component handles validation automatically in the following ways:

Fields, Inputs, FormLists, and child Forms can all use the errors passed in if necessary, for example to show indicators or change colors. But the most common case of using errors is with the ErrorsBlock component.

An ErrorsBlock simply reads the message property of each error object passed in and displays all the messages to the user. The messages are assumed to be translated into the user's language by the validator function.

For additional user documentation, refer to the ErrorsBlock Reference and Validator Reference.

Tips

Customizing Components

You'll often want to apply certain styles, classes, or other props to all instances of certain form components using anywhere in your app. A good pattern for this is to import from the form packages in a single file, change the defaultProps on the components, and then export them. Everywhere you need them throughout your app, you can then import from this file rather than directly from the form packages.

Here's an example of using this pattern to apply Bootstrap classes to ReactoForm components:

import { Form, FormList } from 'reacto-form';
import { BooleanCheckboxInput, DateTimeInput, ErrorsBlock, Field, Input, SelectCheckboxInput } from 'reacto-form-inputs';
import moment from 'moment-timezone';

BooleanCheckboxInput.defaultProps.className = 'checkbox';
DateTimeInput.defaultProps = {
  ...DateTimeInput.defaultProps,
  dayInputClassName: 'form-control',
  meridiemSelectClassName: 'form-control',
  moment,
  monthSelectClassName: 'form-control',
  timeInputClassName: 'form-control',
  yearInputClassName: 'form-control',
};
ErrorsBlock.defaultProps.className = 'help-block';
Field.defaultProps.className = 'form-group';
Field.defaultProps.labelClassName = 'control-label';
FormList.defaultProps.buttonClassName = 'btn btn-primary';
Input.defaultProps.className = 'form-control';
SelectCheckboxInput.defaultProps = {
  ...SelectCheckboxInput.defaultProps,
  checkboxClassName: 'form-check-input',
  labelClassName: 'form-check-label',
  itemClassName: 'form-check',
};

export { BooleanCheckboxInput, DateTimeInput, ErrorsBlock, Field, Form, FormList, Input, SelectCheckboxInput };