List
const { default: routerProvider } = LegacyRefineReactRouterV6;
const { default: simpleRest } = RefineSimpleRest;
setRefineProps({
legacyRouterProvider: routerProvider,
dataProvider: simpleRest("https://api.fake-rest.refine.dev"),
notificationProvider: RefineMantine.useNotificationProvider,
Layout: RefineMantine.Layout,
Sider: () => null,
catchAll: <RefineMantine.ErrorComponent />,
});
const Wrapper = ({ children }) => {
return (
<MantineCore.MantineProvider
theme={RefineMantine.LightTheme}
withNormalizeCSS
withGlobalStyles
>
<MantineCore.Global styles={{ body: { WebkitFontSmoothing: "auto" } }} />
<MantineNotifications.NotificationsProvider position="top-right">
{children}
</MantineNotifications.NotificationsProvider>
</MantineCore.MantineProvider>
);
};
<ListButton> is uses Mantine's <Button> component. It uses the list method from useNavigation under the hood. It can be useful when redirecting the app to the list page route of resource.
You can swizzle this component with the Refine CLI to customize it.
Usage
setInitialRoutes(["/posts/show/123"]);
import { Refine } from "@refinedev/core";
import { ShowButton } from "@refinedev/mantine";
// visible-block-start
import { useShow } from "@refinedev/core";
import {
Show,
MarkdownField,
ListButton,
} from "@refinedev/mantine";
import { Title, Text } from "@mantine/core";
const PostShow: React.FC = () => {
const { queryResult } = useShow<IPost>();
const { data, isLoading } = queryResult;
const record = data?.data;
return (
<Show headerButtons={<ListButton />} 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>
);
};
// visible-block-end
const App = () => {
return (
<Refine
resources={[
{
name: "posts",
show: PostShow,
list: () => (
<div>
<p>This page is empty.</p>
<ShowButton recordItemId="123">Show Item 123</ShowButton>
</div>
),
},
]}
/>
);
};
render(
<Wrapper>
<App />
</Wrapper>,
);
The button text is defined automatically by Refine based on resource definition.
Properties
resource
Redirection endpoint is defined by the resource's list action path. By default, <ListButton> uses the inferred resource from the route.
setInitialRoutes(["/"]);
import { Refine, useRouterContext, useNavigation } from "@refinedev/core";
import { Button, Code, Space, Text } from "@mantine/core";
// visible-block-start
import { ListButton } from "@refinedev/mantine";
const MyListComponent = () => {
return <ListButton resource="categories" />;
};
// visible-block-end
const ListPage = () => {
const { list } = useNavigation();
const params = useRouterContext().useParams();
return (
<div>
<Text italic color="dimmed" size="sm">
URL Parameters:
</Text>
<Code>{JSON.stringify(params)}</Code>
<Space h="md" />
<Button size="xs" variant="outline" onClick={() => list("posts")}>
Go back
</Button>
</div>
);
};
const App = () => {
return (
<Refine
resources={[
{
name: "posts",
list: MyListComponent,
},
{
name: "categories",
list: ListPage,
},
]}
/>
);
};
render(
<Wrapper>
<App />
</Wrapper>,
);
Clicking the button will trigger the list method of useNavigation and then redirect the app to the list action path of the resource, filling the necessary parameters in the route.
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
identifiersection of the<Refine/>component documentation →
hideText
hideText is used to show and not show the text of the button. When true, only the button icon is visible.
setInitialRoutes(["/"]);
import { Refine } from "@refinedev/core";
// visible-block-start
import { ListButton } from "@refinedev/mantine";
const MyListComponent = () => {
return <ListButton hideText />;
};
// visible-block-end
const App = () => {
return (
<Refine
resources={[
{
name: "posts",
list: MyListComponent,
},
]}
/>
);
};
render(
<Wrapper>
<App />
</Wrapper>,
);
accessControl
This 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 { ListButton } from "@refinedev/mantine";
export const MyListComponent = () => {
return (
<ListButton accessControl={{ enabled: true, hideIfUnauthorized: true }} />
);
};
resourceNameOrRouteName deprecated
Use resource prop instead.