Last active
April 25, 2017 20:53
-
-
Save alexrqs/383a2185648de236183cd29eac732e19 to your computer and use it in GitHub Desktop.
Code spliting react router 4 with import() and webpack 2.4
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 React, { Component } from 'react' | |
import { BrowserRouter as Router, Route, Link } from 'react-router-dom' | |
import async from './components/async' | |
class App extends Component { | |
render() { | |
return ( | |
<Router> | |
<div> | |
<Route exact path="/" component={async(import('./pages/home')) } /> | |
<Route path="/about" component={async(import('./pages/about')) } /> | |
<Link to="/about">To: about</Link> | |
</div> | |
</Router> | |
) | |
} | |
} | |
export default App |
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 React, { Component } from 'react' | |
const async = method => class Importer extends Component { | |
constructor() { | |
super() | |
this.state = { composedComponent: null } | |
} | |
componentDidMount() { | |
const composedComponent = method.then(module => { | |
this.setState({ | |
composedComponent: module.default, | |
}) | |
}) | |
} | |
render() { | |
const { composedComponent } = this.state | |
if (!composedComponent) { | |
return <h6>Loading...</h6> | |
} | |
return composedComponent() | |
} | |
} | |
export default async |
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
{ | |
"dependencies": { | |
"react": "^15.5.4", | |
"react-dom": "^15.5.4", | |
"react-router-dom": "^4.1.1" | |
}, | |
"devDependencies": { | |
"babel-core": "^6.24.1", | |
"babel-loader": "^7.0.0", | |
"babel-plugin-syntax-dynamic-import": "^6.18.0", | |
"babel-preset-env": "^1.4.0", | |
"babel-runtime": "^6.23.0", | |
"babel-preset-react": "^6.24.1", | |
"html-webpack-plugin": "^2.28.0", | |
"webpack": "^2.4.1", | |
"webpack-dev-server": "^2.4.4" | |
}, | |
"scripts": { | |
"dev": "webpack-dev-server --hot" | |
} | |
} |
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 React from 'react' | |
const AboutPage = () => <h2>About Page</h2> | |
export default AboutPage |
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 React from 'react' | |
const HomePage = () => <h1>The home page</h1> | |
export default HomePage |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@jaanauati indeed you will miss the className but you have the function name under
composedComponent
on your extension, and if you click theImporter
and type$r
on your console you will find the name as well understate
.