Add form fields

To add a field to your form, you can use the Field component or the useField hook. Both are headless and provide access to field state for building your form UI.

Field component

The Field component has two mandatory properties: of which accepts the form store, and path which specifies which field to connect. If you use TypeScript, you get full autocompletion for the path based on your schema.

Children prop

As a child, you pass a function to the Field component that returns JSX. The function receives the field store as its parameter, which includes the current value, error messages, and props to spread onto your input element.

import { Field, Form, useForm } from '@formisch/preact';
import * as v from 'valibot';

const LoginSchema = v.object({
  email: v.pipe(v.string(), v.email()),
  password: v.pipe(v.string(), v.minLength(8)),
});

export default function App() {
  const loginForm = useForm({
    schema: LoginSchema,
  });

  return (
    <Form of={loginForm}>
      <Field of={loginForm} path={['email']}>
        {(field) => <input {...field.props} value={field.input} type="email" />}
      </Field>
      <Field of={loginForm} path={['password']}>
        {(field) => (
          <input {...field.props} value={field.input} type="password" />
        )}
      </Field>
      <button type="submit">Login</button>
    </Form>
  );
}

Important: If you plan to set initial values with initialInput or programmatically control field values using methods like setInput or reset, you must make your fields controlled by setting the appropriate attributes (like value, checked, or selected). See the controlled fields guide to learn more.

Headless design

The Field component does not render its own UI elements. It is headless and provides only the data layer of the field. This allows you to freely define your user interface. You can use HTML elements, custom components or an external UI library.

Path array

The path property accepts an array of strings and numbers that represents the path to the field in your schema. For top-level fields, it's simply the field name wrapped in an array:

<Field of={loginForm} path={['email']}>
  {(field) => <input {...field.props} value={field.input} type="email" />}
</Field>

For nested fields, the path reflects the structure of your schema:

// For a schema like: v.object({ user: v.object({ email: v.string() }) })
<Field of={form} path={['user', 'email']}>
  {(field) => <input {...field.props} value={field.input} type="email" />}
</Field>

Type safety

The API design of the Field component results in a fully type-safe form. For example, if you change your schema, TypeScript will immediately alert you if the path is invalid. The field state is also fully typed based on your schema, giving you autocompletion for properties like field.input.

useField hook

For very complex forms where you create individual components for each form field, Formisch provides the useField hook. It allows you to access the field state directly within your component logic.

import { useField } from '@formisch/preact';
import type { FormStore } from '@formisch/preact';
import * as v from 'valibot';

type EmailInputProps = {
  form: FormStore<v.GenericSchema<{ email: string }>>;
};

function EmailInput(props: EmailInputProps) {
  const field = useField(props.form, { path: ['email'] });

  return (
    <div>
      <input {...field.props} value={field.input} type="email" />
      {field.errors.value && <div>{field.errors.value[0]}</div>}
    </div>
  );
}

When to use which

  • Use Field component: When defining multiple fields in the same component. It ensures you don't accidentally access the wrong field store.
  • Use useField hook: When creating field components for single fields. It allows you to access field state in your component logic.

The Field component is essentially a thin wrapper around useField that allows you to access the field state within JSX code.

Field store

The field store provides access to the following properties (all properties except props are signals):

  • props: JSX props to spread onto your input element (includes event handlers, ref callback, name attribute, and autofocus to automatically focus fields with errors).
  • input: A signal containing the current input value of the field.
  • errors: A signal containing an array of error messages if validation fails.
  • isTouched: A signal indicating whether the field has been touched.
  • isDirty: A signal indicating whether the current input differs from the initial input.
  • isValid: A signal indicating whether the field passes all validation rules.

Next steps

Now that you know how to add fields to your form, continue to the input components guide to learn about creating reusable input components for your forms.

Contributors

Thanks to all the contributors who helped make this page better!

  • GitHub profile picture of @fabian-hiller

Partners

Thanks to our partners who support the project ideally and financially.

Sponsors

Thanks to our GitHub sponsors who support the project financially.

  • GitHub profile picture of @vasilii-kovalev
  • GitHub profile picture of @saturnonearth
  • GitHub profile picture of @ruiaraujo012
  • GitHub profile picture of @hyunbinseo
  • GitHub profile picture of @nickytonline
  • GitHub profile picture of @KubaJastrz
  • GitHub profile picture of @andrewmd5
  • GitHub profile picture of @Thanaen
  • GitHub profile picture of @caegdeveloper
  • GitHub profile picture of @bmoyroud
  • GitHub profile picture of @dslatkin