</> watch:
(names?: string | string[] | (data, options) => void) => unknown
This method will watch specified inputs and return their values. It is useful to render input value and for determining what to render by condition.
Props
Type | Description |
---|---|
string | Watch input value by name (similar to lodash get function) |
string[] | Watch multiple inputs |
undefined | Watch all inputs |
(data: unknown, { name: string, type: string }) => void | Watch all inputs and invoke a callback |
Return
Example | Return |
---|---|
watch('inputName') | unknown |
watch(['inputName1']) | unknown[] |
watch() | {[key:string]: unknown} |
watch((data, { name, type }) => console.log(data, name, type)) | { unsubscribe: () => void } |
RULES
- When
defaultValue
is not defined, the first render ofwatch
will returnundefined
because it is called beforeregister
. It's recommended to providedefaultValues
atuseForm
to avoid this behaviour, but you can set the inlinedefaultValue
as the second argument. - When both
defaultValue
anddefaultValues
are supplied,defaultValue
will be returned. - This API will trigger re-render at the root of your app or form, consider using a callback or the useWatch api if you are experiencing performance issues.
watch
result is optimised for render phase instead ofuseEffect
's deps, to detect value update you may want to use an external custom hook for value comparison.
Examples:
Watch in a Form
import React from "react"import { useForm } from "react-hook-form"interface IFormInputs {name: stringshowAge: booleanage: number}function App() {const {register,watch,formState: { errors },handleSubmit,} = useForm<IFormInputs>()const watchShowAge = watch("showAge", false) // you can supply default value as second argumentconst watchAllFields = watch() // when pass nothing as argument, you are watching everythingconst watchFields = watch(["showAge", "age"]) // you can also target specific fields by their names// Callback version of watch. It's your responsibility to unsubscribe when done.React.useEffect(() => {const subscription = watch((value, { name, type }) =>console.log(value, name, type))return () => subscription.unsubscribe()}, [watch])const onSubmit = (data: IFormInputs) => console.log(data)return (<><form onSubmit={handleSubmit(onSubmit)}><input {...register("name", { required: true, maxLength: 50 })} /><input type="checkbox" {...register("showAge")} />{/* based on yes selection to display Age Input*/}{watchShowAge && (<input type="number" {...register("age", { min: 50 })} />)}<input type="submit" /></form></>)}
Watch in Field Array
import * as React from "react"import { useForm, useFieldArray } from "react-hook-form"type FormValues = {test: {firstName: stringlastName: string}[]}function App() {const { register, control, handleSubmit, watch } = useForm<FormValues>()const { fields, remove, append } = useFieldArray({name: "test",control,})const onSubmit = (data: FormValues) => console.log(data)console.log(watch("test"))return (<form onSubmit={handleSubmit(onSubmit)}>{fields.map((field, index) => {return (<div key={field.id}><inputdefaultValue={field.firstName}{...register(`test.${index}.firstName`)}/><inputdefaultValue={field.lastName}{...register(`test.${index}.lastName`)}/><button type="button" onClick={() => remove(index)}>Remove</button></div>)})}<buttontype="button"onClick={() =>append({firstName: "bill" + renderCount,lastName: "luo" + renderCount,})}>Append</button></form>)}
Video
Thank you for your support
If you find React Hook Form to be useful in your project, please consider to star and support it.