BasicList.js 4.05 KB
Newer Older
1 2 3
import React, { PureComponent } from 'react';
import moment from 'moment';
import { connect } from 'dva';
jim's avatar
jim committed
4 5 6 7 8 9 10 11 12 13 14 15 16 17
import {
  List,
  Card,
  Row,
  Col,
  Radio,
  Input,
  Progress,
  Button,
  Icon,
  Dropdown,
  Menu,
  Avatar,
} from 'antd';
18 19 20 21 22 23 24

import PageHeaderLayout from '../../layouts/PageHeaderLayout';

import styles from './BasicList.less';

const RadioButton = Radio.Button;
const RadioGroup = Radio.Group;
afc163's avatar
afc163 committed
25
const { Search } = Input;
26

Andreas Cederström's avatar
Andreas Cederström committed
27 28 29
@connect(({ list, loading }) => ({
  list,
  loading: loading.models.list,
30 31 32 33 34 35 36 37 38 39 40 41
}))
export default class BasicList extends PureComponent {
  componentDidMount() {
    this.props.dispatch({
      type: 'list/fetch',
      payload: {
        count: 5,
      },
    });
  }

  render() {
Andreas Cederström's avatar
Andreas Cederström committed
42
    const { list: { list }, loading } = this.props;
43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58

    const Info = ({ title, value, bordered }) => (
      <div className={styles.headerInfo}>
        <span>{title}</span>
        <p>{value}</p>
        {bordered && <em />}
      </div>
    );

    const extraContent = (
      <div className={styles.extraContent}>
        <RadioGroup defaultValue="all">
          <RadioButton value="all">全部</RadioButton>
          <RadioButton value="progress">进行中</RadioButton>
          <RadioButton value="waiting">等待中</RadioButton>
        </RadioGroup>
jim's avatar
jim committed
59
        <Search className={styles.extraContentSearch} placeholder="请输入" onSearch={() => ({})} />
60 61 62 63 64 65 66 67 68 69 70 71
      </div>
    );

    const paginationProps = {
      showSizeChanger: true,
      showQuickJumper: true,
      pageSize: 5,
      total: 50,
    };

    const ListContent = ({ data: { owner, createdAt, percent, status } }) => (
      <div className={styles.listContent}>
afc163's avatar
afc163 committed
72
        <div className={styles.listContentItem}>
73 74 75
          <span>Owner</span>
          <p>{owner}</p>
        </div>
afc163's avatar
afc163 committed
76
        <div className={styles.listContentItem}>
77
          <span>开始时间</span>
spiritree's avatar
spiritree committed
78
          <p>{moment(createdAt).format('YYYY-MM-DD HH:mm')}</p>
79
        </div>
afc163's avatar
afc163 committed
80 81
        <div className={styles.listContentItem}>
          <Progress percent={percent} status={status} strokeWidth={6} style={{ width: 180 }} />
82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107
        </div>
      </div>
    );

    const menu = (
      <Menu>
        <Menu.Item>
          <a>编辑</a>
        </Menu.Item>
        <Menu.Item>
          <a>删除</a>
        </Menu.Item>
      </Menu>
    );

    const MoreBtn = () => (
      <Dropdown overlay={menu}>
        <a>
          更多 <Icon type="down" />
        </a>
      </Dropdown>
    );

    return (
      <PageHeaderLayout>
        <div className={styles.standardList}>
108
          <Card bordered={false}>
109 110
            <Row>
              <Col sm={8} xs={24}>
niko's avatar
niko committed
111
                <Info title="我的待办" value="8个任务" bordered />
112 113 114 115 116 117 118 119 120 121 122
              </Col>
              <Col sm={8} xs={24}>
                <Info title="本周任务平均处理时间" value="32分钟" bordered />
              </Col>
              <Col sm={8} xs={24}>
                <Info title="本周完成任务数" value="24个任务" />
              </Col>
            </Row>
          </Card>

          <Card
niko's avatar
niko committed
123
            className={styles.listCard}
124
            bordered={false}
niko's avatar
niko committed
125
            title="标准列表"
nikogu's avatar
nikogu committed
126
            style={{ marginTop: 24 }}
niko's avatar
niko committed
127
            bodyStyle={{ padding: '0 32px 40px 32px' }}
128 129
            extra={extraContent}
          >
afc163's avatar
afc163 committed
130
            <Button type="dashed" style={{ width: '100%', marginBottom: 8 }} icon="plus">
afc163's avatar
afc163 committed
131
              添加
132 133
            </Button>
            <List
niko's avatar
niko committed
134
              size="large"
nikogu's avatar
nikogu committed
135
              rowKey="id"
136 137
              loading={loading}
              pagination={paginationProps}
nikogu's avatar
nikogu committed
138 139
              dataSource={list}
              renderItem={item => (
jim's avatar
jim committed
140
                <List.Item actions={[<a>编辑</a>, <MoreBtn />]}>
nikogu's avatar
nikogu committed
141 142 143 144 145 146 147 148 149
                  <List.Item.Meta
                    avatar={<Avatar src={item.logo} shape="square" size="large" />}
                    title={<a href={item.href}>{item.title}</a>}
                    description={item.subDescription}
                  />
                  <ListContent data={item} />
                </List.Item>
              )}
            />
150 151 152 153 154 155
          </Card>
        </div>
      </PageHeaderLayout>
    );
  }
}