rsnext/examples/with-redux-saga/pages/index.js

29 lines
641 B
JavaScript
Raw Normal View History

2017-07-13 20:55:29 +02:00
import React from 'react'
import { connect } from 'react-redux'
import { loadData, startClock, tickClock } from '../actions'
2017-07-13 20:55:29 +02:00
import Page from '../components/page'
class Index extends React.Component {
static async getInitialProps (props) {
const { store, isServer } = props.ctx
store.dispatch(tickClock(isServer))
2017-07-13 20:55:29 +02:00
if (!store.getState().placeholderData) {
store.dispatch(loadData())
}
return { isServer }
2017-07-13 20:55:29 +02:00
}
componentDidMount () {
this.props.dispatch(startClock())
}
render () {
return <Page title='Index Page' linkTo='/other' NavigateTo='Other Page' />
2017-07-13 20:55:29 +02:00
}
}
export default connect()(Index)