-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathbar.jsx
91 lines (78 loc) · 2.03 KB
/
bar.jsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
"use strict";
import {
default as React,
Component,
} from 'react';
import { series } from '../utils/series';
export default class Bar extends Component {
constructor(props) {
super(props);
}
static defaultProps = {
onMouseOver: (d) => {},
onMouseOut: (d) => {},
onClick: (d) => {},
barClassName: 'react-d3-basic__bar'
}
triggerOver(data, e) {
this.props.onMouseOver(e, data)
}
triggerOut(data, e) {
this.props.onMouseOut(e, data)
}
triggerClick(data, e) {
this.props.onClick(e, data);
}
_mkBar() {
const {
height,
width,
margins,
barClassName,
xScaleSet,
yScaleSet
} = this.props;
const that = this;
var dataset = series(this.props)[0];
var domain = yScaleSet.domain();
var zeroBase;
if (domain[0] * domain[1] < 0) {
zeroBase = yScaleSet(0);
} else if (((domain[0] * domain[1]) >= 0) && (domain[0] >= 0)) {
zeroBase = yScaleSet.range()[0];
} else if (((domain[0] * domain[1]) >= 0) && (domain[0] < 0)) {
zeroBase = yScaleSet.range()[1];
}
return (
<g>
{
dataset.data.map((bar, i) => {
return (
<rect
className={`${barClassName} bar`}
x={xScaleSet(bar.x) || xScaleSet(bar.x) === 0? xScaleSet(bar.x) : -10000}
y={bar.y < 0 ? zeroBase: yScaleSet(bar.y)}
width={xScaleSet.bandwidth()}
height={bar.y < domain[0] ? 0: Math.abs(zeroBase - yScaleSet(bar.y))}
fill={bar._style.color? bar._style.color: dataset.color}
style={Object.assign({}, dataset.style, bar._style)}
onMouseOut={that.triggerOut.bind(this, bar)}
onMouseOver={that.triggerOver.bind(this, bar)}
onClick={that.triggerClick.bind(this, bar)}
key={i}
/>
)
})
}
</g>
);
}
render() {
var bar = this._mkBar();
return (
<g>
{bar}
</g>
);
}
}