mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
28 lines
674 B
JavaScript
28 lines
674 B
JavaScript
import React, { Component } from 'react'
|
|
import PropTypes from 'prop-types'
|
|
import hoistStatics from 'hoist-non-react-statics'
|
|
import { getDisplayName } from '../utils'
|
|
|
|
export default function withRouter (ComposedComponent) {
|
|
const displayName = getDisplayName(ComposedComponent)
|
|
|
|
class WithRouteWrapper extends Component {
|
|
static contextTypes = {
|
|
router: PropTypes.object
|
|
}
|
|
|
|
static displayName = `withRouter(${displayName})`
|
|
|
|
render () {
|
|
const props = {
|
|
router: this.context.router,
|
|
...this.props
|
|
}
|
|
|
|
return <ComposedComponent {...props} />
|
|
}
|
|
}
|
|
|
|
return hoistStatics(WithRouteWrapper, ComposedComponent)
|
|
}
|