Created
September 3, 2017 18:45
-
-
Save istarkov/916bbdf67ee03df61423712d0620879d 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
/* @flow */ | |
import * as React from 'react' | |
import { compose, withProps } from 'recompose' | |
import type { HOC } from 'recompose' | |
function mapProps<BaseProps: {}, EnhancedProps>( | |
mapperFn: EnhancedProps => BaseProps | |
): (React.ComponentType<BaseProps>) => React.ComponentType<EnhancedProps> { | |
return Component => props => <Component {...mapperFn(props)} /> | |
} | |
// Test that all is fine | |
type EnhancedProps = { hello: string } | |
const enhancer: HOC<*, EnhancedProps> = compose( | |
mapProps(({ hello }) => ({ | |
hello: `${hello} world`, | |
len: hello.length, | |
})), | |
withProps(props => ({ | |
helloAndLen: `${props.hello} ${props.len}`, | |
})) | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment