Created
November 12, 2018 15:39
-
-
Save ryancoughlin/79ea16820ca25e474bee4361e4a06827 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
import React, { Component } from 'react'; | |
import { | |
VictoryLine, | |
VictoryChart, | |
VictoryContainer, | |
VictoryClipContainer, | |
VictoryZoomContainer, | |
VictoryAxis, | |
VictoryScatter, | |
} from 'victory'; | |
import moment from 'moment'; | |
import glamorous from 'glamorous'; | |
import UI from '../../assets/ui'; | |
import Marker from './marker'; | |
const AXIS_FONT_SIZE = 14; | |
const tomorrow = new Date().setDate(new Date().getDate() + 1); | |
export default class TideChart extends Component { | |
get tides() { | |
const { tides } = this.props; | |
const values = Object.values(tides); | |
const flatTides = values.flat(); | |
return flatTides.map(prediction => ({ | |
...prediction, | |
time: moment(prediction.time), | |
})); | |
} | |
render() { | |
return ( | |
<Container> | |
<VictoryChart | |
containerComponent={( | |
<VictoryZoomContainer | |
clipContainerComponent={( | |
<VictoryClipContainer | |
clipPadding={{ top: 34 }} | |
/>)} | |
zoomDomain={{ x: [new Date(), tomorrow] }} | |
allowZoom={false} | |
dimension="x" | |
/> | |
)} | |
height={200} | |
padding={{ | |
top: 30, | |
right: 10, | |
bottom: 32, | |
left: 30, | |
}} | |
> | |
<VictoryAxis | |
dependentAxis | |
tickValues={[0, 4, 8, 12]} | |
orientation="left" | |
scale="linear" | |
style={{ | |
axis: { stroke: 'transparent' }, | |
grid: { | |
stroke: 'lightgrey', | |
strokeWidth: 1, | |
strokeDasharray: '10', | |
}, | |
ticks: { stroke: 'transparent' }, | |
tickLabels: { | |
fill: UI.Colors.SubtleTextColor, | |
fontSize: AXIS_FONT_SIZE, | |
fontFamily: 'overpass-mono', | |
}, | |
axisLabel: { | |
fill: UI.Colors.SubtleTextColor, | |
fontSize: AXIS_FONT_SIZE, | |
fontFamily: 'overpass-mono', | |
}, | |
}} | |
/> | |
<VictoryAxis | |
scale="time" | |
offsetY={33} | |
style={{ | |
axis: { stroke: UI.Colors.SubtleTextColor, strokeWidth: 1 }, | |
tickLabels: { | |
fill: UI.Colors.SubtleTextColor, | |
fontSize: AXIS_FONT_SIZE, | |
fontFamily: 'overpass-mono', | |
}, | |
}} | |
/> | |
<VictoryLine | |
data={this.tides} | |
interpolation="catmullRom" | |
x="time" | |
y="height" | |
scale={{ x: 'time' }} | |
style={{ | |
data: { | |
stroke: UI.Colors.Primary, | |
strokeWidth: 3.6, | |
strokeLinecap: 'round', | |
}, | |
}} | |
/> | |
<VictoryScatter | |
dataComponent={<Marker />} | |
data={this.tides} | |
x="time" | |
y="height" | |
scale={{ x: 'time' }} | |
size={10} | |
/> | |
<VictoryScatter | |
data={[{ x: new Date(), y: 10 }]} | |
size={6} | |
style={{ | |
labels: { | |
fill: UI.Colors.Highlight, | |
fontFamily: 'overpass-mono', | |
fontSize: AXIS_FONT_SIZE, | |
}, | |
data: { | |
fill: UI.Colors.Highlight, | |
}, | |
}} | |
/> | |
</VictoryChart> | |
</Container> | |
); | |
} | |
} | |
const Container = glamorous.div({ | |
width: '100%', | |
marginTop: 40, | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment