index.js 2.34 KB
Newer Older
1 2
import React, { PureComponent } from 'react';
import G2 from 'g2';
nikogu's avatar
nikogu committed
3
import equal from '../equal';
4 5 6
import styles from '../index.less';

class MiniArea extends PureComponent {
afc163's avatar
afc163 committed
7 8 9 10 11
  static defaultProps = {
    borderColor: '#1890FF',
    color: 'rgba(24, 144, 255, 0.2)',
  };

12 13 14 15 16
  componentDidMount() {
    this.renderChart(this.props.data);
  }

  componentWillReceiveProps(nextProps) {
nikogu's avatar
nikogu committed
17
    if (!equal(this.props, nextProps)) {
18 19 20 21
      this.renderChart(nextProps.data);
    }
  }

nikogu's avatar
nikogu committed
22 23 24 25 26 27
  componentWillUnmount() {
    if (this.chart) {
      this.chart.destroy();
    }
  }

28 29 30 31 32
  handleRef = (n) => {
    this.node = n;
  }

  renderChart(data) {
afc163's avatar
afc163 committed
33 34 35
    const {
      height = 0, fit = true, color, borderWidth = 2, line, xAxis, yAxis, animate = true,
    } = this.props;
niko's avatar
niko committed
36
    const borderColor = this.props.borderColor || color;
37 38 39 40 41 42 43 44 45 46 47 48

    if (!data || (data && data.length < 1)) {
      return;
    }

    // clean
    this.node.innerHTML = '';

    const chart = new G2.Chart({
      container: this.node,
      forceFit: fit,
      height: height + 54,
nikogu's avatar
nikogu committed
49
      animate,
50
      plotCfg: {
nikogu's avatar
nikogu committed
51
        margin: [36, 5, 30, 5],
52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
      },
      legend: null,
    });

    if (!xAxis && !yAxis) {
      chart.axis(false);
    }

    if (xAxis) {
      chart.axis('x', xAxis);
    } else {
      chart.axis('x', false);
    }

    if (yAxis) {
      chart.axis('y', yAxis);
    } else {
      chart.axis('y', false);
    }

niko's avatar
niko committed
72
    const dataConfig = {
73 74 75 76 77 78 79 80 81
      x: {
        type: 'cat',
        range: [0, 1],
        ...xAxis,
      },
      y: {
        min: 0,
        ...yAxis,
      },
niko's avatar
niko committed
82
    };
83

nikogu's avatar
nikogu committed
84
    chart.tooltip({
85 86 87
      title: null,
      crosshairs: false,
      map: {
nikogu's avatar
nikogu committed
88 89 90
        title: null,
        name: 'x',
        value: 'y',
91 92
      },
    });
niko's avatar
niko committed
93

nikogu's avatar
nikogu committed
94
    const view = chart.createView();
niko's avatar
niko committed
95 96
    view.source(data, dataConfig);

niko's avatar
niko committed
97 98
    view.area().position('x*y').color(color).shape('smooth')
      .style({ fillOpacity: 1 });
niko's avatar
niko committed
99

100
    if (line) {
niko's avatar
niko committed
101 102 103 104 105
      const view2 = chart.createView();
      view2.source(data, dataConfig);
      view2.line().position('x*y').color(borderColor).size(borderWidth)
        .shape('smooth');
      view2.tooltip(false);
106 107
    }
    chart.render();
nikogu's avatar
nikogu committed
108 109

    this.chart = chart;
110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125
  }

  render() {
    const { height } = this.props;

    return (
      <div className={styles.miniChart} style={{ height }}>
        <div>
          <div ref={this.handleRef} />
        </div>
      </div>
    );
  }
}

export default MiniArea;