React Handy Hooks
Edit page
HomeReadme
hooks
useAccordionuseFormArgumentsReturned objectExampleuseRequestuseToggle

useForm

useForm is a simple react hook that allows you to build forms quickly.

Arguments

useForm accepts an object with initialValues, validate, submitting, and onSubmit properties as its only argument.

initialValues

It's the only required property. It's an object consisting of field names and its corresponding values.

validate

It's a function that returns errors object where the keys are the field names and the values - the corresponding errors.

onSubmit

It's a function called with form values.

submitting

It's a boolean passed down to getFieldProps and returned from the hook to facilitate usage with context. It's set to false by default

submissionErrors

It's an object of errors that you can feed into the hook to handle showing submission errors.

Returned object

useForm returns an object with the following properties, getFieldProps, invalid, pristine, handleSubmitand resetForm.

getFieldProps

It's a function that takes in a field's name, and returns all the handlers and flags needed to to create a form field. Here is the list of returned handlers/flags:

  • error
  • submissionError
  • touched
  • submitting
  • value
  • onChange
  • onBlur

invalid

It's a boolean that signals whether the form is invalid.

pristine

It's a boolean that signals whether the form values are equal to its initial values.

submitting

It's a boolean with the same value as the submitting property of the hook argument. Just a convenience flag.

handleSubmit

It's a wrapper function around the given onSubmit that normally should be applied to form's onSubmit.

resetForm

It's a function that resets the form to its initialState;.

Example