Chart navigation bug fix.

This commit is contained in:
mashazyu
2020-03-28 17:17:21 +01:00
parent 297c1cf3d5
commit 5ec5d02b8d
+15 -1
View File
@@ -10,6 +10,9 @@ import DayColumn from './day-column'
import HorizontalGrid from './horizontal-grid' import HorizontalGrid from './horizontal-grid'
import AppText from '../app-text' import AppText from '../app-text'
import { connect } from 'react-redux'
import { navigate } from '../../slices/navigation'
import { getCycleDaysSortedByDate } from '../../db' import { getCycleDaysSortedByDate } from '../../db'
import nothingChanged from '../../db/db-unchanged' import nothingChanged from '../../db/db-unchanged'
import { scaleObservable } from '../../local-storage' import { scaleObservable } from '../../local-storage'
@@ -19,7 +22,7 @@ import config from '../../config'
import { shared } from '../../i18n/en/labels' import { shared } from '../../i18n/en/labels'
import styles from './styles' import styles from './styles'
export default class CycleChart extends Component { class CycleChart extends Component {
static propTypes = { static propTypes = {
navigate: PropTypes.func, navigate: PropTypes.func,
end: PropTypes.bool end: PropTypes.bool
@@ -187,3 +190,14 @@ function LoadingMoreView({ end }) {
LoadingMoreView.propTypes = { LoadingMoreView.propTypes = {
end: PropTypes.bool end: PropTypes.bool
} }
const mapDispatchToProps = (dispatch) => {
return({
navigate: (page) => dispatch(navigate(page)),
})
}
export default connect(
null,
mapDispatchToProps,
)(CycleChart)