File size: 6,524 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 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 | 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: (
<InlineSupportLink key="publicize" supportContext="publicize" showIcon={ false } />
),
},
}
),
};
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: (
<InlineSupportLink key="traffic" supportContext="traffic" showIcon={ false } />
),
},
}
),
} );
}
// 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: (
<InlineSupportLink key="sharing" supportContext="sharing" showIcon={ false } />
),
},
}
),
} );
}
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
<Main wideLayout className="sharing">
<DocumentHead title={ titleHeader } />
{ siteId && <QueryJetpackModules siteId={ siteId } /> }
<NavigationHeader
navigationItems={ [] }
title={ titleHeader }
subtitle={
selected?.description ??
translate(
'Explore tools to build your audience, market your site, and engage your visitors.'
)
}
/>
{ filters.length > 0 && (
<SectionNav selectedText={ selected?.title ?? '' }>
<NavTabs>
{ filters.map( ( { id, route, isExternalLink, title } ) => (
<NavItem
key={ id }
path={ route }
isExternalLink={ isExternalLink }
selected={ pathname === route }
>
{ title }
</NavItem>
) ) }
</NavTabs>
</SectionNav>
) }
{ isFirstFilterSelected && ! isVip && ! isJetpack && (
<UpsellNudge
event="sharing_no_ads"
plan={ PLAN_PERSONAL }
feature={ WPCOM_FEATURES_NO_ADVERTS }
description={ translate( 'Prevent ads from showing on your site.' ) }
title={ translate( 'No ads with WordPress.com %(upsellPlanName)s', {
args: { upsellPlanName: getPlan( PLAN_PERSONAL )?.getTitle() },
} ) }
tracksImpressionName="calypso_upgrade_nudge_impression"
tracksClickName="calypso_upgrade_nudge_cta_click"
showIcon
/>
) }
{ contentComponent }
</Main>
);
};
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 ) );
|