Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/robinweser/react-controlled-form

React Forms with Zod Validation
https://github.com/robinweser/react-controlled-form

controlled-form form form-validation forms react react-forms zod zod-validation

Last synced: 4 days ago
JSON representation

React Forms with Zod Validation

Awesome Lists containing this project

README

        

# react-controlled-form

A package for creating controlled forms in React with baked in [zod](https://zod.dev) validation.

You own and control the rendered markup and the hook takes care of the state and validation.

npm version npm downloads Bundlephobia

## Installation

```sh
# npm
npm i --save react-controlled-form
# yarn
yarn add react-controlled-form
# pnpm
pnpm add react-controlled-form
```

## The Gist

```tsx
import * as React from 'react'
import { useForm, FieldProps } from 'react-controlled-form'
import { z, ZodError } from 'zod'

// create our schema with validation included
const Z_RegisterInput = z.object({
name: z.string().optional(),
email: z.string().email(),
// we can also pass custom messages as a second parameter
password: z
.string()
.min(8, { message: 'Your password next to have at least 8 characters.' }),
})

type T_RegisterInput = z.infer

function Form() {
// we create a form by passing the schema
const { useField, handleSubmit, formProps, reset } = useForm(Z_RegisterInput)

// now we can create our fields for each property
// the field controls the state and validation per property
const name = useField('name')
const email = useField('email')
const password = useField('password')

function onSuccess(data: T_RegisterInput) {
// do something with the safely parsed data
console.log(data)
// reset the form to its initial state
reset()
}

function onFailure(error: ZodError) {
console.error(error)
}

return (

Full Name

E-Mail

{email.errorMessage}

Password

{password.errorMessage}

Login

)
}
```

> **Note**: This is, of course, a simplified version and you most likely render custom components to handle labelling, error messages and validation styling.
For such cases, each field also exposes a `props` property that extends the `inputProps` with non-standard HTML attributes.

## API Reference

### useForm

The core API that connects the form with a zod schema and returns a set of helpers to manage the state and render the actual markup.

| Parameter |  Type | Default |  Description |
| ------------------ | -------------------------------------------- | -------------------------- | -------------------------------------------------- |
| schema | ZodObject |   | A valid zod object schema |
| formatErrorMessage |  `(error: ZodIssue, name: string) => string` | `(error) => error.message` | A custom formatter that receives the raw zod issue |

```ts
import { z } from 'zod'

const Z_Input = z.object({
name: z.string().optional(),
email: z.string().email(),
// we can also pass custom messages as a second parameter
password: z
.string()
.min(8, { message: 'Your password next to have at least 8 characters.' }),
})

type T_Input = z.infer

// usage inside react components
const { useField, handleSubmit, reset, formProps } = useForm(Z_Input)
```

#### formatErrorMessage

The preferred way to handle custom error messages would be to add them to the schema directly.

In some cases e.g. when receiving the schema from an API or when having to localise the error, we can leverage this helper.

```ts
import { ZodIssue } from 'zod'

// Note: the type is ZodIssue and not ZodError since we always only show the first error
function formatErrorMessage(error: ZodIssue, name: string) {
switch (error.code) {
case 'too_small':
return `This field ${name} requires at least ${error.minimum} characters.`
default:
return error.message
}
}
```

### useField

A hook that manages the field state and returns the relevant HTML attributes to render our inputs.

Also returns a set of helpers to manually update and reset the field.

| Parameter |  Type | Default |  Description |
| --------- | ------------------------------ | --------------------- | ----------------------------------------------------------- |
| name | `keyof z.infer` | | The name of the schema property that this field connects to |
| config | [Config](#config) | See [Config](#config) | Initial field data and additional config options |

#### Config

| Property | Type | Default |  Description |
| ---------------- | ------------------------------------ | ----------------------- | --------------------------------------------------------------------------------------------------------------------------- |
| value | `any` | `''` | Initial value |
| disabled | `boolean` | `false` | Initial disabled state |
| touched | `boolean` | `false` | Initial touched state that indicates whether validation errors are shown or not |
| showValidationOn | `"change"` \| `"blur"` \| `"submit"` | `"submit"` | Which event is used to trigger the touched state |
| parseValue | `(Event) => any` | `(e) => e.target.value` | How the value is received from the input element.
Use `e.target.checked` when working with `` |

```ts
const { inputProps, props, errorMessage, update, reset } = useField('email')
```

#### inputProps

Pass these to native HTML `input`, `select` and `textarea` elements.

Use `data-valid` to style the element based on the validation state.

```ts
type InputProps = {
name: string
value: any
disabled: boolean
'data-valid': boolean
onChange: React.ChangeEventHandler
onBlur?: React.KeyboardEventHandler
}
```

#### props

Pass these to custom components that render label and input elements.

Also includes information such as `errorMessage` or `valid` that's non standard HTML attributes and thus can't be passed to native HTML `input` elements directly.

```ts
type Props = {
value: any
name: string
valid: boolean
required: boolean
disabled: boolean
errorMessage?: string
onChange: React.ChangeEventHandler
onBlur?: React.KeyboardEventHandler
}
```

#### errorMessage

> **Note**: If you're using [`props`](#props), you already get the errorMessage!

A string containing the validation message. Only returned if the field is invalid **and** touched.

#### update

Programmatically change the data of a field. Useful e.g. when receiving data from an API.

If value is changed, it will automatically trigger re-validation.

> **Note**: If you know the initial data upfront, prefer to pass it to the `useField` hook directly though.

```ts
update({
value: 'Foo',
touched: true,
})
```

#### reset

Resets the field back to its initial field data.

```ts
reset()
```

### handleSubmit

Helper that wraps the native `onSubmit` event on `` elements.

It prevents default action execution and parses the form data using the zod schema.

| Parameter |  Type |  Description |
| --------- | -------------------------------- | -------------------------------------------------- |
| onSuccess | `(data: z.infer)` | Callback on successful safe parse of the form data |
| onFailure | `(error: ZodError)` | Callback on failed safe parse |

```ts
import { ZodError } from 'zod'

function onSuccess(data: T_Input) {
console.log(data)
}

function onFailure(error: ZodError) {
console.error(error)
}

// onSubmit handler
const onSubmit = handleSubmit(onSuccess, onFailure)
```

### reset

Resets the form fields back to their initial field data. Helpful when trying to clear a form after a successful submit.

> **Note**: This API is similar to the `reset` helper that the `useField` hook returns. The only difference is that it resets all fields.

```
reset()
```

### isDirty

Returns whether the form is dirty, meaning that any of the fields was altered compared to their initial state.

Useful e.g. when conditionally showing a save button or when you want to inform a user that he's closing a modal with unsafed changes.

```ts
isDirty()
```

### formProps

An object that contains props that are passed to the native `` element.
Currently only consists of a single prop:

```ts
const formProps = {
noValidate: true,
}
```

## Recipes

### Non-String Values

By default, [useField](#usefield) expects string values and defaults to an empty string if no initial value is provided.

In order to also support e.g. `boolean` values or arrays, we can customise the types and pass new values.

```tsx
import { ChangeEvent } from 'react'

const acceptsTerms = useField>('terms', {
// alter how the value is obtained if neccessary
// e.g. for checkboxes or custom inputs
parseValue: (e) => e.target.checked,
// set an initial value overwritting the default empty string
value: false,
})

// custom multi-select input that returns an array of values on change
type Tags = Array
type TagsChangeEvent = (value: Tags) => void

const tags = useField('tags', {
parseValue: (value) => value,
value: [],
})
```

Passing a custom value type and change event will also change the type of `field.value` and the expected input for [update](#update).

## License

react-controlled-form is licensed under the [MIT License](http://opensource.org/licenses/MIT).

Documentation is licensed under [Creative Common License](http://creativecommons.org/licenses/by/4.0/).

Created with ♥ by [@robinweser](http://weser.io) and all the great contributors.