4. Adding Create Page
Create page is the page where you can create the record. In this tutorial, we will create the create page for the products
resource.
Creating Create Page
First, let's create our file under the src/pages/products
folder. We will name it create.tsx
. Then, we will copy the create page code generated by Inferencer and paste it into the file.
To copy the code and paste it into the file, follow the steps below:
Navigate to the localhost:3000/products in your browser.
To open the create page, click the "Create" button in the top right corner of the table.
On the create page, click on the "Show Code" button in the bottom right corner of the page.
You can see the create page code generated by Inferencer. Click on the "Copy" button to copy the code.
Paste the code into the you created,
create.tsx
file.
You can see the create page code generated by Inferencer below:
Instead of coding the create page component from scratch, Inferencer've created the required code base on API response, so that we can customize.
Understanding the Create Component
We will go through the create page components and hooks one by one.
<Create/>
is a refine component that is used to presentation purposes like showing the title of the page, save button etc.<Form/>
and<Form.Item/>
are Ant Design components that are used to build the form.Refer to the Ant Design
<Form/>
documentation for more information →useForm
is a refine hook that provides the necessary props for the form. It also provides thesaveButtonProps
prop that we can pass to the submit button of the form.When you use
useForm
in the create page, it sends the form data todataProvider
'screate
method when the form is submitted.
Handling Relationships
In the create page, we may need to select a record from another resource. For example, we may need to select a category from the categories
resource to assign the product to the category. In this case, we can use the useSelect
hook provided by refine. This hook fetches the data by passing the resource name to the dataProvider
's getList
method. Then, it returns the necessary props for the <Select/>
component.
Refer to the useSelect
documentation for more information →
Refer to the Ant Design <Select/>
documentation for more information →
In the auto-generated create page code, Inferencer used the useSelect
hook to select a category from the categories
resource like below:
const { selectProps: categorySelectProps } = useSelect({
resource: "categories",
});
Adding the Create Page to the App
Now that we have created the create page, we need to add it to the App.tsx
file.
Open
src/App.tsx
file on your editor.Import the created
ProductCreate
component.Replace the
AntdInferencer
component with theProductCreate
component.
import { Refine } from "@refinedev/core";
import {
Layout,
ReadyPage,
notificationProvider,
ErrorComponent,
} from "@refinedev/antd";
import routerBindings, {
UnsavedChangesNotifier,
} from "@refinedev/react-router-v6";
import dataProvider from "@refinedev/simple-rest";
import { BrowserRouter, Routes, Route, Outlet } from "react-router-dom";
import { ProductList } from "pages/products/list";
import { ProductEdit } from "pages/products/edit";
import { productshow } from "pages/products/show";
import { ProductCreate } from "pages/products/create";
import "@refinedev/antd/dist/reset.css";
const App: React.FC = () => {
return (
<BrowserRouter>
<Refine
routerProvider={routerBindings}
dataProvider={dataProvider("https://api.fake-rest.refine.dev")}
notificationProvider={notificationProvider}
resources={[
{
name: "products",
list: "/products",
show: "/products/show/:id",
create: "/products/create",
edit: "/products/edit/:id",
},
]}
options={{
syncWithLocation: true,
warnWhenUnsavedChanges: true,
}}
>
<Routes>
<Route
element={
<Layout>
<Outlet />
</Layout>
}
>
<Route path="products">
<Route index element={<ProductList />} />
<Route path="show/:id" element={<ProductShow />} />
<Route path="create" element={<ProductCreate />} />
<Route path="edit/:id" element={<ProductEdit />} />
</Route>
<Route path="*" element={<ErrorComponent />} />
</Route>
</Routes>
<UnsavedChangesNotifier />
</Refine>
</BrowserRouter>
);
};
export default App;
Now, we can see the create page in the browser at localhost:3000/products/create