index.js 1.98 KB
Newer Older
nikogu's avatar
nikogu committed
1 2
import React, { PureComponent } from 'react';

偏右's avatar
偏右 committed
3 4
import { MiniArea } from '../Charts';
import NumberInfo from '../NumberInfo';
nikogu's avatar
nikogu committed
5 6 7

import styles from './index.less';

8 9 10 11
function fixedZero(val) {
  return val * 1 < 10 ? `0${val}` : val;
}

nikogu's avatar
nikogu committed
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
function getActiveData() {
  const activeData = [];
  for (let i = 0; i < 24; i += 1) {
    activeData.push({
      x: `${fixedZero(i)}:00`,
      y: (i * 50) + (Math.floor(Math.random() * 200)),
    });
  }
  return activeData;
}

export default class ActiveChart extends PureComponent {
  state = {
    activeData: getActiveData(),
  }

  componentDidMount() {
nikogu's avatar
nikogu committed
29
    this.timer = setInterval(() => {
nikogu's avatar
nikogu committed
30 31 32 33 34 35
      this.setState({
        activeData: getActiveData(),
      });
    }, 1000);
  }

nikogu's avatar
nikogu committed
36 37 38 39
  componentWillUnmount() {
    clearInterval(this.timer);
  }

nikogu's avatar
nikogu committed
40 41 42 43 44 45 46 47 48 49 50 51 52
  render() {
    const { activeData = [] } = this.state;

    return (
      <div className={styles.activeChart}>
        <NumberInfo
          subTitle="目标评估"
          total="有望达到预期"
        />
        <div style={{ marginTop: 32 }}>
          <MiniArea
            animate={false}
            line
niko's avatar
niko committed
53
            borderWidth={2}
nikogu's avatar
nikogu 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
            height={84}
            yAxis={{
              tickCount: 3,
              tickLine: false,
              labels: false,
              title: false,
              line: false,
            }}
            data={activeData}
          />
        </div>
        {
          activeData && (
            <div className={styles.activeChartGrid}>
              <p>{[...activeData].sort()[activeData.length - 1].y + 200} 亿元</p>
              <p>{[...activeData].sort()[Math.floor(activeData.length / 2)].y} 亿元</p>
            </div>
          )
        }
        {
          activeData && (
            <div className={styles.activeChartLegend}>
              <span>00:00</span>
              <span>{activeData[Math.floor(activeData.length / 2)].x}</span>
              <span>{activeData[activeData.length - 1].x}</span>
            </div>
          )
        }
      </div>
    );
  }
}