import { Gridicon } from '@automattic/components'; import { useTranslate } from 'i18n-calypso'; import { useCallback, useRef, useState } from 'react'; import * as React from 'react'; import Button from 'calypso/components/forms/form-button'; import FormTextInput from 'calypso/components/forms/form-text-input'; import PopoverMenu from 'calypso/components/popover-menu'; import { useDispatch } from 'calypso/state'; import { rewindShareRequest } from 'calypso/state/activity-log/actions'; import { recordTracksEvent, withAnalytics } from 'calypso/state/analytics/actions'; import type { Activity } from './types'; type OwnProps = { siteId: number; activity: Activity; }; type SharePopoverProps = { siteId: number; activity: Activity; context: React.MutableRefObject< React.ReactElement | null >; isVisible: boolean; onClose: ( event?: boolean ) => void; }; const SharePopover: React.FC< SharePopoverProps > = ( { siteId, activity, context, isVisible, onClose, } ) => { const dispatch = useDispatch(); const translate = useTranslate(); const [ email, setEmail ] = useState( '' ); const [ showEmailError, setShowEmailError ] = useState( false ); const handleEmailChange: React.ChangeEventHandler< HTMLInputElement > = useCallback( ( event ) => { setEmail( event.target.value ); setShowEmailError( false ); }, [ setEmail, setShowEmailError ] ); const closeOnClickOut = useCallback( ( event?: boolean ) => { // HACK: Keep the pop-over open until // we've registered a click outside of it; // see onClickOut in `client/components/popover/index.jsx` if ( event !== false ) { return; } onClose(); }, [ onClose ] ); const handleShare = useCallback( () => { if ( ! email.includes( '@' ) || ! email.includes( '.' ) ) { setShowEmailError( true ); } else { dispatch( withAnalytics( recordTracksEvent( 'calypso_activity_share_request', { site_id: siteId, rewind_id: activity.rewindId, } ), rewindShareRequest( siteId, activity.rewindId as string, email ) ) ); onClose(); } }, [ email, dispatch, siteId, activity.rewindId, onClose ] ); const shareOnEnterKeyPress: React.KeyboardEventHandler = useCallback( ( { key } ) => { if ( key !== 'Enter' ) { return; } handleShare(); }, [ handleShare ] ); return (
{ translate( 'Share this event via email' ) }
{ translate( 'Share what is happening with your site with your clients or business partners.' ) }
{ showEmailError && (
{ translate( 'Please enter a valid email address' ) }
) }
); }; const ShareActivity: React.FC< OwnProps > = ( { siteId, activity } ) => { const dispatch = useDispatch(); const translate = useTranslate(); const buttonRef = useRef( null ); const { rewindId } = activity; const [ isPopoverVisible, setPopoverVisible ] = useState( false ); const trackPopoverOpened = useCallback( () => dispatch( recordTracksEvent( 'calypso_activity_share_popup', { site_id: siteId, rewind_id: rewindId, } ) ), [ dispatch, siteId, rewindId ] ); const togglePopover = () => { if ( ! isPopoverVisible ) { trackPopoverOpened(); } setPopoverVisible( ! isPopoverVisible ); }; const closePopover = () => { setPopoverVisible( false ); }; return ( <>
); }; export default ShareActivity;