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

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

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

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

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

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

31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
  @Debounce(200)
  resize = () => {
    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);
    }
  }

59 60 61 62 63
  handleRef = (n) => {
    this.node = n;
  }

  renderChart(data) {
64 65 66 67 68 69 70 71
    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;

72 73 74 75 76 77 78 79

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

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

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

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

93 94 95 96 97 98 99 100 101 102 103
    if (autoHideXLabels) {
      chart.axis('x', {
        title: false,
        tickLine: false,
        labels: false,
      });
    } else {
      chart.axis('x', {
        title: false,
      });
    }
104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125
    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
126 127 128
    chart.interval().position('x*y').color(color).style({
      fillOpacity: 1,
    });
129
    chart.render();
nikogu's avatar
nikogu committed
130 131

    this.chart = chart;
132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148
  }

  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;