documentation/versioned_docs/version-3.xx.xx/tutorial/4-adding-crud-pages/chakra-ui/add-show-page.md
Show page is the page where you can see the record. In this tutorial, we will create the show page for the blog_posts resource.
First, let's create our file under the src/pages/blog-posts folder. We will name it show.tsx. Then, we will copy the show 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 <a href="http://localhost:3000/blog-posts" rel="noopener noreferrer nofollow">localhost:3000/blog-posts</a> in your browser.
To open the show page, click any "Show" button in the "Actions" column of the table.
On the show page, click on the "Show Code" button in the bottom right corner of the page.
You can see the show page code generated by Inferencer. Click on the "Copy" button to copy the code.
Paste the code into the you created, show.tsx file.
You can see the show page code generated by Inferencer below:
setInitialRoutes(["/blog-posts/show/123"]);
import { Refine } from "@pankod/refine-core";
import routerProvider from "@pankod/refine-react-router-v6";
import dataProvider from "@pankod/refine-simple-rest";
import {
ChakraProvider,
ErrorComponent,
Layout,
refineTheme,
ReadyPage,
useNotificationProvider,
} from "@pankod/refine-chakra-ui";
import { ChakraUIInferencer } from "@pankod/refine-inferencer/chakra-ui";
const App = () => {
return (
<ChakraProvider theme={refineTheme}>
<Refine
notificationProvider={notificationProvider()}
routerProvider={routerProvider}
dataProvider={dataProvider("https://api.fake-rest.refine.dev")}
Layout={Layout}
ReadyPage={ReadyPage}
catchAll={<ErrorComponent />}
resources={[
{
name: "blog_posts",
list: ChakraUIInferencer,
show: ChakraUIInferencer,
create: ChakraUIInferencer,
edit: ChakraUIInferencer,
},
]}
/>
</ChakraProvider>
);
};
render(<App />);
Instead of coding the show page component from scratch, Inferencer created the required code base on API response, so that we can customize.
We will go through the show page components and hooks one by one.
<Show/> is a refine component that is used to presentation purposes like showing the title of the page, list button, etc.
Refer to the <Show/> documentation for more information →
useShow is a refine hook that is used to get single record data by using the id in the URL. It sends the parameters to the dataProvider's getOne function and returns the result.
Refer to the useShow documentation for more information →
All other components are Chakra UI components that are used to show the record data.
Refer to the Chakra UI documentation for more information →
In the show page, we have a single record. The record may have relationships with other resources.
For example, the blog_posts resource has a relationship with the categories resource. In this case, we can use the useOne hook provided by refine. This hook allows us to fetch single record data by using the id and resource parameters.
Refer to the useOne documentation for more information →
In the auto-generated show page code, Inferencer used the useOne hook to fetch the category data of the blog post record.
const { data: categoryData, isLoading: categoryIsLoading } = useOne({
resource: "categories",
id: record?.category?.id || "",
});
To ensure that the related data is only fetched after the blog post record has been successfully retrieved, we can use the queryOptions object. By setting the enabled property to true only if the record variable is truthy, we can control when the related data is fetched like below:
const { data: categoryData, isLoading: categoryIsLoading } = useOne({
resource: "categories",
id: record?.category?.id || "",
queryOptions: {
enabled: !!record,
},
});
Now that we have created the show page, we need to add it to the App.tsx file.
Open src/App.tsx file on your editor.
Import the created BlogPostShow component.
Replace the ChakraUIInferencer component with the BlogPostShow component.
import { Refine } from "@pankod/refine-core";
import routerProvider from "@pankod/refine-react-router-v6";
import dataProvider from "@pankod/refine-simple-rest";
import {
ChakraProvider,
ErrorComponent,
Layout,
refineTheme,
ReadyPage,
useNotificationProvider,
} from "@pankod/refine-chakra-ui";
import { ChakraUIInferencer } from "@pankod/refine-inferencer/chakra-ui";
import { BlogPostList } from "pages/blog-posts/list";
import { BlogPostEdit } from "pages/blog-posts/edit";
//highlight-next-line
import { BlogPostShow } from "pages/blog-posts/show";
const App = () => {
return (
<ChakraProvider theme={refineTheme}>
<Refine
notificationProvider={notificationProvider()}
routerProvider={routerProvider}
dataProvider={dataProvider("https://api.fake-rest.refine.dev")}
Layout={Layout}
ReadyPage={ReadyPage}
catchAll={<ErrorComponent />}
resources={[
{
name: "blog_posts",
list: BlogPostList,
edit: BlogPostEdit,
//highlight-next-line
show: BlogPostShow,
create: ChakraUIInferencer,
},
]}
/>
</ChakraProvider>
);
};
export default App;
Now, we can see the show page in the browser at <a href="http://localhost:3000/blog-posts/show/123" rel="noopener noreferrer nofollow">localhost:3000/blog-posts/show/123</a>
<Checklist> <ChecklistItem id="add-show-page-chakra-ui"> I added the show page to the app. </ChecklistItem> <ChecklistItem id="add-show-page-chakra-ui-2"> I understood the show page components and hooks. </ChecklistItem> <ChecklistItem id="add-show-page-chakra-ui-3"> I understood the relationship handling. </ChecklistItem> </Checklist>