Monitor.js 4.84 KB
Newer Older
1 2 3 4 5
import React, { PureComponent } from 'react';
import { connect } from 'dva';
import { Row, Col, Card } from 'antd';
import numeral from 'numeral';

niko's avatar
niko committed
6 7
import { NumberInfo, Pie, WaterWave, Gauge, TagCloud } from '../../components/Charts';
import CountDown from '../../components/CountDown';
nikogu's avatar
nikogu committed
8
import ActiveChart from '../../components/ActiveChart';
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29

import styles from './Monitor.less';

const MapData = [];
for (let i = 0; i < 50; i += 1) {
  MapData.push({
    x: Math.floor(Math.random() * 600),
    y: Math.floor(Math.random() * 400),
    value: Math.floor(Math.random() * 1000) + 500,
  });
}
const targetTime = new Date().getTime() + 3900000;

@connect(state => ({
  monitor: state.monitor,
}))
export default class Monitor extends PureComponent {
  componentDidMount() {
    this.props.dispatch({
      type: 'monitor/fetchTags',
    });
nikogu's avatar
nikogu committed
30
  }
nikogu's avatar
nikogu committed
31

32 33 34 35 36
  render() {
    const { monitor } = this.props;
    const { tags } = monitor;

    return (
37
      <div>
38 39
        <Row gutter={24}>
          <Col lg={16} md={24} sm={24} xs={24} style={{ marginBottom: 24 }}>
40
            <Card title="活动实时交易情况" bordered={false}>
41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
              <Row>
                <Col sm={6} xs={12}>
                  <NumberInfo
                    subTitle="今日交易总额"
                    total={numeral(124543233).format('0,0')}
                  />
                </Col>
                <Col sm={6} xs={12}>
                  <NumberInfo
                    subTitle="销售目标完成率"
                    total="92%"
                  />
                </Col>
                <Col sm={6} xs={12}>
                  <NumberInfo
                    subTitle="活动剩余时间"
niko's avatar
niko committed
57
                    total={<CountDown target={targetTime} />}
58 59 60 61 62 63 64 65 66 67
                  />
                </Col>
                <Col sm={6} xs={12}>
                  <NumberInfo
                    subTitle="每秒交易总额"
                    total={numeral(234).format('0,0')}
                  />
                </Col>
              </Row>
              <div className={styles.mapChart}>
niko's avatar
niko committed
68
                <img src="https://gw.alipayobjects.com/zos/rmsportal/fBcAYoxWIjlUXwDjqvzg.png" alt="map" />
69 70 71 72
              </div>
            </Card>
          </Col>
          <Col lg={8} md={24} sm={24} xs={24}>
73
            <Card title="活动情况预测" style={{ marginBottom: 24 }} bordered={false}>
nikogu's avatar
nikogu committed
74
              <ActiveChart />
75
            </Card>
76 77 78 79 80 81
            <Card
              title="券核效率"
              style={{ marginBottom: 24 }}
              bodyStyle={{ textAlign: 'center' }}
              bordered={false}
            >
82
              <Gauge
niko's avatar
niko committed
83 84 85 86 87 88 89 90 91 92 93 94 95 96
                format={(val) => {
                  switch (val) {
                    case 20:
                      return '';
                    case 40:
                      return '';
                    case 60:
                      return '';
                    case 80:
                      return '';
                    default:
                      return '';
                  }
                }}
nikogu's avatar
nikogu committed
97
                title="核销率"
98 99 100 101 102 103 104 105
                height={164}
                percent={87}
              />
            </Card>
          </Col>
        </Row>
        <Row gutter={24}>
          <Col sm={8} xs={24}>
106 107 108 109 110
            <Card
              title="各品类占比"
              style={{ marginBottom: 24 }}
              bordered={false}
            >
nikogu's avatar
nikogu committed
111
              <Row gutter={4} style={{ padding: '18px 0 19px 0' }}>
112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141
                <Col span={8}>
                  <Pie
                    percent={28}
                    subTitle="中式快餐"
                    total="28%"
                    height={129}
                  />
                </Col>
                <Col span={8}>
                  <Pie
                    color="#5DD1DD"
                    percent={22}
                    subTitle="西餐"
                    total="22%"
                    height={129}
                  />
                </Col>
                <Col span={8}>
                  <Pie
                    color="#B5EDC9"
                    percent={32}
                    subTitle="火锅"
                    total="32%"
                    height={129}
                  />
                </Col>
              </Row>
            </Card>
          </Col>
          <Col sm={8} xs={24} style={{ marginBottom: 24 }}>
142
            <Card title="热门搜索" bordered={false}>
143 144 145 146 147 148 149
              <TagCloud
                data={tags}
                height={161}
              />
            </Card>
          </Col>
          <Col sm={8} xs={24} style={{ marginBottom: 24 }}>
150
            <Card title="资源剩余" bodyStyle={{ textAlign: 'center' }} bordered={false}>
151 152 153 154 155 156 157 158
              <WaterWave
                height={161}
                title="补贴资金剩余"
                percent={34}
              />
            </Card>
          </Col>
        </Row>
159
      </div>
160 161 162
    );
  }
}