Created
July 6, 2016 12:01
-
-
Save simenbrekken/cca4cf2104508e40dc004b29692bfabf to your computer and use it in GitHub Desktop.
Lazy loading React components with Webpack 2 and System.import
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, createElement } from 'react' | |
const Loader = () => ( | |
<h1>Loading…</h1> | |
) | |
const createComponentProxy = (relativePath, { placeholder = null }) => { | |
let ProxiedComponent | |
const loadComponent = callback => { | |
if (!ProxiedComponent) { | |
// This needs to be relative to the current module otherwise Webpack won't know where to look | |
System.import(`./${relativePath}`).then(module => callback(ProxiedComponent = module)) | |
} | |
return ProxiedComponent | |
} | |
class ComponentProxy extends Component { | |
constructor(props) { | |
super(props) | |
this.state = { component: ProxiedComponent } | |
} | |
componentDidMount() { | |
if (!this.state.component) { | |
loadComponent(component => this.setState({ component })) | |
} | |
} | |
render() { | |
const { component } = this.state | |
if (!component) { | |
return placeholder | |
} | |
return createElement(component, this.props) | |
} | |
} | |
return ComponentProxy | |
} | |
export default createComponentProxy('MyComponent', { placeholder: <Loader /> }) |
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' | |
export default () => ( | |
<div> | |
My Component | |
</div> | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Found a snippet a bit better: https://gist.github.com/acdlite/a68433004f9d6b4cbc83b5cc3990c194