Skip to content

Instantly share code, notes, and snippets.

@MoOx
Created September 29, 2016 08:53
Show Gist options
  • Save MoOx/f3771669873354964bd0c809788400e7 to your computer and use it in GitHub Desktop.
Save MoOx/f3771669873354964bd0c809788400e7 to your computer and use it in GitHub Desktop.
Hoverable HoC for React components
// @flow
import React, { Component } from "react"
type Props = {
onMouseEnter?: Function | boolean,
onMouseLeave?: Function | boolean,
}
type State = {
hovered: boolean,
}
// @todo try a more complex type for ComposedComponent + return type
export default (ComposedComponent: Function) => {
class Hoverable extends Component<void, Props, State> {
props: Props;
state: State = {
hovered: false,
};
handleMouseEnter: Function = (event: SyntheticEvent): void => {
this.setState({ hovered: true })
if (typeof this.props.onMouseEnter === "function") {
this.props.onMouseEnter(event)
}
};
handleMouseLeave: Function = (event: SyntheticEvent): void => {
this.setState({ hovered: false })
if (typeof this.props.onMouseLeave === "function") {
this.props.onMouseLeave(event)
}
};
render(): React$Element<any> {
return (
<ComposedComponent
{ ...this.props }
{ ...this.state }
onMouseEnter={ this.handleMouseEnter }
onMouseLeave={ this.handleMouseLeave }
/>
)
}
}
return Hoverable
}
@Shelob9
Copy link

Shelob9 commented Sep 11, 2018

Thanks for this. I had to make some adjustments to the typing to prevent flow errors - https://gist.github.com/Shelob9/87e9f98e5518d61a9405fd3cc746892d

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment