Skip to main content

UseDialog

import { useDialog } from 'react-dialog-async';

A hook that takes in a dialog component and then returns methods for interacting with the dialog.

Usage

const exampleDialog = useDialog(ExampleDialog);

const onClick = async () => {
await exampleDialog.show();
}

Dialog Options

Available from v2.1.0

useDialog also optionally takes in a second argument for dialog options useDialogOptions

const myDialog = useDialog(MyDialog, {
// Pass options here
});

Available options are:

  • defaultData - Default data to pass to the dialog component. Specifying this makes passing data to .show() optional, but data passed to .show() will still override the default data.
  • unmountDelayInMs - Specify a delay in milliseconds to wait before unmounting the dialog component after it is closed. See the animations section for more information.
  • customKey - By default, only one instance of a dialog component is stored internally, regardless of how many places it is used with useDialog. If this behaviour is not desired, a customKey can be specified to create a new instance of the dialog component.
  • hideOnHookUnmount - If set to false, the dialog will not be hidden when the hook is unmounted. This can be useful if you want to open a dialog from a component that is short-lived, like a toast or tooltip.

Return Type

The object returned by useDialog has the following properties:

  • show - A function that shows the dialog. It takes in data to make available to the dialog component, and returns a promise that resolves to data returned by the dialog
  • hide - A function for manually closing the dialog. You don't need to call this unless you need to forcefully close the dialog
  • updateData - A function for updating the data available to the dialog. This can be useful if you need to update the data after the dialog has been opened
  • open - Alias for show
  • close - Alias for hide

Source

Source for useDialog on GitHub