import { PLAN_PERSONAL, WPCOM_FEATURES_NO_ADVERTS, getPlan } from '@automattic/calypso-products'; import { localize } from 'i18n-calypso'; import { find } from 'lodash'; import PropTypes from 'prop-types'; import { connect } from 'react-redux'; import UpsellNudge from 'calypso/blocks/upsell-nudge'; import DocumentHead from 'calypso/components/data/document-head'; import QueryJetpackModules from 'calypso/components/data/query-jetpack-modules'; import InlineSupportLink from 'calypso/components/inline-support-link'; import Main from 'calypso/components/main'; import NavigationHeader from 'calypso/components/navigation-header'; import SectionNav from 'calypso/components/section-nav'; import NavItem from 'calypso/components/section-nav/item'; import NavTabs from 'calypso/components/section-nav/tabs'; import { useSelector } from 'calypso/state'; import { canCurrentUser } from 'calypso/state/selectors/can-current-user'; import isSiteP2Hub from 'calypso/state/selectors/is-site-p2-hub'; import isVipSite from 'calypso/state/selectors/is-vip-site'; import { getSiteSlug, isAdminInterfaceWPAdmin, isJetpackSite, getSiteAdminUrl, } from 'calypso/state/sites/selectors'; import { getSelectedSiteId } from 'calypso/state/ui/selectors'; import 'calypso/sites/marketing/style.scss'; export const Sharing = ( { contentComponent, pathname, showButtons, showConnections, showTraffic, siteId, isJetpack, isP2Hub, isVip, siteSlug, translate, } ) => { const adminInterfaceIsWPAdmin = useSelector( ( state ) => isAdminInterfaceWPAdmin( state, siteId ) ); const isJetpackClassic = isJetpack && adminInterfaceIsWPAdmin; const siteAdminUrl = useSelector( ( state ) => getSiteAdminUrl( state, siteId ) ); const pathSuffix = siteSlug ? '/' + siteSlug : ''; let filters = []; filters.push( { id: 'marketing-tools', route: '/marketing/tools' + pathSuffix, title: translate( 'Marketing Tools' ), } ); // Include Connections link if all sites are selected. Otherwise, // verify that the required Jetpack module is active const connectionsFilter = { id: 'sharing-connections', route: '/marketing/connections' + pathSuffix, title: translate( 'Connections' ), description: translate( 'Connect your site to social networks and other services. {{learnMoreLink/}}', { components: { learnMoreLink: ( ), }, } ), }; if ( showConnections ) { filters.push( connectionsFilter ); } // Include SEO link if a site is selected and the // required Jetpack module is active if ( showTraffic ) { filters.push( { id: 'traffic', route: isJetpackClassic ? siteAdminUrl + 'admin.php?page=jetpack#/traffic' : '/marketing/traffic' + pathSuffix, isExternalLink: isJetpackClassic, title: translate( 'Traffic' ), description: translate( 'Manage settings and tools related to the traffic your website receives. {{learnMoreLink/}}', { components: { learnMoreLink: ( ), }, } ), } ); } // Include Sharing Buttons link if a site is selected and the // required Jetpack module is active if ( showButtons ) { filters.push( { id: 'sharing-buttons', route: isJetpackClassic ? siteAdminUrl + 'admin.php?page=jetpack#/sharing' : '/marketing/sharing-buttons' + pathSuffix, isExternalLink: isJetpackClassic, title: translate( 'Sharing Buttons' ), description: translate( 'Make it easy for your readers to share your content online. {{learnMoreLink/}}', { components: { learnMoreLink: ( ), }, } ), } ); } let titleHeader = translate( 'Marketing and Integrations' ); if ( adminInterfaceIsWPAdmin ) { titleHeader = translate( 'Marketing' ); } if ( isP2Hub ) { // For p2 hub sites show only connections tab. filters = [ connectionsFilter ]; titleHeader = translate( 'Integrations' ); } const selected = find( filters, { route: pathname } ); const isFirstFilterSelected = filters[ 0 ]?.route === pathname; return ( // eslint-disable-next-line wpcalypso/jsx-classname-namespace
{ siteId && } { filters.length > 0 && ( { filters.map( ( { id, route, isExternalLink, title } ) => ( { title } ) ) } ) } { isFirstFilterSelected && ! isVip && ! isJetpack && ( ) } { contentComponent }
); }; Sharing.propTypes = { canManageOptions: PropTypes.bool, contentComponent: PropTypes.node, isVipSite: PropTypes.bool, path: PropTypes.string, showButtons: PropTypes.bool, showConnections: PropTypes.bool, siteId: PropTypes.number, siteSlug: PropTypes.string, translate: PropTypes.func, }; export default connect( ( state ) => { const siteId = getSelectedSiteId( state ); const isJetpack = isJetpackSite( state, siteId ); const canManageOptions = canCurrentUser( state, siteId, 'manage_options' ); return { isP2Hub: isSiteP2Hub( state, siteId ), showButtons: siteId && canManageOptions, showConnections: !! siteId, showTraffic: canManageOptions && !! siteId, isVip: isVipSite( state, siteId ), siteId, siteSlug: getSiteSlug( state, siteId ), isJetpack: isJetpack, }; } )( localize( Sharing ) );