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 hooks one by one.
useForm
hook, imported from@refinedev/react-hook-form
package, has been developed by using the React Hook Form anduseForm
hook imported from@refinedev/core
package.It provides all the features of the
useForm
hook from@refinedev/core
package as well as theuseForm
hook from React Hook Form.It also provides the
saveButtonProps
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.Refer to the @refinedev/react-hook-form
useForm
documentation for more information →Refer to the React Hook Form documentation for more information →
useNavigation
is a refine hook that is used to navigate between pages. In this case, we are using it to navigate to thelist
page when user clicks the "Products List" button.Refer to the
useNavigation
documentation for more information →
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 options
to be used in the <select/>
component.
Refer to the useSelect
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 { options: categoryOptions } = 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
HeadlessInferencer
component with theProductCreate
component.
import { Refine } from "@refinedev/core";
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";
const App = () => {
return (
<BrowserRouter>
<Refine
routerProvider={routerBindings}
dataProvider={dataProvider("https://api.fake-rest.refine.dev")}
resources={[
{
name: "products",
list: "/products",
show: "/products/show/:id",
create: "/products/create",
edit: "/products/edit/:id",
},
]}
options={{
syncWithLocation: true,
warnWhenUnsavedChanges: true,
}}
>
<Routes>
<Route path="products">
<Route index element={<ProductList />} />
<Route path="show/:id" element={<ProductShow />} />
<Route path="edit/:id" element={<ProductEdit />} />
<Route path="create" element={<ProductCreate />} />
</Route>
</Routes>
<UnsavedChangesNotifier />
</Refine>
</BrowserRouter>
);
};
export default App;
Now, we can see the create page in the browser at localhost:3000/products/create