Skip to content

Instantly share code, notes, and snippets.

@simenbrekken
Created July 6, 2016 12:01
Show Gist options
  • Save simenbrekken/cca4cf2104508e40dc004b29692bfabf to your computer and use it in GitHub Desktop.
Save simenbrekken/cca4cf2104508e40dc004b29692bfabf to your computer and use it in GitHub Desktop.
Lazy loading React components with Webpack 2 and System.import
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 /> })
import React from 'react'
export default () => (
<div>
My Component
</div>
)
@tkrotoff
Copy link

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment