Created
October 25, 2016 08:09
-
-
Save jbilcke/ac809001f6d38134d2eeb5c00761a926 to your computer and use it in GitHub Desktop.
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
'use strict' | |
import React, { Component, PropTypes } from 'react' | |
import { findDOMNode } from 'react-dom' | |
import c3 from 'c3' | |
import 'c3/c3.css' | |
const emptyFunc = () => {}; | |
export default class Charts extends Component { | |
static displayName = 'Charts'; | |
static propTypes = { | |
data: PropTypes.object.isRequired, | |
title: PropTypes.object, | |
size: PropTypes.object, | |
padding: PropTypes.object, | |
color: PropTypes.object, | |
interaction: PropTypes.object, | |
transition: PropTypes.object, | |
oninit: PropTypes.func, | |
onrendered: PropTypes.func, | |
onmouseover: PropTypes.func, | |
onmouseout: PropTypes.func, | |
onresize: PropTypes.func, | |
onresized: PropTypes.func, | |
axis: PropTypes.object, | |
grid: PropTypes.object, | |
regions: PropTypes.array, | |
legend: PropTypes.object, | |
tooltip: PropTypes.object, | |
subchart: PropTypes.object, | |
zoom: PropTypes.object, | |
point: PropTypes.object, | |
line: PropTypes.object, | |
area: PropTypes.object, | |
bar: PropTypes.object, | |
pie: PropTypes.object, | |
donut: PropTypes.object, | |
gauge: PropTypes.object, | |
className: PropTypes.string, | |
style: PropTypes.object | |
}; | |
static defaultProps = { | |
// no default for data | |
title: {}, | |
size: {}, | |
padding: {}, | |
color: {}, | |
interaction: {}, | |
transition: {}, | |
oninit: emptyFunc, | |
onrendered: emptyFunc, | |
onmouseover: emptyFunc, | |
onmouseout: emptyFunc, | |
onresize: emptyFunc, | |
onresized: emptyFunc, | |
axis: {}, | |
grid: {}, | |
regions: [], | |
legend: {}, | |
tooltip: {}, | |
subchart: {}, | |
zoom: {}, | |
point: {}, | |
line: {}, | |
area: {}, | |
bar: {}, | |
pie: {}, | |
donut: {}, | |
gauge: {} | |
}; | |
componentWillReceiveProps(newProps) { this.updateChart(newProps) } | |
componentWillUnmount() { this.destroyChart() } | |
componentDidMount() { this.updateChart(this.props) } | |
generateChart(mountNode, config) { | |
return c3.generate(Object.assign({ bindto: mountNode }, config)) | |
} | |
destroyChart() { | |
try { | |
this.chart = this.chart.destroy() | |
} catch (err) { | |
throw new Error('Internal C3 error', err) | |
} | |
} | |
updateChart(config) { | |
if (this.chart) this.destroyChart(); | |
this.chart = this.generateChart(findDOMNode(this), Object.assign({}, config)) | |
} | |
render() { | |
return <div className={ this.props.className ? ` ${this.props.className}` : '' } | |
style={ this.props.style ? this.props.style : {} } />; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment