Skip to content

Instantly share code, notes, and snippets.

@thescientist13
Created May 4, 2018 21:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thescientist13/8464f6258d9b759b2b78b3562b4e0dd6 to your computer and use it in GitHub Desktop.
Save thescientist13/8464f6258d9b759b2b78b3562b4e0dd6 to your computer and use it in GitHub Desktop.
Example of the Providence Geeks website entry point w/ Lazy Loading
# routes.js
import Bootstrap from './components/bootstrap/bootstrap';
// thanks to https://brotzky.co/blog/code-splitting-react-router-webpack-2/!
function handleRouteLoadingError(error) {
throw new Error(`Dynamic page loading failed: ${error}`);
}
function loadRoute(cb) {
return module => cb(null, module.default);
}
export default {
path: '/',
component: Bootstrap,
indexRoute: {
getComponent(location, cb) {
import('./views/home/home')
.then(loadRoute(cb))
.catch(handleRouteLoadingError);
}
},
childRoutes: [{
path: '/post/:id',
getComponent(location, cb) {
import('./views/post-details/post-details')
.then(loadRoute(cb, false))
.catch(handleRouteLoadingError);
}
}, {
path: '*',
getComponent(location, cb) {
import('./views/home/home')
.then(loadRoute(cb))
.catch(handleRouteLoadingError);
}
}]
};
# index.jsx
import React from 'react';
import ReactDOM from 'react-dom';
import { Router, browserHistory } from 'react-router';
import routes from './routes';
ReactDOM.render(
<Router
history={browserHistory}
routes={routes}>
</Router>,
document.getElementById('root')
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment