documentation/docs/ui-integrations/ant-design/components/basic-views/create/index.md
<Create> provides us a layout to display the page. It does not contain any logic but adds extra functionalities like action buttons and giving titles to the page.
We will show what <Create> does using properties with examples.
setInitialRoutes(["/posts/create"]);
interface ICategory {
id: number;
title: string;
}
interface IPost {
id: number;
title: string;
content: string;
status: "published" | "draft" | "rejected";
category: { id: number };
}
// visible-block-start
import { Create, useForm, useSelect } from "@refinedev/antd";
import { Form, Input, Select } from "antd";
const PostCreate: React.FC = () => {
const { formProps, saveButtonProps } = useForm<IPost>();
const { selectProps: categorySelectProps } = useSelect<ICategory>({
resource: "categories",
});
return (
<Create saveButtonProps={saveButtonProps}>
<Form {...formProps} layout="vertical">
<Form.Item
label="Title"
name="title"
rules={[
{
required: true,
},
]}
>
<Input />
</Form.Item>
<Form.Item
label="Category"
name={["category", "id"]}
rules={[
{
required: true,
},
]}
>
<Select {...categorySelectProps} />
</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>
</Create>
);
};
// visible-block-end
render(
<ReactRouter.BrowserRouter>
<RefineAntdDemo
resources={[
{
name: "posts",
list: "/posts",
create: "/posts/create",
},
]}
>
<ReactRouter.Routes>
<ReactRouter.Route
path="/posts"
element={
<div style={{ padding: 16 }}>
<ReactRouter.Outlet />
</div>
}
>
<ReactRouter.Route
index
element={
<div>
<p>This page is empty.</p>
<RefineAntd.CreateButton />
</div>
}
/>
<ReactRouter.Route path="create" element={<PostCreate />} />
</ReactRouter.Route>
</ReactRouter.Routes>
</RefineAntdDemo>
</ReactRouter.BrowserRouter>,
);
:::simple Good to know
You can swizzle this component to customize it with the Refine CLI
:::
title allows you to add a title inside the <Create> component. If you don't pass the title props, it uses the "Create" prefix and the singular resource name by default. For example, for the /posts/create resource, it would be "Create post".
setInitialRoutes(["/posts/create"]);
// visible-block-start
import { Create } from "@refinedev/antd";
const PostCreate: React.FC = () => {
return (
/* highlight-next-line */
<Create title="Custom Title">
<p>Rest of your page here</p>
</Create>
);
};
// visible-block-end
render(
<ReactRouter.BrowserRouter>
<RefineAntdDemo
resources={[
{
name: "posts",
list: "/posts",
create: "/posts/create",
},
]}
>
<ReactRouter.Routes>
<ReactRouter.Route
path="/posts"
element={
<div style={{ padding: 16 }}>
<ReactRouter.Outlet />
</div>
}
>
<ReactRouter.Route
index
element={
<div>
<p>This page is empty.</p>
<RefineAntd.CreateButton />
</div>
}
/>
<ReactRouter.Route path="create" element={<PostCreate />} />
</ReactRouter.Route>
</ReactRouter.Routes>
</RefineAntdDemo>
</ReactRouter.BrowserRouter>,
);
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:
setInitialRoutes(["/posts/create"]);
// visible-block-start
import { Create } from "@refinedev/antd";
const PostCreate: React.FC = () => {
return (
/* highlight-next-line */
<Create saveButtonProps={{ size: "small" }}>
<p>Rest of your page here</p>
</Create>
);
};
// visible-block-end
render(
<ReactRouter.BrowserRouter>
<RefineAntdDemo
resources={[
{
name: "posts",
list: "/posts",
create: "/posts/create",
},
]}
>
<ReactRouter.Routes>
<ReactRouter.Route
path="/posts"
element={
<div style={{ padding: 16 }}>
<ReactRouter.Outlet />
</div>
}
>
<ReactRouter.Route
index
element={
<div>
<p>This page is empty.</p>
<RefineAntd.CreateButton />
</div>
}
/>
<ReactRouter.Route path="create" element={<PostCreate />} />
</ReactRouter.Route>
</ReactRouter.Routes>
</RefineAntdDemo>
</ReactRouter.BrowserRouter>,
);
For more information, refer to the
<SaveButton>documentation →
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:
setInitialRoutes(["/posts/create"]);
import { Refine } from "@refinedev/core";
import dataProvider from "@refinedev/simple-rest";
// visible-block-start
import { Create } from "@refinedev/antd";
const CustomPage: React.FC = () => {
return (
/* highlight-next-line */
<Create resource="posts">
<p>Rest of your page here</p>
</Create>
);
};
// visible-block-end
render(
<ReactRouter.BrowserRouter>
<RefineAntdDemo
resources={[
{
name: "posts",
list: "/posts",
create: "/posts/create",
},
]}
>
<ReactRouter.Routes>
<ReactRouter.Route
path="/posts"
element={
<div style={{ padding: 16 }}>
<ReactRouter.Outlet />
</div>
}
>
<ReactRouter.Route
index
element={
<div>
<p>This page is empty.</p>
<RefineAntd.CreateButton />
</div>
}
/>
<ReactRouter.Route path="create" element={<CustomPage />} />
</ReactRouter.Route>
</ReactRouter.Routes>
</RefineAntdDemo>
</ReactRouter.BrowserRouter>,
);
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
identifiersection of the<Refine/>component documentation →
To customize the back button or to disable it, you can use the goBack property:
setInitialRoutes(["/posts/create"]);
// visible-block-start
import { Create } from "@refinedev/antd";
import { Button } from "antd";
const PostCreate: React.FC = () => {
const BackButton = () => <Button>←</Button>;
return (
/* highlight-next-line */
<Create goBack={<BackButton />}>
<p>Rest of your page here</p>
</Create>
);
};
// visible-block-end
render(
<ReactRouter.BrowserRouter>
<RefineAntdDemo
resources={[
{
name: "posts",
list: "/posts",
create: "/posts/create",
},
]}
>
<ReactRouter.Routes>
<ReactRouter.Route
path="/posts"
element={
<div style={{ padding: 16 }}>
<ReactRouter.Outlet />
</div>
}
>
<ReactRouter.Route
index
element={
<div>
<p>This page is empty.</p>
<RefineAntd.CreateButton />
</div>
}
/>
<ReactRouter.Route path="create" element={<PostCreate />} />
</ReactRouter.Route>
</ReactRouter.Routes>
</RefineAntdDemo>
</ReactRouter.BrowserRouter>,
);
If your route has no :action parameter or your action is list, the back button will not be shown even if you pass a goBack property. You can override this behavior by using the headerProps property:
/* highlight-next-line */
import { useBack } from "@refinedev/core";
import { Create } from "@refinedev/antd";
import { Button } from "antd";
const PostCreate: React.FC = () => {
/* highlight-next-line */
const back = useBack();
const BackButton = () => <Button>←</Button>;
return (
/* highlight-next-line */
<Create goBack={<BackButton />} headerProps={{ onBack: back }}>
<p>Rest of your page here</p>
</Create>
);
};
To toggle the loading state of the <Create/> component, you can use the isLoading property:
setInitialRoutes(["/posts/create"]);
// visible-block-start
import { Create } from "@refinedev/antd";
const PostCreate: React.FC = () => {
return (
/* highlight-next-line */
<Create isLoading={true}>
<p>Rest of your page here</p>
</Create>
);
};
// visible-block-end
render(
<ReactRouter.BrowserRouter>
<RefineAntdDemo
resources={[
{
name: "posts",
list: "/posts",
create: "/posts/create",
},
]}
>
<ReactRouter.Routes>
<ReactRouter.Route
path="/posts"
element={
<div style={{ padding: 16 }}>
<ReactRouter.Outlet />
</div>
}
>
<ReactRouter.Route
index
element={
<div>
<p>This page is empty.</p>
<RefineAntd.CreateButton />
</div>
}
/>
<ReactRouter.Route path="create" element={<PostCreate />} />
</ReactRouter.Route>
</ReactRouter.Routes>
</RefineAntdDemo>
</ReactRouter.BrowserRouter>,
);
To customize or disable the breadcrumb, you can use the breadcrumb property. By default the Breadcrumb component from the @refinedev/antd package is used for breadcrumbs.
setInitialRoutes(["/posts/create"]);
// visible-block-start
import { Create, Breadcrumb } from "@refinedev/antd";
const PostCreate: React.FC = () => {
return (
<Create
// highlight-start
breadcrumb={
<div
style={{
padding: "3px 6px",
border: "2px dashed cornflowerblue",
}}
>
<Breadcrumb />
</div>
}
// highlight-end
>
<p>Rest of your page here</p>
</Create>
);
};
// visible-block-end
render(
<ReactRouter.BrowserRouter>
<RefineAntdDemo
resources={[
{
name: "posts",
list: "/posts",
create: "/posts/create",
},
]}
>
<ReactRouter.Routes>
<ReactRouter.Route
path="/posts"
element={
<div style={{ padding: 16 }}>
<ReactRouter.Outlet />
</div>
}
>
<ReactRouter.Route
index
element={
<div>
<p>This page is empty.</p>
<RefineAntd.CreateButton />
</div>
}
/>
<ReactRouter.Route path="create" element={<PostCreate />} />
</ReactRouter.Route>
</ReactRouter.Routes>
</RefineAntdDemo>
</ReactRouter.BrowserRouter>,
);
For more information, refer to the
Breadcrumbdocumentation →
You can use the wrapperProps property if you want to customize the wrapper of the <Create/> component. The @refinedev/antd wrapper elements are simply <div/>s and wrapperProps and can get every attribute that <div/> can get.
setInitialRoutes(["/posts/create"]);
// visible-block-start
import { Create } from "@refinedev/antd";
const PostCreate: React.FC = () => {
return (
<Create
// highlight-start
wrapperProps={{
style: {
backgroundColor: "cornflowerblue",
padding: "16px",
},
}}
// highlight-end
>
<p>Rest of your page here</p>
</Create>
);
};
// visible-block-end
render(
<ReactRouter.BrowserRouter>
<RefineAntdDemo
resources={[
{
name: "posts",
list: "/posts",
create: "/posts/create",
},
]}
>
<ReactRouter.Routes>
<ReactRouter.Route
path="/posts"
element={
<div style={{ padding: 16 }}>
<ReactRouter.Outlet />
</div>
}
>
<ReactRouter.Route
index
element={
<div>
<p>This page is empty.</p>
<RefineAntd.CreateButton />
</div>
}
/>
<ReactRouter.Route path="create" element={<PostCreate />} />
</ReactRouter.Route>
</ReactRouter.Routes>
</RefineAntdDemo>
</ReactRouter.BrowserRouter>,
);
You can use the headerProps property to customize the header of the <Create/> component:
setInitialRoutes(["/posts/create"]);
// visible-block-start
import { Create } from "@refinedev/antd";
const PostCreate: React.FC = () => {
return (
<Create
// highlight-start
headerProps={{
subTitle: "This is a subtitle",
style: {
backgroundColor: "cornflowerblue",
padding: "16px",
},
}}
// highlight-end
>
<p>Rest of your page here</p>
</Create>
);
};
// visible-block-end
render(
<ReactRouter.BrowserRouter>
<RefineAntdDemo
resources={[
{
name: "posts",
list: "/posts",
create: "/posts/create",
},
]}
>
<ReactRouter.Routes>
<ReactRouter.Route
path="/posts"
element={
<div style={{ padding: 16 }}>
<ReactRouter.Outlet />
</div>
}
>
<ReactRouter.Route
index
element={
<div>
<p>This page is empty.</p>
<RefineAntd.CreateButton />
</div>
}
/>
<ReactRouter.Route path="create" element={<PostCreate />} />
</ReactRouter.Route>
</ReactRouter.Routes>
</RefineAntdDemo>
</ReactRouter.BrowserRouter>,
);
For more information, refer to the
PageHeaderdocumentation →
You can use the contentProps property to customize the content of the <Create/> component:
setInitialRoutes(["/posts/create"]);
// visible-block-start
import { Create } from "@refinedev/antd";
const PostCreate: React.FC = () => {
return (
<Create
// highlight-start
contentProps={{
style: {
backgroundColor: "cornflowerblue",
padding: "16px",
},
}}
// highlight-end
>
<p>Rest of your page here</p>
</Create>
);
};
// visible-block-end
render(
<ReactRouter.BrowserRouter>
<RefineAntdDemo
resources={[
{
name: "posts",
list: "/posts",
create: "/posts/create",
},
]}
>
<ReactRouter.Routes>
<ReactRouter.Route
path="/posts"
element={
<div style={{ padding: 16 }}>
<ReactRouter.Outlet />
</div>
}
>
<ReactRouter.Route
index
element={
<div>
<p>This page is empty.</p>
<RefineAntd.CreateButton />
</div>
}
/>
<ReactRouter.Route path="create" element={<PostCreate />} />
</ReactRouter.Route>
</ReactRouter.Routes>
</RefineAntdDemo>
</ReactRouter.BrowserRouter>,
);
For more information, refer to the
Carddocumentation →
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.
setInitialRoutes(["/posts/create"]);
// visible-block-start
import { Create } from "@refinedev/antd";
import { Button } from "antd";
const PostCreate: React.FC = () => {
return (
<Create
// highlight-start
headerButtons={({ defaultButtons }) => (
<>
{defaultButtons}
<Button type="primary">Custom Button</Button>
</>
)}
// highlight-end
>
<p>Rest of your page here</p>
</Create>
);
};
// visible-block-end
render(
<ReactRouter.BrowserRouter>
<RefineAntdDemo
resources={[
{
name: "posts",
list: "/posts",
create: "/posts/create",
},
]}
>
<ReactRouter.Routes>
<ReactRouter.Route
path="/posts"
element={
<div style={{ padding: 16 }}>
<ReactRouter.Outlet />
</div>
}
>
<ReactRouter.Route
index
element={
<div>
<p>This page is empty.</p>
<RefineAntd.CreateButton />
</div>
}
/>
<ReactRouter.Route path="create" element={<PostCreate />} />
</ReactRouter.Route>
</ReactRouter.Routes>
</RefineAntdDemo>
</ReactRouter.BrowserRouter>,
);
You can use the headerButtonProps property to customize the wrapper element of the buttons at the header:
setInitialRoutes(["/posts/create"]);
// visible-block-start
import { Create } from "@refinedev/antd";
import { Button } from "antd";
const PostCreate: React.FC = () => {
return (
<Create
// highlight-start
headerButtonProps={{
style: {
// hide-start
float: "right",
marginRight: 24,
// hide-end
backgroundColor: "cornflowerblue",
padding: "16px",
},
}}
// highlight-end
headerButtons={<Button type="primary">Custom Button</Button>}
>
<p>Rest of your page here</p>
</Create>
);
};
// visible-block-end
render(
<ReactRouter.BrowserRouter>
<RefineAntdDemo
resources={[
{
name: "posts",
list: "/posts",
create: "/posts/create",
},
]}
>
<ReactRouter.Routes>
<ReactRouter.Route
path="/posts"
element={
<div style={{ padding: 16 }}>
<ReactRouter.Outlet />
</div>
}
>
<ReactRouter.Route
index
element={
<div>
<p>This page is empty.</p>
<RefineAntd.CreateButton />
</div>
}
/>
<ReactRouter.Route path="create" element={<PostCreate />} />
</ReactRouter.Route>
</ReactRouter.Routes>
</RefineAntdDemo>
</ReactRouter.BrowserRouter>,
);
For more information, refer to the
Spacedocumentation →
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.
setInitialRoutes(["/posts/create"]);
// visible-block-start
import { Create } from "@refinedev/antd";
import { Button } from "antd";
const PostCreate: React.FC = () => {
return (
<Create
// highlight-start
footerButtons={({ defaultButtons }) => (
<>
{defaultButtons}
<Button type="primary">Custom Button</Button>
</>
)}
// highlight-end
>
<p>Rest of your page here</p>
</Create>
);
};
// visible-block-end
render(
<ReactRouter.BrowserRouter>
<RefineAntdDemo
resources={[
{
name: "posts",
list: "/posts",
create: "/posts/create",
},
]}
>
<ReactRouter.Routes>
<ReactRouter.Route
path="/posts"
element={
<div style={{ padding: 16 }}>
<ReactRouter.Outlet />
</div>
}
>
<ReactRouter.Route
index
element={
<div>
<p>This page is empty.</p>
<RefineAntd.CreateButton />
</div>
}
/>
<ReactRouter.Route path="create" element={<PostCreate />} />
</ReactRouter.Route>
</ReactRouter.Routes>
</RefineAntdDemo>
</ReactRouter.BrowserRouter>,
);
Or, instead of using the defaultButtons, you can create your own buttons. If you want, you can use saveButtonProps to utilize the default values of the <SaveButton> component.
setInitialRoutes(["/posts/create"]);
// visible-block-start
import { Create, SaveButton } from "@refinedev/antd";
import { Button } from "antd";
const PostCreate: React.FC = () => {
return (
<Create
// highlight-start
footerButtons={({ saveButtonProps }) => (
<>
<SaveButton
{...saveButtonProps}
type="primary"
style={{ marginRight: 8 }}
>
Save
</SaveButton>
<Button type="primary">Custom Button</Button>
</>
)}
// highlight-end
>
<p>Rest of your page here</p>
</Create>
);
};
// visible-block-end
render(
<ReactRouter.BrowserRouter>
<RefineAntdDemo
resources={[
{
name: "posts",
list: "/posts",
create: "/posts/create",
},
]}
>
<ReactRouter.Routes>
<ReactRouter.Route
path="/posts"
element={
<div style={{ padding: 16 }}>
<ReactRouter.Outlet />
</div>
}
>
<ReactRouter.Route
index
element={
<div>
<p>This page is empty.</p>
<RefineAntd.CreateButton />
</div>
}
/>
<ReactRouter.Route path="create" element={<PostCreate />} />
</ReactRouter.Route>
</ReactRouter.Routes>
</RefineAntdDemo>
</ReactRouter.BrowserRouter>,
);
You can customize the wrapper element of the buttons at the footer by using the footerButtonProps property.
setInitialRoutes(["/posts/create"]);
// visible-block-start
import { Create } from "@refinedev/antd";
import { Button } from "antd";
const PostCreate: React.FC = () => {
return (
<Create
// highlight-start
footerButtonProps={{
style: {
// hide-start
float: "right",
marginRight: 24,
// hide-end
backgroundColor: "cornflowerblue",
padding: "16px",
},
}}
// highlight-end
>
<p>Rest of your page here</p>
</Create>
);
};
// visible-block-end
render(
<ReactRouter.BrowserRouter>
<RefineAntdDemo
resources={[
{
name: "posts",
list: "/posts",
create: "/posts/create",
},
]}
>
<ReactRouter.Routes>
<ReactRouter.Route
path="/posts"
element={
<div style={{ padding: 16 }}>
<ReactRouter.Outlet />
</div>
}
>
<ReactRouter.Route
index
element={
<div>
<p>This page is empty.</p>
<RefineAntd.CreateButton />
</div>
}
/>
<ReactRouter.Route path="create" element={<PostCreate />} />
</ReactRouter.Route>
</ReactRouter.Routes>
</RefineAntdDemo>
</ReactRouter.BrowserRouter>,
);
For more information, refer to the
Spacedocumentation →
</rewritten_file>