import { HelpCenter } from '@automattic/data-stores'; import { useLocalizeUrl } from '@automattic/i18n-utils'; import { Button, Icon } from '@wordpress/components'; import { useDispatch as useDataStoreDispatch } from '@wordpress/data'; import { useState } from '@wordpress/element'; import { plus } from '@wordpress/icons'; import { translate, fixMe } from 'i18n-calypso'; import { useEffect } from 'react'; import { navItems } from 'calypso/blocks/stats-navigation/constants'; import NavigationHeader from 'calypso/components/navigation-header'; import isJetpackCloud from 'calypso/lib/jetpack/is-jetpack-cloud'; import { useSelector } from 'calypso/state'; import isSiteWPCOM from 'calypso/state/selectors/is-site-wpcom'; import { useAddSubscribersCallback, useMigrateSubscribersCallback } from '../../hooks'; import { AddSubscribersModal } from '../add-subscribers-modal'; import { MigrateSubscribersModal } from '../migrate-subscribers-modal'; import { SubscribersHeaderPopover } from '../subscribers-header-popover'; enum SubscriberModalType { NONE = 'none', ADD = 'add', MIGRATE = 'migrate', } type SubscribersHeaderProps = { siteId: number | null; disableCta: boolean; hideSubtitle?: boolean; hideAddButtonLabel?: boolean; }; const HELP_CENTER_STORE = HelpCenter.register(); export const SubscribersHeader = ( { siteId, disableCta, hideSubtitle, hideAddButtonLabel = false, }: SubscribersHeaderProps ) => { const localizeUrl = useLocalizeUrl(); const { setShowSupportDoc } = useDataStoreDispatch( HELP_CENTER_STORE ); const isWPCOMSite = useSelector( ( state ) => isSiteWPCOM( state, siteId ) ); const supportUrl = ! isWPCOMSite ? 'https://jetpack.com/support/newsletter/customize-the-newsletter-experience/#manage-subscribers' : 'https://wordpress.com/support/subscribers/ '; const openHelpCenter = () => { setShowSupportDoc( localizeUrl( supportUrl ) ); }; const subtitleOptions = { components: { link: ( { if ( ! isJetpackCloud() ) { event.preventDefault(); openHelpCenter(); } } } rel="noreferrer" /> ), }, }; /** * The modals are handled from the header component to avoid * complicated state management. The modal state exists in the * same component where they are added and removed. */ const addSubscribersCallback = useAddSubscribersCallback( siteId ); const migrateSubscribersCallback = useMigrateSubscribersCallback( siteId ); const [ showSubscriberModal, setShowSubscriberModal ] = useState< SubscriberModalType >( SubscriberModalType.NONE ); const [ initialMethod, setInitialMethod ] = useState( '' ); const closeSubscriberModal = () => { setShowSubscriberModal( SubscriberModalType.NONE ); setInitialMethod( '' ); if ( window.location.hash.startsWith( '#add-subscribers' ) ) { // Doing this instead of window.location.hash = '' because window.location.hash keeps the # symbol // Also this makes the back button show the modal again, which is neat history.pushState( '', document.title, window.location.pathname + window.location.search ); } }; useEffect( () => { const handleHashChange = () => { const hash = window.location.hash; if ( hash.startsWith( '#add-subscribers' ) ) { const method = new URLSearchParams( hash.replace( '#add-subscribers', '' ) ).get( 'method' ); setShowSubscriberModal( SubscriberModalType.ADD ); if ( method ) { setInitialMethod( method ); } } }; window.addEventListener( 'hashchange', handleHashChange ); handleHashChange(); return () => { window.removeEventListener( 'hashchange', handleHashChange ); }; }, [] ); return ( <>