react-code-dataset
/
wp-calypso
/client
/landing
/subscriptions
/components
/site-subscriptions-list
/site-subscription-row.tsx
| import { Gridicon, ExternalLink, TimeSince } from '@automattic/components'; | |
| import { Reader, SubscriptionManager } from '@automattic/data-stores'; | |
| import { localizeUrl } from '@automattic/i18n-utils'; | |
| import { __experimentalHStack as HStack, Button, FormToggle } from '@wordpress/components'; | |
| import { useTranslate } from 'i18n-calypso'; | |
| import { useMemo, useRef } from 'react'; | |
| import { useDispatch, useSelector } from 'react-redux'; | |
| import { SiteIcon } from 'calypso/blocks/site-icon'; | |
| import InfoPopover from 'calypso/components/info-popover'; | |
| import { useFeedRecommendationsMutation } from 'calypso/data/reader/use-feed-recommendations-mutation'; | |
| import { | |
| useRecordSiteUnsubscribed, | |
| useRecordSiteResubscribed, | |
| useRecordSiteIconClicked, | |
| useRecordSiteTitleClicked, | |
| useRecordSiteUrlClicked, | |
| useRecordNotificationsToggle, | |
| useRecordPostEmailsToggle, | |
| useRecordCommentEmailsToggle, | |
| useRecordPostEmailsSetFrequency, | |
| useRecordRecommendToggle, | |
| SOURCE_SUBSCRIPTIONS_SITE_LIST, | |
| SOURCE_SUBSCRIPTIONS_UNSUBSCRIBED_NOTICE, | |
| } from 'calypso/landing/subscriptions/tracks'; | |
| import { getCurrentUserName } from 'calypso/state/current-user/selectors'; | |
| import { removeNotice, successNotice } from 'calypso/state/notices/actions'; | |
| import { Link } from '../link'; | |
| import { SiteSettingsPopover } from '../settings'; | |
| import { useSubscriptionManagerContext } from '../subscription-manager-context'; | |
| const useDeliveryFrequencyLabel = ( deliveryFrequencyValue?: Reader.EmailDeliveryFrequency ) => { | |
| const translate = useTranslate(); | |
| const deliveryFrequencyLabels = useMemo( | |
| () => ( { | |
| daily: translate( 'Daily' ), | |
| weekly: translate( 'Weekly' ), | |
| instantly: translate( 'Instantly' ), | |
| } ), | |
| [ translate ] | |
| ); | |
| return ( | |
| deliveryFrequencyLabels[ deliveryFrequencyValue as Reader.EmailDeliveryFrequency ] ?? | |
| translate( 'Paused' ) | |
| ); | |
| }; | |
| const SelectedNewPostDeliveryMethods = ( { | |
| isEmailMeNewPostsSelected, | |
| isNotifyMeOfNewPostsSelected, | |
| }: { | |
| isEmailMeNewPostsSelected: boolean; | |
| isNotifyMeOfNewPostsSelected: boolean; | |
| } ) => { | |
| const translate = useTranslate(); | |
| if ( ! isEmailMeNewPostsSelected && ! isNotifyMeOfNewPostsSelected ) { | |
| return <Gridicon icon="cross" size={ 16 } className="red" />; | |
| } | |
| const emailDelivery = isEmailMeNewPostsSelected ? translate( 'Email' ) : null; | |
| const notificationDelivery = isNotifyMeOfNewPostsSelected ? translate( 'Notifications' ) : null; | |
| const selectedNewPostDeliveryMethods = [ emailDelivery, notificationDelivery ] | |
| .filter( Boolean ) | |
| .join( ', ' ); | |
| return <>{ selectedNewPostDeliveryMethods }</>; | |
| }; | |
| type SiteRowProps = Reader.SiteSubscriptionsResponseItem & { | |
| layout?: 'full' | 'compact'; | |
| }; | |
| const scrollToFirstRow = () => { | |
| const firstRow = document.querySelector( '.site-subscriptions-list li.site-subscription-row' ); | |
| if ( firstRow ) { | |
| firstRow.scrollIntoView( { block: 'center' } ); | |
| } | |
| }; | |
| const siteUnsubscribedNoticeId = 'site-unsubscribed'; | |
| const SiteSubscriptionRow = ( { | |
| ID: subscriptionId, | |
| blog_ID: blog_id, | |
| feed_ID: feed_id, | |
| name, | |
| site_icon, | |
| URL: url, | |
| date_subscribed, | |
| delivery_methods, | |
| is_wpforteams_site, | |
| is_paid_subscription, | |
| is_gift, | |
| isDeleted, | |
| is_rss, | |
| resubscribed, | |
| layout = 'full', | |
| }: SiteRowProps ) => { | |
| const translate = useTranslate(); | |
| const dispatch = useDispatch(); | |
| const currentUserName = useSelector( getCurrentUserName ); | |
| // Use custom hook for recommended site functionality | |
| const { isRecommended, toggleRecommended } = useFeedRecommendationsMutation( Number( feed_id ) ); | |
| const isCompactLayout = layout === 'compact'; | |
| const unsubscribeInProgress = useRef( false ); | |
| const resubscribePending = useRef( false ); | |
| const hostname = useMemo( () => { | |
| try { | |
| return new URL( localizeUrl( url ) ).hostname; | |
| } catch ( e ) { | |
| return ''; | |
| } | |
| }, [ url ] ); | |
| const { isLoggedIn } = SubscriptionManager.useIsLoggedIn(); | |
| const deliveryFrequencyLabel = useDeliveryFrequencyLabel( | |
| delivery_methods.email?.post_delivery_frequency | |
| ); | |
| const sanitizedBlogId = Reader.isValidId( blog_id ) ? Number( blog_id ) : undefined; | |
| const { mutate: updateNotifyMeOfNewPosts, isPending: updatingNotifyMeOfNewPosts } = | |
| SubscriptionManager.useSiteNotifyMeOfNewPostsMutation(); | |
| const { mutate: updateEmailMeNewPosts, isPending: updatingEmailMeNewPosts } = | |
| SubscriptionManager.useSiteEmailMeNewPostsMutation(); | |
| const { mutate: updateDeliveryFrequency, isPending: updatingFrequency } = | |
| SubscriptionManager.useSiteDeliveryFrequencyMutation(); | |
| const { mutate: updateEmailMeNewComments, isPending: updatingEmailMeNewComments } = | |
| SubscriptionManager.useSiteEmailMeNewCommentsMutation(); | |
| const { mutate: unsubscribe, isPending: unsubscribing } = | |
| SubscriptionManager.useSiteUnsubscribeMutation(); | |
| const { mutate: resubscribe } = SubscriptionManager.useSiteSubscribeMutation(); | |
| // Tracks events recording | |
| const recordSiteIconClicked = useRecordSiteIconClicked(); | |
| const recordSiteTitleClicked = useRecordSiteTitleClicked(); | |
| const recordSiteUrlClicked = useRecordSiteUrlClicked(); | |
| const recordNotificationsToggle = useRecordNotificationsToggle(); | |
| const recordPostEmailsToggle = useRecordPostEmailsToggle(); | |
| const recordCommentEmailsToggle = useRecordCommentEmailsToggle(); | |
| const recordPostEmailsSetFrequency = useRecordPostEmailsSetFrequency(); | |
| const recordSiteUnsubscribed = useRecordSiteUnsubscribed(); | |
| const recordSiteResubscribed = useRecordSiteResubscribed(); | |
| const recordRecommendToggle = useRecordRecommendToggle(); | |
| const unsubscribeCallback = () => { | |
| recordSiteUnsubscribed( { blog_id, url, source: SOURCE_SUBSCRIPTIONS_SITE_LIST } ); | |
| dispatch( | |
| successNotice( | |
| translate( 'You have successfully unsubscribed from %(name)s.', { args: { name } } ), | |
| { | |
| id: siteUnsubscribedNoticeId, | |
| button: translate( 'Resubscribe' ), | |
| duration: 5000, | |
| onClick: () => { | |
| if ( unsubscribeInProgress.current ) { | |
| resubscribePending.current = true; | |
| } else { | |
| resubscribe( { blog_id, url, resubscribed: true } ); | |
| dispatch( removeNotice( siteUnsubscribedNoticeId ) ); | |
| scrollToFirstRow(); | |
| recordSiteResubscribed( { | |
| blog_id, | |
| url, | |
| source: SOURCE_SUBSCRIPTIONS_UNSUBSCRIBED_NOTICE, | |
| } ); | |
| } | |
| }, | |
| } | |
| ) | |
| ); | |
| }; | |
| const onUnsubscribe = () => { | |
| unsubscribeInProgress.current = true; | |
| unsubscribeCallback(); | |
| unsubscribe( { | |
| blog_id, | |
| subscriptionId: Number( subscriptionId ), | |
| url, | |
| doNotInvalidateSiteSubscriptions: true, | |
| onSuccess: () => { | |
| unsubscribeInProgress.current = false; | |
| if ( resubscribePending.current ) { | |
| resubscribePending.current = false; | |
| resubscribe( { | |
| blog_id, | |
| url, | |
| doNotInvalidateSiteSubscriptions: true, | |
| resubscribed: true, | |
| } ); | |
| recordSiteResubscribed( { | |
| blog_id, | |
| url, | |
| source: SOURCE_SUBSCRIPTIONS_UNSUBSCRIBED_NOTICE, | |
| } ); | |
| } | |
| }, | |
| } ); | |
| }; | |
| const { isReaderPortal, isSubscriptionsPortal } = useSubscriptionManagerContext(); | |
| const siteTitleUrl = useMemo( () => { | |
| if ( isReaderPortal ) { | |
| const feedUrl = `/reader/feeds/${ feed_id }`; | |
| if ( ! blog_id ) { | |
| // The site subscription page does not support non-wpcom feeds yet | |
| return feedUrl; | |
| } | |
| if ( resubscribed ) { | |
| // If the site was resubscribed, the id of the optmistic update is not the same as the id of the new subscription | |
| return `/reader/site/subscription/${ blog_id }`; | |
| } | |
| return `/reader/subscriptions/${ subscriptionId }`; | |
| } | |
| if ( isSubscriptionsPortal ) { | |
| if ( ! Reader.isValidId( blog_id ) ) { | |
| // If it is a non-wpcom feed item, we want to open the reader's page for that feed | |
| return `/reader/feeds/${ feed_id }`; | |
| } | |
| return `/subscriptions/site/${ blog_id }`; | |
| } | |
| }, [ blog_id, feed_id, isReaderPortal, isSubscriptionsPortal, resubscribed, subscriptionId ] ); | |
| const handleNotifyMeOfNewPostsChange = ( send_posts: boolean ) => { | |
| // Update post notification settings | |
| updateNotifyMeOfNewPosts( { blog_id, send_posts, subscriptionId: Number( subscriptionId ) } ); | |
| // Record tracks event | |
| recordNotificationsToggle( send_posts, { blog_id } ); | |
| }; | |
| const handleEmailMeNewPostsChange = ( send_posts: boolean ) => { | |
| // Update post emails settings | |
| updateEmailMeNewPosts( { blog_id, send_posts, subscriptionId: Number( subscriptionId ) } ); | |
| // Record tracks event | |
| recordPostEmailsToggle( send_posts, { blog_id } ); | |
| }; | |
| const handleEmailMeNewCommentsChange = ( send_comments: boolean ) => { | |
| // Update comment emails settings | |
| updateEmailMeNewComments( { | |
| blog_id, | |
| send_comments, | |
| subscriptionId: Number( subscriptionId ), | |
| } ); | |
| // Record tracks event | |
| recordCommentEmailsToggle( send_comments, { blog_id } ); | |
| }; | |
| const handleDeliveryFrequencyChange = ( delivery_frequency: Reader.EmailDeliveryFrequency ) => { | |
| // Update post emails delivery frequency | |
| updateDeliveryFrequency( { | |
| blog_id, | |
| delivery_frequency, | |
| subscriptionId: Number( subscriptionId ), | |
| } ); | |
| // Record tracks event | |
| recordPostEmailsSetFrequency( { blog_id, delivery_frequency } ); | |
| }; | |
| const handleRecommendToggle = () => { | |
| const newRecommendedState = ! isRecommended; | |
| toggleRecommended(); | |
| // Record tracks event | |
| recordRecommendToggle( newRecommendedState, { blog_id } ); | |
| }; | |
| return ! isDeleted ? ( | |
| <HStack as="li" alignment="center" className="row site-subscription-row" role="row"> | |
| <span className="title-cell" role="cell"> | |
| <Link | |
| className="title-icon" | |
| href={ siteTitleUrl } | |
| onClick={ () => { | |
| recordSiteIconClicked( { blog_id, feed_id, source: SOURCE_SUBSCRIPTIONS_SITE_LIST } ); | |
| } } | |
| > | |
| <SiteIcon iconUrl={ site_icon } size={ 40 } alt={ name } /> | |
| </Link> | |
| <span className="title-column"> | |
| <Link | |
| className="title-name" | |
| href={ siteTitleUrl } | |
| onClick={ () => { | |
| recordSiteTitleClicked( { | |
| blog_id, | |
| feed_id, | |
| source: SOURCE_SUBSCRIPTIONS_SITE_LIST, | |
| } ); | |
| } } | |
| > | |
| { name } | |
| { !! is_wpforteams_site && <span className="p2-label">P2</span> } | |
| { !! is_paid_subscription && ( | |
| <span className="paid-label"> | |
| { translate( 'Paid', { context: 'Label for a paid subscription plan' } ) } | |
| </span> | |
| ) } | |
| { !! is_gift && ( | |
| <span className="gift-label"> | |
| { translate( 'Gift', { context: 'Label for a gifted subscription' } ) } | |
| </span> | |
| ) } | |
| { !! is_rss && <span className="rss-label">RSS</span> } | |
| </Link> | |
| <ExternalLink | |
| className="title-url" | |
| { ...( url && { href: url } ) } | |
| target="_blank" | |
| onClick={ () => { | |
| recordSiteUrlClicked( { blog_id, feed_id, source: SOURCE_SUBSCRIPTIONS_SITE_LIST } ); | |
| } } | |
| > | |
| { hostname } | |
| </ExternalLink> | |
| </span> | |
| </span> | |
| <span className="date-cell" role="cell"> | |
| <TimeSince | |
| date={ | |
| ( date_subscribed.valueOf() ? date_subscribed : new Date( 0 ) ).toISOString?.() ?? | |
| date_subscribed | |
| } | |
| /> | |
| </span> | |
| { isLoggedIn && ! isCompactLayout && ( | |
| <span className="new-posts-cell" role="cell"> | |
| <SelectedNewPostDeliveryMethods | |
| isEmailMeNewPostsSelected={ !! delivery_methods.email?.send_posts } | |
| isNotifyMeOfNewPostsSelected={ !! delivery_methods.notification?.send_posts } | |
| /> | |
| </span> | |
| ) } | |
| { isLoggedIn && ! isCompactLayout && ( | |
| <span className="new-comments-cell" role="cell"> | |
| <InfoPopover | |
| position="top" | |
| icon={ ! delivery_methods.email?.send_comments ? 'cross' : 'checkmark' } | |
| iconSize={ 16 } | |
| className={ ! delivery_methods.email?.send_comments ? 'red' : 'green' } | |
| showOnHover | |
| > | |
| { delivery_methods.email?.send_comments | |
| ? translate( 'You will receive email notifications for new comments on this site.' ) | |
| : translate( | |
| "You won't receive email notifications for new comments on this site." | |
| ) } | |
| </InfoPopover> | |
| </span> | |
| ) } | |
| <span className="email-frequency-cell" role="cell"> | |
| { deliveryFrequencyLabel } | |
| </span> | |
| { isLoggedIn && ! isCompactLayout && ( | |
| <span className="recommend-cell" role="cell"> | |
| <FormToggle | |
| aria-label={ translate( 'Recommend this site to other users.' ) } | |
| id={ `recommend-toggle-${ blog_id }` } | |
| checked={ isRecommended } | |
| onChange={ handleRecommendToggle } | |
| disabled={ ! currentUserName || typeof currentUserName !== 'string' } | |
| /> | |
| </span> | |
| ) } | |
| <span className="unsubscribe-action-cell" role="cell"> | |
| <Button variant="secondary" onClick={ onUnsubscribe }> | |
| { translate( 'Unsubscribe' ) } | |
| </Button> | |
| </span> | |
| <span className="actions-cell" role="cell"> | |
| <SiteSettingsPopover | |
| // NotifyMeOfNewPosts | |
| notifyMeOfNewPosts={ !! delivery_methods.notification?.send_posts } | |
| onNotifyMeOfNewPostsChange={ handleNotifyMeOfNewPostsChange } | |
| updatingNotifyMeOfNewPosts={ updatingNotifyMeOfNewPosts } | |
| // EmailMeNewPosts | |
| emailMeNewPosts={ !! delivery_methods.email?.send_posts } | |
| updatingEmailMeNewPosts={ updatingEmailMeNewPosts } | |
| onEmailMeNewPostsChange={ handleEmailMeNewPostsChange } | |
| // DeliveryFrequency | |
| deliveryFrequency={ | |
| delivery_methods.email?.post_delivery_frequency ?? | |
| Reader.EmailDeliveryFrequency.Instantly | |
| } | |
| onDeliveryFrequencyChange={ handleDeliveryFrequencyChange } | |
| updatingFrequency={ updatingFrequency } | |
| // EmailMeNewComments | |
| emailMeNewComments={ !! delivery_methods.email?.send_comments } | |
| onEmailMeNewCommentsChange={ handleEmailMeNewCommentsChange } | |
| updatingEmailMeNewComments={ updatingEmailMeNewComments } | |
| onUnsubscribe={ onUnsubscribe } | |
| unsubscribing={ unsubscribing } | |
| blogId={ sanitizedBlogId } | |
| feedId={ Number( feed_id ) } | |
| subscriptionId={ Number( subscriptionId ) } | |
| /> | |
| </span> | |
| </HStack> | |
| ) : null; | |
| }; | |
| export default SiteSubscriptionRow; | |