mirror of
https://github.com/bellingcat/ukraine-timemap.git
synced 2026-06-11 21:08:36 +03:00
83 lines
1.9 KiB
JavaScript
83 lines
1.9 KiB
JavaScript
import React from 'react'
|
|
import * as d3 from 'd3'
|
|
|
|
class TimelineAxis extends React.Component {
|
|
constructor () {
|
|
super()
|
|
this.xAxis0Ref = React.createRef()
|
|
this.xAxis1Ref = React.createRef()
|
|
this.state = {
|
|
isInitialized: false
|
|
}
|
|
}
|
|
|
|
componentDidUpdate () {
|
|
let fstFmt, sndFmt
|
|
|
|
// 10yrs
|
|
if (this.props.extent > 5256000) {
|
|
fstFmt = '%Y'
|
|
sndFmt = ''
|
|
// 1yr
|
|
} else if (this.props.extent > 43200) {
|
|
sndFmt = '%Y'
|
|
fstFmt = '%d %b'
|
|
} else {
|
|
sndFmt = '%d %b'
|
|
fstFmt = '%H:%M'
|
|
}
|
|
|
|
if (this.props.scaleX) {
|
|
this.x0 =
|
|
d3.axisBottom(this.props.scaleX)
|
|
.ticks(10)
|
|
.tickPadding(0)
|
|
.tickSize(this.props.dims.trackHeight)
|
|
.tickFormat(d3.timeFormat(fstFmt))
|
|
|
|
this.x1 =
|
|
d3.axisBottom(this.props.scaleX)
|
|
.ticks(10)
|
|
.tickPadding(this.props.dims.marginTop)
|
|
.tickSize(0)
|
|
.tickFormat(d3.timeFormat(sndFmt))
|
|
|
|
if (!this.state.isInitialized) this.setState({ isInitialized: true })
|
|
}
|
|
|
|
if (this.state.isInitialized) {
|
|
d3.select(this.xAxis0Ref.current)
|
|
.transition()
|
|
.duration(this.props.transitionDuration)
|
|
.call(this.x0)
|
|
|
|
d3.select(this.xAxis1Ref.current)
|
|
.transition()
|
|
.duration(this.props.transitionDuration)
|
|
.call(this.x1)
|
|
}
|
|
}
|
|
|
|
render () {
|
|
const PADDING = 20
|
|
return (
|
|
<React.Fragment>
|
|
<g
|
|
ref={this.xAxis0Ref}
|
|
transform={`translate(0, ${PADDING})`}
|
|
clipPath={`url(#clip)`}
|
|
className={`axis xAxis`}
|
|
/>
|
|
<g
|
|
ref={this.xAxis1Ref}
|
|
transform={`translate(0, ${this.props.dims.trackHeight + PADDING})`}
|
|
clipPath={`url(#clip)`}
|
|
className={`axis axisHourText`}
|
|
/>
|
|
</React.Fragment>
|
|
)
|
|
}
|
|
}
|
|
|
|
export default TimelineAxis
|