1
0
Fork 0
mirror of https://github.com/terribleplan/next.js.git synced 2024-01-19 02:48:18 +00:00
next.js/examples/with-redux-saga/pages/index.js

27 lines
630 B
JavaScript
Raw Normal View History

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