mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
b90c77b17f
* Rename page component's class name: Counter => Index, Counter => Other * Rename counter component class name: AddCount => Counter * Add counter actions `decrement` and `reset` same as with-redux example * Modify page link by NavigateTo attr in Page component * Modify license MIT => ISC same as others in package.json * Modify README
29 lines
637 B
JavaScript
29 lines
637 B
JavaScript
import React from 'react'
|
|
import {connect} from 'react-redux'
|
|
|
|
import {loadData, startClock, tickClock} from '../actions'
|
|
import Page from '../components/page'
|
|
|
|
class Index extends React.Component {
|
|
static async getInitialProps (props) {
|
|
const { store, isServer } = props.ctx
|
|
store.dispatch(tickClock(isServer))
|
|
|
|
if (!store.getState().placeholderData) {
|
|
store.dispatch(loadData())
|
|
}
|
|
|
|
return { isServer }
|
|
}
|
|
|
|
componentDidMount () {
|
|
this.props.dispatch(startClock())
|
|
}
|
|
|
|
render () {
|
|
return <Page title='Index Page' linkTo='/other' NavigateTo='Other Page' />
|
|
}
|
|
}
|
|
|
|
export default connect()(Index)
|