Skip to main content
Version: 3.xx.xx
Swizzle Ready

List

<ListButton> is using Ant Design'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.

Swizzle

You can swizzle this component to customize it with the refine CLI

Usage

localhost:3000/posts/show/123
Live previews only work with the latest documentation.
import { useShow } from "@pankod/refine-core";
import {
Show,
Typography,
ListButton,
} from "@pankod/refine-antd";

const { Title, Text } = Typography;

const PostShow: React.FC = () => {
const { queryResult } = useShow<IPost>();
const { data, isLoading } = queryResult;
const record = data?.data;

return (
<Show headerButtons={<ListButton />} isLoading={isLoading}>
<Title level={5}>Id</Title>
<Text>{record?.id}</Text>

<Title level={5}>Title</Title>
<Text>{record?.title}</Text>
</Show>
);
};

interface IPost {
id: number;
title: string;
}
NOTE

The button text is defined automatically by refine based on resource object name property.

Properties

resourceNameOrRouteName

Redirection endpoint(resourceNameOrRouteName/list) is defined by resourceNameOrRouteName property. By default, <ListButton> uses name property of the resource object as the endpoint to redirect after clicking.

localhost:3000
Live previews only work with the latest documentation.
import { ListButton } from "@pankod/refine-antd";

const MyListComponent = () => {
return <ListButton resourceNameOrRouteName="categories" />;
};

Clicking the button will trigger the list method of useNavigation and then redirect to /categories.

hideText

It is used to show and not show the text of the button. When true, only the button icon is visible.

localhost:3000
Live previews only work with the latest documentation.
import { ListButton } from "@pankod/refine-antd";

const MyListComponent = () => {
return (
<ListButton
hideText={true}
/>
);
};

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 "@pankod/refine-antd";

export const MyListComponent = () => {
return (
<ListButton accessControl={{ enabled: true, hideIfUnauthorized: true }} />
);
};

API Reference

Properties

External Props

It also accepts all props of Ant Design Button.