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
33 lines
769 B
JavaScript
33 lines
769 B
JavaScript
import App, { Container } from 'next/app'
|
|
import React from 'react'
|
|
import { Provider } from 'react-redux'
|
|
import withRedux from 'next-redux-wrapper'
|
|
import withReduxSaga from 'next-redux-saga'
|
|
|
|
import createStore from '../store'
|
|
|
|
class MyApp extends App {
|
|
static async getInitialProps ({ Component, ctx }) {
|
|
let pageProps = {}
|
|
|
|
if (Component.getInitialProps) {
|
|
pageProps = await Component.getInitialProps({ ctx })
|
|
}
|
|
|
|
return { pageProps }
|
|
}
|
|
|
|
render () {
|
|
const { Component, pageProps, store } = this.props
|
|
return (
|
|
<Container>
|
|
<Provider store={store}>
|
|
<Component {...pageProps} />
|
|
</Provider>
|
|
</Container>
|
|
)
|
|
}
|
|
}
|
|
|
|
export default withRedux(createStore)(withReduxSaga({ async: true })(MyApp))
|