Workplace.js 7.27 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 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105
  renderActivities() {
    const {
      activities: { list },
    } = this.props;
    return list.map((item) => {
      const events = item.template.split(/@\{([^{}]*)\}/gi).map((key) => {
        if (item[key]) {
          return <a href={item[key].link} key={item[key].name}>{item[key].name}</a>;
        }
        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>
      );
    });
  }

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

116
    const pageHeaderContent = (
ddcat1115's avatar
ddcat1115 committed
117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132
      <Spin spinning={currentUserLoading}>
        {
          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}</div>
              </div>
            </div>
          ) : null
        }
      </Spin>
133 134
    );

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

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