143 lines
4.4 KiB
JavaScript
143 lines
4.4 KiB
JavaScript
import { endOfMonth, format, startOfMonth, subMonths } from 'date-fns'
|
|
import React from 'react'
|
|
import { connect } from 'react-redux'
|
|
import {
|
|
Bar, BarChart, ResponsiveContainer, Tooltip, XAxis, YAxis
|
|
} from 'recharts'
|
|
|
|
import { getStats } from '../../actions/stats'
|
|
import { activityColors, formatDuration, formatStats } from '../../utils'
|
|
import CustomTooltip from '../Others/CustomTooltip'
|
|
|
|
|
|
class Statistics extends React.Component {
|
|
constructor(props, context) {
|
|
super(props, context)
|
|
const date = new Date()
|
|
this.state = {
|
|
start: startOfMonth(subMonths(date, 12)),
|
|
end: endOfMonth(date),
|
|
displayedData: 'distance'
|
|
}
|
|
}
|
|
|
|
componentDidMount() {
|
|
this.props.loadMonthActivities(
|
|
this.props.user.id,
|
|
this.state.start,
|
|
this.state.end,
|
|
)
|
|
}
|
|
|
|
handleRadioChange (changeEvent) {
|
|
this.setState({
|
|
displayedData: changeEvent.target.name
|
|
})
|
|
}
|
|
|
|
render() {
|
|
const { sports, statistics } = this.props
|
|
const { displayedData, end, start } = this.state
|
|
const stats = formatStats(statistics, sports, start, end, 'month')
|
|
return (
|
|
<div className="container dashboard">
|
|
<div className="card activity-card">
|
|
<div className="card-header">
|
|
Statistics
|
|
</div>
|
|
<div className="card-body">
|
|
{Object.keys(statistics).length === 0 ? (
|
|
'No workouts'
|
|
) : (
|
|
<div className="chart-month">
|
|
<div className="row chart-radio">
|
|
<label className="radioLabel col">
|
|
<input
|
|
type="radio"
|
|
name="distance"
|
|
checked={displayedData === 'distance'}
|
|
onChange={e => this.handleRadioChange(e)}
|
|
/>
|
|
distance
|
|
</label>
|
|
<label className="radioLabel col">
|
|
<input
|
|
type="radio"
|
|
name="duration"
|
|
checked={displayedData === 'duration'}
|
|
onChange={e => this.handleRadioChange(e)}
|
|
/>
|
|
duration
|
|
</label>
|
|
<label className="radioLabel col">
|
|
<input
|
|
type="radio"
|
|
name="activities"
|
|
checked={displayedData === 'activities'}
|
|
onChange={e => this.handleRadioChange(e)}
|
|
/>
|
|
activities
|
|
</label>
|
|
</div>
|
|
<ResponsiveContainer height={300}>
|
|
<BarChart
|
|
data={stats[displayedData]}
|
|
margin={{ top: 15, bottom: 0 }}
|
|
>
|
|
<XAxis
|
|
dataKey="date"
|
|
interval={0} // to force to display all ticks
|
|
/>
|
|
<YAxis
|
|
tickFormatter={value => displayedData === 'distance'
|
|
? `${value} km`
|
|
: displayedData === 'duration'
|
|
? format(formatDuration(value), 'HH:mm')
|
|
: value
|
|
}
|
|
/>
|
|
<Tooltip content={
|
|
<CustomTooltip
|
|
displayedData={displayedData}
|
|
/>
|
|
}
|
|
/>
|
|
{sports.map((s, i) => (
|
|
<Bar
|
|
key={s.id}
|
|
dataKey={s.label}
|
|
stackId="a"
|
|
fill={activityColors[i]}
|
|
unit={displayedData === 'distance' ? ' km' : ''}
|
|
/>
|
|
))}
|
|
</BarChart>
|
|
</ResponsiveContainer>
|
|
</div>
|
|
)}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
}
|
|
|
|
export default connect(
|
|
state => ({
|
|
sports: state.sports.data,
|
|
statistics: state.statistics.data,
|
|
user: state.user,
|
|
}),
|
|
dispatch => ({
|
|
loadMonthActivities: (userId, start, end) => {
|
|
const dateFormat = 'YYYY-MM-DD'
|
|
const params = {
|
|
from: format(start, dateFormat),
|
|
to: format(end, dateFormat),
|
|
time: 'month'
|
|
}
|
|
dispatch(getStats(userId, 'by_time', params))
|
|
},
|
|
})
|
|
)(Statistics)
|