<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.
localhost:3000/posts/edit/123
Show Code Hide Code import { Edit , useForm , useSelect } from "@refinedev/mantine" ; import { Select , TextInput } from "@mantine/core" ; const PostEdit : React . FC = ( ) => { const { saveButtonProps , getInputProps , refineCore : { queryResult } , } = useForm < IPost > ( { initialValues : { title : "" , status : "" , category : { id : "" , } , } , validate : { title : ( value ) => ( value . length < 2 ? "Too short title" : null ) , status : ( value ) => value . length <= 0 ? "Status is required" : null , category : { id : ( value ) => value . length <= 0 ? "Category is required" : null , } , } , } ) ; const postData = queryResult ?. data ?. data ; const { selectProps } = useSelect < ICategory > ( { resource : "categories" , defaultValue : postData ?. category . id , } ) ; return ( < Edit saveButtonProps = { saveButtonProps } > < form > < TextInput mt = { 8 } label = " Title " placeholder = " Title " { ... getInputProps ( "title" ) } /> < Select mt = { 8 } label = " Status " placeholder = " Pick one " { ... getInputProps ( "status" ) } data = { [ { label : "Published" , value : "published" } , { label : "Draft" , value : "draft" } , { label : "Rejected" , value : "rejected" } , ] } /> < Select mt = { 8 } label = " Category " placeholder = " Pick one " { ... getInputProps ( "category.id" ) } { ... selectProps } /> </ form > </ Edit > ) ; } ;
You can swizzle this component to customize it with the refine CLI
Propertiesβ 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".
localhost:3000/posts/edit/123
Show Code Hide Code import { Edit } from "@refinedev/mantine" ; import { Title } from "@mantine/core" ; const PostEdit : React . FC = ( ) => { return ( < Edit title = { < Title order = { 3 } > Custom Title </ Title > } > < p > Rest of your page here </ p > </ Edit > ) ; } ;
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. β
localhost:3000/posts/edit/123
Show Code Hide Code import { Edit } from "@refinedev/mantine" ; const PostEdit : React . FC = ( ) => { return ( < Edit saveButtonProps = { { size : "xs" } } > < p > Rest of your page here </ p > </ Edit > ) ; } ;
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. β
localhost:3000/posts/edit/123
Show Code Hide Code import { Edit } from "@refinedev/mantine" ; import { usePermissions } from "@refinedev/core" ; const PostEdit : React . FC = ( ) => { const { data : permissionsData } = usePermissions ( ) ; return ( < Edit canDelete = { permissionsData ?. includes ( "admin" ) } deleteButtonProps = { { size : "xs" } } saveButtonProps = { { variant : "outline" , size : "xs" } } > < p > Rest of your page here </ p > </ Edit > ) ; } ;
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.
Show Code Hide Code import { Edit } from "@refinedev/mantine" ; const CustomPage : React . FC = ( ) => { return ( < Edit resource = " categories " > < p > Rest of your page here </ p > </ Edit > ) ; } ;
If you have multiple resources with the same name, you can pass the identifier
instead of the name
of the resource. It will only be used as the main matching key for the resource, data provider methods will still work with the name
of the resource defined in the <Refine/>
component.
For more information, refer to the identifier
of the <Refine/>
component documentation β
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).
localhost:3000/posts/edit/123
Show Code Hide Code import { Edit , useModalForm } from "@refinedev/mantine" ; import { Modal , Button } from "@mantine/core" ; const PostEdit : React . FC = ( ) => { const { modal : { visible , close , show } , id , } = useModalForm ( { action : "edit" , } ) ; return ( < div > < Button onClick = { ( ) => show ( ) } > Edit Button </ Button > < Modal opened = { visible } onClose = { close } size = { 700 } withCloseButton = { false } > < Edit recordItemId = { id } > < p > Rest of your page here </ p > </ Edit > </ Modal > </ div > ) ; } ;
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. β
localhost:3000/posts/edit/123
Show Code Hide Code import { Edit , useForm } from "@refinedev/mantine" ; import { TextInput } from "@mantine/core" ; const PostEdit : React . FC = ( ) => { const { saveButtonProps , getInputProps } = useForm < IPost > ( { initialValues : { title : "" , } , validate : { title : ( value ) => ( value . length < 2 ? "Too short title" : null ) , } , } ) ; return ( < Edit mutationMode = " undoable " canDelete saveButtonProps = { saveButtonProps } > < form > < TextInput mt = { 8 } label = " Title " placeholder = " Title " { ... getInputProps ( "title" ) } /> </ form > </ Edit > ) ; } ;
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/mantine" ; 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 > ) ; } ;
To customize the back button or to disable it, you can use the goBack
property. You can pass false
or null
to hide the back button.
localhost:3000/posts/edit/123
Show Code Hide Code import { Edit } from "@refinedev/mantine" ; const PostEdit : React . FC = ( ) => { return ( < Edit goBack = " π " > < p > Rest of your page here 2 </ p > </ Edit > ) ; } ;
isLoading
β To toggle the loading state of the <Edit/>
component, you can use the isLoading
property.
localhost:3000/posts/edit/123
Show Code Hide Code import { Edit } from "@refinedev/mantine" ; const PostEdit : React . FC = ( ) => { return ( < Edit isLoading = { true } > < p > Rest of your page here </ p > </ Edit > ) ; } ;
breadcrumb
β To customize or disable the breadcrumb, you can use the breadcrumb
property. By default it uses the Breadcrumb
component from @refinedev/mantine
package.
Refer to the Breadcrumb
documentation for detailed usage. β
This feature can be managed globally via the <Refine>
component's options
localhost:3000/posts/edit/123
Show Code Hide Code import { Edit , Breadcrumb } from "@refinedev/mantine" ; const PostEdit : React . FC = ( ) => { return ( < Edit breadcrumb = { < div style = { { padding : "3px 6px" , border : "2px dashed cornflowerblue" , } } > < Breadcrumb /> </ div > } > < p > Rest of your page here </ p > </ Edit > ) ; } ;
wrapperProps
β If you want to customize the wrapper of the <Edit/>
component, you can use the wrapperProps
property. For @refinedev/mantine
wrapper element is <Card>
s and wrapperProps
can get every attribute that <Card>
can get.
Refer to the Card
documentation from Mantine for detailed usage. β
localhost:3000/posts/edit/123
Show Code Hide Code import { Edit } from "@refinedev/mantine" ; const PostEdit : React . FC = ( ) => { return ( < Edit wrapperProps = { { style : { border : "2px dashed cornflowerblue" , padding : "16px" , } , } } > < p > Rest of your page here </ p > </ Edit > ) ; } ;
If you want to customize the header of the <Edit/>
component, you can use the headerProps
property.
Refer to the Group
documentation from Mantine for detailed usage. β
localhost:3000/posts/edit/123
Show Code Hide Code import { Edit } from "@refinedev/mantine" ; const PostEdit : React . FC = ( ) => { return ( < Edit headerProps = { { style : { border : "2px dashed cornflowerblue" , padding : "16px" , } , } } > < p > Rest of your page here </ p > </ Edit > ) ; } ;
contentProps
β If you want to customize the content of the <Edit/>
component, you can use the contentProps
property.
Refer to the Box
documentation from Mantine for detailed usage. β
localhost:3000/posts/edit/123
Show Code Hide Code import { Edit } from "@refinedev/mantine" ; const PostEdit : React . FC = ( ) => { return ( < Edit contentProps = { { style : { border : "2px dashed cornflowerblue" , padding : "16px" , } , } } > < p > Rest of your page here </ p > </ Edit > ) ; } ;
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
.
localhost:3000/posts/edit/123
Show Code Hide Code import { Edit } from "@refinedev/mantine" ; import { Button } from "@mantine/core" ; const PostEdit : React . FC = ( ) => { return ( < Edit headerButtons = { ( { defaultButtons } ) => ( < > { defaultButtons } < Button variant = " outline " type = " primary " > Custom Button </ Button > </ > ) } > < p > Rest of your page here </ p > </ Edit > ) ; } ;
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>
and <RefreshButton>
components.
localhost:3000/posts/edit/123
Show Code Hide Code import { Edit , RefreshButton , ListButton } from "@refinedev/mantine" ; import { Button } from "@mantine/core" ; const PostEdit : React . FC = ( ) => { return ( < Edit headerButtons = { ( { refreshButtonProps , listButtonProps } ) => ( < > < RefreshButton { ... refreshButtonProps } meta = { { foo : "bar" } } /> { listButtonProps && ( < ListButton { ... listButtonProps } meta = { { foo : "bar" } } /> ) } < Button variant = " outline " type = " primary " > Custom Button </ Button > </ > ) } > < p > Rest of your page here </ p > </ Edit > ) ; } ;
You can customize the wrapper element of the buttons at the header by using the headerButtonProps
property.
Refer to the Group
documentation from Mantine for detailed usage. β
localhost:3000/posts/edit/123
Show Code Hide Code import { Edit } from "@refinedev/mantine" ; import { Modal , Button } from "@mantine/core" ; const PostEdit : React . FC = ( ) => { return ( < Edit headerButtonProps = { { style : { border : "2px dashed cornflowerblue" , padding : "16px" , } , } } headerButtons = { < Button variant = " outline " type = " primary " > Custom Button </ Button > } > < p > Rest of your page here </ p > </ Edit > ) ; } ;
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.
localhost:3000/posts/edit/123
Show Code Hide Code import { Edit } from "@refinedev/mantine" ; import { Button } from "@mantine/core" ; const PostEdit : React . FC = ( ) => { return ( < Edit footerButtons = { ( { defaultButtons } ) => ( < > { defaultButtons } < Button variant = " gradient " > Custom Button </ Button > </ > ) } > < p > Rest of your page here </ p > </ Edit > ) ; } ;
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.
localhost:3000/posts/edit/123
Show Code Hide Code import { Edit , SaveButton , DeleteButton } from "@refinedev/mantine" ; import { Button } from "@mantine/core" ; const PostEdit : React . FC = ( ) => { return ( < Edit footerButtons = { ( { saveButtonProps , deleteButtonProps } ) => ( < > < SaveButton { ... saveButtonProps } hideText /> { deleteButtonProps && ( < DeleteButton { ... deleteButtonProps } hideText /> ) } < Button variant = " gradient " > Custom Button </ Button > </ > ) } > < p > Rest of your page here </ p > </ Edit > ) ; } ;
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. β
localhost:3000/posts/edit/123
Show Code Hide Code import { Edit } from "@refinedev/mantine" ; const PostEdit : React . FC = ( ) => { return ( < Edit footerButtonProps = { { style : { float : "right" , marginRight : 24 , border : "2px dashed cornflowerblue" , padding : "16px" , } , } } > < p > Rest of your page here </ p > </ Edit > ) ; } ;
autoSaveProps
β You can use the auto save feature of the <Edit/>
component by using the autoSaveProps
property.
localhost:3000/posts/edit/123
Show Code Hide Code const PostEdit : React . FC = ( ) => { const { saveButtonProps , getInputProps , refineCore : { queryResult , autoSaveProps , } , } = useForm < IPost > ( { initialValues : { title : "" , status : "" , category : { id : "" , } , } , validate : { title : ( value ) => ( value . length < 2 ? "Too short title" : null ) , status : ( value ) => value . length <= 0 ? "Status is required" : null , category : { id : ( value ) => value . length <= 0 ? "Category is required" : null , } , } , refineCoreProps : { autoSave : { enabled : true , } , } , } ) ; const postData = queryResult ?. data ?. data ; const { selectProps } = useSelect < ICategory > ( { resource : "categories" , defaultValue : postData ?. category . id , } ) ; return ( < Edit saveButtonProps = { saveButtonProps } autoSaveProps = { autoSaveProps } > < form > < TextInput mt = { 8 } label = " Title " placeholder = " Title " { ... getInputProps ( "title" ) } /> < Select mt = { 8 } label = " Status " placeholder = " Pick one " { ... getInputProps ( "status" ) } data = { [ { label : "Published" , value : "published" } , { label : "Draft" , value : "draft" } , { label : "Rejected" , value : "rejected" } , ] } /> < Select mt = { 8 } label = " Category " placeholder = " Pick one " { ... getInputProps ( "category.id" ) } { ... selectProps } /> </ form > </ Edit > ) ; } ;
API Referenceβ