npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

use-form-controlled

v1.1.3

Published

React hook for managing form state, validation, and submission with controlled inputs.

Downloads

14

Readme

use-form-controlled

CI codecov

React hook for managing form state, validation, and submission with controlled inputs.

Usage

First npm i use-form-controlled react react-dom.

Basic

import { useForm } from 'use-form-controlled'

const { register, error, isInvalid, handleOnSubmit } = useForm({
  firstName(form) {
    if (!form.firstName?.trim()) {
      return 'First Name is required'
    }
  }
})

return (
  <form onSubmit={handleOnSubmit(form => console.log(form.firstName))} noValidate>
    <label>
      First Name:
      <input {...register('firstName', { required: true })} />
    </label>
    {error.firstName && <span>{error.firstName}</span>}
    <button type="submit" disabled={isInvalid}>
      Submit
    </button>
  </form>
)

Native HTML Validation

You can have your form use controlled input while also falling back to native HTML form validation. Be sure to NOT use the noValidate attribute on your form.

const { register, isInvalid, handleOnSubmit } = useForm()

return (
  <form onSubmit={handleOnSubmit(form => console.log(form))}>
    <input required type="email" {...register('email')} />
    <button type="submit" disabled={isInvalid}>
      Submit
    </button>
  </form>
)

Initialization

You can initialize form values with either setValue (inside a useEffect most likely), or with the initialValues option to useForm. The latter will have one less render cycle, but may not satisfy all use cases (like if your form initialization depends on an async process like an API request).

import { useForm } from 'use-form-controlled'
import TextField from '@mui/material/TextField'

const { setValue } = useForm({
  validators: {
    name(form) {
      if (!form?.name.trim()) {
        return 'Name is required'
      }
    }
  },
  initialValues: {
    name: 'First Last'
  }
})

// If your initialization data depends on a fetch
const data = getDataFromAPI()

useEffect(() => {
  if (data?.name) {
    setValue({ name: data.name })
  }
}, [data])

Dependent Validation

Sometimes validation of one form field depends on the value of another. The valdiators defined get passed all form values as their first argument.

const { value, error, isInvalid, handleOnSubmit } = useForm({
  fieldA(form) {
    if (Boolean(form.fieldB) && !form.fieldA) {
      return 'A is required when B is used'
    }
  }
})

return (
  <form onSubmit={handleOnSubmit(form => console.log(form))} noValidate>
    <TextField
      required={Boolean(value.fieldB)}
      label="fieldA"
      error={Boolean(error.fieldA)}
      helperText={error.fieldA}
      {...register('fieldA', { required: Boolean(value.fieldB) })}
    />
    <TextField label="fieldB" {...register('fieldB')} />
    <button type="submit" disabled={isInvalid}>
      Submit
    </button>
  </form>
)

Async Validation

Sometimes you need to check uniqueness or availabilty of a form field value on the server via an API request to validate. In those cases define validators that accept a boolean as the second argument and use runAsyncCheck option when calling register. Note that by default register will only call the validators with the runAsyncCheck option during an onBlur event. If you want to trigger it during onChange or another event you will have to write your own handler overriding the one from register (or don't use register).

const { register, value, error, isInvalid, handleOnSubmit } = useForm({
  validators: {
    async username(form, checkAvailability = true) {
      if (!form?.username.trim()) {
        return 'Username is required'
      }

      if (checkAvailability) {
        const isAvailable = await api.fetch('/availability', form.username)

        if (!isAvailable) {
          return `Username must be unique, the one chosen is already taken`
        }
      }
    }
  },
  initialValues: {
    // This could come from props, or an API request, etc.
    username: initialUsername
  }
})

return (
  <form onSubmit={handleOnSubmit(form => console.log(form))} noValidate>
    <TextField
      required
      label="username"
      error={Boolean(error.username)}
      helperText={error.username}
      {...register('username', {
        required: true,
        runAsyncCheck: value.username !== initialUsername
      })}
    />
    <button type="submit" disabled={isInvalid}>
      Submit
    </button>
  </form>
)

Data Type Validation and Submission

All form values are cast to strings in the DOM, so if you need to parse a form field to derive an expected type during validation, you can define a custom parser as an option to register or use one of the built-in parsers via an available option, like parseAsInt or parseAsNumber. With this configuration your validators and handleOnSubmit callback will receive parsed form values.

const { register, error, isInvalid, handleOnSubmit } = useForm({
  age(form) {
    if (!Number.isInteger(form.age)) {
      return `Age must be a whole number`
    }
  }
})

return (
  <form onSubmit={handleOnSubmit(form => console.log(form))} noValidate>
    <input {...register('age', { required: true, parseAsInt: true })} />
    {error.age && <span>{error.age}</span>}
    <button type="submit" diabled={isInvalid}>
      Submit
    </button>
  </form>
)

This would be the same as defining a custom parser in the options passed to register. For example,

register('age', { required: true, parser: val => parseInt(val, 10) })