<Create> provides us a layout to display the page. It does not contain any logic and just adds extra functionalities like action buttons and being able to give titles to the page.
We will show what <Create> does using properties with examples.
title allows you to add a title inside the <Create> component. If you don't pass title props, it uses the "Create" prefix and the singular resource name by default. For example, for the "posts" resource, it will be "Create post".
localhost:3000/posts/create
import{Create}from"@refinedev/chakra-ui"; import{Heading}from"@chakra-ui/react"; constPostCreate:React.FC=()=>{ return( <Createtitle={<Headingsize="lg">Custom Title</Heading>}> <p>Rest of your page here</p> </Create> ); };
The <Create> component has a save button that submits the form by default. If you want to customize this button you can use the saveButtonProps property:
localhost:3000/posts/create
import{Create}from"@refinedev/chakra-ui"; constPostCreate:React.FC=()=>{ return( <CreatesaveButtonProps={{ colorScheme:"red"}}> <p>Rest of your page here</p> </Create> ); };
The <Create> component reads the resource information from the route by default. If you want to use a custom resource for the <Create> component, you can use the resource prop.
localhost:3000/custom
import{Create}from"@refinedev/chakra-ui"; constCustomPage:React.FC=()=>{ return( <Createresource="posts"> <p>Rest of your page here</p> </Create> ); };
To customize or disable the breadcrumb, you can use the breadcrumb property. By default it uses the Breadcrumb component from @refinedev/chakra-ui package.
localhost:3000/posts/create
import{Create,Breadcrumb}from"@refinedev/chakra-ui"; import{Box}from"@chakra-ui/react"; constPostCreate:React.FC=()=>{ return( <Create breadcrumb={ <BoxborderColor="blue"borderStyle="dashed"borderWidth="2px"> <Breadcrumb/> </Box> } > <p>Rest of your page here</p> </Create> ); };
If you want to customize the wrapper of the <Create/> component, you can use the wrapperProps property. For @refinedev/chakra-ui wrapper element is <Card>s and wrapperProps can get every attribute that <Box> can get.
localhost:3000/posts/create
import{Create}from"@refinedev/chakra-ui"; constPostCreate:React.FC=()=>{ return( <Create wrapperProps={{ borderColor:"blue", borderStyle:"dashed", borderWidth:"2px", }} > <p>Rest of your page here</p> </Create> ); };
You can customize the buttons at the header by using the headerButtons property. It accepts React.ReactNode or a render function ({ defaultButtons }) => React.ReactNode which you can use to keep the existing buttons and add your own.
By default, the <Create/> component has a <SaveButton> 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 }) => React.ReactNode which you can use to keep the existing buttons and add your own.