List
<List>
provides us a layout to display the page. It does not contain any logic but adds extra functionalities like a create button or giving titles to the page.
We will show what <List>
does using properties with examples.
You can swizzle this component to customize it with the Refine CLI
Properties
title
title
allows you to add a title to the <List>
component. If you don't pass the title props, it uses plural form of resource name by default.
resource
The <List>
component reads the resource
information from the route by default. If you want to use a custom resource for the <List>
component, you can use the resource
prop:
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
identifier
of the<Refine/>
component documentation →
canCreate and createButtonProps
canCreate
allows us to add the create button inside the <List>
component. If you want to customize this button you can use createButtonProps
property like the code below:
The create button redirects to the create page of the resource according to the value it reads from the URL.
For more information, refer to the
usePermission
documentation →
breadcrumb Globally ConfigurableThis value can be configured globally. Click to see the guide for more information.
To customize or disable the breadcrumb, you can use the breadcrumb
property. By default it uses the Breadcrumb
component from @refinedev/antd
package.
Refer to the Breadcrumb
documentation for detailed usage. →
wrapperProps
You can use the wrapperProps
property if you want to customize the wrapper of the <List/>
component. The @refinedev/antd
wrapper elements are simply <div/>
s and wrapperProps
and can get every attribute that <div/>
can get.
headerProps
You can use the headerProps
property to customize the header of the <List/>
component:
For more information, refer to the
PageHeader
documentation →
contentProps
You can use the contentProps
property to customize the content of the <Create/>
component. The <List/>
components content is wrapped with a <div/>
and contentProps
can get every attribute that <div/>
can get.
headerButtons
By default, the <List/>
component has a <CreateButton>
at the header.
You can customize the buttons at the header by using the headerButtons
property. It accepts React.ReactNode
or a render function ({ defaultButtons, createButtonProps }) => React.ReactNode
which you can use to keep the existing buttons and add your own.
If the "create" resource is not defined or if canCreate
is false, the <CreateButton>
will not render and createButtonProps
will be undefined
.
Or, instead of using the defaultButtons
, you can create your own buttons. If you want, you can use createButtonProps
to utilize the default values of the <CreateButton>
component.
headerButtonProps
You can customize the wrapper element of the buttons at the header by using the headerButtonProps
property.
For more information, refer to the
Space
documentation →
API Reference
Properties
Property | Type | Description | Default |
---|---|---|---|
resource |
| Resource name for API data interactions | Reads |
title |
| Title of the create view | Plural of the resource.name |
wrapperProps |
| Props for the wrapper component of the view | |
headerProps | Props for the header component | ||
contentProps |
| Props for the content wrapper component | |
breadcrumb |
| Breadcrumb to be displayed in the header | |
headerButtons |
| Header action buttons to be displayed in the header | If |
headerButtonProps | Additional props to be passed to the wrapper of the header buttons | ||
canCreate |
| Adds create button | If the resource is passed a create component, |
createButtonProps |
| Adds props for create button |