Live previews only work with the latest documentation.
setRefineProps({
Layout: RefineMantine.Layout,
Sider: () => null,
notificationProvider: RefineMantine.notificationProvider,
})
const Wrapper = ({ children }) => {
return (
<RefineMantine.MantineProvider
theme={RefineMantine.LightTheme}
withNormalizeCSS
withGlobalStyles
>
<RefineMantine.Global
styles={{ body: { WebkitFontSmoothing: 'auto' } }}
/>
<RefineMantine.NotificationsProvider position="top-right">
{children}
</RefineMantine.NotificationsProvider>
</RefineMantine.MantineProvider>
)
}
interface ICategory {
id: number
title: string
}
interface IPost {
id: number
title: string
content: string
status: 'published' | 'draft' | 'rejected'
category: { id: number }
}
<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.
Live previews only work with the latest documentation.
import { useShow } from '@pankod/refine-core'
import { Show, Title, Text, MarkdownField } from '@pankod/refine-mantine'
const PostShow: React.FC<IResourceComponentsProps> = () => {
const { queryResult } = useShow<IPost>()
const { data, isLoading } = queryResult
const record = data?.data
return (
<Show isLoading={isLoading}>
<Title order={5}>Id</Title>
<Text mt="sm">{record?.id}</Text>
<Title mt="sm" order={5}>
Title
</Title>
<Text mt="sm">{record?.title}</Text>
<Title mt="sm" order={5}>
Content
</Title>
<MarkdownField value={record?.content} />
</Show>
)
}
You can swizzle this component to customize it with the refine CLI
Properties
title
It allows adding a title for 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".
Live previews only work with the latest documentation.
import { Show, Title } from '@pankod/refine-mantine'
const PostShow: React.FC = () => {
return (
<Show title={<Title order={3}>Custom Title</Title>}>
<p>Rest of your page here</p>
</Show>
)
}
resource
The <Show> component reads the resource information from the route by default. This default behavior will not work on custom pages. If you want to use the <Show> component in a custom page, you can use the resource property.
Refer to the custom pages documentation for detailed usage. →
Live previews only work with the latest documentation.
import { Refine } from '@pankod/refine-core'
import { Layout, Show } from '@pankod/refine-mantine'
import routerProvider from '@pankod/refine-react-router-v6'
import dataProvider from '@pankod/refine-simple-rest'
const CustomPage: React.FC = () => {
return (
<Show resource="categories">
<p>Rest of your page here</p>
</Show>
)
}
const App: React.FC = () => {
return (
<Refine
routerProvider={{
...routerProvider,
routes: [
{
element: <CustomPage />,
path: '/custom/:id',
},
],
}}
Layout={Layout}
dataProvider={dataProvider('https://api.fake-rest.refine.dev')}
resources={[{ name: 'posts' }]}
/>
)
}
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.
Live previews only work with the latest documentation.
import { Show, Title } from '@pankod/refine-mantine'
import { usePermissions } from '@pankod/refine-core'
const PostShow: React.FC = () => {
const { data: permissionsData } = usePermissions()
return (
<Show
canDelete={permissionsData?.includes('admin')}
canEdit={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).
Live previews only work with the latest documentation.
import { Show, useModalForm, Modal, Button } from '@pankod/refine-mantine'
const PostShow: React.FC = () => {
const {
modal: { visible, close, show },
id,
} = useModalForm({
action: 'show',
})
return (
<div>
<Button onClick={() => show()}>Show Button</Button>
<Modal
opened={visible}
onClose={close}
size={700}
withCloseButton={false}
>
<Show recordItemId={id}>
<p>Rest of your page here</p>
</Show>
</Modal>
</div>
)
}
The <Edit> component needs the id information for the <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 '@pankod/refine-core'
import { Show } from '@pankod/refine-mantine'
import routerProvider from '@pankod/refine-react-router-v6'
import dataProvider from '@pankod/refine-simple-rest'
const PostShow = () => {
return <Show dataProviderName="other">...</Show>
}
export const App: React.FC = () => {
return (
<Refine
routerProvider={routerProvider}
dataProvider={{
default: dataProvider('https://api.fake-rest.refine.dev/'),
other: dataProvider('https://other-api.fake-rest.refine.dev/'),
}}
resources={[{ name: 'posts', show: PostShow }]}
/>
)
}
goBack
To customize the back button or to disable it, you can use the goBack property. You can pass false or null to hide the back button.
Live previews only work with the latest documentation.
import { Show } from '@pankod/refine-mantine'
const PostShow: React.FC = () => {
return (
<Show goBack="😊">
<p>Rest of your page here</p>
</Show>
)
}
isLoading
To toggle the loading state of the <Edit/> component, you can use the isLoading property.
Live previews only work with the latest documentation.
import { Show } from '@pankod/refine-mantine'
const PostShow: React.FC = () => {
return (
<Show isLoading={true}>
<p>Rest of your page here</p>
</Show>
)
}
breadcrumb
To customize or disable the breadcrumb, you can use the breadcrumb property. By default it uses the Breadcrumb component from @pankod/refine-mantine package.
This feature can be managed globally via the <Refine> component's options
Live previews only work with the latest documentation.
import { Show } from '@pankod/refine-mantine'
const CustomBreadcrumb: React.FC = () => {
return (
<p
style={{
padding: '3px 6px',
border: '2px dashed cornflowerblue',
}}
>
My Custom Breadcrumb
</p>
)
}
const PostShow: React.FC = () => {
return (
<Show
breadcrumb={<CustomBreadcrumb />}
>
<p>Rest of your page here</p>
</Show>
)
}
wrapperProps
If you want to customize the wrapper of the <Show/> component, you can use the wrapperProps property. For @pankod/refine-mantine wrapper element is <Card>s and wrapperProps can get every attribute that <Card> can get.
Refer to the Card documentation from Mantine for detailed usage. →
Live previews only work with the latest documentation.
import { Show } from '@pankod/refine-mantine'
const PostShow: React.FC = () => {
return (
<Show
wrapperProps={{
style: {
border: '2px dashed cornflowerblue',
padding: '16px',
},
}}
>
<p>Rest of your page here</p>
</Show>
)
}
If you want to customize the header of the <Show/> component, you can use the headerProps property.
Refer to the Group documentation from Mantine for detailed usage. →
Live previews only work with the latest documentation.
import { Show } from '@pankod/refine-mantine'
const PostShow: React.FC = () => {
return (
<Show
headerProps={{
style: {
border: '2px dashed cornflowerblue',
padding: '16px',
},
}}
>
<p>Rest of your page here</p>
</Show>
)
}
contentProps
If you want to customize the content of the <Show/> component, you can use the contentProps property.
Refer to the Box documentation from Mantine for detailed usage. →
Live previews only work with the latest documentation.
import { Show } from '@pankod/refine-mantine'
const PostShow: React.FC = () => {
return (
<Show
contentProps={{
style: {
border: '2px dashed cornflowerblue',
padding: '16px',
},
}}
>
<p>Rest of your page here</p>
</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.
Live previews only work with the latest documentation.
import { Show, Button } from '@pankod/refine-mantine'
const PostShow: React.FC = () => {
return (
<Show
headerButtons={({ defaultButtons }) => (
<>
{defaultButtons}
<Button variant="outline" type="primary">
Custom Button
</Button>
</>
)}
>
<p>Rest of your page here</p>
</Show>
)
}
You can customize the wrapper element of the buttons at the header by using the headerButtonProps property.
Refer to the Group documentation from Mantine for detailed usage. →
Live previews only work with the latest documentation.
import { Show, Button } from '@pankod/refine-mantine'
const PostShow: React.FC = () => {
return (
<Show
headerButtonProps={{
style: {
border: '2px dashed cornflowerblue',
padding: '16px',
},
}}
headerButtons={
<Button variant="outline" type="primary">
Custom Button
</Button>
}
>
<p>Rest of your page here</p>
</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.
Live previews only work with the latest documentation.
import { Show, Button } from '@pankod/refine-mantine'
const PostShow: React.FC = () => {
return (
<Show
footerButtons={({ defaultButtons }) => (
<>
{defaultButtons}
<Button variant="gradient">Custom Button</Button>
</>
)}
>
<p>Rest of your page here</p>
</Show>
)
}
You can customize the wrapper element of the buttons at the footer by using the footerButtonProps property.
Refer to the Space documentation from Ant Design for detailed usage. →
Live previews only work with the latest documentation.
import { Show, Button } from '@pankod/refine-mantine'
const PostShow: React.FC = () => {
return (
<Show
footerButtonProps={{
style: {
float: 'right',
marginRight: 24,
border: '2px dashed cornflowerblue',
padding: '16px',
},
}}
footerButtons={
<Button variant="outline" type="primary">
Custom Button
</Button>
}
>
<p>Rest of your page here</p>
</Show>
)
}
API Reference
Props