<Show>
provides us a layout for displaying the page. It does not contain any logic but adds extra functionalities like a refresh button or giving title to the page.
We will show what <Show>
does using properties with examples.
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>
);
};
You can swizzle this component to customize it with the refine CLI
Properties
title
It allows adding title 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 will be "Show post".
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>
);
};
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.
import { Show } from "@refinedev/mui";
const CustomPage: React.FC = () => {
return (
<Show resource="posts" recordItemId={123}>
<span>Rest of your page here</span>
</Show>
);
};
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.
Refer to the <DeleteButton>
and the <EditButton>
documentation for detailed usage.
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>
);
};
Refer to the usePermission
documentation for detailed usage. →
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).
import { Show } from "@refinedev/mui";
const CustomPage: React.FC = () => {
return (
<Show resource="posts" recordItemId={123}>
<span>Rest of your page here</span>
</Show>
);
};
<Show>
component needs the id
information for <RefreshButton>
to work properly.
The <Show>
component needs the id
information for work properly, so if you use the <Show>
component in custom pages, you should pass the recordItemId
property.
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 { 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>
);
};
isLoading
To toggle the loading state of the <Show/>
component, you can use the isLoading
property.
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>
);
};
breadcrumb
To customize or disable the breadcrumb, you can use the breadcrumb
property. By default it uses the Breadcrumb
component from @refinedev/mui
package.
Refer to the Breadcrumb
documentation for detailed usage. →
This feature can be managed globally via the <Refine>
component's options
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>
);
};
wrapperProps
If you want to customize the wrapper of the <Show/>
component, you can use the wrapperProps
property.
Refer to the Card
documentation from Material UI for detailed usage. →
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>
);
};
If you want to customize the header of the <Show/>
component, you can use the headerProps
property.
Refer to the CardHeader
documentation from Material UI for detailed usage. →
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>
);
};
contentProps
If you want to customize the content of the <Show/>
component, you can use the contentProps
property.
Refer to the CardContent
documentation from Material UI for detailed usage. →
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>
);
};
You can customize the buttons at the header by using the headerButtons
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.
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>
);
};
You can customize the wrapper element of the buttons at the header by using the headerButtonProps
property.
Refer to the Box
documentation from Material UI for detailed usage. →
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>
);
};
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.
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>
);
};
You can customize the wrapper element of the buttons at the footer by using the footerButtonProps
property.
Refer to the CardActions
documentation from Material UI for detailed usage. →
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>
);
};
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<GridColumns<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>
);
};