Workplace.js 7.11 KB
Newer Older
1 2 3
import React, { PureComponent } from 'react';
import moment from 'moment';
import { connect } from 'dva';
zinkey's avatar
zinkey committed
4
import Link from 'umi/link';
5
import { Row, Col, Card, List, Avatar } from 'antd';
sorrycc's avatar
sorrycc committed
6 7
import { Radar } from '@/components/Charts';
import EditableLinkGroup from '@/components/EditableLinkGroup';
8
import PageHeaderWrapper from '@/components/PageHeaderWrapper';
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

import styles from './Workplace.less';

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

ddcat1115's avatar
ddcat1115 committed
39 40
@connect(({ user, project, activities, chart, loading }) => ({
  currentUser: user.currentUser,
Andreas Cederström's avatar
Andreas Cederström committed
41 42 43
  project,
  activities,
  chart,
ddcat1115's avatar
ddcat1115 committed
44
  currentUserLoading: loading.effects['user/fetchCurrent'],
Andreas Cederström's avatar
Andreas Cederström committed
45 46
  projectLoading: loading.effects['project/fetchNotice'],
  activitiesLoading: loading.effects['activities/fetchList'],
47
}))
afc163's avatar
afc163 committed
48
class Workplace extends PureComponent {
49 50
  componentDidMount() {
    const { dispatch } = this.props;
ddcat1115's avatar
ddcat1115 committed
51 52 53
    dispatch({
      type: 'user/fetchCurrent',
    });
54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
    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
72
  renderActivities() {
73 74 75
    const {
      activities: { list },
    } = this.props;
jim's avatar
jim committed
76 77
    return list.map(item => {
      const events = item.template.split(/@\{([^{}]*)\}/gi).map(key => {
afc163's avatar
afc163 committed
78
        if (item[key]) {
jim's avatar
jim committed
79 80 81 82 83
          return (
            <a href={item[key].link} key={item[key].name}>
              {item[key].name}
            </a>
          );
afc163's avatar
afc163 committed
84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
        }
        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>
      );
    });
  }

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

119 120 121 122 123 124 125
    const pageHeaderContent =
      currentUser && Object.keys(currentUser).length ? (
        <div className={styles.pageHeaderContent}>
          <div className={styles.avatar}>
            <Avatar size="large" src={currentUser.avatar} />
          </div>
          <div className={styles.content}>
126 127 128 129 130
            <div className={styles.contentTitle}>
              早安
              {currentUser.name}
              祝你开心每一天
            </div>
131
            <div>
132
              {currentUser.title} |{currentUser.group}
ddcat1115's avatar
ddcat1115 committed
133
            </div>
jim's avatar
jim committed
134
          </div>
135 136
        </div>
      ) : null;
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
          <p>
147
            8<span> / 24</span>
jim's avatar
jim committed
148
          </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 (
158
      <PageHeaderWrapper
159 160 161 162
        loading={currentUserLoading}
        content={pageHeaderContent}
        extraContent={extraContent}
      >
163
        <Row gutter={24}>
164
          <Col xl={16} lg={24} md={24} sm={24} xs={24}>
165 166 167 168 169 170 171 172 173
            <Card
              className={styles.projectList}
              style={{ marginBottom: 24 }}
              title="进行中的项目"
              bordered={false}
              extra={<Link to="/">全部项目</Link>}
              loading={projectLoading}
              bodyStyle={{ padding: 0 }}
            >
jim's avatar
jim committed
174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196
              {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>
              ))}
197 198 199 200
            </Card>
            <Card
              bodyStyle={{ padding: 0 }}
              bordered={false}
nikogu's avatar
nikogu committed
201
              className={styles.activeCard}
202 203 204
              title="动态"
              loading={activitiesLoading}
            >
niko's avatar
niko committed
205
              <List loading={activitiesLoading} size="large">
jim's avatar
jim committed
206
                <div className={styles.activitiesList}>{this.renderActivities()}</div>
207 208 209
              </List>
            </Card>
          </Col>
210
          <Col xl={8} lg={24} md={24} sm={24} xs={24}>
211 212 213 214 215 216
            <Card
              style={{ marginBottom: 24 }}
              title="快速开始 / 便捷导航"
              bordered={false}
              bodyStyle={{ padding: 0 }}
            >
jim's avatar
jim committed
217
              <EditableLinkGroup onAdd={() => {}} links={links} linkElement={Link} />
218 219 220 221
            </Card>
            <Card
              style={{ marginBottom: 24 }}
              bordered={false}
afc163's avatar
afc163 committed
222
              title="XX 指数"
nikogu's avatar
nikogu committed
223
              loading={radarData.length === 0}
224 225
            >
              <div className={styles.chart}>
226
                <Radar hasLegend height={343} data={radarData} />
227 228 229
              </div>
            </Card>
            <Card
afc163's avatar
afc163 committed
230
              bodyStyle={{ paddingTop: 12, paddingBottom: 12 }}
231 232
              bordered={false}
              title="团队"
ddcat1115's avatar
ddcat1115 committed
233
              loading={projectLoading}
234 235 236
            >
              <div className={styles.members}>
                <Row gutter={48}>
jim's avatar
jim committed
237 238 239 240 241 242 243 244
                  {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>
                  ))}
245 246 247 248 249
                </Row>
              </div>
            </Card>
          </Col>
        </Row>
250
      </PageHeaderWrapper>
251 252 253
    );
  }
}
陈帅's avatar
陈帅 committed
254

陈帅's avatar
陈帅 committed
255
export default Workplace;