List 列表

通用列表。

何时使用

最基础的列表展示,可承载文字、列表、图片、段落,常用于后台数据展示页面。

代码演示

简单列表

列表拥有大、中、小三种尺寸。

通过设置 sizelarge small 分别把按钮设为大、小尺寸。若不设置 size,则尺寸为中。

可通过设置 headerfooter,来自定义列表头部和尾部。

List列表 - 图1

  1. import React from 'react';
  2. import ReactDOM from 'react-dom';
  3. import { List } from 'choerodon-ui';
  4. const data = [
  5. 'Racing car sprays burning fuel into crowd.',
  6. 'Japanese princess to wed commoner.',
  7. 'Australian walks 100km after outback crash.',
  8. 'Man charged over missing wedding girl.',
  9. 'Los Angeles battles huge wildfires.',
  10. ];
  11. ReactDOM.render(
  12. <div>
  13. <h3 style={{ marginBottom: 16 }}>Default Size</h3>
  14. <List
  15. header={<div>Header</div>}
  16. footer={<div>Footer</div>}
  17. bordered
  18. dataSource={data}
  19. renderItem={item => <List.Item>{item}</List.Item>}
  20. />
  21. <h3 style={{ margin: '16px 0' }}>Small Size</h3>
  22. <List
  23. size="small"
  24. header={<div>Header</div>}
  25. footer={<div>Footer</div>}
  26. bordered
  27. dataSource={data}
  28. renderItem={item => <List.Item>{item}</List.Item>}
  29. />
  30. <h3 style={{ margin: '16px 0' }}>Large Size</h3>
  31. <List
  32. size="large"
  33. header={<div>Header</div>}
  34. footer={<div>Footer</div>}
  35. bordered
  36. dataSource={data}
  37. renderItem={item => <List.Item>{item}</List.Item>}
  38. />
  39. </div>,
  40. document.getElementById('container'),
  41. );

基础列表

基础列表。

List列表 - 图2

  1. import React from 'react';
  2. import ReactDOM from 'react-dom';
  3. import { List, Avatar } from 'choerodon-ui';
  4. const data = [
  5. {
  6. title: 'Choerodon UI Title 1',
  7. },
  8. {
  9. title: 'Choerodon UI Title 2',
  10. },
  11. {
  12. title: 'Choerodon UI Title 3',
  13. },
  14. {
  15. title: 'Choerodon UI Title 4',
  16. },
  17. ];
  18. ReactDOM.render(
  19. <List
  20. itemLayout="horizontal"
  21. dataSource={data}
  22. renderItem={item => (
  23. <List.Item>
  24. <List.Item.Meta
  25. avatar={<Avatar src="https://zos.alipayobjects.com/rmsportal/ODTLcjxAfvqbxHnVXCYX.png" />}
  26. title={<a href="https://open-hand.github.io/choerodon-ui/">{item.title}</a>}
  27. description="Choerodon"
  28. />
  29. </List.Item>
  30. )}
  31. />,
  32. document.getElementById('container'),
  33. );

加载更多

可通过 loadMore 属性实现加载更多功能。

List列表 - 图3

  1. import React from 'react';
  2. import ReactDOM from 'react-dom';
  3. import { List, Avatar, Button, Spin } from 'choerodon-ui';
  4. import reqwest from 'reqwest';
  5. const fakeDataUrl =
  6. 'https://randomuser.me/api/?results=5&inc=name,gender,email,nat&noinfo';
  7. class LoadMoreList extends React.Component {
  8. state = {
  9. loading: true,
  10. loadingMore: false,
  11. showLoadingMore: true,
  12. data: [],
  13. };
  14. componentDidMount() {
  15. this.getData((res) => {
  16. this.setState({
  17. loading: false,
  18. data: res.results,
  19. });
  20. });
  21. }
  22. getData = (callback) => {
  23. reqwest({
  24. url: fakeDataUrl,
  25. type: 'json',
  26. method: 'get',
  27. contentType: 'application/json',
  28. success: (res) => {
  29. callback(res);
  30. },
  31. });
  32. };
  33. onLoadMore = () => {
  34. this.setState({
  35. loadingMore: true,
  36. });
  37. this.getData((res) => {
  38. const data = this.state.data.concat(res.results);
  39. this.setState(
  40. {
  41. data,
  42. loadingMore: false,

竖排列表样式

通过设置 itemLayout 属性为 vertical 可实现竖排列表样式。

List列表 - 图4

  1. import React from 'react';
  2. import ReactDOM from 'react-dom';
  3. import { List, Avatar, Icon } from 'choerodon-ui';
  4. const listData = [];
  5. for (let i = 0; i < 5; i += 1) {
  6. listData.push({
  7. href: 'https://open-hand.github.io/choerodon-ui/',
  8. title: `choerodon ui part ${i}`,
  9. avatar: 'https://zos.alipayobjects.com/rmsportal/ODTLcjxAfvqbxHnVXCYX.png',
  10. description:
  11. 'Choerodon UI, An enterprise-class UI design language and React-based implementation.',
  12. content:
  13. 'We supply a series of design principles, practical patterns and high quality design resources (Sketch and Axure), to help people create their product prototypes beautifully and efficiently.',
  14. });
  15. }
  16. const pagination = {
  17. pageSize: 10,
  18. current: 1,
  19. total: listData.length,
  20. onChange: () => {},
  21. };
  22. const IconText = ({ type, text }) => (
  23. <span>
  24. <Icon type={type} style={{ marginRight: 8 }} />
  25. {text}
  26. </span>
  27. );
  28. ReactDOM.render(
  29. <List
  30. itemLayout="vertical"
  31. size="large"
  32. pagination={pagination}
  33. dataSource={listData}
  34. renderItem={item => (
  35. <List.Item
  36. key={item.title}
  37. actions={[
  38. <IconText key="star-o" type="star-o" text="156" />,
  39. <IconText key="like-o" type="like-o" text="156" />,
  40. <IconText key="message" type="message" text="2" />,
  41. ]}
  42. extra={
  43. <img
  44. width={272}
  45. alt="logo"
  46. src="https://gw.alipayobjects.com/zos/rmsportal/mqaQswcyDLcXyDKnZfES.png"
  47. />
  48. }
  49. >
  50. <List.Item.Meta
  51. avatar={<Avatar src={item.avatar} />}
  52. title={<a href={item.href}>{item.title}</a>}
  53. description={item.description}
  54. />
  55. {item.content}
  56. </List.Item>
  57. )}
  58. />,
  59. document.getElementById('container'),
  60. );

栅格列表

可以通过设置 Listgrid 属性来实现栅格列表,column 可设置期望显示的列数。

List列表 - 图5

  1. import React from 'react';
  2. import ReactDOM from 'react-dom';
  3. import { List, Card } from 'choerodon-ui';
  4. const data = [
  5. {
  6. title: 'Title 1',
  7. },
  8. {
  9. title: 'Title 2',
  10. },
  11. {
  12. title: 'Title 3',
  13. },
  14. {
  15. title: 'Title 4',
  16. },
  17. ];
  18. ReactDOM.render(
  19. <List
  20. grid={{ gutter: 16, column: 4 }}
  21. dataSource={data}
  22. renderItem={item => (
  23. <List.Item>
  24. <Card title={item.title}>Card content</Card>
  25. </List.Item>
  26. )}
  27. />,
  28. document.getElementById('container'));

响应式的栅格列表

响应式的栅格列表。尺寸与 Layout Grid 保持一致。

List列表 - 图6

  1. import React from 'react';
  2. import ReactDOM from 'react-dom';
  3. import { List, Card } from 'choerodon-ui';
  4. const data = [
  5. {
  6. title: 'Title 1',
  7. },
  8. {
  9. title: 'Title 2',
  10. },
  11. {
  12. title: 'Title 3',
  13. },
  14. {
  15. title: 'Title 4',
  16. },
  17. {
  18. title: 'Title 5',
  19. },
  20. {
  21. title: 'Title 6',
  22. },
  23. ];
  24. ReactDOM.render(
  25. <List
  26. grid={{ gutter: 16, xs: 1, sm: 2, md: 4, lg: 4, xl: 6, xxl: 3 }}
  27. dataSource={data}
  28. renderItem={item => (
  29. <List.Item>
  30. <Card title={item.title}>Card content</Card>
  31. </List.Item>
  32. )}
  33. />,
  34. document.getElementById('container'));

API

List

参数说明类型默认值
bordered是否展示边框booleanfalse
footer列表底部string|ReactNode-
empty当数据源为空时显示的内容string|ReactNode-
grid列表栅格配置object-
header列表头部string|ReactNode-
itemLayout设置 List.Item 布局, 设置成 vertical 则竖直样式显示, 默认横排string-
loading当卡片内容还在加载中时,可以用 loading 展示一个占位boolean|objectfalse
loadMore加载更多string|ReactNode-
pagination对应的 pagination 配置, 设置 false 不显示boolean|objectfalse
sizelist 的尺寸default | large | smalldefault
split是否展示分割线booleantrue

List grid props

参数说明类型默认值
column列数number-
gutter栅格间隔number0
xs<576px 展示的列数number-
sm≥576px 展示的列数number-
md≥768px 展示的列数number-
lg≥992px 展示的列数number-
xl≥1200px 展示的列数number-
xxl≥1600px 展示的列数number-

List.Item

参数说明类型默认值
actions列表操作组,根据 itemLayout 的不同, 位置在卡片底部或者最右侧Array<ReactNode>-
extra额外内容, 通常用在 itemLayoutvertical 的情况下, 展示右侧内容; horizontal 展示在列表元素最右侧string|ReactNode-

List.Item.Meta

参数说明类型默认值
avatar列表元素的图标ReactNode-
description列表元素的描述内容string|ReactNode-
title列表元素的标题string|ReactNode-