Edit
<Edit>
provides us a layout for displaying the page. It does not contain any logic but adds extra functionalities like a refresh button.
We will show what <Edit>
does using properties with examples.
You can swizzle this component to customize it with the refine CLI
Properties
title
It allows adding titles inside the <Edit>
component. if you don't pass title props it uses the "Edit" prefix and singular resource name by default. For example, for the "posts" resource, it will be "Edit post".
saveButtonProps
The <Edit>
component has a save button by default. If you want to customize this button you can use the saveButtonProps
property like the code below.
Clicking on the save button will submit your form.
Refer to the <SaveButton>
documentation for detailed usage. →
canDelete
and deleteButtonProps
canDelete
allows us to add the delete button inside the <Edit>
component. If the resource has the canDelete
property,refine adds the delete button by default. If you want to customize this button you can use the deleteButtonProps
property like the code below.
When clicked on, the delete button executes the useDelete
method provided by the dataProvider
.
Refer to the <DeleteButton>
documentation for detailed usage. →
Refer to the usePermission
documentation for detailed usage. →
resource
<Edit>
component reads the resource
information from the route by default. If you want to use a custom resource for the <Edit>
component, you can use the resource
prop.
recordItemId
The <Edit>
component reads the id
information from the route by default. recordItemId
is used when it cannot read from the URL(when used on a custom page, modal or drawer).
The <Edit>
component needs the id
information for the <RefreshButton>
to work properly.
mutationMode
Determines which mode mutation will have while executing <DeleteButton>
.
Refer to the mutation mode docs for further information. →
dataProviderName
If not specified, Refine will use the default data provider. If you have multiple data providers and want to use a different one, you can use the dataProviderName
property.
import { Refine } from "@refinedev/core";
import dataProvider from "@refinedev/simple-rest";
import { Edit } from "@refinedev/antd";
const PostEdit = () => {
return <Edit dataProviderName="other">...</Edit>;
};
export const App: React.FC = () => {
return (
<Refine
dataProvider={{
default: dataProvider("https://api.fake-rest.refine.dev/"),
other: dataProvider("https://other-api.fake-rest.refine.dev/"),
}}
>
{/* ... */}
</Refine>
);
};
goBack
To customize the back button or to disable it, you can use the goBack
property.
isLoading
To toggle the loading state of the <Edit/>
component, you can use the isLoading
property.
breadcrumb
To customize or disable the breadcrumb, you can use the breadcrumb
property. By default it uses the Breadcrumb
component from @refinedev/antd
package.
Refer to the Breadcrumb
documentation for detailed usage. →
This feature can be managed globally via the <Refine>
component's options
wrapperProps
If you want to customize the wrapper of the <Edit/>
component, you can use the wrapperProps
property. For @refinedev/antd
wrapper elements are simple <div/>
s and wrapperProps
can get every attribute that <div/>
can get.
headerProps
If you want to customize the header of the <Edit/>
component, you can use the headerProps
property.
Refer to the PageHeader
documentation from Ant Design for detailed usage. →
contentProps
If you want to customize the content of the <Edit/>
component, you can use the contentProps
property.
Refer to the Card
documentation from Ant Design for detailed usage. →
headerButtons
By default, the <Edit/>
component has a <ListButton>
and a <RefreshButton>
at the header.
You can customize the buttons at the header by using the headerButtons
property. It accepts React.ReactNode
or a render function ({ defaultButtons, refreshButtonProps, listButtonProps }) => React.ReactNode
which you can use to keep the existing buttons and add your own.
If "list" resource is not defined, the <ListButton>
will not render and listButtonProps
will be undefined
.
Or, instead of using the defaultButtons
, you can create your own buttons. If you want, you can use refreshButtonProps
and listButtonProps
to utilize the default values of the <ListButton>
list-button and <RefreshButton>
refresh-button components.
headerButtonProps
You can customize the wrapper element of the buttons at the header by using the headerButtonProps
property.
Refer to the Space
documentation from Ant Design for detailed usage. →
footerButtons
By default, the <Edit/>
component has a <SaveButton>
and a <DeleteButton>
at the footer.
You can customize the buttons at the footer by using the footerButtons
property. It accepts React.ReactNode
or a render function ({ defaultButtons, saveButtonProps, deleteButtonProps }) => React.ReactNode
which you can use to keep the existing buttons and add your own.
If canDelete
is false
, the <DeleteButton>
will not render and deleteButtonProps
will be undefined
.
Or, instead of using the defaultButtons
, you can create your own buttons. If you want, you can use saveButtonProps
and deleteButtonProps
to utilize the default values of the <SaveButton>
and <DeleteButton>
components.
footerButtonProps
You can customize the wrapper element of the buttons at the footer by using the footerButtonProps
property.
Refer to the Space
documentation from Ant Design for detailed usage. →
API Reference
Properties
*
: These properties have default values inRefineContext
and can also be set on the <Refine> component.