index.js 2.87 KB
Newer Older
1 2
import React, { PureComponent } from 'react';
import G2 from 'g2';
3
import Debounce from 'lodash-decorators/debounce';
afc163's avatar
afc163 committed
4
import Bind from 'lodash-decorators/bind';
nikogu's avatar
nikogu committed
5
import equal from '../equal';
6 7 8
import styles from '../index.less';

class Bar extends PureComponent {
9 10 11 12
  state = {
    autoHideXLabels: false,
  }

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

    window.addEventListener('resize', this.resize);
17 18 19
  }

  componentWillReceiveProps(nextProps) {
nikogu's avatar
nikogu committed
20
    if (!equal(this.props, nextProps)) {
21 22 23 24
      this.renderChart(nextProps.data);
    }
  }

nikogu's avatar
nikogu committed
25
  componentWillUnmount() {
26
    window.removeEventListener('resize', this.resize);
nikogu's avatar
nikogu committed
27 28 29
    if (this.chart) {
      this.chart.destroy();
    }
afc163's avatar
afc163 committed
30
    this.resize.cancel();
nikogu's avatar
nikogu committed
31 32
  }

afc163's avatar
afc163 committed
33
  @Bind()
34
  @Debounce(200)
afc163's avatar
afc163 committed
35
  resize() {
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
    if (!this.node) {
      return;
    }
    const canvasWidth = this.node.parentNode.clientWidth;
    const { data = [], autoLabel = true } = this.props;
    if (!autoLabel) {
      return;
    }
    const minWidth = data.length * 30;
    const { autoHideXLabels } = this.state;

    if (canvasWidth <= minWidth) {
      if (!autoHideXLabels) {
        this.setState({
          autoHideXLabels: true,
        });
        this.renderChart(data);
      }
    } else if (autoHideXLabels) {
      this.setState({
        autoHideXLabels: false,
      });
      this.renderChart(data);
    }
  }

62 63 64 65 66
  handleRef = (n) => {
    this.node = n;
  }

  renderChart(data) {
67 68 69 70 71 72 73 74
    const { autoHideXLabels } = this.state;
    const {
      height = 0,
      fit = true,
      color = 'rgba(24, 144, 255, 0.85)',
      margin = [32, 0, (autoHideXLabels ? 8 : 32), 40],
    } = this.props;

75 76 77 78 79 80 81 82

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

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

afc163's avatar
afc163 committed
83
    const { Frame } = G2;
84 85 86 87 88 89 90 91 92 93 94 95
    const frame = new Frame(data);

    const chart = new G2.Chart({
      container: this.node,
      forceFit: fit,
      height: height - 22,
      legend: null,
      plotCfg: {
        margin,
      },
    });

96 97 98 99 100 101 102 103 104 105 106
    if (autoHideXLabels) {
      chart.axis('x', {
        title: false,
        tickLine: false,
        labels: false,
      });
    } else {
      chart.axis('x', {
        title: false,
      });
    }
107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128
    chart.axis('y', {
      title: false,
      line: false,
      tickLine: false,
    });

    chart.source(frame, {
      x: {
        type: 'cat',
      },
      y: {
        min: 0,
      },
    });

    chart.tooltip({
      title: null,
      crosshairs: false,
      map: {
        name: 'x',
      },
    });
niko's avatar
niko committed
129 130 131
    chart.interval().position('x*y').color(color).style({
      fillOpacity: 1,
    });
132
    chart.render();
nikogu's avatar
nikogu committed
133 134

    this.chart = chart;
135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151
  }

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

    return (
      <div className={styles.chart} style={{ height }}>
        <div>
          { title && <h4>{title}</h4>}
          <div ref={this.handleRef} />
        </div>
      </div>
    );
  }
}

export default Bar;