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

偏右'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
function getActiveData() {
  const activeData = [];
  for (let i = 0; i < 24; i += 1) {
    activeData.push({
      x: `${fixedZero(i)}:00`,
jim's avatar
jim committed
17
      y: Math.floor(Math.random() * 200) + i * 50,
nikogu's avatar
nikogu committed
18 19 20 21 22
    });
  }
  return activeData;
}

niko's avatar
niko committed
23
export default class ActiveChart extends Component {
nikogu's avatar
nikogu committed
24 25
  state = {
    activeData: getActiveData(),
niko's avatar
niko committed
26
  };
nikogu's avatar
nikogu committed
27 28

  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
  render() {
    const { activeData = [] } = this.state;

    return (
      <div className={styles.activeChart}>
niko's avatar
niko committed
45
        <NumberInfo subTitle="目标评估" total="有望达到预期" />
nikogu's avatar
nikogu committed
46 47 48 49
        <div style={{ marginTop: 32 }}>
          <MiniArea
            animate={false}
            line
niko's avatar
niko committed
50
            borderWidth={2}
nikogu's avatar
nikogu committed
51
            height={84}
niko's avatar
niko committed
52 53 54 55 56
            scale={{
              y: {
                tickCount: 3,
              },
            }}
nikogu's avatar
nikogu committed
57 58
            yAxis={{
              tickLine: false,
niko's avatar
niko committed
59
              label: false,
nikogu's avatar
nikogu committed
60 61 62 63 64 65
              title: false,
              line: false,
            }}
            data={activeData}
          />
        </div>
niko's avatar
niko committed
66 67 68 69 70 71 72 73 74 75 76 77 78
        {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>
        )}
nikogu's avatar
nikogu committed
79 80 81 82
      </div>
    );
  }
}