rsnext/packages/next/client/with-router.tsx

40 lines
1.2 KiB
TypeScript
Raw Normal View History

import React from 'react'
import PropTypes from 'prop-types'
import { NextComponentType, NextPageContext } from 'next-server/dist/lib/utils'
2019-04-26 09:37:57 +02:00
import { PublicRouterInstance } from './router';
export type WithRouterProps = {
2019-04-26 09:37:57 +02:00
router: PublicRouterInstance,
}
export type ExcludeRouterProps<P> = Pick<P, Exclude<keyof P, keyof WithRouterProps>>
export default function withRouter<P extends WithRouterProps, C = NextPageContext>(
ComposedComponent: NextComponentType<C, any, P>,
): React.ComponentClass<ExcludeRouterProps<P>> {
class WithRouteWrapper extends React.Component<ExcludeRouterProps<P>> {
static displayName?: string
static getInitialProps?: any
static contextTypes = {
router: PropTypes.object,
}
context!: WithRouterProps
render() {
return <ComposedComponent
router={this.context.router}
{...this.props as any}
/>
}
}
WithRouteWrapper.getInitialProps = ComposedComponent.getInitialProps
if (process.env.NODE_ENV !== 'production') {
const name = ComposedComponent.displayName || ComposedComponent.name || 'Unknown'
WithRouteWrapper.displayName = `withRouter(${name})`
}
return WithRouteWrapper
}