index.js 7.17 KB
Newer Older
1
import React, { Component } from 'react';
niko's avatar
niko committed
2 3
import { Chart, Tooltip, Geom, Coord } from 'bizcharts';
import { DataView } from '@antv/data-set';
afc163's avatar
afc163 committed
4
import { Divider } from 'antd';
偏右's avatar
偏右 committed
5 6
import classNames from 'classnames';
import ReactFitText from 'react-fittext';
7
import Debounce from 'lodash-decorators/debounce';
afc163's avatar
afc163 committed
8
import Bind from 'lodash-decorators/bind';
ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
9
import ResizeObserver from 'resize-observer-polyfill';
10 11 12
import styles from './index.less';

/* eslint react/no-danger:0 */
afc163's avatar
afc163 committed
13
class Pie extends Component {
14
  state = {
ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
15
    height: 0,
16
    legendData: [],
niko's avatar
niko committed
17
    legendBlock: false,
偏右's avatar
偏右 committed
18
  };
19 20

  componentDidMount() {
ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
21 22 23
    window.addEventListener(
      'resize',
      () => {
ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
24
        this.requestRef = requestAnimationFrame(() => this.resize());
ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
25 26 27
      },
      { passive: true }
    );
ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
28
    this.resizeObserver();
29 30
  }

jim's avatar
jim committed
31
  componentDidUpdate(preProps) {
ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
32 33
    const { data } = this.props;
    if (data !== preProps.data) {
34 35
      // because of charts data create when rendered
      // so there is a trick for get rendered time
jim's avatar
jim committed
36
      this.getLegendData();
nikogu's avatar
nikogu committed
37
    }
38
  }
ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
39

40
  componentWillUnmount() {
ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
41
    window.cancelAnimationFrame(this.requestRef);
42
    window.removeEventListener('resize', this.resize);
afc163's avatar
afc163 committed
43
    this.resize.cancel();
44 45
  }

jim's avatar
jim committed
46
  getG2Instance = chart => {
niko's avatar
niko committed
47
    this.chart = chart;
jim's avatar
jim committed
48 49 50 51
    requestAnimationFrame(() => {
      this.getLegendData();
      this.resize();
    });
niko's avatar
niko committed
52 53 54
  };

  // for custom lengend view
Rupeshiya's avatar
Rupeshiya committed
55
  getLegendData = () => {
niko's avatar
niko committed
56 57
    if (!this.chart) return;
    const geom = this.chart.getAllGeoms()[0]; // θŽ·ε–ζ‰€ζœ‰ηš„ε›Ύε½’
jim's avatar
jim committed
58
    if (!geom) return;
niko's avatar
niko committed
59 60
    const items = geom.get('dataArray') || []; // θŽ·ε–ε›Ύε½’ε―ΉεΊ”ηš„

jim's avatar
jim committed
61
    const legendData = items.map(item => {
niko's avatar
niko committed
62 63 64 65 66 67 68 69 70 71 72 73
      /* eslint no-underscore-dangle:0 */
      const origin = item[0]._origin;
      origin.color = item[0].color;
      origin.checked = true;
      return origin;
    });

    this.setState({
      legendData,
    });
  };

jim's avatar
jim committed
74
  handleRoot = n => {
75
    this.root = n;
niko's avatar
niko committed
76
  };
77

78 79 80 81
  handleLegendClick = (item, i) => {
    const newItem = item;
    newItem.checked = !newItem.checked;

afc163's avatar
afc163 committed
82
    const { legendData } = this.state;
83 84
    legendData[i] = newItem;

niko's avatar
niko committed
85 86
    const filteredLegendData = legendData.filter(l => l.checked).map(l => l.x);

87
    if (this.chart) {
niko's avatar
niko committed
88
      this.chart.filter('x', val => filteredLegendData.indexOf(val) > -1);
89 90 91 92 93
    }

    this.setState({
      legendData,
    });
niko's avatar
niko committed
94
  };
95

ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
96 97
  resizeObserver() {
    const ro = new ResizeObserver(entries => {
ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
98 99 100
      const { height } = entries[0].contentRect;
      this.setState(preState => {
        if (preState.height !== height) {
ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
101 102 103 104 105 106 107
          return {
            height,
          };
        }
        return null;
      });
    });
ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
108 109
    if (this.chartDom) {
      ro.observe(this.chartDom);
ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
110 111 112
    }
  }

ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135
  // for window resize auto responsive legend
  @Bind()
  @Debounce(300)
  resize() {
    const { hasLegend } = this.props;
    const { legendBlock } = this.state;
    if (!hasLegend || !this.root) {
      window.removeEventListener('resize', this.resize);
      return;
    }
    if (this.root.parentNode.clientWidth <= 380) {
      if (!legendBlock) {
        this.setState({
          legendBlock: true,
        });
      }
    } else if (legendBlock) {
      this.setState({
        legendBlock: false,
      });
    }
  }

niko's avatar
niko committed
136
  render() {
137
    const {
niko's avatar
niko committed
138 139 140 141 142 143 144
      valueFormat,
      subTitle,
      total,
      hasLegend = false,
      className,
      style,
      height,
145
      percent,
niko's avatar
niko committed
146
      color,
147 148
      inner = 0.75,
      animate = true,
niko's avatar
niko committed
149
      colors,
niko's avatar
niko committed
150
      lineWidth = 1,
nikogu's avatar
nikogu committed
151
    } = this.props;
152

ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
153
    const { legendData, height: stateHeight, legendBlock } = this.state;
niko's avatar
niko committed
154 155 156 157
    const pieClassName = classNames(styles.pie, className, {
      [styles.hasLegend]: !!hasLegend,
      [styles.legendBlock]: legendBlock,
    });
niko's avatar
niko committed
158

yoyo837's avatar
yoyo837 committed
159 160 161 162 163
    const {
      data: propsData,
      selected: propsSelected = true,
      tooltip: propsTooltip = true,
    } = this.props;
164

yoyo837's avatar
yoyo837 committed
165
    let data = propsData || [];
yoyo837's avatar
yoyo837 committed
166 167
    let selected = propsSelected;
    let tooltip = propsTooltip;
168

niko's avatar
niko committed
169
    const defaultColors = colors;
ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
170 171
    selected = selected || true;
    tooltip = tooltip || true;
172
    let formatColor;
niko's avatar
niko committed
173 174 175 176 177 178 179 180 181 182 183

    const scale = {
      x: {
        type: 'cat',
        range: [0, 1],
      },
      y: {
        min: 0,
      },
    };

184
    if (percent || percent === 0) {
185 186
      selected = false;
      tooltip = false;
jim's avatar
jim committed
187
      formatColor = value => {
188
        if (value === '占比') {
afc163's avatar
Fix pie  
afc163 committed
189
          return color || 'rgba(24, 144, 255, 0.85)';
190
        }
191
        return '#F0F2F5';
192 193 194 195 196 197 198 199 200 201 202 203 204 205
      };

      data = [
        {
          x: '占比',
          y: parseFloat(percent),
        },
        {
          x: '反比',
          y: 100 - parseFloat(percent),
        },
      ];
    }

niko's avatar
niko committed
206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221
    const tooltipFormat = [
      'x*percent',
      (x, p) => ({
        name: x,
        value: `${(p * 100).toFixed(2)}%`,
      }),
    ];

    const padding = [12, 0, 12, 0];

    const dv = new DataView();
    dv.source(data).transform({
      type: 'percent',
      field: 'y',
      dimension: 'x',
      as: 'percent',
偏右's avatar
偏右 committed
222
    });
223 224

    return (
225
      <div ref={this.handleRoot} className={pieClassName} style={style}>
ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251
        <div
          ref={ref => {
            this.chartDom = ref;
          }}
        >
          <ReactFitText maxFontSize={25}>
            <div className={styles.chart}>
              <Chart
                scale={scale}
                height={height || stateHeight}
                data={dv}
                padding={padding}
                animate={animate}
                onGetG2Instance={this.getG2Instance}
              >
                {!!tooltip && <Tooltip showTitle={false} />}
                <Coord type="theta" innerRadius={inner} />
                <Geom
                  style={{ lineWidth, stroke: '#fff' }}
                  tooltip={tooltip && tooltipFormat}
                  type="intervalStack"
                  position="percent"
                  color={['x', percent || percent === 0 ? formatColor : defaultColors]}
                  selected={selected}
                />
              </Chart>
niko's avatar
niko committed
252

ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
253 254 255 256 257 258 259 260 261 262 263 264
              {(subTitle || total) && (
                <div className={styles.total}>
                  {subTitle && <h4 className="pie-sub-title">{subTitle}</h4>}
                  {/* eslint-disable-next-line */}
                  {total && (
                    <div className="pie-stat">{typeof total === 'function' ? total() : total}</div>
                  )}
                </div>
              )}
            </div>
          </ReactFitText>
        </div>
niko's avatar
niko committed
265 266 267 268 269 270
        {hasLegend && (
          <ul className={styles.legend}>
            {legendData.map((item, i) => (
              <li key={item.x} onClick={() => this.handleLegendClick(item, i)}>
                <span
                  className={styles.dot}
jim's avatar
jim committed
271 272 273
                  style={{
                    backgroundColor: !item.checked ? '#aaa' : item.color,
                  }}
niko's avatar
niko committed
274 275 276
                />
                <span className={styles.legendTitle}>{item.x}</span>
                <Divider type="vertical" />
nikogu's avatar
nikogu committed
277
                <span className={styles.percent}>
278
                  {`${(Number.isNaN(item.percent) ? 0 : item.percent * 100).toFixed(2)}%`}
nikogu's avatar
nikogu committed
279
                </span>
niko's avatar
niko committed
280
                <span className={styles.value}>{valueFormat ? valueFormat(item.y) : item.y}</span>
niko's avatar
niko committed
281 282 283 284
              </li>
            ))}
          </ul>
        )}
285 286 287 288
      </div>
    );
  }
}
Rayron Victor's avatar
Rayron Victor committed
289 290

export default Pie;