Created
April 15, 2017 02:53
-
-
Save guzmonne/b7905a78526788ace23c0fb740ab96b2 to your computer and use it in GitHub Desktop.
Chart.js
This file contains hidden or 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
import React from 'react' | |
import T from 'prop-types' | |
import uniqueId from 'lodash/uniqueId' | |
import isArray from 'lodash/isArray' | |
import {IMargin, IScale, IAxisOptions} from './propTypes.js' | |
const d3 = Object.assign({}, | |
require('d3-selection'), | |
require('d3-scale'), | |
require('d3-array') | |
) | |
class Chart extends React.Component { | |
constructor(props) { | |
super(props) | |
this.resize = this.resize.bind(this) | |
this.accesorFor = this.accesorFor.bind(this) | |
this.rangeFor = this.rangeFor.bind(this) | |
this.createBandScale = this.createBandScale.bind(this) | |
this.createLinearScale = this.createLinearScale.bind(this) | |
this.createSqrtScale = this.createSqrtScale.bind(this) | |
this.id = uniqueId('chart') | |
this.state = { | |
width: 0, | |
height: 0, | |
targetWidth: 0, | |
targetHeight: 0, | |
} | |
} | |
componentDidMount() { | |
d3.select(window) | |
.on("resize." + this.id, this.resize.bind(this)) | |
this.resize() | |
} | |
resize() { | |
const {margin:m, width:w, height:h} = this.props | |
const width = w - m.left - m.right | |
const height = h - m.top - m.bottom | |
const targetWidth = parseInt(this.container.offsetWidth, 10) | |
const targetHeight = Math.round(targetWidth / (w / h)) | |
this.setState({ | |
width, | |
height, | |
targetWidth, | |
targetHeight, | |
}) | |
} | |
accesorFor(axis) { | |
switch(axis) { | |
case 'z': return this.props.zAccesor | |
case 'y': return this.props.yAccesor | |
case 'x': | |
default: return this.props.xAccesor | |
} | |
} | |
rangeFor(axis) { | |
switch(axis) { | |
case 'y': return [this.state.height, 0] | |
case 'z': | |
case 'x': | |
default: return [0, this.state.width] | |
} | |
} | |
createBandScale(axis, {padding}={}) { | |
const scale = d3.scaleBand() | |
if (padding) { | |
scale.padding(padding) | |
} | |
return ( | |
scale | |
.domain(this.props.data.map(this.accesorFor(axis))) | |
.range(this.rangeFor(axis)) | |
) | |
} | |
createLinearScale(axis, {minRange, maxRange}={}) { | |
const min = minRange !== undefined | |
? minRange | |
: d3.min(this.props.data, this.accesorFor(axis)) | |
const max = maxRange !== undefined | |
? maxRange | |
: d3.max(this.props.data, this.accesorFor(axis)) | |
return ( | |
d3.scaleLinear() | |
.domain([min, max]) | |
.range(this.rangeFor(axis)) | |
.nice() | |
) | |
} | |
createSqrtScale(axis, {maxRadius}={}) { | |
return ( | |
d3.scaleSqrt() | |
.domain([0, d3.max(this.props.data, this.accesorFor(axis))]) | |
.range([0, maxRadius]) | |
) | |
} | |
createTimeScale(axis, {startDate, endDate}={}) { | |
return ( | |
d3.scaleTime() | |
.domain([startDate, endDate]) | |
.range(this.rangeFor(axis)) | |
) | |
} | |
createScale(axis, type, options) { | |
switch (type) { | |
case 'time': | |
return this.createTimeScale(axis, options) | |
case 'band': | |
return this.createBandScale(axis, options) | |
case 'sqrt': | |
return this.createSqrtScale(axis, options) | |
case 'linear': | |
default: | |
return this.createLinearScale(axis, options) | |
} | |
} | |
render() { | |
const { | |
targetWidth, | |
targetHeight, | |
} = this.state | |
const { | |
margin:m, | |
width:w, | |
height:h, | |
xScale:xScaleType, | |
xScaleOptions, | |
yScale:yScaleType, | |
yScaleOptions, | |
zScale:zScaleType, | |
zScaleOptions, | |
children=[] | |
} = this.props | |
const {svg={}} = this | |
const xScale = this.createScale('x', xScaleType, xScaleOptions) | |
const yScale = this.createScale('y', yScaleType, yScaleOptions) | |
const zScale = this.createScale('z', zScaleType, zScaleOptions) | |
return ( | |
<div className="rd3__chart" | |
id={this.id} | |
ref={c => this.container = c} | |
> | |
<svg className="rd3__chart-svg" | |
ref={c => this.svg = c} | |
width={targetWidth || w} | |
height={targetHeight || h} | |
viewBox={`0 0 ${w} ${h}`} | |
preserveAspectRatio="xMinYMid" | |
> | |
<g className="rd3__chart-svg-body" | |
transform={`translate(${m.left}, ${m.top})`} ref={c => this.body = c} | |
> | |
{this.container && | |
(isArray(children) ? children : [children]).map((child, i) => ( | |
React.cloneElement( | |
child, | |
Object.assign( | |
{}, | |
{key: i}, | |
this.props, | |
this.state, | |
{ | |
xScale, | |
yScale, | |
zScale, | |
svg: this.svg, | |
body: this.body, | |
}, | |
(child.props || {}) | |
) | |
) | |
))} | |
</g> | |
</svg> | |
</div> | |
) | |
} | |
} | |
Chart.propTypes = { | |
data: T.array, | |
accesor: T.func, | |
margin: IMargin, | |
width: T.number, | |
height: T.number, | |
xScale: IScale, | |
xScaleOptions: IAxisOptions, | |
xAccesor: T.func, | |
yScale: IScale, | |
yScaleOptions: IAxisOptions, | |
yAccesor: T.func, | |
zScale: IScale, | |
zScaleOptions: IAxisOptions, | |
zAccesor: T.func, | |
} | |
Chart.defaultProps = { | |
margin: { top: 10, right: 20, bottom: 60, left: 30 }, | |
width: 300, | |
height: 200, | |
xScale: "band", | |
data: [], | |
xAccesor: d => d, | |
yAccesor: d => d, | |
} | |
export default Chart |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment