mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-03 00:09:39 +08:00
100 lines
5.1 KiB
Markdown
100 lines
5.1 KiB
Markdown
---
|
||
category: Components
|
||
group: Data Display
|
||
title: List
|
||
description: Basic list display, which can carry text, lists, pictures, paragraphs.
|
||
cover: https://mdn.alipayobjects.com/huamei_7uahnr/afts/img/A*EYuhSpw1iSwAAAAAAAAAAAAADrJ8AQ/original
|
||
coverDark: https://mdn.alipayobjects.com/huamei_7uahnr/afts/img/A*tBzwQ7raKX8AAAAAAAAAAAAADrJ8AQ/original
|
||
---
|
||
|
||
## When To Use
|
||
|
||
A list can be used to display content related to a single subject. The content can consist of multiple elements of varying type and size.
|
||
|
||
## Examples
|
||
|
||
<!-- prettier-ignore -->
|
||
<code src="./demo/simple.tsx">Simple list</code>
|
||
<code src="./demo/basic.tsx">Basic list</code>
|
||
<code src="./demo/loadmore.tsx">Load more</code>
|
||
<code src="./demo/vertical.tsx">Vertical</code>
|
||
<code src="./demo/pagination.tsx">Pagination Settings</code>
|
||
<code src="./demo/grid.tsx">Grid</code>
|
||
<code src="./demo/grid-test.tsx" debug>Test Grid</code>
|
||
<code src="./demo/responsive.tsx">Responsive grid list</code>
|
||
<code src="./demo/infinite-load.tsx">Scrolling loaded</code>
|
||
<code src="./demo/virtual-list.tsx">virtual list</code>
|
||
<code src="./demo/component-token.tsx" debug>custom component token</code>
|
||
|
||
## API
|
||
|
||
Common props ref:[Common props](/docs/react/common-props)
|
||
|
||
### List
|
||
|
||
| Property | Description | Type | Default | Version |
|
||
| --- | --- | --- | --- | --- |
|
||
| bordered | Toggles rendering of the border around the list | boolean | false | |
|
||
| dataSource | DataSource array for list | any\[] | - | |
|
||
| footer | List footer renderer | ReactNode | - | |
|
||
| grid | The grid type of list. You can set grid to something like {gutter: 16, column: 4} | [object](#list-grid-props) | - | |
|
||
| header | List header renderer | ReactNode | - | |
|
||
| itemLayout | The layout of list | `horizontal` \| `vertical` | `horizontal` | |
|
||
| loading | Shows a loading indicator while the contents of the list are being fetched | boolean \| [SpinProps](/components/spin/#api) ([more](https://github.com/ant-design/ant-design/issues/8659)) | false | |
|
||
| loadMore | Shows a load more content | ReactNode | - | |
|
||
| locale | The i18n text including empty text | object | {emptyText: `No Data`} | |
|
||
| pagination | Pagination [config](/components/pagination/), hide it by setting it to false | boolean \| object | false | |
|
||
| renderItem | Customize list item when using `dataSource` | (item) => ReactNode | - | |
|
||
| rowKey | Item's unique value, could be an Item's key which holds a unique value of type `React.Key` or function that receives Item and returns a `React.Key` | `keyof` T \| (item: T) => `React.Key` | `"key"` | |
|
||
| size | Size of list | `default` \| `large` \| `small` | `default` | |
|
||
| split | Toggles rendering of the split under the list item | boolean | true | |
|
||
|
||
### pagination
|
||
|
||
Properties for pagination.
|
||
|
||
| Property | Description | Type | Default |
|
||
| -------- | ----------------------------------------- | ---------------------------- | -------- |
|
||
| position | The specify the position of `Pagination` | `top` \| `bottom` \| `both` | `bottom` |
|
||
| align | The specify the alignment of `Pagination` | `start` \| `center` \| `end` | `end` |
|
||
|
||
More about pagination, please check [`Pagination`](/components/pagination/).
|
||
|
||
### List grid props
|
||
|
||
| Property | Description | Type | Default | Version |
|
||
| -------- | ------------------------ | ------ | ------- | ------- |
|
||
| column | The column of grid | number | - | |
|
||
| gutter | The spacing between grid | number | 0 | |
|
||
| xs | `<576px` column of grid | number | - | |
|
||
| sm | `≥576px` column of grid | number | - | |
|
||
| md | `≥768px` column of grid | number | - | |
|
||
| lg | `≥992px` column of grid | number | - | |
|
||
| xl | `≥1200px` column of grid | number | - | |
|
||
| xxl | `≥1600px` column of grid | number | - | |
|
||
|
||
### List.Item
|
||
|
||
| Property | Description | Type | Default | Version |
|
||
| --- | --- | --- | --- | --- |
|
||
| actions | The actions content of list item. If `itemLayout` is `vertical`, shows the content on bottom, otherwise shows content on the far right | Array<ReactNode> | - | |
|
||
| classNames | Semantic structure className | [`Record<actions \| extra, string>`](#semantic-dom) | - | 5.18.0 |
|
||
| extra | The extra content of list item. If `itemLayout` is `vertical`, shows the content on right, otherwise shows content on the far right | ReactNode | - | |
|
||
| styles | Semantic DOM style | [`Record<actions \| extra, CSSProperties>`](#semantic-dom) | - | 5.18.0 |
|
||
|
||
### List.Item.Meta
|
||
|
||
| Property | Description | Type | Default | Version |
|
||
| ----------- | ---------------------------- | --------- | ------- | ------- |
|
||
| avatar | The avatar of list item | ReactNode | - | |
|
||
| description | The description of list item | ReactNode | - | |
|
||
| title | The title of list item | ReactNode | - | |
|
||
|
||
## Semantic DOM
|
||
|
||
<code src="./demo/_semantic.tsx" simplify="true"></code>
|
||
|
||
## Design Token
|
||
|
||
<ComponentTokenTable component="List"></ComponentTokenTable>
|