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 (