File size: 4,781 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 | import { localize } from 'i18n-calypso';
import { pick } from 'lodash';
import { useEffect } from 'react';
import { connect } from 'react-redux';
import blazeIllustration from 'calypso/assets/images/customer-home/illustration--blaze.svg';
import PromoCardBlock from 'calypso/blocks/promo-card-block';
import AsyncLoad from 'calypso/components/async-load';
import EmptyContent from 'calypso/components/empty-content';
import PageViewTracker from 'calypso/lib/analytics/page-view-tracker';
import useAdvertisingUrl from 'calypso/my-sites/advertising/useAdvertisingUrl';
import AnalyticsSettings from 'calypso/my-sites/site-settings/analytics/form-google-analytics';
import JetpackDevModeNotice from 'calypso/my-sites/site-settings/jetpack-dev-mode-notice';
import JetpackSiteStats from 'calypso/my-sites/site-settings/jetpack-site-stats';
import SeoSettingsHelpCard from 'calypso/my-sites/site-settings/seo-settings/help';
import SiteVerification from 'calypso/my-sites/site-settings/seo-settings/site-verification';
import Shortlinks from 'calypso/my-sites/site-settings/shortlinks';
import Sitemaps from 'calypso/my-sites/site-settings/sitemaps';
import wrapSettingsForm from 'calypso/my-sites/site-settings/wrap-settings-form';
import { canCurrentUser } from 'calypso/state/selectors/can-current-user';
import isBlazeEnabled from 'calypso/state/selectors/is-blaze-enabled';
import { isJetpackSite } from 'calypso/state/sites/selectors';
import { getSelectedSiteId } from 'calypso/state/ui/selectors';
import './style.scss';
const SiteSettingsTraffic = ( {
fields,
handleAutosavingRadio,
handleAutosavingToggle,
handleSubmitForm,
isAdmin,
isJetpackAdmin,
isRequestingSettings,
isSavingSettings,
setFieldValue,
siteId,
shouldShowAdvertisingOption,
translate,
} ) => {
useEffect( () => {
/* Elements are loaded contionnaly so the browser gets lost and can't find the node */
if ( window.location.hash ) {
document.getElementById( window.location.hash.substring( 1 ) )?.scrollIntoView();
}
}, [] );
const advertisingUrl = useAdvertisingUrl();
return (
// eslint-disable-next-line wpcalypso/jsx-classname-namespace
<div className="settings-traffic site-settings">
<PageViewTracker path="/marketing/traffic/:site" title="Marketing > Traffic" />
{ ! isAdmin && (
<EmptyContent title={ translate( 'You are not authorized to view this page' ) } />
) }
<JetpackDevModeNotice />
{ isAdmin && shouldShowAdvertisingOption && (
<PromoCardBlock
productSlug="blaze"
impressionEvent="calypso_marketing_traffic_blaze_banner_view"
clickEvent="calypso_marketing_traffic_blaze_banner_click"
headerText={ translate( 'Reach new readers and customers' ) }
contentText={ translate(
'Use WordPress Blaze to increase your reach by promoting your work to the larger WordPress.com community of blogs and sites. '
) }
ctaText={ translate( 'Get started' ) }
image={ blazeIllustration }
href={ advertisingUrl }
/>
) }
{ isAdmin && <SeoSettingsHelpCard disabled={ isRequestingSettings || isSavingSettings } /> }
{ isAdmin && (
<AsyncLoad
key={ siteId }
require="calypso/my-sites/site-settings/seo-settings/form"
placeholder={ null }
/>
) }
{ isJetpackAdmin && (
<JetpackSiteStats
handleAutosavingToggle={ handleAutosavingToggle }
setFieldValue={ setFieldValue }
isSavingSettings={ isSavingSettings }
isRequestingSettings={ isRequestingSettings }
fields={ fields }
/>
) }
{ isAdmin && <AnalyticsSettings /> }
{ isJetpackAdmin && (
<Shortlinks
handleAutosavingRadio={ handleAutosavingRadio }
handleAutosavingToggle={ handleAutosavingToggle }
isSavingSettings={ isSavingSettings }
isRequestingSettings={ isRequestingSettings }
fields={ fields }
onSubmitForm={ handleSubmitForm }
/>
) }
{ isAdmin && (
<Sitemaps
isSavingSettings={ isSavingSettings }
isRequestingSettings={ isRequestingSettings }
fields={ fields }
/>
) }
{ isAdmin && <SiteVerification /> }
</div>
);
};
const connectComponent = connect( ( state ) => {
const siteId = getSelectedSiteId( state );
const isAdmin = canCurrentUser( state, siteId, 'manage_options' );
const isJetpack = isJetpackSite( state, siteId );
const isJetpackAdmin = isJetpack && isAdmin;
const shouldShowAdvertisingOption = isBlazeEnabled( state, siteId );
return {
siteId,
isAdmin,
isJetpack,
isJetpackAdmin,
shouldShowAdvertisingOption,
};
} );
const getFormSettings = ( settings ) =>
pick( settings, [ 'stats', 'admin_bar', 'hide_smile', 'count_roles', 'roles', 'blog_public' ] );
export default connectComponent(
localize( wrapSettingsForm( getFormSettings )( SiteSettingsTraffic ) )
);
|