mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
f4d6cbfc19
* Many improvements to the Apollo examples * Use static properties
40 lines
1.1 KiB
JavaScript
40 lines
1.1 KiB
JavaScript
import { createStore, combineReducers, applyMiddleware, compose } from 'redux'
|
|
import reducers from './reducers'
|
|
|
|
let reduxStore = null
|
|
|
|
// Get the Redux DevTools extension and fallback to a no-op function
|
|
let devtools = f => f
|
|
if (process.browser && window.__REDUX_DEVTOOLS_EXTENSION__) {
|
|
devtools = window.__REDUX_DEVTOOLS_EXTENSION__()
|
|
}
|
|
|
|
function create (apollo, initialState = {}) {
|
|
return createStore(
|
|
combineReducers({ // Setup reducers
|
|
...reducers,
|
|
apollo: apollo.reducer()
|
|
}),
|
|
initialState, // Hydrate the store with server-side data
|
|
compose(
|
|
applyMiddleware(apollo.middleware()), // Add additional middleware here
|
|
devtools
|
|
)
|
|
)
|
|
}
|
|
|
|
export default function initRedux (apollo, initialState) {
|
|
// Make sure to create a new store for every server-side request so that data
|
|
// isn't shared between connections (which would be bad)
|
|
if (!process.browser) {
|
|
return create(apollo, initialState)
|
|
}
|
|
|
|
// Reuse store on the client-side
|
|
if (!reduxStore) {
|
|
reduxStore = create(apollo, initialState)
|
|
}
|
|
|
|
return reduxStore
|
|
}
|