mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
25 lines
550 B
JavaScript
25 lines
550 B
JavaScript
|
import React from 'react'
|
||
|
|
||
|
import {increment, loadData, startClock} from '../actions'
|
||
|
import {withReduxSaga} from '../store'
|
||
|
import Page from '../components/page'
|
||
|
|
||
|
class Counter extends React.Component {
|
||
|
static async getInitialProps ({store}) {
|
||
|
store.dispatch(increment())
|
||
|
if (!store.getState().placeholderData) {
|
||
|
store.dispatch(loadData())
|
||
|
}
|
||
|
}
|
||
|
|
||
|
componentDidMount () {
|
||
|
this.props.dispatch(startClock())
|
||
|
}
|
||
|
|
||
|
render () {
|
||
|
return <Page title='Index Page' linkTo='/other' />
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export default withReduxSaga(Counter)
|