<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 the page titles.
We will show what <List>
does using properties with examples.
import React from "react";
import { useMany } from "@refinedev/core";
import { List, useDataGrid, DateField } from "@refinedev/mui";
import { DataGrid, GridColumns } from "@mui/x-data-grid";
const SampleList = () => {
const { dataGridProps } = useDataGrid();
const { data: categoryData, isLoading: categoryIsLoading } = useMany({
resource: "categories",
ids: dataGridProps?.rows?.map((item: any) => item?.category?.id) ?? [],
queryOptions: {
enabled: !!dataGridProps?.rows,
},
});
const columns = React.useMemo<GridColumns<any>>(
() => [
{
field: "id",
headerName: "Id",
type: "number",
minWidth: 50,
},
{
field: "title",
headerName: "Title",
minWidth: 200,
},
{
field: "category",
headerName: "Category",
valueGetter: ({ row }) => {
const value = row?.category?.id;
return value;
},
minWidth: 300,
renderCell: function render({ value }) {
return categoryIsLoading ? (
<>Loading...</>
) : (
categoryData?.data?.find((item) => item.id === value)
?.title
);
},
},
{
field: "createdAt",
headerName: "Created At",
minWidth: 250,
renderCell: function render({ value }) {
return <DateField value={value} />;
},
},
],
[categoryData?.data],
);
return (
<List>
<DataGrid {...dataGridProps} columns={columns} autoHeight />
</List>
);
};
You can swizzle this component to customize it with the refine CLI
Properties
title
It allows adding title inside the <List>
component. if you don't pass title props it uses the plural resource name by default. For example, for the /posts
resource, it will be "Posts".
import { List } from "@refinedev/mui";
import { Typography } from "@mui/material";
const ListPage: React.FC = () => {
return (
<List
title={<Typography variant="h5">Custom Title</Typography>}
>
<span>Rest of your page here</span>
</List>
);
};
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.
import { List } from "@refinedev/mui";
const CustomPage: React.FC = () => {
return (
<List resource="posts">
<span>Rest of your page here</span>
</List>
);
};
canCreate
allows us to add the create button inside the <List>
component. If resource is passed a create component, refine adds the create button by default. If you want to customize this button you can use createButtonProps
property like the code below.
Create button redirects to the create page of the resource according to the value it reads from the URL.
import { List } from "@refinedev/mui";
import { usePermissions } from "@refinedev/core";
const PostList: React.FC = () => {
const { data: permissionsData } = usePermissions();
return (
<List
canCreate={permissionsData?.includes("admin")}
createButtonProps={{ size: "small" }}
>
<p>Rest of your page here</p>
</List>
);
};
Refer to the usePermission
documentation for detailed usage. →
breadcrumb
To customize or disable the breadcrumb, you can use the breadcrumb
property. By default it uses the Breadcrumb
component from @refinedev/mui
package.
Refer to the Breadcrumb
documentation for detailed usage. →
This feature can be managed globally via the <Refine>
component's options
import { List, Breadcrumb } from "@refinedev/mui";
const PostList: React.FC = () => {
return (
<List
breadcrumb={
<div
style={{
padding: "3px 6px",
border: "2px dashed cornflowerblue",
}}
>
<Breadcrumb />
</div>
}
>
<span>Rest of your page here</span>
</List>
);
};
wrapperProps
If you want to customize the wrapper of the <List/>
component, you can use the wrapperProps
property.
Refer to the Card
documentation from Material UI for detailed usage. →
import { List } from "@refinedev/mui";
const PostList: React.FC = () => {
const [loading, setLoading] = React.useState(true);
return (
<List
wrapperProps={{
sx: {
backgroundColor: "lightsteelblue",
},
}}
>
<span>Rest of your page here</span>
</List>
);
};
If you want to customize the header of the <List/>
component, you can use the headerProps
property.
Refer to the CardHeader
documentation from Material UI for detailed usage. →
import { List } from "@refinedev/mui";
const PostList: React.FC = () => {
const [loading, setLoading] = React.useState(true);
return (
<List
headerProps={{
sx: {
backgroundColor: "lightsteelblue",
},
}}
>
<span>Rest of your page here</span>
</List>
);
};
contentProps
If you want to customize the content of the <List/>
component, you can use the contentProps
property.
Refer to the CardContent
documentation from Material UI for detailed usage. →
import { List } from "@refinedev/mui";
const PostList: React.FC = () => {
const [loading, setLoading] = React.useState(true);
return (
<List
contentProps={{
sx: {
backgroundColor: "lightsteelblue",
},
}}
>
<span>Rest of your page here</span>
</List>
);
};
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.
import { List } from "@refinedev/mui";
import { Button } from "@mui/material";
const PostList: React.FC = () => {
const [loading, setLoading] = React.useState(true);
return (
<List
headerButtons={({ defaultButtons }) => (
<>
{defaultButtons}
<Button type="primary">Custom Button</Button>
</>
)}
>
<span>Rest of your page here</span>
</List>
);
};
You can customize the wrapper element of the buttons at the header by using the headerButtonProps
property.
Refer to the Box
documentation from Material UI for detailed usage. →
import { List } from "@refinedev/mui";
import { Button } from "@mui/material";
const PostList: React.FC = () => {
const [loading, setLoading] = React.useState(true);
return (
<List
headerButtonProps={{
sx: {
backgroundColor: "lightsteelblue",
},
}}
headerButtons={({ defaultButtons }) => (
<>
{defaultButtons}
<Button type="primary">Custom Button</Button>
</>
)}
>
<span>Rest of your page here</span>
</List>
);
};
API Reference
Properties