Skip to main content
Version: 4.xx.xx

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 blog_posts resource.

Creating Create Page

First, let's create our file under the src/pages/blog-posts 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:

  1. Navigate to the localhost:3000/blog-posts in your browser.

  2. To open the create page, click the "Create" button in the top right corner of the table.

  3. On the create page, click on the "Show Code" button in the bottom right corner of the page.

  4. You can see the create page code generated by Inferencer. Click on the "Copy" button to copy the code.

  5. Paste the code into the you created, create.tsx file.

You can see the create page code generated by Inferencer below:

http://localhost:3000
setInitialRoutes(['/blog-posts/create'])

import { Refine } from '@refinedev/core'
import { HeadlessInferencer } from '@refinedev/inferencer/headless'
import routerBindings, {
NavigateToResource,
UnsavedChangesNotifier,
} from '@refinedev/react-router-v6'
import dataProvider from '@refinedev/simple-rest'

import { BrowserRouter, Route, Routes } from 'react-router-dom'

const App = () => {
return (
<BrowserRouter>
<Refine
routerProvider={routerBindings}
dataProvider={dataProvider('https://api.fake-rest.refine.dev')}
resources={[
{
name: 'blog_posts',
list: '/blog-posts',
show: '/blog-posts/show/:id',
create: '/blog-posts/create',
edit: '/blog-posts/edit/:id',
},
]}
options={{
syncWithLocation: true,
warnWhenUnsavedChanges: true,
}}
>
<Routes>
<Route index element={<NavigateToResource resource="blog_posts" />} />

<Route path="/blog-posts">
<Route index element={<HeadlessInferencer />} />

<Route path="show/:id" element={<HeadlessInferencer />} />
<Route path="edit/:id" element={<HeadlessInferencer />} />
<Route path="create" element={<HeadlessInferencer />} />
</Route>

<Route path="*" element={<div>Error!</div>} />
</Routes>

<UnsavedChangesNotifier />
</Refine>
</BrowserRouter>
)
}

render(<App />)

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.

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 blog post 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 &#8594

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.

  1. Open src/App.tsx file on your editor.

  2. Import the created BlogPostCreate component.

  3. Replace the HeadlessInferencer component with the BlogPostCreate component.

src/App.tsx
import { Refine } from '@refinedev/core'
import routerBindings, {
NavigateToResource,
UnsavedChangesNotifier,
} from '@refinedev/react-router-v6'
import dataProvider from '@refinedev/simple-rest'

import { BrowserRouter, Route, Routes } from 'react-router-dom'

import { BlogPostEdit } from 'pages/blog-posts/edit'
import { BlogPostList } from 'pages/blog-posts/list'
import { BlogPostShow } from 'pages/blog-posts/show'
import { BlogPostCreate } from 'pages/blog-posts/create'

const App = () => {
return (
<BrowserRouter>
<Refine
routerProvider={routerBindings}
dataProvider={dataProvider('https://api.fake-rest.refine.dev')}
resources={[
{
name: 'blog_posts',
list: '/blog-posts',
show: '/blog-posts/show/:id',
create: '/blog-posts/create',
edit: '/blog-posts/edit/:id',
},
]}
options={{
syncWithLocation: true,
warnWhenUnsavedChanges: true,
}}
>
<Routes>
<Route index element={<NavigateToResource resource="blog_posts" />} />

<Route path="blog-posts">
<Route index element={<BlogPostList />} />
<Route path="show/:id" element={<BlogPostShow />} />
<Route path="edit/:id" element={<BlogPostEdit />} />
<Route path="create" element={<BlogPostCreate />} />
</Route>

<Route path="*" element={<div>Error!</div>} />
</Routes>
<UnsavedChangesNotifier />
</Refine>
</BrowserRouter>
)
}
export default App

Now, we can see the create page in the browser at localhost:3000/blog-posts/create



Checklist