Workplace.js 7.08 KB
Newer Older
1 2 3 4
import React, { PureComponent } from 'react';
import moment from 'moment';
import { connect } from 'dva';
import { Link } from 'dva/router';
ddcat1115's avatar
ddcat1115 committed
5
import { Row, Col, Card, List, Avatar, Spin } from 'antd';
6

niko's avatar
niko committed
7 8
import { Radar } from 'components/Charts';
import EditableLinkGroup from 'components/EditableLinkGroup';
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
import PageHeaderLayout from '../../layouts/PageHeaderLayout';

import styles from './Workplace.less';

const links = [
  {
    title: '操作一',
    href: '',
  },
  {
    title: '操作二',
    href: '',
  },
  {
    title: '操作三',
    href: '',
  },
  {
    title: '操作四',
    href: '',
  },
  {
    title: '操作五',
    href: '',
  },
  {
    title: '操作六',
    href: '',
  },
];

ddcat1115's avatar
ddcat1115 committed
40 41
@connect(({ user, project, activities, chart, loading }) => ({
  currentUser: user.currentUser,
Andreas Cederström's avatar
Andreas Cederström committed
42 43 44
  project,
  activities,
  chart,
ddcat1115's avatar
ddcat1115 committed
45
  currentUserLoading: loading.effects['user/fetchCurrent'],
Andreas Cederström's avatar
Andreas Cederström committed
46 47
  projectLoading: loading.effects['project/fetchNotice'],
  activitiesLoading: loading.effects['activities/fetchList'],
48 49 50 51
}))
export default class Workplace extends PureComponent {
  componentDidMount() {
    const { dispatch } = this.props;
ddcat1115's avatar
ddcat1115 committed
52 53 54
    dispatch({
      type: 'user/fetchCurrent',
    });
55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
    dispatch({
      type: 'project/fetchNotice',
    });
    dispatch({
      type: 'activities/fetchList',
    });
    dispatch({
      type: 'chart/fetch',
    });
  }

  componentWillUnmount() {
    const { dispatch } = this.props;
    dispatch({
      type: 'chart/clear',
    });
  }

afc163's avatar
afc163 committed
73
  renderActivities() {
74 75 76
    const {
      activities: { list },
    } = this.props;
jim's avatar
jim committed
77 78
    return list.map(item => {
      const events = item.template.split(/@\{([^{}]*)\}/gi).map(key => {
afc163's avatar
afc163 committed
79
        if (item[key]) {
jim's avatar
jim committed
80 81 82 83 84
          return (
            <a href={item[key].link} key={item[key].name}>
              {item[key].name}
            </a>
          );
afc163's avatar
afc163 committed
85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109
        }
        return key;
      });
      return (
        <List.Item key={item.id}>
          <List.Item.Meta
            avatar={<Avatar src={item.user.avatar} />}
            title={
              <span>
                <a className={styles.username}>{item.user.name}</a>
                &nbsp;
                <span className={styles.event}>{events}</span>
              </span>
            }
            description={
              <span className={styles.datetime} title={item.updatedAt}>
                {moment(item.updatedAt).fromNow()}
              </span>
            }
          />
        </List.Item>
      );
    });
  }

110 111
  render() {
    const {
ddcat1115's avatar
ddcat1115 committed
112 113
      currentUser,
      currentUserLoading,
Andreas Cederström's avatar
Andreas Cederström committed
114 115 116
      project: { notice },
      projectLoading,
      activitiesLoading,
117 118 119
      chart: { radarData },
    } = this.props;

120
    const pageHeaderContent = (
ddcat1115's avatar
ddcat1115 committed
121
      <Spin spinning={currentUserLoading}>
jim's avatar
jim committed
122 123 124 125 126 127 128 129 130
        {currentUser && Object.keys(currentUser).length ? (
          <div className={styles.pageHeaderContent}>
            <div className={styles.avatar}>
              <Avatar size="large" src={currentUser.avatar} />
            </div>
            <div className={styles.content}>
              <div className={styles.contentTitle}>早安{currentUser.name}祝你开心每一天</div>
              <div>
                {currentUser.title} | {currentUser.group}
ddcat1115's avatar
ddcat1115 committed
131 132
              </div>
            </div>
jim's avatar
jim committed
133 134
          </div>
        ) : null}
ddcat1115's avatar
ddcat1115 committed
135
      </Spin>
136 137
    );

afc163's avatar
afc163 committed
138 139 140
    const extraContent = (
      <div className={styles.extraContent}>
        <div className={styles.statItem}>
niko's avatar
niko committed
141
          <p>项目数</p>
142 143
          <p>56</p>
        </div>
afc163's avatar
afc163 committed
144
        <div className={styles.statItem}>
niko's avatar
niko committed
145
          <p>团队内排名</p>
jim's avatar
jim committed
146 147 148
          <p>
            8<span> / 24</span>
          </p>
149
        </div>
afc163's avatar
afc163 committed
150
        <div className={styles.statItem}>
niko's avatar
niko committed
151
          <p>项目访问</p>
152 153 154 155 156 157
          <p>2,223</p>
        </div>
      </div>
    );

    return (
jim's avatar
jim committed
158
      <PageHeaderLayout content={pageHeaderContent} extraContent={extraContent}>
159
        <Row gutter={24}>
160
          <Col xl={16} lg={24} md={24} sm={24} xs={24}>
161 162 163 164 165 166 167 168 169
            <Card
              className={styles.projectList}
              style={{ marginBottom: 24 }}
              title="进行中的项目"
              bordered={false}
              extra={<Link to="/">全部项目</Link>}
              loading={projectLoading}
              bodyStyle={{ padding: 0 }}
            >
jim's avatar
jim committed
170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192
              {notice.map(item => (
                <Card.Grid className={styles.projectGrid} key={item.id}>
                  <Card bodyStyle={{ padding: 0 }} bordered={false}>
                    <Card.Meta
                      title={
                        <div className={styles.cardTitle}>
                          <Avatar size="small" src={item.logo} />
                          <Link to={item.href}>{item.title}</Link>
                        </div>
                      }
                      description={item.description}
                    />
                    <div className={styles.projectItemContent}>
                      <Link to={item.memberLink}>{item.member || ''}</Link>
                      {item.updatedAt && (
                        <span className={styles.datetime} title={item.updatedAt}>
                          {moment(item.updatedAt).fromNow()}
                        </span>
                      )}
                    </div>
                  </Card>
                </Card.Grid>
              ))}
193 194 195 196
            </Card>
            <Card
              bodyStyle={{ padding: 0 }}
              bordered={false}
nikogu's avatar
nikogu committed
197
              className={styles.activeCard}
198 199 200
              title="动态"
              loading={activitiesLoading}
            >
niko's avatar
niko committed
201
              <List loading={activitiesLoading} size="large">
jim's avatar
jim committed
202
                <div className={styles.activitiesList}>{this.renderActivities()}</div>
203 204 205
              </List>
            </Card>
          </Col>
206
          <Col xl={8} lg={24} md={24} sm={24} xs={24}>
207 208 209 210 211 212
            <Card
              style={{ marginBottom: 24 }}
              title="快速开始 / 便捷导航"
              bordered={false}
              bodyStyle={{ padding: 0 }}
            >
jim's avatar
jim committed
213
              <EditableLinkGroup onAdd={() => {}} links={links} linkElement={Link} />
214 215 216 217
            </Card>
            <Card
              style={{ marginBottom: 24 }}
              bordered={false}
afc163's avatar
afc163 committed
218
              title="XX 指数"
nikogu's avatar
nikogu committed
219
              loading={radarData.length === 0}
220 221
            >
              <div className={styles.chart}>
222
                <Radar hasLegend height={343} data={radarData} />
223 224 225
              </div>
            </Card>
            <Card
afc163's avatar
afc163 committed
226
              bodyStyle={{ paddingTop: 12, paddingBottom: 12 }}
227 228
              bordered={false}
              title="团队"
ddcat1115's avatar
ddcat1115 committed
229
              loading={projectLoading}
230 231 232
            >
              <div className={styles.members}>
                <Row gutter={48}>
jim's avatar
jim committed
233 234 235 236 237 238 239 240
                  {notice.map(item => (
                    <Col span={12} key={`members-item-${item.id}`}>
                      <Link to={item.href}>
                        <Avatar src={item.logo} size="small" />
                        <span className={styles.member}>{item.member}</span>
                      </Link>
                    </Col>
                  ))}
241 242 243 244 245 246 247 248 249
                </Row>
              </div>
            </Card>
          </Col>
        </Row>
      </PageHeaderLayout>
    );
  }
}