Show
<Show> provides us a layout for displaying the page. It does not contain any logic and just adds extra functionalities like a refresh button or giving title to the page.
We will show what <Show> does using properties with examples.
// visible-block-start
import React from "react";
import { useShow, useOne } from "@refinedev/core";
import {
Show,
NumberField,
TextFieldComponent as TextField,
MarkdownField,
DateField,
} from "@refinedev/mui";
import { Stack, Typography } from "@mui/material";
const SampleShow = () => {
const { queryResult } = useShow();
const { data, isLoading } = queryResult;
const record = data?.data;
const { data: categoryData, isLoading: categoryIsLoading } = useOne({
resource: "categories",
id: record?.category?.id || "",
queryOptions: {
enabled: !!record,
},
});
return (
<Show isLoading={isLoading}>
<Stack gap={1}>
<Typography variant="body1" fontWeight="bold">
Id
</Typography>
<NumberField value={record?.id ?? ""} />
<Typography variant="body1" fontWeight="bold">
Title
</Typography>
<TextField value={record?.title} />
<Typography variant="body1" fontWeight="bold">
Content
</Typography>
<MarkdownField value={record?.content} />
<Typography variant="body1" fontWeight="bold">
Category
</Typography>
{categoryIsLoading ? <>Loading...</> : <>{categoryData?.data?.title}</>}
<Typography variant="body1" fontWeight="bold">
Created At
</Typography>
<DateField value={record?.createdAt} />
</Stack>
</Show>
);
};
// visible-block-end
render(
<RefineMuiDemo
initialRoutes={["/samples/show/123"]}
resources={[{ name: "samples", show: SampleShow, list: SampleList }]}
/>,
);
You can swizzle this component with the Refine CLI to customize it.
Properties
title
title allows the addition of titles inside the <Show> component. if you don't pass title props it uses the "Show" prefix and the singular resource name by default. For example, for the "posts" resource, it would be "Show post".
// visible-block-start
import { Show } from "@refinedev/mui";
import { Typography } from "@mui/material";
const ShowPage: React.FC = () => {
return (
<Show
title={<Typography variant="h5">Custom Title</Typography>}
>
<span>Rest of your page here</span>
</Show>
);
};
// visible-block-end
render(
<RefineMuiDemo
initialRoutes={["/posts/show/123"]}
resources={[
{
name: "posts",
list: () => (
<div>
<p>This page is empty.</p>
<RefineMui.ShowButton recordItemId="123" />
</div>
),
show: ShowPage,
},
]}
/>,
);
resource
The <Show> component reads the resource information from the route by default. If you want to use a custom resource for the <Show> component, you can use the resource prop.
// handle initial routes in new way
setInitialRoutes(["/custom"]);
import { Refine } from "@refinedev/core";
import { Layout } from "@refinedev/mui";
import routerProvider from "@refinedev/react-router-v6/legacy";
import dataProvider from "@refinedev/simple-rest";
// visible-block-start
import { Show } from "@refinedev/mui";
const CustomPage: React.FC = () => {
return (
<Show resource="posts" recordItemId={123}>
<span>Rest of your page here</span>
</Show>
);
};
// visible-block-end
const App: React.FC = () => {
return (
<Refine
legacyRouterProvider={{
...routerProvider,
routes: [
{
element: <CustomPage />,
path: "/custom",
},
],
}}
Layout={Layout}
dataProvider={dataProvider("https://api.fake-rest.refine.dev")}
resources={[{ name: "posts" }]}
/>
);
};
render(
<Wrapper>
<App />
</Wrapper>,
);
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
identifierof the<Refine/>component documentation →
canDelete and canEdit
canDelete and canEdit allows us to add the delete and edit buttons inside the <Show> component. If the resource has canDelete or canEdit property Refine adds the buttons by default.
When clicked on, delete button executes the useDelete method provided by the dataProvider and the edit button redirects the user to the record edit page.
const { default: simpleRest } = RefineSimpleRest;
const dataProvider = simpleRest("https://api.fake-rest.refine.dev");
const customDataProvider = {
...dataProvider,
deleteOne: async ({ resource, id, variables }) => {
return {
data: {},
};
},
};
const authProvider = {
login: async () => {
return {
success: true,
redirectTo: "/",
};
},
register: async () => {
return {
success: true,
};
},
forgotPassword: async () => {
return {
success: true,
};
},
updatePassword: async () => {
return {
success: true,
};
},
logout: async () => {
return {
success: true,
redirectTo: "/",
};
},
check: async () => ({
authenticated: true,
}),
onError: async (error) => {
console.error(error);
return { error };
},
getPermissions: async () => ["admin"],
getIdentity: async () => null,
};
// visible-block-start
import { Show } from "@refinedev/mui";
import { usePermissions } from "@refinedev/core";
const PostShow: React.FC = () => {
const { data: permissionsData } = usePermissions();
return (
<Show
canDelete={permissionsData?.includes("admin")}
canEdit={
permissionsData?.includes("editor") ||
permissionsData?.includes("admin")
}
>
<p>Rest of your page here</p>
</Show>
);
};
// visible-block-end
render(
<RefineMuiDemo
authProvider={authProvider}
dataProvider={customDataProvider}
initialRoutes={["/posts/show/123"]}
Layout={RefineMui.Layout}
resources={[
{
name: "posts",
list: () => (
<div>
<p>This page is empty.</p>
<RefineMui.ShowButton recordItemId="123" />
</div>
),
show: PostShow,
},
]}
/>,
);
For more information, refer to the
<DeleteButton>→,<EditButton>→ andusePermission→ documentations.
recordItemId
<Show> component reads the id information from the route by default. recordItemId is used when it cannot read from the URL (when used on a custom page, modal or drawer).
// handle initial routes in new way
setInitialRoutes(["/custom"]);
import { Refine } from "@refinedev/core";
import { Layout } from "@refinedev/mui";
import routerProvider from "@refinedev/react-router-v6/legacy";
import dataProvider from "@refinedev/simple-rest";
// visible-block-start
import { Show } from "@refinedev/mui";
const CustomPage: React.FC = () => {
return (
<Show resource="posts" recordItemId={123}>
<span>Rest of your page here</span>
</Show>
);
};
// visible-block-end
const App: React.FC = () => {
return (
<Refine
legacyRouterProvider={{
...routerProvider,
routes: [
{
element: <CustomPage />,
path: "/custom",
},
],
}}
Layout={Layout}
dataProvider={dataProvider("https://api.fake-rest.refine.dev")}
resources={[{ name: "posts" }]}
/>
);
};
render(
<Wrapper>
<App />
</Wrapper>,
);
<Show> component needs the id information for <RefreshButton> to work properly.
dataProviderName
If not specified, Refine will use the default data provider. If you have multiple data providers and want to use a different one, you can use the dataProviderName property.
import { Refine } from "@refinedev/core";
import dataProvider from "@refinedev/simple-rest";
import { Show } from "@refinedev/mui";
const PostShow = () => {
return <Show dataProviderName="other">...</Show>;
};
export const App: React.FC = () => {
return (
<Refine
dataProvider={{
default: dataProvider("https://api.fake-rest.refine.dev/"),
other: dataProvider("https://other-api.fake-rest.refine.dev/"),
}}
>
{/* ... */}
</Refine>
);
};
goBack
To customize the back button or to disable it, you can use the goBack property.
import { useNavigation } from "@refinedev/core";
const RealBackButton = () => {
const { goBack } = useNavigation();
return <Button onClick={goBack}>BACK!</Button>;
};
const RealPostShow: React.FC = () => {
return (
<Show
goBack={<RealBackButton />}
>
<span>Rest of your page here</span>
</Show>
);
};
// visible-block-start
import { Show } from "@refinedev/mui";
import { Button } from "@mui/material";
import { useBack } from "@refinedev/core";
const BackButton = () => {
const goBack = useBack();
return <Button onClick={goBack}>BACK!</Button>;
};
const PostShow: React.FC = () => {
return (
<Show
goBack={<BackButton />}
>
<span>Rest of your page here</span>
</Show>
);
};
// visible-block-end
render(
<RefineMuiDemo
initialRoutes={["/posts", "/posts/show/123"]}
resources={[
{
name: "posts",
list: () => (
<div>
<p>This page is empty.</p>
<RefineMui.ShowButton recordItemId={123} />
</div>
),
show: RealPostShow,
},
]}
/>,
);
isLoading
To toggle the loading state of the <Show/> component, you can use the isLoading property.
// visible-block-start
import { Show } from "@refinedev/mui";
const PostShow: React.FC = () => {
const [loading, setLoading] = React.useState(true);
return (
<Show
isLoading={loading}
>
<span>Rest of your page here</span>
</Show>
);
};
// visible-block-end
render(
<RefineMuiDemo
initialRoutes={["/posts", "/posts/show/123"]}
resources={[
{
name: "posts",
list: () => (
<div>
<p>This page is empty.</p>
<RefineMui.ShowButton recordItemId={123} />
</div>
),
show: PostShow,
},
]}
/>,
);
breadcrumb Globally ConfigurableThis value can be configured globally. Click to see the guide for more information.
To customize or disable the breadcrumb, you can use the breadcrumb property. By default it uses the Breadcrumb component from @refinedev/mui package.
// visible-block-start
import { Show, Breadcrumb } from "@refinedev/mui";
const PostShow: React.FC = () => {
return (
<Show
breadcrumb={
<div
style={{
padding: "3px 6px",
border: "2px dashed cornflowerblue",
}}
>
<Breadcrumb />
</div>
}
>
<span>Rest of your page here</span>
</Show>
);
};
// visible-block-end
render(
<RefineMuiDemo
initialRoutes={["/posts", "/posts/show/123"]}
resources={[
{
name: "posts",
list: () => (
<div>
<p>This page is empty.</p>
<RefineMui.ShowButton recordItemId={123} />
</div>
),
show: PostShow,
},
]}
/>,
);
For more information, refer to the
Breadcrumbdocumentation →
wrapperProps
If you want to customize the wrapper of the <Show/> component, you can use the wrapperProps property.
// visible-block-start
import { Show } from "@refinedev/mui";
const PostShow: React.FC = () => {
const [loading, setLoading] = React.useState(true);
return (
<Show
wrapperProps={{
sx: {
backgroundColor: "lightsteelblue",
},
}}
>
<span>Rest of your page here</span>
</Show>
);
};
// visible-block-end
render(
<RefineMuiDemo
initialRoutes={["/posts", "/posts/show/123"]}
resources={[
{
name: "posts",
list: () => (
<div>
<p>This page is empty.</p>
<RefineMui.ShowButton recordItemId={123} />
</div>
),
show: PostShow,
},
]}
/>,
);
For more information, refer to the
Carddocumentation from Material UI →
headerProps
If you want to customize the header of the <Show/> component, you can use the headerProps property.
// visible-block-start
import { Show } from "@refinedev/mui";
const PostShow: React.FC = () => {
const [loading, setLoading] = React.useState(true);
return (
<Show
headerProps={{
sx: {
backgroundColor: "lightsteelblue",
},
}}
>
<span>Rest of your page here</span>
</Show>
);
};
// visible-block-end
render(
<RefineMuiDemo
initialRoutes={["/posts", "/posts/show/123"]}
resources={[
{
name: "posts",
list: () => (
<div>
<p>This page is empty.</p>
<RefineMui.ShowButton recordItemId={123} />
</div>
),
show: PostShow,
},
]}
/>,
);
For more information, refer to the
CardHeaderdocumentation from Material UI →
contentProps
If you want to customize the content of the <Show/> component, you can use the contentProps property.
// visible-block-start
import { Show } from "@refinedev/mui";
const PostShow: React.FC = () => {
const [loading, setLoading] = React.useState(true);
return (
<Show
contentProps={{
sx: {
backgroundColor: "lightsteelblue",
},
}}
>
<span>Rest of your page here</span>
</Show>
);
};
// visible-block-end
render(
<RefineMuiDemo
initialRoutes={["/posts", "/posts/show/123"]}
resources={[
{
name: "posts",
list: () => (
<div>
<p>This page is empty.</p>
<RefineMui.ShowButton recordItemId={123} />
</div>
),
show: PostShow,
},
]}
/>,
);
For more information, refer to the
CardContentdocumentation from Material UI →
headerButtons
By default, the <Show/> component has a <ListButton>, <EditButton>, <DeleteButton>, and, <RefreshButton> at the header.
You can customize the buttons at the header by using the headerButtons property. It accepts React.ReactNode or a render function ({ defaultButtons, deleteButtonProps, editButtonProps, listButtonProps, refreshButtonProps }) => React.ReactNode which you can use to keep the existing buttons and add your own.
If "list" resource is not defined, the <ListButton> will not render and listButtonProps will be undefined.
If canDelete is false, the <DeleteButton> will not render and deleteButtonProps will be undefined.
If canEdit is false, <EditButton> will not render and editButtonProps will be undefined.
// visible-block-start
import { Show } from "@refinedev/mui";
import { Button } from "@mui/material";
const PostShow: React.FC = () => {
const [loading, setLoading] = React.useState(true);
return (
<Show
headerButtons={({ defaultButtons }) => (
<>
{defaultButtons}
<Button type="primary">Custom Button</Button>
</>
)}
>
<span>Rest of your page here</span>
</Show>
);
};
// visible-block-end
render(
<RefineMuiDemo
initialRoutes={["/posts", "/posts/show/123"]}
resources={[
{
name: "posts",
list: () => (
<div>
<p>This page is empty.</p>
<RefineMui.ShowButton recordItemId={123} />
</div>
),
show: PostShow,
},
]}
/>,
);
Or, instead of using the defaultButtons, you can create your own buttons. If you want, you can use createButtonProps to utilize the default values of the <ListButton>, <EditButton>, <DeleteButton>, and, <RefreshButton> components.
// visible-block-start
import {
Show,
ListButton,
EditButton,
DeleteButton,
RefreshButton,
} from "@refinedev/mui";
import { Button } from "@mui/material";
const PostShow: React.FC = () => {
const [loading, setLoading] = React.useState(true);
return (
<Show
headerButtons={({
deleteButtonProps,
editButtonProps,
listButtonProps,
refreshButtonProps,
}) => (
<>
<Button type="primary">Custom Button</Button>
{listButtonProps && (
<ListButton {...listButtonProps} meta={{ foo: "bar" }} />
)}
{editButtonProps && (
<EditButton {...editButtonProps} meta={{ foo: "bar" }} />
)}
{deleteButtonProps && (
<DeleteButton {...deleteButtonProps} meta={{ foo: "bar" }} />
)}
<RefreshButton {...refreshButtonProps} meta={{ foo: "bar" }} />
</>
)}
>
<span>Rest of your page here</span>
</Show>
);
};
// visible-block-end
render(
<RefineMuiDemo
initialRoutes={["/posts", "/posts/show/123"]}
resources={[
{
name: "posts",
list: () => (
<div>
<p>This page is empty.</p>
<RefineMui.ShowButton recordItemId={123} />
</div>
),
show: PostShow,
},
]}
/>,
);
headerButtonProps
You can customize the wrapper element of the buttons at the header by using the headerButtonProps property.
// visible-block-start
import { Show } from "@refinedev/mui";
import { Button } from "@mui/material";
const PostShow: React.FC = () => {
const [loading, setLoading] = React.useState(true);
return (
<Show
headerButtonProps={{
sx: {
backgroundColor: "lightsteelblue",
},
}}
headerButtons={({ defaultButtons }) => (
<>
{defaultButtons}
<Button type="primary">Custom Button</Button>
</>
)}
>
<span>Rest of your page here</span>
</Show>
);
};
// visible-block-end
render(
<RefineMuiDemo
initialRoutes={["/posts", "/posts/show/123"]}
resources={[
{
name: "posts",
list: () => (
<div>
<p>This page is empty.</p>
<RefineMui.ShowButton recordItemId={123} />
</div>
),
show: PostShow,
},
]}
/>,
);
For more information, refer to the
Boxdocumentation from Material UI →
footerButtons
You can customize the buttons at the footer by using the footerButtons 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.
// visible-block-start
import { Show } from "@refinedev/mui";
import { Button } from "@mui/material";
const PostShow: React.FC = () => {
const [loading, setLoading] = React.useState(true);
return (
<Show
footerButtons={({ defaultButtons }) => (
<>
{defaultButtons}
<Button type="primary">Custom Button</Button>
</>
)}
>
<span>Rest of your page here</span>
</Show>
);
};
// visible-block-end
render(
<RefineMuiDemo
initialRoutes={["/posts", "/posts/show/123"]}
resources={[
{
name: "posts",
list: () => (
<div>
<p>This page is empty.</p>
<RefineMui.ShowButton recordItemId={123} />
</div>
),
show: PostShow,
},
]}
/>,
);
footerButtonProps
You can customize the wrapper element of the buttons at the footer by using the footerButtonProps property.
// visible-block-start
import { Show } from "@refinedev/mui";
import { Button } from "@mui/material";
const PostShow: React.FC = () => {
const [loading, setLoading] = React.useState(true);
return (
<Show
footerButtonProps={{
sx: {
backgroundColor: "lightsteelblue",
},
}}
footerButtons={({ defaultButtons }) => (
<>
{defaultButtons}
<Button type="primary">Custom Button</Button>
</>
)}
>
<span>Rest of your page here</span>
</Show>
);
};
// visible-block-end
render(
<RefineMuiDemo
initialRoutes={["/posts", "/posts/show/123"]}
resources={[
{
name: "posts",
list: () => (
<div>
<p>This page is empty.</p>
<RefineMui.ShowButton recordItemId={123} />
</div>
),
show: PostShow,
},
]}
/>,
);
For more information, refer to the
CardActionsdocumentation from Material UI →
API Reference
Properties
const SampleList = () => {
const { dataGridProps } = RefineMui.useDataGrid();
const { data: categoryData, isLoading: categoryIsLoading } =
RefineCore.useMany({
resource: "categories",
ids: dataGridProps?.rows?.map((item: any) => item?.category?.id) ?? [],
queryOptions: {
enabled: !!dataGridProps?.rows,
},
});
const columns = React.useMemo<GridColDef<any>[]>(
() => [
{
field: "id",
headerName: "Id",
type: "number",
minWidth: 50,
},
{
field: "title",
headerName: "Title",
minWidth: 200,
},
{
field: "category",
headerName: "Category",
valueGetter: ({ row }) => {
const value = row?.category?.id;
return value;
},
minWidth: 300,
renderCell: function render({ value }) {
return categoryIsLoading ? (
<>Loading...</>
) : (
categoryData?.data?.find((item) => item.id === value)?.title
);
},
},
{
field: "createdAt",
headerName: "Created At",
minWidth: 250,
renderCell: function render({ value }) {
return <RefineMui.DateField value={value} />;
},
},
{
field: "actions",
headerName: "Actions",
renderCell: function render({ row }) {
return (
<>
<RefineMui.ShowButton hideText recordItemId={row.id} />
</>
);
},
align: "center",
headerAlign: "center",
minWidth: 80,
},
],
[categoryData?.data],
);
return (
<RefineMui.List>
<MuiXDataGrid.DataGrid {...dataGridProps} columns={columns} autoHeight />
</RefineMui.List>
);
};
const Wrapper = ({ children }) => {
return (
<MuiMaterial.ThemeProvider theme={RefineMui.LightTheme}>
<MuiMaterial.CssBaseline />
<MuiMaterial.GlobalStyles
styles={{ html: { WebkitFontSmoothing: "auto" } }}
/>
{children}
</MuiMaterial.ThemeProvider>
);
};