react-code-dataset / wp-calypso /client /jetpack-cloud /sections /partner-portal /primary /wpcom-atomic-hosting /feature-item.tsx
| import { Tooltip } from '@automattic/components'; | |
| import { useRef, useState } from 'react'; | |
| interface Props { | |
| feature: string; | |
| tooltipText: string; | |
| } | |
| export default function FeatureItem( { feature, tooltipText }: Props ) { | |
| const tooltipRef = useRef< HTMLDivElement | null >( null ); | |
| const [ showPopover, setShowPopover ] = useState( false ); | |
| return ( | |
| <> | |
| <div | |
| onMouseEnter={ () => setShowPopover( true ) } | |
| onMouseLeave={ () => setShowPopover( false ) } | |
| onMouseDown={ () => setShowPopover( false ) } | |
| role="button" | |
| tabIndex={ 0 } | |
| ref={ tooltipRef } | |
| className="wpcom-atomic-hosting__card-feature" | |
| > | |
| { feature } | |
| </div> | |
| <Tooltip | |
| context={ tooltipRef.current } | |
| isVisible={ showPopover && !! tooltipText } | |
| position="top" | |
| > | |
| { tooltipText } | |
| </Tooltip> | |
| </> | |
| ); | |
| } | |