Created
January 25, 2019 22:02
-
-
Save ccnokes/b602213b2a25b0e015649a92f9500734 to your computer and use it in GitHub Desktop.
withProps HOC. For when you want to inject arbitrary stuff into a component
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
import * as React from 'react'; | |
export default function withProps<InjectProps, Props = {}>(Component: React.ComponentType<Props & InjectProps>, props: InjectProps): React.ComponentClass<Pick<Props, Exclude<keyof Props, keyof InjectProps>>> { | |
return class extends React.Component<Props> { | |
static displayName = `withProps(${Component.displayName || Component.name})`; | |
static WrappedComponent = Component; | |
render() { | |
return <Component {...this.props} {...props} /> | |
} | |
} | |
} | |
// test it out... | |
interface InjectedProps { a: number } | |
interface OwnProps { b: string } | |
const Test = (props: OwnProps & InjectedProps) => (<p>{props.a} {props.b}</p>) | |
let InjectedTest = withProps<InjectedProps, OwnProps>(Test, { a: 123 }) | |
class Test2 extends React.Component { | |
render() { | |
return ( | |
<> | |
<Test a={123} b="asd" /> | |
<InjectedTest b="abc" /> | |
</> | |
); | |
} | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment