Created
September 30, 2018 17:24
-
-
Save whisher/d30f5182f4e638db69efa94d411868f8 to your computer and use it in GitHub Desktop.
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
HOC | |
import React, { Component } from 'react'; | |
const asyncComponent = (importComponent) => { | |
return class extends Component { | |
state = { | |
component: null | |
} | |
componentDidMount () { | |
importComponent() | |
.then(cmp => { | |
this.setState({component: cmp.default}); | |
}); | |
} | |
render () { | |
const C = this.state.component; | |
return C ? <C {...this.props} /> : null; | |
} | |
} | |
} | |
export default asyncComponent; | |
USAGE | |
const AsyncNewPost = asyncComponent(() => { | |
return import('./NewPost/NewPost'); | |
}); | |
<Route path="/new-post" component={AsyncNewPost} /> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment