documentation/versioned_docs/version-3.xx.xx/api-reference/mui/components/buttons/show.md
<ShowButton> uses Material UI <Button> component. It uses the show method from useNavigation under the hood. It can be useful when redirecting the app to the show page with the record id route of resource.
:::info-tip Swizzle You can swizzle this component to customize it with the refine CLI :::
// visible-block-start
import {
useDataGrid,
DataGrid,
GridColumns,
List,
// highlight-next-line
ShowButton,
} from "@pankod/refine-mui";
const columns: GridColumns = [
{ field: "id", headerName: "ID", type: "number" },
{ field: "title", headerName: "Title", minWidth: 400, flex: 1 },
{
field: "actions",
headerName: "Actions",
renderCell: function render({ row }) {
// highlight-next-line
return <ShowButton size="small" recordItemId={row.id} />;
},
align: "center",
headerAlign: "center",
minWidth: 80,
},
];
const PostsList: React.FC = () => {
const { dataGridProps } = useDataGrid<IPost>();
return (
<List>
<DataGrid {...dataGridProps} columns={columns} autoHeight />
</List>
);
};
interface IPost {
id: number;
title: string;
}
// visible-block-end
render(
<RefineMuiDemo
resources={[
{
name: "posts",
list: PostsList,
show: () => <RefineMui.Show>Rest of the page here...</RefineMui.Show>,
},
]}
/>,
);
recordItemIdrecordItemId is used to append the record id to the end of the route path.
const { useRouterContext } = RefineCore;
// visible-block-start
import { ShowButton } from "@pankod/refine-mui";
const MyShowComponent = () => {
return (
<ShowButton
resourceNameOrRouteName="posts"
// highlight-next-line
recordItemId="1"
/>
);
};
// visible-block-end
const ShowPage = () => {
const params = useRouterContext().useParams();
return <div>{JSON.stringify(params)}</div>;
};
render(
<RefineMuiDemo
initialRoutes={["/"]}
resources={[
{
name: "posts",
show: ShowPage,
},
]}
DashboardPage={MyShowComponent}
/>,
);
Clicking the button will trigger the show method of useNavigation and then redirect the app to /posts/show/1.
:::note
<ShowButton> component reads the id information from the route by default.
:::
resourceNameOrRouteNameRedirection endpoint(resourceNameOrRouteName/show) is defined by resourceNameOrRouteName property. By default, <ShowButton> uses name property of the resource object as an endpoint to redirect after clicking.
const { useRouterContext } = RefineCore;
// visible-block-start
import { ShowButton } from "@pankod/refine-mui";
const MyShowComponent = () => {
return (
<ShowButton
// highlight-next-line
resourceNameOrRouteName="categories"
recordItemId="2"
/>
);
};
// visible-block-end
const ShowPage = () => {
const params = useRouterContext().useParams();
return <div>{JSON.stringify(params)}</div>;
};
render(
<RefineMuiDemo
initialRoutes={["/"]}
resources={[
{
name: "posts",
},
{
name: "categories",
show: ShowPage,
},
]}
DashboardPage={MyShowComponent}
/>,
);
Clicking the button will trigger the show method of useNavigation and then redirect the app to /categories/show/2.
hideTextIt is used to show and not show the text of the button. When true, only the button icon is visible.
const { useRouterContext } = RefineCore;
// visible-block-start
import { ShowButton } from "@pankod/refine-mui";
const MyShowComponent = () => {
return (
<ShowButton
// highlight-next-line
hideText={true}
/>
);
};
// visible-block-end
const ShowPage = () => {
const params = useRouterContext().useParams();
return <div>{JSON.stringify(params)}</div>;
};
render(
<RefineMuiDemo
initialRoutes={["/"]}
resources={[
{
name: "posts",
list: MyShowComponent,
show: ShowPage,
},
]}
/>,
);
accessControlThis prop can be used to skip access control check with its enabled property or to hide the button when the user does not have the permission to access the resource with hideIfUnauthorized property. This is relevant only when an accessControlProvider is provided to <Refine/>
import { ShowButton } from "@pankod/refine-mui";
export const MyListComponent = () => {
return (
<ShowButton accessControl={{ enabled: true, hideIfUnauthorized: true }} />
);
};
:::tip External Props It also accepts all props of Material UI Button. :::