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