-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from tw15egan/pie-chart
feat(piechart): add initial PieChart component
- Loading branch information
Showing
2 changed files
with
147 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,124 @@ | ||
import PropTypes from 'prop-types'; | ||
import React, { Component } from 'react'; | ||
import classnames from 'classnames'; | ||
import * as d3 from 'd3'; | ||
|
||
const propTypes = { | ||
data: PropTypes.array, | ||
radius: PropTypes.number, | ||
}; | ||
|
||
const defaultProps = { | ||
data: [['Gryffindor', 100]], | ||
radius: 96, | ||
color: ['#3b1a40', '#473793', '#3c6df0', '#00a68f', '#56D2BB'], | ||
}; | ||
|
||
class PieChart extends Component { | ||
state = { | ||
data: this.props.data, | ||
radius: this.props.radius, | ||
color: d3.scaleOrdinal(this.props.color), | ||
}; | ||
|
||
componentDidMount() { | ||
const { radius } = this.state; | ||
|
||
this.setState(() => { | ||
return { | ||
width: radius * 2, | ||
height: radius * 2 + 24, | ||
}; | ||
}, this.initialRender); | ||
} | ||
|
||
initialRender() { | ||
this.renderSVG(); | ||
} | ||
|
||
renderSVG() { | ||
const { data, radius, height, width, color } = this.state; | ||
|
||
this.svg = d3 | ||
.select(this.refs.container) | ||
.attr('width', width) | ||
.attr('height', height) | ||
.append('g') | ||
.attr('class', 'group-container') | ||
.attr('transform', `translate(${width / 2}, ${height / 2})`); | ||
|
||
const pie = d3.pie().sort(null).value(d => d[1]); | ||
|
||
const path = d3.arc().outerRadius(radius - 10).innerRadius(radius - 40); | ||
|
||
const pathTwo = d3.arc().outerRadius(radius).innerRadius(radius - 40); | ||
|
||
const arc = this.svg | ||
.selectAll('.arc') | ||
.data(pie(data)) | ||
.enter() | ||
.append('g') | ||
.attr('class', 'arc'); | ||
|
||
arc | ||
.append('path') | ||
.attr('d', path) | ||
.attr('fill', (d, i) => color(i)) | ||
.attr('stroke-width', 2) | ||
.attr('stroke', '#FFFFFF') | ||
.on('mouseover', function(d) { | ||
d3 | ||
.select(this) | ||
.transition() | ||
.style('cursor', 'pointer') | ||
.attr('d', pathTwo); | ||
|
||
d3.select('.tooltip').style('display', 'inherit'); | ||
d3.select('.key').text(`${d.data[0]}`); | ||
d3.select('.value').text(`${d.data[1]}`); | ||
}) | ||
.on('mouseout', function(d) { | ||
d3.select('.tooltip').style('display', 'none'); | ||
d3.select(this).transition().attr('d', path); | ||
}); | ||
} | ||
|
||
render() { | ||
const tooltipStyles = { | ||
display: 'none', | ||
position: 'absolute', | ||
top: '50%', | ||
left: '50%', | ||
transform: 'translate(-50%, -50%)', | ||
}; | ||
|
||
const keyStyles = { | ||
fontSize: '14px', | ||
fontWeight: '400', | ||
textAlign: 'center', | ||
color: '#5A6872', | ||
}; | ||
|
||
const valueStyles = { | ||
fontSize: '29px', | ||
fontWeight: '300', | ||
textAlign: 'center', | ||
lineHeight: '1', | ||
}; | ||
|
||
return ( | ||
<div className="bx--graph-container" style={{ position: 'relative' }}> | ||
<svg ref="container" /> | ||
<div className="tooltip" style={tooltipStyles}> | ||
<p className="value" style={valueStyles} /> | ||
<p className="key" style={keyStyles} /> | ||
</div> | ||
</div> | ||
); | ||
} | ||
} | ||
|
||
PieChart.propTypes = propTypes; | ||
PieChart.defaultProps = defaultProps; | ||
|
||
export default PieChart; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
import React from 'react'; | ||
import { storiesOf, action } from '@storybook/react'; | ||
import PieChart from './PieChart'; | ||
|
||
const data = [ | ||
['Gryffindor', Math.floor(Math.random() * 100 + 1)], | ||
['Slytherin', Math.floor(Math.random() * 100 + 1)], | ||
['Ravenclaw', Math.floor(Math.random() * 100 + 1)], | ||
['Hufflepuff', Math.floor(Math.random() * 100 + 1)], | ||
['Teachers', Math.floor(Math.random() * 20 + 1)], | ||
]; | ||
|
||
const props = { | ||
data: data, | ||
}; | ||
|
||
storiesOf('PieChart', module).addWithInfo( | ||
'Default', | ||
` | ||
Pie Chart. | ||
`, | ||
() => <PieChart {...props} /> | ||
); |