-
-
Save Dottenpixel/886f252fd1d7e9613970 to your computer and use it in GitHub Desktop.
How I'd do code splitting in Redux (pseudo code, not tested!) Referred by: https://github.com/rackt/redux/issues/37#issue-85098222
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { combineReducers } from 'redux'; | |
import users from './reducers/users'; | |
import posts from './reducers/posts'; | |
export default function createReducer(asyncReducers) { | |
return combineReducers({ | |
users, | |
posts, | |
...asyncReducers | |
}); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { injectAsyncReducer } from './store'; | |
function createRoutes(store) { | |
// ... | |
const CommentsRoute = { | |
// ... | |
getComponents(location, callback) { | |
require.ensure([ | |
'./pages/Comments', | |
'./reducers/comments' | |
], function (require) { | |
let Comments = require('./pages/Comments').default; | |
let commentsReducer = require('./reducers/comments').default; | |
injectAsyncReducer(store, 'comments', commentsReducer); | |
callback(null, Comments); | |
}) | |
} | |
}; | |
// ... | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { createStore } from 'redux'; | |
import createReducer from './reducers'; | |
export default function configureStore() { | |
let store = createStore(createReducer()); | |
store.asyncReducers = {}; | |
return store; | |
} | |
export function injectAsyncReducer(store, name, asyncReducer) { | |
store.asyncReducers[name] = reducer; | |
store.replaceReducer(createReducer(store.asyncReducers)); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment