index.tsx 7.55 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';
愚道's avatar
愚道 committed
6
import { Dispatch } from 'redux';
7
import { Charts } from 'ant-design-pro';
愚道's avatar
愚道 committed
8

9 10
import EditableLinkGroup from './components/EditableLinkGroup';
import PageHeaderWrapper from './components/PageHeaderWrapper';
愚道's avatar
愚道 committed
11 12
import { ModalState } from './model';
import { CurrentUser, Activeties, RadarData, Notice } from './data';
13

14 15 16
import styles from './style.less';

const { Radar } = Charts;
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44

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

愚道's avatar
愚道 committed
45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
interface BLOCK_NAME_CAMEL_CASEProps {
  currentUser: CurrentUser;
  projectNotice: Notice[];
  activities: Activeties[];
  radarData: RadarData[];
  dispatch: Dispatch;
  currentUserLoading: boolean;
  projectLoading: boolean;
  activitiesLoading: boolean;
}

@connect(({
  BLOCK_NAME_CAMEL_CASE: { currentUser, projectNotice, activities, radarData },
  loading,
}: {
  BLOCK_NAME_CAMEL_CASE: ModalState,
  loading: { effects: any },
}) => ({
  currentUser,
  projectNotice,
Andreas Cederström's avatar
Andreas Cederström committed
65
  activities,
愚道's avatar
愚道 committed
66
  radarData,
67 68 69
  currentUserLoading: loading.effects['BLOCK_NAME_CAMEL_CASE/fetchUserCurrent'],
  projectLoading: loading.effects['BLOCK_NAME_CAMEL_CASE/fetchProjectNotice'],
  activitiesLoading: loading.effects['BLOCK_NAME_CAMEL_CASE/fetchActivitiesList'],
70
}))
愚道's avatar
愚道 committed
71
class PAGE_NAME_UPPER_CAMEL_CASE extends PureComponent<BLOCK_NAME_CAMEL_CASEProps> {
72 73
  componentDidMount() {
    const { dispatch } = this.props;
ddcat1115's avatar
ddcat1115 committed
74
    dispatch({
75
      type: 'BLOCK_NAME_CAMEL_CASE/init',
76 77 78 79 80 81
    });
  }

  componentWillUnmount() {
    const { dispatch } = this.props;
    dispatch({
82
      type: 'BLOCK_NAME_CAMEL_CASE/clear',
83 84 85
    });
  }

afc163's avatar
afc163 committed
86
  renderActivities() {
87
    const {
愚道's avatar
愚道 committed
88
      activities,
89
    } = this.props;
愚道's avatar
愚道 committed
90
    return activities.map(item => {
jim's avatar
jim committed
91
      const events = item.template.split(/@\{([^{}]*)\}/gi).map(key => {
afc163's avatar
afc163 committed
92
        if (item[key]) {
jim's avatar
jim committed
93 94 95 96 97
          return (
            <a href={item[key].link} key={item[key].name}>
              {item[key].name}
            </a>
          );
afc163's avatar
afc163 committed
98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122
        }
        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>
      );
    });
  }

123 124
  render() {
    const {
ddcat1115's avatar
ddcat1115 committed
125
      currentUser,
愚道's avatar
愚道 committed
126
      projectNotice,
Andreas Cederström's avatar
Andreas Cederström committed
127 128
      projectLoading,
      activitiesLoading,
愚道's avatar
愚道 committed
129
      radarData,
130 131
    } = this.props;

132 133 134 135 136 137 138
    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}>
139 140 141 142 143
            <div className={styles.contentTitle}>
              早安,
              {currentUser.name}
              ,祝你开心每一天!
            </div>
144
            <div>
145
              {currentUser.title} |{currentUser.group}
ddcat1115's avatar
ddcat1115 committed
146
            </div>
jim's avatar
jim committed
147
          </div>
148 149
        </div>
      ) : null;
150

afc163's avatar
afc163 committed
151 152 153
    const extraContent = (
      <div className={styles.extraContent}>
        <div className={styles.statItem}>
niko's avatar
niko committed
154
          <p>项目数</p>
155 156
          <p>56</p>
        </div>
afc163's avatar
afc163 committed
157
        <div className={styles.statItem}>
niko's avatar
niko committed
158
          <p>团队内排名</p>
jim's avatar
jim committed
159
          <p>
160
            8<span> / 24</span>
jim's avatar
jim committed
161
          </p>
162
        </div>
afc163's avatar
afc163 committed
163
        <div className={styles.statItem}>
niko's avatar
niko committed
164
          <p>项目访问</p>
165 166 167 168 169 170
          <p>2,223</p>
        </div>
      </div>
    );

    return (
171
      <PageHeaderWrapper
172 173 174
        content={pageHeaderContent}
        extraContent={extraContent}
      >
175
        <Row gutter={24}>
176
          <Col xl={16} lg={24} md={24} sm={24} xs={24}>
177 178 179 180 181 182 183 184 185
            <Card
              className={styles.projectList}
              style={{ marginBottom: 24 }}
              title="进行中的项目"
              bordered={false}
              extra={<Link to="/">全部项目</Link>}
              loading={projectLoading}
              bodyStyle={{ padding: 0 }}
            >
愚道's avatar
愚道 committed
186
              {projectNotice.map(item => (
jim's avatar
jim committed
187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208
                <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>
              ))}
209 210 211 212
            </Card>
            <Card
              bodyStyle={{ padding: 0 }}
              bordered={false}
nikogu's avatar
nikogu committed
213
              className={styles.activeCard}
214 215 216
              title="动态"
              loading={activitiesLoading}
            >
niko's avatar
niko committed
217
              <List loading={activitiesLoading} size="large">
jim's avatar
jim committed
218
                <div className={styles.activitiesList}>{this.renderActivities()}</div>
219 220 221
              </List>
            </Card>
          </Col>
222
          <Col xl={8} lg={24} md={24} sm={24} xs={24}>
223 224 225 226 227 228
            <Card
              style={{ marginBottom: 24 }}
              title="快速开始 / 便捷导航"
              bordered={false}
              bodyStyle={{ padding: 0 }}
            >
jim's avatar
jim committed
229
              <EditableLinkGroup onAdd={() => {}} links={links} linkElement={Link} />
230 231 232 233
            </Card>
            <Card
              style={{ marginBottom: 24 }}
              bordered={false}
afc163's avatar
afc163 committed
234
              title="XX 指数"
nikogu's avatar
nikogu committed
235
              loading={radarData.length === 0}
236 237
            >
              <div className={styles.chart}>
238
                <Radar hasLegend height={343} data={radarData} />
239 240 241
              </div>
            </Card>
            <Card
afc163's avatar
afc163 committed
242
              bodyStyle={{ paddingTop: 12, paddingBottom: 12 }}
243 244
              bordered={false}
              title="团队"
ddcat1115's avatar
ddcat1115 committed
245
              loading={projectLoading}
246 247 248
            >
              <div className={styles.members}>
                <Row gutter={48}>
愚道's avatar
愚道 committed
249
                  {projectNotice.map(item => (
jim's avatar
jim committed
250 251 252 253 254 255 256
                    <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>
                  ))}
257 258 259 260 261
                </Row>
              </div>
            </Card>
          </Col>
        </Row>
262
      </PageHeaderWrapper>
263 264 265
    );
  }
}
陈帅's avatar
陈帅 committed
266

267
export default PAGE_NAME_UPPER_CAMEL_CASE;