| | import { recordTracksEvent } from '@automattic/calypso-analytics'; |
| | import { DotPager } from '@automattic/components'; |
| | import { translate } from 'i18n-calypso'; |
| | import { useEffect, useMemo, useState } from 'react'; |
| | import { useSelector } from 'react-redux'; |
| | import rocketImage from 'calypso/assets/images/customer-home/illustration--rocket.svg'; |
| | import YoastLogo from 'calypso/assets/images/icons/yoast-logo.svg'; |
| | import writePost from 'calypso/assets/images/onboarding/site-options.svg'; |
| | import BlazeLogo from 'calypso/components/blaze-logo'; |
| | import { useHasNeverPublishedPost } from 'calypso/data/stats/use-has-never-published-post'; |
| | import { PromoteWidgetStatus, usePromoteWidget } from 'calypso/lib/promote-post'; |
| | import isAtomicSite from 'calypso/state/selectors/is-site-automated-transfer'; |
| | import { getSiteOption, isJetpackSite } from 'calypso/state/sites/selectors'; |
| | import { getSelectedSiteId } from 'calypso/state/ui/selectors'; |
| | import MiniCarouselBlock from './mini-carousel-block'; |
| | import { isBlockDismissed } from './selectors'; |
| | import './style.scss'; |
| |
|
| | const EVENT_TRAFFIC_BLAZE_PROMO_VIEW = 'calypso_stats_traffic_blaze_banner_view'; |
| | const EVENT_TRAFFIC_BLAZE_PROMO_CLICK = 'calypso_stats_traffic_blaze_banner_click'; |
| | const EVENT_TRAFFIC_BLAZE_PROMO_DISMISS = 'calypso_stats_traffic_blaze_banner_dismiss'; |
| | const EVENT_YOAST_PROMO_VIEW = 'calypso_stats_wordpress_seo_premium_banner_view'; |
| | const EVENT_YOAST_PROMO_CLICK = 'calypso_stats_wordpress_seo_premium_banner_click'; |
| | const EVENT_YOAST_PROMO_DISMISS = 'calypso_stats_wordpress_seo_premium_banner_dismiss'; |
| | const EVENT_PRIVATE_SITE_BANNER_VIEW = 'calypso_stats_private_site_banner_view'; |
| | const EVENT_PRIVATE_SITE_BANNER_CLICK = 'calypso_stats_private_site_banner_click'; |
| | const EVENT_PRIVATE_SITE_BANNER_DISMISS = 'calypso_stats_private_site_banner_dismiss'; |
| | const EVENT_NO_CONTENT_BANNER_VIEW = 'calypso_stats_no_content_banner_view'; |
| | const EVENT_NO_CONTENT_BANNER_CLICK = 'calypso_stats_no_content_banner_click'; |
| | const EVENT_NO_CONTENT_BANNER_DISMISS = 'calypso_stats_no_content_banner_dismiss'; |
| |
|
| | const MiniCarousel = ( { slug, isSitePrivate } ) => { |
| | const selectedSiteId = useSelector( getSelectedSiteId ); |
| |
|
| | const { data: hasNeverPublishedPost, isLoading: isHasNeverPublishedPostLoading } = |
| | useHasNeverPublishedPost( selectedSiteId ?? null, true, { |
| | retry: false, |
| | } ); |
| |
|
| | const jetpackNonAtomic = useSelector( |
| | ( state ) => isJetpackSite( state, selectedSiteId ) && ! isAtomicSite( state, selectedSiteId ) |
| | ); |
| | const isSimpleClassic = useSelector( ( state ) => |
| | getSiteOption( state, selectedSiteId, 'is_wpcom_simple' ) |
| | ); |
| |
|
| | |
| | |
| | const [ dotPagerIndex, setDotPagerIndex ] = useState( 0 ); |
| |
|
| | const shouldShowAdvertisingOption = usePromoteWidget() === PromoteWidgetStatus.ENABLED; |
| |
|
| | |
| | const showPrivateSiteBanner = |
| | ! useSelector( isBlockDismissed( EVENT_PRIVATE_SITE_BANNER_DISMISS ) ) && isSitePrivate; |
| |
|
| | |
| | const showWriteAPostBanner = |
| | ! useSelector( isBlockDismissed( EVENT_NO_CONTENT_BANNER_DISMISS ) ) && |
| | ! isSitePrivate && |
| | hasNeverPublishedPost && |
| | ! isHasNeverPublishedPostLoading; |
| |
|
| | |
| | const showBlazePromo = |
| | ! useSelector( isBlockDismissed( EVENT_TRAFFIC_BLAZE_PROMO_DISMISS ) ) && |
| | shouldShowAdvertisingOption; |
| |
|
| | |
| | const showYoastPromo = |
| | ! useSelector( isBlockDismissed( EVENT_YOAST_PROMO_DISMISS ) ) && |
| | ! jetpackNonAtomic && |
| | ! isSimpleClassic; |
| |
|
| | const viewEvents = useMemo( () => { |
| | const events = []; |
| | isSitePrivate && events.push( EVENT_PRIVATE_SITE_BANNER_VIEW ); |
| | showWriteAPostBanner && events.push( EVENT_NO_CONTENT_BANNER_VIEW ); |
| | showBlazePromo && events.push( EVENT_TRAFFIC_BLAZE_PROMO_VIEW ); |
| | showYoastPromo && events.push( EVENT_YOAST_PROMO_VIEW ); |
| | return events; |
| | }, [ isSitePrivate, showWriteAPostBanner, showBlazePromo, showYoastPromo ] ); |
| |
|
| | |
| | const getCalypsoUrl = ( href ) => { |
| | const baseUrl = window?.location?.hostname === slug ? 'https://wordpress.com' : ''; |
| | return baseUrl + href; |
| | }; |
| |
|
| | |
| | useEffect( () => { |
| | if ( viewEvents.length === 0 ) { |
| | return; |
| | } else if ( dotPagerIndex >= viewEvents.length ) { |
| | |
| | recordTracksEvent( viewEvents[ viewEvents.length - 1 ], { site_id: selectedSiteId } ); |
| | } else { |
| | recordTracksEvent( viewEvents[ dotPagerIndex ], { site_id: selectedSiteId } ); |
| | } |
| | }, [ viewEvents, dotPagerIndex, selectedSiteId ] ); |
| |
|
| | const pagerDidSelectPage = ( index ) => setDotPagerIndex( index ); |
| |
|
| | const blocks = []; |
| |
|
| | if ( showPrivateSiteBanner ) { |
| | blocks.push( |
| | <MiniCarouselBlock |
| | clickEvent={ EVENT_PRIVATE_SITE_BANNER_CLICK } |
| | dismissEvent={ EVENT_PRIVATE_SITE_BANNER_DISMISS } |
| | image={ <img src={ rocketImage } alt="" width={ 45 } height={ 45 } /> } |
| | headerText={ translate( 'Launch your site to drive more visitors' ) } |
| | contentText={ translate( |
| | 'Changing your site from private to public helps people find you and get more visitors. Don’t worry, you can keep working on your site.' |
| | ) } |
| | ctaText={ translate( 'Launch your site' ) } |
| | href={ getCalypsoUrl( `/settings/general/${ slug }` ) } |
| | key="launch-your-site" |
| | /> |
| | ); |
| | } |
| |
|
| | if ( showWriteAPostBanner ) { |
| | blocks.push( |
| | <MiniCarouselBlock |
| | clickEvent={ EVENT_NO_CONTENT_BANNER_CLICK } |
| | dismissEvent={ EVENT_NO_CONTENT_BANNER_DISMISS } |
| | image={ <img src={ writePost } alt="" width={ 45 } height={ 45 } /> } |
| | headerText={ translate( 'Start writing your first post to get more views' ) } |
| | contentText={ translate( |
| | 'Sites with content get more visitors. We’ve found that adding some personality and introducing yourself is a great start to click with your audience.' |
| | ) } |
| | ctaText={ translate( 'Write a post' ) } |
| | href={ getCalypsoUrl( `/post/${ slug }` ) } |
| | key="write-a-post" |
| | /> |
| | ); |
| | } |
| |
|
| | if ( showBlazePromo ) { |
| | blocks.push( |
| | <MiniCarouselBlock |
| | clickEvent={ EVENT_TRAFFIC_BLAZE_PROMO_CLICK } |
| | dismissEvent={ EVENT_TRAFFIC_BLAZE_PROMO_DISMISS } |
| | image={ <BlazeLogo className="mini-carousel-blaze" size={ 45 } /> } |
| | headerText={ translate( 'Promote your content with Blaze' ) } |
| | contentText={ translate( |
| | 'Grow your audience by promoting your content. Reach millions of users across Tumblr and WordPress.com' |
| | ) } |
| | ctaText={ translate( 'Create campaign' ) } |
| | href={ getCalypsoUrl( `/advertising/${ slug || '' }` ) } |
| | key="blaze" |
| | /> |
| | ); |
| | } |
| |
|
| | if ( showYoastPromo ) { |
| | blocks.push( |
| | <MiniCarouselBlock |
| | clickEvent={ EVENT_YOAST_PROMO_CLICK } |
| | dismissEvent={ EVENT_YOAST_PROMO_DISMISS } |
| | image={ <img src={ YoastLogo } alt="" width={ 45 } height={ 45 } /> } |
| | headerText={ translate( 'Increase your site visitors with Yoast SEO Premium' ) } |
| | contentText={ translate( |
| | 'Purchase Yoast SEO Premium to ensure that more people find your incredible content.' |
| | ) } |
| | ctaText={ translate( 'Get Yoast' ) } |
| | href={ getCalypsoUrl( `/plugins/wordpress-seo-premium/${ slug || '' }` ) } |
| | key="yoast" |
| | /> |
| | ); |
| | } |
| |
|
| | if ( blocks.length === 0 ) { |
| | return null; |
| | } |
| |
|
| | return ( |
| | <DotPager |
| | className="mini-carousel" |
| | hasDynamicHeight={ false } |
| | onPageSelected={ pagerDidSelectPage } |
| | rotateTime={ 5000 } |
| | > |
| | { blocks } |
| | </DotPager> |
| | ); |
| | }; |
| |
|
| | export default MiniCarousel; |
| |
|