2017-07-13 18:55:29 +00:00
|
|
|
import React from 'react'
|
|
|
|
|
2018-02-11 18:55:16 +00:00
|
|
|
import {increment, startClock, tickClock} from '../actions'
|
2017-07-13 18:55:29 +00:00
|
|
|
import {withReduxSaga} from '../store'
|
|
|
|
import Page from '../components/page'
|
|
|
|
|
|
|
|
class Counter extends React.Component {
|
2018-02-11 18:55:16 +00:00
|
|
|
static async getInitialProps ({store, isServer}) {
|
|
|
|
store.dispatch(tickClock(isServer))
|
2017-07-13 18:55:29 +00:00
|
|
|
store.dispatch(increment())
|
|
|
|
}
|
|
|
|
|
|
|
|
componentDidMount () {
|
|
|
|
this.props.dispatch(startClock())
|
|
|
|
}
|
|
|
|
|
|
|
|
render () {
|
|
|
|
return <Page title='Other Page' linkTo='/' />
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default withReduxSaga(Counter)
|