documentation/docs/ui-integrations/ant-design/hooks/use-modal-form/index.md
The useModalForm hook allows you to manage a form within a <Modal>. It returns Ant Design <Form> and Modal components props.
useModalForm hook is extended from useForm from the @refinedev/antd package. This means that you can use all the features of useForm hook.
We'll show three examples, "create", "edit" and "clone". Let's see how useModalForm is used in all.
<Tabs defaultValue="create" values={[ {label: 'create', value: 'create'}, {label: 'edit', value: 'edit'}, {label: 'clone', value: 'clone'}, ]}>
<TabItem value="create">In this example, we will show you how to create a record with useModalForm.
setInitialRoutes(["/posts"]);
// visible-block-start
import React from "react";
import { List, useModalForm, useTable } from "@refinedev/antd";
import { Form, Input, Modal, Select, Table } from "antd";
const PostList: React.FC = () => {
const { tableProps } = useTable<IPost>();
// highlight-start
const {
modalProps: createModalProps,
formProps: createFormProps,
show: createModalShow,
} = useModalForm<IPost>({
action: "create",
});
// highlight-end
return (
<>
<List
// createButtonProps allows us to create and manage a button above the table.
// This code block makes <Modal> appear when you click the button.
createButtonProps={{
// highlight-start
onClick: () => {
createModalShow();
},
// highlight-end
}}
>
<Table {...tableProps} rowKey="id">
<Table.Column dataIndex="id" title="ID" />
<Table.Column dataIndex="title" title="Title" />
<Table.Column dataIndex="status" title="Status" />
</Table>
</List>
<Modal {...createModalProps}>
<Form {...createFormProps} layout="vertical">
<Form.Item
label="Title"
name="title"
rules={[
{
required: true,
},
]}
>
<Input />
</Form.Item>
<Form.Item
label="Status"
name="status"
rules={[
{
required: true,
},
]}
>
<Select
options={[
{
label: "Published",
value: "published",
},
{
label: "Draft",
value: "draft",
},
{
label: "Rejected",
value: "rejected",
},
]}
/>
</Form.Item>
</Form>
</Modal>
</>
);
};
interface IPost {
id: number;
title: string;
status: "published" | "draft" | "rejected";
}
// visible-block-end
render(
<ReactRouter.BrowserRouter>
<RefineAntdDemo
resources={[
{
name: "posts",
list: "/posts",
},
]}
>
<ReactRouter.Routes>
<ReactRouter.Route
path="/posts"
element={
<div style={{ padding: 16 }}>
<ReactRouter.Outlet />
</div>
}
>
<ReactRouter.Route index element={<PostList />} />
</ReactRouter.Route>
</ReactRouter.Routes>
</RefineAntdDemo>
</ReactRouter.BrowserRouter>,
);
Let's learn how to add editing capabilities to records that will be opening form in Modal by using the action prop.
setInitialRoutes(["/posts"]);
import React from "react";
import { EditButton, List, useModalForm, useTable } from "@refinedev/antd";
import { Form, Input, Modal, Select, Space, Table } from "antd";
const PostList: React.FC = () => {
const { tableProps } = useTable<IPost>();
// highlight-start
const {
modalProps: editModalProps,
formProps: editFormProps,
show: editModalShow,
} = useModalForm<IPost>({
action: "edit",
warnWhenUnsavedChanges: true,
});
// highlight-end
return (
<>
<List>
<Table {...tableProps} rowKey="id">
<Table.Column dataIndex="id" title="ID" />
<Table.Column dataIndex="title" title="Title" />
<Table.Column dataIndex="status" title="Status" />
<Table.Column<IPost>
title="Actions"
dataIndex="actions"
key="actions"
render={(_, record) => (
<Space>
<EditButton
hideText
size="small"
recordItemId={record.id}
onClick={() => editModalShow(record.id)}
/>
</Space>
)}
/>
</Table>
</List>
<Modal {...editModalProps}>
<Form {...editFormProps} layout="vertical">
<Form.Item
label="Title"
name="title"
rules={[
{
required: true,
},
]}
>
<Input />
</Form.Item>
<Form.Item
label="Status"
name="status"
rules={[
{
required: true,
},
]}
>
<Select
options={[
{
label: "Published",
value: "published",
},
{
label: "Draft",
value: "draft",
},
{
label: "Rejected",
value: "rejected",
},
]}
/>
</Form.Item>
</Form>
</Modal>
</>
);
};
interface IPost {
id: number;
title: string;
status: "published" | "draft" | "rejected";
}
// visible-block-end
render(
<ReactRouter.BrowserRouter>
<RefineAntdDemo
resources={[
{
name: "posts",
list: "/posts",
},
]}
>
<ReactRouter.Routes>
<ReactRouter.Route
path="/posts"
element={
<div style={{ padding: 16 }}>
<ReactRouter.Outlet />
</div>
}
>
<ReactRouter.Route index element={<PostList />} />
</ReactRouter.Route>
</ReactRouter.Routes>
</RefineAntdDemo>
</ReactRouter.BrowserRouter>,
);
Refine doesn't automatically add a <EditButton/> to the each record in <PostList> which opens the edit form in <Modal> when clicked.
So, we have to put the <EditButton/> on our list. In that way, <Edit> form in <Modal> can fetch data by the record id.
<Table.Column<IPost>
title="Actions"
dataIndex="actions"
key="actions"
render={(_value, record) => <EditButton onClick={() => show(record.id)} />}
/>
Don't forget to pass the record "id" to show to fetch the record data. This is necessary for both "edit" and "clone" forms.
Let's learn how to add cloning capabilities to records that will be opening form in Modal by using the action prop.
setInitialRoutes(["/posts"]);
import React from "react";
import { CloneButton, List, useModalForm, useTable } from "@refinedev/antd";
import { Form, Input, Modal, Select, Space, Table } from "antd";
const PostList: React.FC = () => {
const { tableProps } = useTable<IPost>();
// highlight-start
const {
modalProps: cloneModalProps,
formProps: cloneFormProps,
show: cloneModalShow,
} = useModalForm<IPost>({
action: "clone",
});
// highlight-end
return (
<>
<List>
<Table {...tableProps} rowKey="id">
<Table.Column dataIndex="id" title="ID" />
<Table.Column dataIndex="title" title="Title" />
<Table.Column dataIndex="status" title="Status" />
<Table.Column<IPost>
title="Actions"
dataIndex="actions"
key="actions"
render={(_, record) => (
<Space>
<CloneButton
hideText
size="small"
recordItemId={record.id}
onClick={() => cloneModalShow(record.id)}
/>
</Space>
)}
/>
</Table>
</List>
<Modal {...cloneModalProps}>
<Form {...cloneFormProps} layout="vertical">
<Form.Item
label="Title"
name="title"
rules={[
{
required: true,
},
]}
>
<Input />
</Form.Item>
<Form.Item
label="Status"
name="status"
rules={[
{
required: true,
},
]}
>
<Select
options={[
{
label: "Published",
value: "published",
},
{
label: "Draft",
value: "draft",
},
{
label: "Rejected",
value: "rejected",
},
]}
/>
</Form.Item>
</Form>
</Modal>
</>
);
};
interface IPost {
id: number;
title: string;
status: "published" | "draft" | "rejected";
}
// visible-block-end
render(
<ReactRouter.BrowserRouter>
<RefineAntdDemo
resources={[
{
name: "posts",
list: "/posts",
},
]}
>
<ReactRouter.Routes>
<ReactRouter.Route
path="/posts"
element={
<div style={{ padding: 16 }}>
<ReactRouter.Outlet />
</div>
}
>
<ReactRouter.Route index element={<PostList />} />
</ReactRouter.Route>
</ReactRouter.Routes>
</RefineAntdDemo>
</ReactRouter.BrowserRouter>,
);
Refine doesn't automatically add a <CloneButton/> to the each record in <PostList> which opens clone form in <Modal> when clicked.
So, we have to put the <CloneButton/> on our list. In that way, <Clone> form in <Modal> can fetch data by the record id.
<Table.Column<IPost>
title="Actions"
dataIndex="actions"
key="actions"
render={(_value, record) => <CloneButton onClick={() => show(record.id)} />}
/>
Don't forget to pass the record id to show to fetch the record data. This is necessary for both "edit" and "clone" forms.
All useForm props are also available in useModalForm. You can find descriptions on the useForm documentation.
When syncWithLocation is true, the drawers visibility state and the id of the record will be synced with the URL. It is false by default.
This property can also be set as an object { key: string; syncId?: boolean } to customize the key of the URL query parameter. id will be synced with the URL only if syncId is true.
const modalForm = useModalForm({
syncWithLocation: { key: "my-modal", syncId: true },
});
Default values for the form. Use this to pre-populate the form with data that needs to be displayed.
useModalForm({
defaultFormValues: {
title: "Hello World",
},
});
Also, it can be provided as an async function to fetch the default values. The loading state can be tracked using the defaultFormValuesLoading state returned from the hook.
🚨 When
actionis "edit" or "clone" a race condition withasync defaultFormValuesmay occur. In this case, the form values will be the result of the last completed operation.
const { defaultFormValuesLoading } = useModalForm({
defaultFormValues: async () => {
const response = await fetch("https://my-api.com/posts/1");
const data = await response.json();
return data;
},
});
When defaultVisible is true, the modal will be visible by default. It is false by default.
const modalForm = useModalForm({
defaultVisible: true,
});
autoSubmitClose will make the modal close after a successful submit. It is true by default.
const modalForm = useModalForm({
autoSubmitClose: false,
});
autoResetForm will reset the form after a successful submit. It is true by default.
const modalForm = useModalForm({
autoResetForm: false,
});
autoResetFormWhenClose will reset the form when modal closes. It is true by default.
const modalForm = useModalForm({
autoResetFormWhenClose: false,
});
When set to true, warnWhenUnsavedChanges shows a warning when the user tries to leave the page with unsaved changes. It is used to prevent the user from accidentally leaving the page. It is false by default
You can also set this value in <Refine> component.
const modalForm = useModalForm({
warnWhenUnsavedChanges: true,
});
If you want loading overtime for the request, you can pass the overtimeOptions prop to the this hook. It is useful when you want to show a loading indicator when the request takes too long.
interval is the time interval in milliseconds. onInterval is the function that will be called on each interval.
Return overtime object from this hook. elapsedTime is the elapsed time in milliseconds. It becomes undefined when the request is completed.
const { overtime } = useModalForm({
//...
overtimeOptions: {
interval: 1000,
onInterval(elapsedInterval) {
console.log(elapsedInterval);
},
},
});
console.log(overtime.elapsedTime); // undefined, 1000, 2000, 3000 4000, ...
// You can use it like this:
{
elapsedTime >= 4000 && <div>this takes a bit longer than expected</div>;
}
If you want to save the form automatically after some delay when user edits the form, you can pass true to autoSave.enabled prop.
By default the autoSave feature does not invalidate queries. However, you can use the invalidateOnUnmount and invalidateOnClose props to invalidate queries upon unmount or close.
It also supports onMutationSuccess and onMutationError callback functions. You can use isAutoSave parameter to determine whether the mutation is triggered by autoSave or not.
autoSave feature operates exclusively in edit mode. Users can take advantage of this feature while editing data, as changes are automatically saved in editing mode. However, when creating new data, manual saving is still required.
onMutationSuccess and onMutationError callbacks will be called after the mutation is successful or failed.
To enable the autoSave feature, set the enabled parameter to true. By default, it is false.
useModalForm({
autoSave: {
enabled: true,
},
});
Set the debounce time for the autoSave prop. By default, it is 1000 milliseconds.
useModalForm({
autoSave: {
enabled: true,
// highlight-next-line
debounce: 2000,
},
});
If you want to modify the data before sending it to the server, you can use onFinish callback function.
useModalForm({
autoSave: {
enabled: true,
// highlight-start
onFinish: (values) => {
return {
foo: "bar",
...values,
};
},
// highlight-end
},
});
This prop is useful when you want to invalidate the list, many and detail queries from the current resource when the hook is unmounted. By default, it invalidates the list, many and detail queries associated with the current resource. Also, You can use the invalidates prop to select which queries to invalidate. By default, it is false.
useModalForm({
autoSave: {
enabled: true,
// highlight-next-line
invalidateOnUnmount: true,
},
});
This prop is useful when you want to invalidate the list, many and detail queries from the current resource when the modal is closed. By default, it invalidates the list, many and detail queries associated with the current resource. Also, You can use the invalidates prop to select which queries to invalidate. By default, it is false.
useModalForm({
autoSave: {
enabled: true,
// highlight-next-line
invalidateOnClose: true,
},
});
useModalForm returns the same values from useForm and additional values to work with <Modal> components.
It's required to manage <Form> state and actions. Under the hood the formProps came from useForm.
It contains the props to manage the Antd <Form> components such as onValuesChange, initialValues, onFieldsChange, onFinish etc.
:::note Difference between onFinish and formProps.onFinish
onFinish method returned directly from useModalForm is same with the useForm's onFinish. When working with modals, closing the modal after submission and resetting the fields are necessary and to handle these, formProps.onFinish extends the onFinish method and handles the closing of the modal and clearing the fields under the hood.
If you're customizing the data before submitting it to your data provider, it's recommended to use formProps.onFinish and let it handle the operations after the submission.
:::
The props needed by the <Modal> component.
Title of the modal. Value is based on resource and action values.
okText is the text of the "submit" button within the modal. It is "Save" by default.
cancelText is the text of the "cancel" button within the modal. It is "Cancel" by default.
Width of the <Modal>. It is 1000px by default.
forceRender renders the <Modal> instead of lazy rendering it. It is true by default.
okButtonProps contains all the props needed by the "submit" button within the modal (disabled,loading etc.). When okButtonProps.onClick is called, it triggers form.submit(). You can manually pass these props to your custom button.
A function that can submit the <Form> inside <Modal>. It's useful when you want to submit the form manually.
Same as
close
A function that can close the <Modal>. It's useful when you want to close the modal manually.
Current visible state of <Modal>. Default value depends on defaultVisible prop.
A function that can close the <Modal>. It's useful when you want to close the modal manually.
const { close, modalProps, formProps, onFinish } = useModalForm();
const onFinishHandler = async (values) => {
// Awaiting `onFinish` is important for features like unsaved changes notifier, invalidation, redirection etc.
// If you're using the `onFinish` from `formProps`, it will call the `close` internally.
await onFinish(values);
close();
};
// ---
return (
<Modal {...modalProps}>
<Form {...formProps} onFinish={onFinishHandler} layout="vertical">
<Form.Item label="Title" name="title">
<Input />
</Form.Item>
</Form>
</Modal>
);
submit is a function that can submit the form. It's useful when you want to submit the form manually.
const { modalProps, formProps, submit } = useModalForm();
// ---
return (
<Modal
{...modalProps}
footer={[
<Button key="submit" type="primary" onClick={submit}>
Submit
</Button>,
]}
>
<Form {...formProps} layout="vertical">
<Form.Item label="Title" name="title">
<Input />
</Form.Item>
</Form>
</Modal>
);
show is a function that can show the modal.
const { modalProps, formProps, show } = useModalForm();
return (
<>
<Button type="primary" onClick={() => show()}>
Show Modal
</Button>
<Modal
{...modalProps}
footer={[
<Button key="submit" type="primary" onClick={submit}>
Submit
</Button>,
]}
>
<Form {...formProps} onFinish={onFinishHandler} layout="vertical">
<Form.Item label="Title" name="title">
<Input />
</Form.Item>
</Form>
</Modal>
</>
);
const { modalProps, formProps } = useModalForm();
// ---
return (
<Modal
{...modalProps}
footer={
<Button
onClick={(
e: React.MouseEvent<HTMLAnchorElement, MouseEvent> &
React.MouseEvent<HTMLButtonElement, MouseEvent>,
) => modalProps.onCancel(e)}
>
Cancel
</Button>
}
>
<Form {...formProps} layout="vertical">
<Form.Item label="Title" name="title">
<Input />
</Form.Item>
</Form>
</Modal>
);
overtime object is returned from this hook. elapsedTime is the elapsed time in milliseconds. It becomes undefined when the request is completed.
const { overtime } = useModalForm();
console.log(overtime.elapsedTime); // undefined, 1000, 2000, 3000 4000, ...
If autoSave is enabled, this hook returns autoSaveProps object with data, error, and status properties from mutation.
If defaultFormValues is an async function, defaultFormValuesLoading will be true until the function is resolved.
Here is an example where we modify the form data before submit:
We need to send the values we received from the user in two separate inputs, name and surname, to the API as fullName.
import { Modal, useModalForm } from "@refinedev/antd";
import { Form, Input } from "antd";
import React from "react";
export const UserCreate: React.FC = () => {
// highlight-start
const { formProps, modalProps } = useModalForm({
action: "create",
});
// highlight-end
// highlight-start
const handleOnFinish = (values) => {
formProps.onFinish?.({
fullName: `${values.name} ${values.surname}`,
});
};
// highlight-end
return (
<Modal {...modalProps}>
// highlight-next-line
<Form {...formProps} onFinish={handleOnFinish} layout="vertical">
<Form.Item label="Name" name="name">
<Input />
</Form.Item>
<Form.Item label="Surname" name="surname">
<Input />
</Form.Item>
</Form>
</Modal>
);
};
*: These props have default values inRefineContextand can also be set on <Refine> component.useModalFormwill use what is passed to<Refine>as default but a local value will override it.
**: If not explicitly configured, default value ofredirectdepends on whichactionused. Ifactioniscreate,redirects default value isedit(created resources edit page). Ifactioniseditinstead,redirects default value islist.
| Property | Description | Type | Default |
|---|---|---|---|
| TQueryFnData | Result data returned by the query function. Extends BaseRecord | BaseRecord | BaseRecord |
| TError | Custom error object that extends HttpError | HttpError | HttpError |
| TVariables | Values for params. | {} | |
| TData | Result data returned by the select function. Extends BaseRecord. If not specified, the value of TQueryFnData will be used as the default value. | BaseRecord | TQueryFnData |
| TResponse | Result data returned by the mutation function. Extends BaseRecord. If not specified, the value of TData will be used as the default value. | BaseRecord | TData |
| TResponseError | Custom error object that extends HttpError. If not specified, the value of TError will be used as the default value. | HttpError | TError |
| Key | Description | Type |
|---|---|---|
| show | A function that can open the modal | (id?: BaseKey) => void |
| formProps | Props needed to manage form component | FormProps |
| modalProps | Props for needed to manage modal component | ModalProps |
| formLoading | Loading status of form | boolean |
| submit | Submit method, the parameter is the value of the form fields | () => void |
| open | Whether the modal dialog is open or not | boolean |
| close | Specify a function that can close the modal | () => void |
| defaultFormValuesLoading | DefaultFormValues loading status of form | boolean |
| form | Ant Design form instance | FormInstance<TVariables> |
| id | Record id for edit action | BaseKey | undefined |
| setId | id setter | Dispatch<SetStateAction< BaseKey | undefined>> |
| query | Result of the query of a record | QueryObserverResult<{ data: TData }> |
| mutation | Result of the mutation triggered by submitting the form | UseMutationResult<{ data: TData }, TError, { resource: string; values: TVariables; }, unknown> |
| overtime | Overtime loading props | { elapsedTime?: number } |
| autoSaveProps | Auto save props | { data: UpdateResponse<TData> | undefined, error: HttpError | null, status: "loading" | "error" | "idle" | "success" } |
| defaultFormValuesLoading | DefaultFormValues loading status of form | boolean |