| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249 |
- import React, { PureComponent } from 'react';
- import moment from 'moment';
- import { connect } from 'dva';
- import { Link } from 'dva/router';
- import { Row, Col, Card, List, Avatar, Spin } from 'antd';
- import { Radar } from 'components/Charts';
- import EditableLinkGroup from 'components/EditableLinkGroup';
- import PageHeaderLayout from '../../layouts/PageHeaderLayout';
- import styles from './Workplace.less';
- const links = [
- {
- title: '操作一',
- href: '',
- },
- {
- title: '操作二',
- href: '',
- },
- {
- title: '操作三',
- href: '',
- },
- {
- title: '操作四',
- href: '',
- },
- {
- title: '操作五',
- href: '',
- },
- {
- title: '操作六',
- href: '',
- },
- ];
- @connect(({ user, project, activities, chart, loading }) => ({
- currentUser: user.currentUser,
- project,
- activities,
- chart,
- currentUserLoading: loading.effects['user/fetchCurrent'],
- projectLoading: loading.effects['project/fetchNotice'],
- activitiesLoading: loading.effects['activities/fetchList'],
- }))
- export default class Workplace extends PureComponent {
- componentDidMount() {
- const { dispatch } = this.props;
- dispatch({
- type: 'user/fetchCurrent',
- });
- dispatch({
- type: 'project/fetchNotice',
- });
- dispatch({
- type: 'activities/fetchList',
- });
- dispatch({
- type: 'chart/fetch',
- });
- }
- componentWillUnmount() {
- const { dispatch } = this.props;
- dispatch({
- type: 'chart/clear',
- });
- }
- 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>
-
- <span className={styles.event}>{events}</span>
- </span>
- }
- description={
- <span className={styles.datetime} title={item.updatedAt}>
- {moment(item.updatedAt).fromNow()}
- </span>
- }
- />
- </List.Item>
- );
- });
- }
- render() {
- const {
- currentUser,
- currentUserLoading,
- project: { notice },
- projectLoading,
- activitiesLoading,
- chart: { radarData },
- } = this.props;
- const pageHeaderContent = (
- <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>
- );
- const extraContent = (
- <div className={styles.extraContent}>
- <div className={styles.statItem}>
- <p>项目数</p>
- <p>56</p>
- </div>
- <div className={styles.statItem}>
- <p>团队内排名</p>
- <p>
- 8<span> / 24</span>
- </p>
- </div>
- <div className={styles.statItem}>
- <p>项目访问</p>
- <p>2,223</p>
- </div>
- </div>
- );
- return (
- <PageHeaderLayout content={pageHeaderContent} extraContent={extraContent}>
- <Row gutter={24}>
- <Col xl={16} lg={24} md={24} sm={24} xs={24}>
- <Card
- className={styles.projectList}
- style={{ marginBottom: 24 }}
- title="进行中的项目"
- bordered={false}
- extra={<Link to="/">全部项目</Link>}
- loading={projectLoading}
- bodyStyle={{ padding: 0 }}
- >
- {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>
- ))}
- </Card>
- <Card
- bodyStyle={{ padding: 0 }}
- bordered={false}
- className={styles.activeCard}
- title="动态"
- loading={activitiesLoading}
- >
- <List loading={activitiesLoading} size="large">
- <div className={styles.activitiesList}>{this.renderActivities()}</div>
- </List>
- </Card>
- </Col>
- <Col xl={8} lg={24} md={24} sm={24} xs={24}>
- <Card
- style={{ marginBottom: 24 }}
- title="快速开始 / 便捷导航"
- bordered={false}
- bodyStyle={{ padding: 0 }}
- >
- <EditableLinkGroup onAdd={() => {}} links={links} linkElement={Link} />
- </Card>
- <Card
- style={{ marginBottom: 24 }}
- bordered={false}
- title="XX 指数"
- loading={radarData.length === 0}
- >
- <div className={styles.chart}>
- <Radar hasLegend height={343} data={radarData} />
- </div>
- </Card>
- <Card
- bodyStyle={{ paddingTop: 12, paddingBottom: 12 }}
- bordered={false}
- title="团队"
- loading={projectLoading}
- >
- <div className={styles.members}>
- <Row gutter={48}>
- {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>
- ))}
- </Row>
- </div>
- </Card>
- </Col>
- </Row>
- </PageHeaderLayout>
- );
- }
- }
|