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>
)
@yjose
Copy link

yjose commented Feb 6, 2017

I test this Methode and I have this problem

Warning: React.createElement: type is invalid -- expected a string (for built-in components) or a class/function (for composite components) but got: object. Check the render method of `ComponentProxy`.

invariant.js:44 Uncaught (in promise) Error: Element type is invalid: expected a string (for built-in components) or a class/function (for composite components) but got: object. Check the render method of `ComponentProxy`.

@leeqqiang
Copy link

System.import(./${relativePath}).then(module => callback(ProxiedComponent = module.default))

@tecnocrata
Copy link

Is this snippet still valid? As far as I know System.import is deprecated as says here:
https://webpack.js.org/guides/code-splitting-import/

@tkrotoff
Copy link

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