index.js 2.24 KB
Newer Older
1
import React from 'react';
陈帅's avatar
陈帅 committed
2
import { Card } from 'antd';
3
import classNames from 'classnames';
4 5 6

import styles from './index.less';

jim's avatar
jim committed
7
const renderTotal = total => {
8 9
  let totalDom;
  switch (typeof total) {
Wei Zhu's avatar
Wei Zhu committed
10
    case 'undefined':
11 12
      totalDom = null;
      break;
niko's avatar
niko committed
13 14
    case 'function':
      totalDom = <div className={styles.total}>{total()}</div>;
15 16 17 18 19 20 21
      break;
    default:
      totalDom = <div className={styles.total}>{total}</div>;
  }
  return totalDom;
};

陈帅's avatar
陈帅 committed
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
class ChartCard extends React.PureComponent {
  state = {
    loading: true,
  };
  componentDidMount() {
    requestAnimationFrame(() => {
      this.setState({
        loading: false,
      });
    });
  }
  renderConnet = () => {
    const { contentHeight, title, avatar, action, total, footer, children, loading } = this.props;
    if (loading || this.state.loading) {
      return false;
    }
    return (
      <div className={styles.chartCard}>
jim's avatar
jim committed
40
        <div
陈帅's avatar
陈帅 committed
41 42
          className={classNames(styles.chartTop, {
            [styles.chartTopMargin]: !children && !footer,
jim's avatar
jim committed
43 44
          })}
        >
陈帅's avatar
陈帅 committed
45 46 47 48 49 50 51 52
          <div className={styles.avatar}>{avatar}</div>
          <div className={styles.metaWrap}>
            <div className={styles.meta}>
              <span className={styles.title}>{title}</span>
              <span className={styles.action}>{action}</span>
            </div>
            {renderTotal(total)}
          </div>
niko's avatar
niko committed
53
        </div>
陈帅's avatar
陈帅 committed
54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
        {children && (
          <div className={styles.content} style={{ height: contentHeight || 'auto' }}>
            <div className={contentHeight && styles.contentFixed}>{children}</div>
          </div>
        )}
        {footer && (
          <div
            className={classNames(styles.footer, {
              [styles.footerMargin]: !children,
            })}
          >
            {footer}
          </div>
        )}
      </div>
    );
  };
  render() {
    const {
      loading = false,
      contentHeight,
      title,
      avatar,
      action,
      total,
      footer,
      children,
      ...rest
    } = this.props;
    return (
      <Card
        loading={loading || this.state.loading}
        bodyStyle={{ padding: '20px 24px 8px 24px' }}
        {...rest}
      >
        {this.renderConnet()}
      </Card>
    );
  }
}
94 95

export default ChartCard;