File size: 4,637 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 |
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 (
<PopoverMenu
context={ context.current }
isVisible={ isVisible }
onClose={ closeOnClickOut }
position="top"
className="activity-card__share-popover"
>
<div className="activity-card__share-heading">
{ translate( 'Share this event via email' ) }
</div>
<div className="activity-card__share-description">
{ translate(
'Share what is happening with your site with your clients or business partners.'
) }
</div>
<div className="activity-card__share-form">
<FormTextInput
className="activity-card__share-email"
placeholder="Email address"
value={ email }
onChange={ handleEmailChange }
isError={ showEmailError }
onKeyPress={ shareOnEnterKeyPress }
/>
<Button
className="activity-card__share-submit"
disabled={ ! email }
onClick={ handleShare }
>
{ translate( 'Share' ) }
</Button>
</div>
{ showEmailError && (
<div className="activity-card__share-error">
{ translate( 'Please enter a valid email address' ) }
</div>
) }
</PopoverMenu>
);
};
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 (
<>
<div className="activity-card__share-button-wrap">
<Button
compact
borderless
className="activity-card__share-button"
ref={ buttonRef }
onClick={ togglePopover }
>
<Gridicon icon="mail" />
{ translate( 'Share this event' ) }
</Button>
</div>
<SharePopover
siteId={ siteId }
context={ buttonRef }
activity={ activity }
isVisible={ isPopoverVisible }
onClose={ closePopover }
/>
</>
);
};
export default ShareActivity;
|