Back to Payload

React Hooks

docs/admin/react-hooks.mdx

3.84.144.1 KB
Original Source

Payload provides a variety of powerful React Hooks that can be used within your own Custom Components, such as Custom Fields. With them, you can interface with Payload itself to build just about any type of complex customization you can think of.

<Banner type="warning"> **Reminder:** All Custom Components are [React Server Components](https://react.dev/reference/rsc/server-components) by default. Hooks, on the other hand, are only available in client-side environments. To use hooks, [ensure your component is a client component](../custom-components/overview#client-components). </Banner>

useField

The useField hook is used internally within all field components. It manages sending and receiving a field's state from its parent form. When you build a Custom Field Component, you will be responsible for sending and receiving the field's value to and from the form yourself.

To do so, import the useField hook as follows:

tsx
'use client'
import type { TextFieldClientComponent } from 'payload'
import { useField } from '@payloadcms/ui'

export const CustomTextField: TextFieldClientComponent = ({ path }) => {
  const { value, setValue } = useField({ path }) // highlight-line

  return (
    <div>
      <p>{path}</p>
      <input
        onChange={(e) => {
          setValue(e.target.value)
        }}
        value={value}
      />
    </div>
  )
}

The useField hook accepts the following arguments:

PropertyDescription
pathIf you do not provide a path, name will be used instead. This is the path to the field in the form data.
validateA validation function executed client-side before submitting the form to the server. Different than Field-level Validation which runs strictly on the server.
disableFormDataIf true, the field will not be included in the form data when the form is submitted.
hasRowsIf true, the field will be treated as a field with rows. This is useful for fields like array and blocks.

The useField hook returns the following object:

ts
type FieldType<T> = {
  errorMessage?: string
  errorPaths?: string[]
  filterOptions?: FilterOptionsResult
  formInitializing: boolean
  formProcessing: boolean
  formSubmitted: boolean
  initialValue?: T
  path: string
  permissions: FieldPermissions
  readOnly?: boolean
  rows?: Row[]
  schemaPath: string
  setValue: (val: unknown, disableModifyingForm?: boolean) => void
  showError: boolean
  valid?: boolean
  value: T
}

Updating Lexical Rich Text Fields

The Lexical editor uses initialValue — not value — as the trigger to re-mount and visually update its content. This is intentional: it prevents unnecessary re-renders on every keystroke. However, it means that calling setValue alone will update the form's value (and save correctly to the database), but the editor UI will not reflect the change until the page is refreshed.

To programmatically update a Lexical rich text field and have the editor visually reflect the new content, you must update both value and initialValue simultaneously. The way to do this is via dispatchFields with an UPDATE action, which can set any property of a field's form state at once:

tsx
'use client'
import { useAllFormFields } from '@payloadcms/ui'

export const MyComponent: React.FC = () => {
  const [, dispatchFields] = useAllFormFields()

  const updateRichTextField = (newValue) => {
    dispatchFields({
      type: 'UPDATE',
      path: 'myRichTextField', // the field's path in the form
      value: newValue,
      initialValue: newValue, // required to trigger Lexical re-render
    })
  }

  return (
    <button
      onClick={() =>
        updateRichTextField({
          /* new editor state */
        })
      }
    >
      Update
    </button>
  )
}
<Banner type="warning"> Using `setValue` from `useField` on a Lexical rich text field will update the form data (and persist correctly on save), but the editor UI will not visually update. Use `dispatchFields` with both `value` and `initialValue` set to the new content to trigger a re-render of the editor. </Banner>

useFormFields

There are times when a custom field component needs to have access to data from other fields, and you have a few options to do so. The useFormFields hook is a powerful and highly performant way to retrieve a form's field state, as well as to retrieve the dispatchFields method, which can be helpful for setting other fields form states.

<Banner type="success"> **This hook is great for retrieving only certain fields from form state** because it ensures that it will only cause a rerender when the items that you ask for change. </Banner>

Thanks to the awesome package use-context-selector, you can retrieve a specific field's state easily. This is ideal because you can ensure you have an up-to-date field state, and your component will only re-render when that field's state changes.

You can pass a Redux-like selector into the hook, which will ensure that you retrieve only the field that you want. The selector takes an argument with type of [fields: Fields, dispatch: React.Dispatch<Action>]].

tsx
'use client'
import { useFormFields } from '@payloadcms/ui'

const MyComponent: React.FC = () => {
  // Get only the `amount` field state, and only cause a rerender when that field changes
  const amount = useFormFields(([fields, dispatch]) => fields.amount)

  // Do the same thing as above, but to the `feePercentage` field
  const feePercentage = useFormFields(
    ([fields, dispatch]) => fields.feePercentage,
  )

  if (
    typeof amount?.value !== 'undefined' &&
    typeof feePercentage?.value !== 'undefined'
  ) {
    return <span>The fee is ${(amount.value * feePercentage.value) / 100}</span>
  }
}
<Banner type="warning"> Be aware: in the example above, `MyComponent` may re-render if an ancestor component re-renders or if any of its props change (standard React behavior), but not because any fields other than `amount` or `feePercentage` changed. </Banner>

useAllFormFields

To retrieve more than one field, you can use the useAllFormFields hook. Unlike the useFormFields hook, this hook does not accept a "selector", and it always returns an array with type of [fields: Fields, dispatch: React.Dispatch<Action>]].

<Banner type="warning"> **Warning:** Your component will re-render when _any_ field changes, so use this hook only if you absolutely need to. </Banner>

You can do lots of powerful stuff by retrieving the full form state, like using built-in helper functions to reduce field state to values only, or to retrieve sibling data by path.

tsx
'use client'
import { useAllFormFields } from '@payloadcms/ui'
import { reduceFieldsToValues, getSiblingData } from 'payload/shared'

const ExampleComponent: React.FC = () => {
  // the `fields` const will be equal to all fields' state,
  // and the `dispatchFields` method is usable to send field state up to the form
  const [fields, dispatchFields] = useAllFormFields();

  // Pass in fields, and indicate if you'd like to "unflatten" field data.
  // The result below will reflect the data stored in the form at the given time
  const formData = reduceFieldsToValues(fields, true);

  // Pass in field state and a path,
  // and you will be sent all sibling data of the path that you've specified
  const siblingData = getSiblingData(fields, 'someFieldName');

  return (
    // return some JSX here if necessary
  )
};

Updating other fields' values

If you are building a Custom Component, then you should use setValue which is returned from the useField hook to programmatically set your field's value. But if you're looking to update another field's value, you can use dispatchFields returned from useAllFormFields.

You can send the following actions to the dispatchFields function.

ActionDescription
ADD_ROWAdds a row of data (useful in array / block field data)
DUPLICATE_ROWDuplicates a row of data (useful in array / block field data)
MODIFY_CONDITIONUpdates a field's conditional logic result (true / false)
MOVE_ROWMoves a row of data (useful in array / block field data)
REMOVERemoves a field from form state
REMOVE_ROWRemoves a row of data from form state (useful in array / block field data)
REPLACE_STATECompletely replaces form state
UPDATEUpdate any property of a specific field's state

To see types for each action supported within the dispatchFields hook, check out the Form types here.

useForm

The useForm hook can be used to interact with the form itself, and sends back many methods that can be used to reactively fetch form state without causing rerenders within your components each time a field is changed. This is useful if you have action-based callbacks that your components fire, and need to interact with form state based on a user action.

<Banner type="warning"> **Warning:**

This hook is optimized to avoid causing rerenders when fields change, and as such, its fields property will be out of date. You should only leverage this hook if you need to perform actions against the form in response to your users' actions. Do not rely on its returned "fields" as being up-to-date. They will be removed from this hook's response in an upcoming version.

</Banner>

The useForm hook returns an object with the following properties:

<TableWithDrawers columns={[ 'Action', 'Description', 'Example', ]} rows={[ [ { value: "fields", }, { value: "Deprecated. This property cannot be relied on as up-to-date.", }, { value: '' } ], [ { value: "submit", }, { value: "Method to trigger the form to submit", }, { value: '' } ], [ { value: "dispatchFields", }, { value: "Dispatch actions to the form field state", }, { value: '' } ], [ { value: "validateForm", }, { value: "Trigger a validation of the form state", }, { value: '' } ], [ { value: "createFormData", }, { value: "Create a multipart/form-data object from the current form's state", }, { value: '' } ], [ { value: "disabled", }, { value: "Boolean denoting whether or not the form is disabled", }, { value: '' } ], [ { value: "getFields", }, { value: 'Gets all fields from state', }, { value: '', } ], [ { value: "getField", }, { value: 'Gets a single field from state by path', }, { value: '', }, ], [ { value: "getData", }, { value: 'Returns the data stored in the form', }, { value: '', }, ], [ { value: "getSiblingData", }, { value: 'Returns form sibling data for the given field path', }, { value: '', }, ], [ { value: "getDataByPath", }, { value: 'Returns form field data for the given field path. Useful when dealing with arrays, blocks, or other form state.', }, { value: '', }, ], [ { value: "setModified", }, { value: "Set the form's modified state", }, { value: '', }, ], [ { value: "setProcessing", }, { value: "Set the form's processing state", }, { value: '', }, ], [ { value: "setSubmitted", }, { value: "Set the form's submitted state", }, { value: '', }, ], [ { value: "formRef", }, { value: 'The ref from the form HTML element', }, { value: '', }, ], [ { value: "reset", }, { value: 'Method to reset the form to its initial state', }, { value: '', }, ], [ { value: "addFieldRow", }, { value: "Method to add a row on an array or block field", }, { drawerTitle: 'addFieldRow', drawerDescription: 'A useful method to programmatically add a row to an array or block field.', drawerSlug: 'addFieldRow', drawerContent: <TableWithDrawers columns={[ 'Prop', 'Description', ]} rows={[ [ { value: "**\\\path\`", }, { value: "The path to the array or block field", }, ], [ { value: "\`rowIndex\`", }, { value: "The index of the row to add. If omitted, the row will be added to the end of the array.", }, ], [ { value: "\`data\`**", }, { value: "The data to add to the row", }, ], ]} />

```tsx import { useForm } from "@payloadcms/ui"

export const CustomArrayManager = () => { const { addFieldRow } = useForm()

return (

<button type="button" onClick={() => { addFieldRow({ path: 'arrayField', schemaPath: 'arrayField', rowIndex: 0, // optionally specify the index to add the row at subFieldState: { textField: { initialValue: 'New row text', valid: true, value: 'New row text', }, }, // blockType: "yourBlockSlug", // ^ if managing a block array, you need to specify the block type }) }}

Add Row </button> ) } ```

An example config to go along with the Custom Component

```tsx const ExampleCollection = { slug: "example-collection", fields: [ { name: "arrayField", type: "array", fields: [ { name: "textField", type: "text", }, ], }, { type: "ui", name: "customArrayManager", admin: { components: { Field: '/path/to/CustomArrayManagerField', }, }, }, ], } ``` } ], [ { value: "**removeFieldRow**", }, { value: "Method to remove a row from an array or block field", }, { drawerTitle: 'removeFieldRow', drawerDescription: 'A useful method to programmatically remove a row from an array or block field.', drawerSlug: 'removeFieldRow', drawerContent:

<TableWithDrawers columns={['Prop', 'Description']} rows={[ [ { value: '\`path\`', }, { value: 'The path to the array or block field', }, ], [ { value: '\`rowIndex\`', }, { value: 'The index of the row to remove', }, ], ]} />

```tsx import { useForm } from "@payloadcms/ui"

export const CustomArrayManager = () => { const { removeFieldRow } = useForm()

return (

<button type="button" onClick={() => { removeFieldRow({ path: 'arrayField', rowIndex: 0, }) }}

Remove Row </button> ) } ```

An example config to go along with the Custom Component

```tsx const ExampleCollection = { slug: "example-collection", fields: [ { name: "arrayField", type: "array", fields: [ { name: "textField", type: "text", }, ], }, { type: "ui", name: "customArrayManager", admin: { components: { Field: '/path/to/CustomArrayManagerField', }, }, }, ], } ``` } ], [ { value: "**replaceFieldRow**", }, { value: "Method to replace a row from an array or block field", }, { drawerTitle: 'replaceFieldRow', drawerDescription: 'A useful method to programmatically replace a row from an array or block field.', drawerSlug: 'replaceFieldRow', drawerContent:

<TableWithDrawers columns={['Prop', 'Description']} rows={[ [ { value: '\`path\`', }, { value: 'The path to the array or block field', }, ], [ { value: '\`rowIndex\`', }, { value: 'The index of the row to replace', }, ], [ { value: '\`data\`', }, { value: 'The data to replace within the row', }, ], ]} />

```tsx import { useForm } from "@payloadcms/ui"

export const CustomArrayManager = () => { const { replaceFieldRow } = useForm()

return (

<button type="button" onClick={() => { replaceFieldRow({ path: 'arrayField', schemaPath: 'arrayField', rowIndex: 0, // optionally specify the index to add the row at subFieldState: { textField: { initialValue: 'Updated text', valid: true, value: 'Updated text', }, }, // blockType: "yourBlockSlug", // ^ if managing a block array, you need to specify the block type }) }}

Replace Row </button> ) } ```

An example config to go along with the Custom Component

```tsx const ExampleCollection = { slug: "example-collection", fields: [ { name: "arrayField", type: "array", fields: [ { name: "textField", type: "text", }, ], }, { type: "ui", name: "customArrayManager", admin: { components: { Field: '/path/to/CustomArrayManagerField', }, }, }, ], } ``` ` } ], ]} />

useDocumentForm

The useDocumentForm hook works the same way as the useForm hook, but it always gives you access to the top-level Form of a document. This is useful if you need to access the document's Form context from within a child Form.

An example where this could happen would be custom components within lexical blocks, as lexical blocks initialize their own child Form.

tsx
'use client'

import { useDocumentForm } from '@payloadcms/ui'

const MyComponent: React.FC = () => {
  const { fields: parentDocumentFields } = useDocumentForm()

  return (
    <p>
      The document's Form has ${Object.keys(parentDocumentFields).length} fields
    </p>
  )
}

useCollapsible

The useCollapsible hook allows you to control parent collapsibles:

PropertyDescription
isCollapsedState of the collapsible. true if open, false if collapsed.
isVisibleIf nested, determine if the nearest collapsible is visible. true if no parent is closed, false otherwise.
toggleToggles the state of the nearest collapsible.
isWithinCollapsibleDetermine when you are within another collapsible.

Example:

tsx
'use client'
import React from 'react'

import { useCollapsible } from '@payloadcms/ui'

const CustomComponent: React.FC = () => {
  const { isCollapsed, toggle } = useCollapsible()

  return (
    <div>
      <p className="field-type">I am {isCollapsed ? 'closed' : 'open'}</p>
      <button onClick={toggle} type="button">
        Toggle
      </button>
    </div>
  )
}

useDocumentInfo

The useDocumentInfo hook provides information about the current document being edited, including the following:

PropertyDescription
actionThe URL attached to the action attribute on the underlying form element, which specifies where to send the form data when the form is submitted.
apiURLThe API URL for the current document.
collectionSlugThe slug of the collection if editing a collection document.
currentEditorThe user currently editing the document.
docConfigEither the Collection or Global config of the document, depending on what is being edited.
docPermissionsThe current document's permissions. Fallback to collection permissions when no id is present.
documentIsLockedWhether the document is currently locked by another user. More details.
getDocPermissionsMethod to retrieve document-level permissions.
getDocPreferencesMethod to retrieve document-level user preferences. More details.
globalSlugThe slug of the global if editing a global document.
hasPublishedDocWhether the document has a published version.
hasPublishPermissionWhether the current user has permission to publish the document.
hasSavePermissionWhether the current user has permission to save the document.
idIf the doc is a collection, its ID will be returned.
incrementVersionCountMethod to increment the version count of the document.
initialDataThe initial data of the document.
isEditingWhether the document is being edited (as opposed to created).
isInitializingWhether the document info is still initializing.
isLockedWhether the document is locked. More details.
lastUpdateTimeTimestamp of the last update to the document.
mostRecentVersionIsAutosavedWhether the most recent version is an autosaved version.
preferencesKeyThe preferences key to use when interacting with document-level user preferences. More details.
dataThe saved data of the document.
setDocFieldPreferencesMethod to set preferences for a specific field. More details.
setDocumentTitleMethod to set the document title.
setHasPublishedDocMethod to update whether the document has been published.
titleThe title of the document.
unlockDocumentMethod to unlock a document. More details.
unpublishedVersionCountThe number of unpublished versions of the document.
updateDocumentEditorMethod to update who is currently editing the document. More details.
updateSavedDocumentDataMethod to update the saved document data.
uploadStatusStatus of any uploads in progress ('idle', 'uploading', or 'failed').
versionCountThe current version count of the document.

Example:

tsx
'use client'
import { useDocumentInfo } from '@payloadcms/ui'

const LinkFromCategoryToPosts: React.FC = () => {
  // highlight-start
  const { id } = useDocumentInfo()
  // highlight-end

  // id will be undefined on the create form
  if (!id) {
    return null
  }

  return (
    <a
      href={`/admin/collections/posts?where[or][0][and][0][category][in][0]=[${id}]`}
    >
      View posts
    </a>
  )
}

useListQuery

The useListQuery hook is used to subscribe to the data, current query, and other properties used within the List View. You can use this hook within any Custom Component rendered within the List View.

tsx
'use client'
import { useListQuery } from '@payloadcms/ui'

const MyComponent: React.FC = () => {
  // highlight-start
  const { data, query } = useListQuery()
  // highlight-end

  // ...
}

The useListQuery hook returns an object with the following properties:

PropertyDescription
dataThe data that is being displayed in the List View.
defaultLimitThe default limit of items to display in the List View.
defaultSortThe default sort order of items in the List View.
handlePageChangeA method to handle page changes in the List View.
handlePerPageChangeA method to handle per page changes in the List View.
handleSearchChangeA method to handle search changes in the List View.
handleSortChangeA method to handle sort changes in the List View.
handleWhereChangeA method to handle where changes in the List View.
modifiedWhether the query has been changed from its Query Preset.
queryThe current query that is being used to fetch the data in the List View.

useSelection

The useSelection hook provides information on the selected rows in the List view as well as helper methods to simplify selection. The useSelection hook returns an object with the following properties:

PropertyDescription
countThe number of currently selected rows.
getQueryParamsA function that generates a query string based on the current selection state and optional additional filtering parameters.
selectAllAn enum value representing the selection range: 'allAvailable', 'allInPage', 'none', and 'some'. The enum, SelectAllStatus, is exported for easier comparisons.
selectedA map of document id keys and boolean values representing their selection status.
setSelectionA function that toggles the selection status of a document row.
toggleAllA function that toggles selection for all documents on the current page or selects all available documents when passed true.
totalDocsThe number of total documents in the collection.

Example:

tsx
'use client'
import { useSelection } from '@payloadcms/ui'

const MyComponent: React.FC = () => {
  // highlight-start
  const { count, toggleAll, totalDocs } = useSelection()
  // highlight-end

  return (
    <>
      <span>
        Selected {count} out of {totalDocs} docs!
      </span>
      <button type="button" onClick={() => toggleAll(true)}>
        Toggle All Selections
      </button>
    </>
  )
}

useLocale

In any Custom Component you can get the selected locale object with the useLocale hook. useLocale gives you the full locale object, consisting of a label, rtl(right-to-left) property, and then code. Here is a simple example:

tsx
'use client'
import { useLocale } from '@payloadcms/ui'

const Greeting: React.FC = () => {
  // highlight-start
  const locale = useLocale()
  // highlight-end

  const trans = {
    en: 'Hello',
    es: 'Hola',
  }

  return <span> {trans[locale.code]} </span>
}

useAuth

Useful to retrieve info about the currently logged in user as well as methods for interacting with it. It sends back an object with the following properties:

PropertyDescription
userThe currently logged in user
logOutA method to log out the currently logged in user
refreshCookieA method to trigger the silent refreshing of a user's auth token
setTokenSet the token of the user, to be decoded and used to reset the user and token in memory
tokenThe logged in user's token (useful for creating preview links, etc.)
refreshPermissionsLoad new permissions (useful when content that affects permissions has been changed)
permissionsThe permissions of the current user
tsx
'use client'
import { useAuth } from '@payloadcms/ui'
import type { User } from '../payload-types.ts'

const Greeting: React.FC = () => {
  // highlight-start
  const { user } = useAuth<User>()
  // highlight-end

  return <span>Hi, {user.email}!</span>
}

useConfig

Used to retrieve the Payload Client Config.

tsx
'use client'
import { useConfig } from '@payloadcms/ui'

const MyComponent: React.FC = () => {
  // highlight-start
  const { config } = useConfig()
  // highlight-end

  return <span>{config.serverURL}</span>
}

If you need to retrieve a specific collection or global config by its slug, getEntityConfig is the most efficient way to do so:

tsx
'use client'
import { useConfig } from '@payloadcms/ui'

const MyComponent: React.FC = () => {
  // highlight-start
  const { getEntityConfig } = useConfig()
  const mediaConfig = getEntityConfig({ collectionSlug: 'media' })
  // highlight-end

  return (
    <span>The media collection has {mediaConfig.fields.length} fields.</span>
  )
}

useEditDepth

Sends back how many editing levels "deep" the current component is. Edit depth is relevant while adding new documents / editing documents in modal windows and other cases.

tsx
'use client'
import { useEditDepth } from '@payloadcms/ui'

const MyComponent: React.FC = () => {
  // highlight-start
  const editDepth = useEditDepth()
  // highlight-end

  return <span>My component is {editDepth} levels deep</span>
}

usePreferences

Returns methods to set and get user preferences. More info can be found here.

useTheme

Returns the currently selected theme (light, dark or auto), a set function to update it and a boolean autoMode, used to determine if the theme value should be set automatically based on the user's device preferences.

tsx
'use client'
import { useTheme } from '@payloadcms/ui'

const MyComponent: React.FC = () => {
  // highlight-start
  const { autoMode, setTheme, theme } = useTheme()
  // highlight-end

  return (
    <>
      <span>
        The current theme is {theme} and autoMode is {autoMode}
      </span>
      <button
        type="button"
        onClick={() =>
          setTheme((prev) => (prev === 'light' ? 'dark' : 'light'))
        }
      >
        Toggle theme
      </button>
    </>
  )
}

useTableColumns

Returns properties and methods to manipulate table columns:

PropertyDescription
columnsThe current state of columns including their active status and configuration
LinkedCellOverrideA component override for linked cells in the table
moveColumnA method to reorder columns. Accepts { fromIndex: number, toIndex: number } as arguments
resetColumnsStateA method to reset columns back to their default configuration as defined in the collection config
setActiveColumnsA method to set specific columns to active state while preserving the existing column order. Accepts an array of column names to activate
toggleColumnA method to toggle a single column's visibility. Accepts a column name as string
tsx
'use client'
import { useTableColumns } from '@payloadcms/ui'

const MyComponent: React.FC = () => {
  // highlight-start
  const { setActiveColumns, resetColumnsState } = useTableColumns()

  const activateSpecificColumns = () => {
    // Only activates the id and createdAt columns
    // Other columns retain their current active/inactive state
    // The original column order is preserved
    setActiveColumns(['id', 'createdAt'])
  }

  const resetToDefaults = () => {
    // Resets to the default columns defined in the collection config
    resetColumnsState()
  }
  // highlight-end

  return (
    <div>
      <button type="button" onClick={activateSpecificColumns}>
        Activate Specific Columns
      </button>
      <button type="button" onClick={resetToDefaults}>
        Reset To Defaults
      </button>
    </div>
  )
}

useDocumentEvents

The useDocumentEvents hook provides a way of subscribing to cross-document events, such as updates made to nested documents within a drawer. This hook will report document events that are outside the scope of the document currently being edited. This hook provides the following:

PropertyDescription
mostRecentUpdateAn object containing the most recently updated document. It contains the entitySlug, id (if collection), and updatedAt properties
reportUpdateA method used to report updates to documents. It accepts the same arguments as the mostRecentUpdate property.

Example:

tsx
'use client'
import { useDocumentEvents } from '@payloadcms/ui'

const ListenForUpdates: React.FC = () => {
  const { mostRecentUpdate } = useDocumentEvents()

  return <span>{JSON.stringify(mostRecentUpdate)}</span>
}
<Banner type="info"> Right now the `useDocumentEvents` hook only tracks recently updated documents, but in the future it will track more document-related events as needed, such as document creation, deletion, etc. </Banner>

useStepNav

The useStepNav hook provides a way to change the step-nav breadcrumb links in the app header.

PropertyDescription
setStepNavA state setter function which sets the stepNav array.
stepNavA StepNavItem array where each StepNavItem has a label and optionally a url.

Example:

tsx
'use client'
import { type StepNavItem, useStepNav } from '@payloadcms/ui'
import { useEffect } from 'react'

export const MySetStepNavComponent: React.FC<{
  nav: StepNavItem[]
}> = ({ nav }) => {
  const { setStepNav } = useStepNav()

  useEffect(() => {
    setStepNav(nav)
  }, [setStepNav, nav])

  return null
}

usePayloadAPI

The usePayloadAPI hook is a useful tool for making REST API requests to your Payload instance and handling responses reactively. It allows you to fetch and interact with data while automatically updating when parameters change.

This hook returns an array with two elements:

  1. An object containing the API response.
  2. A set of methods to modify request parameters.

Example:

tsx
'use client'
import { usePayloadAPI } from '@payloadcms/ui'

const MyComponent: React.FC = () => {
  // Fetch data from a collection item using its ID
  const [{ data, isError, isLoading }, { setParams }] = usePayloadAPI(
    '/api/posts/123',
    {
      initialParams: { depth: 1 },
    },
  )

  if (isLoading) return <p>Loading...</p>
  if (isError) return <p>Error occurred while fetching data.</p>

  return (
    <div>
      <h1>{data?.title}</h1>
      <button onClick={() => setParams({ cacheBust: Date.now() })}>
        Refresh Data
      </button>
    </div>
  )
}

Arguments:

PropertyDescription
urlThe API endpoint to fetch data from. Relative URLs will be prefixed with the Payload API route.
optionsAn object containing initial request parameters and initial state configuration.

The options argument accepts the following properties:

PropertyDescription
initialDataUses this data instead of making an initial request. If not provided, the request runs immediately.
initialParamsDefines the initial parameters to use in the request. Defaults to an empty object {}.

Returned Value:

The first item in the returned array is an object containing the following properties:

PropertyDescription
dataThe API response data.
isErrorA boolean indicating whether the request failed.
isLoadingA boolean indicating whether the request is in progress.

The second item is an object with the following methods:

PropertyDescription
setParamsUpdates request parameters, triggering a refetch if needed.

Updating Data

The setParams function can be used to update the request and trigger a refetch:

tsx
setParams({ depth: 2 })

This is useful for scenarios where you need to trigger another fetch regardless of the url argument changing.

useRouteTransition

Route transitions are useful in showing immediate visual feedback to the user when navigating between pages. This is especially useful on slow networks when navigating to data heavy or process intensive pages.

By default, any instances of Link from @payloadcms/ui will trigger route transitions by default.

tsx
import { Link } from '@payloadcms/ui'

const MyComponent = () => {
  return <Link href="/somewhere">Go Somewhere</Link>
}

You can also trigger route transitions programmatically, such as when using router.push from next/router. To do this, wrap your function calls with the startRouteTransition method provided by the useRouteTransition hook.

ts
'use client'
import React, { useCallback } from 'react'
import { useTransition } from '@payloadcms/ui'
import { useRouter } from 'next/navigation'

const MyComponent: React.FC = () => {
  const router = useRouter()
  const { startRouteTransition } = useRouteTransition()

  const redirectSomewhere = useCallback(() => {
    startRouteTransition(() => router.push('/somewhere'))
  }, [startRouteTransition, router])

  // ...
}