File size: 10,254 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 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 | import {
FEATURE_GOOGLE_ANALYTICS,
PLAN_JETPACK_SECURITY_DAILY,
} from '@automattic/calypso-products';
import {
FormInputValidation as FormTextValidation,
FormLabel,
Button,
ExternalLink,
} from '@automattic/components';
import { localizeUrl } from '@automattic/i18n-utils';
import { ToggleControl } from '@wordpress/components';
import { find } from 'lodash';
import { useEffect } from 'react';
import { useSelector } from 'react-redux';
import googleIllustration from 'calypso/assets/images/illustrations/google-analytics-logo.svg';
import UpsellNudge from 'calypso/blocks/upsell-nudge';
import QueryJetpackModules from 'calypso/components/data/query-jetpack-modules';
import FormFieldset from 'calypso/components/forms/form-fieldset';
import FormSettingExplanation from 'calypso/components/forms/form-setting-explanation';
import FormTextInput from 'calypso/components/forms/form-text-input';
import InlineSupportLink from 'calypso/components/inline-support-link';
import { PanelCard, PanelCardHeading } from 'calypso/components/panel';
import SupportInfo from 'calypso/components/support-info';
import { PRODUCT_UPSELLS_BY_FEATURE } from 'calypso/my-sites/plans/jetpack-plans/constants';
import JetpackModuleToggle from 'calypso/my-sites/site-settings/jetpack-module-toggle';
import { useDispatch } from 'calypso/state';
import { recordTracksEvent } from 'calypso/state/analytics/actions';
import { requestSiteSettings } from 'calypso/state/site-settings/actions';
import { getSiteAdminUrl } from 'calypso/state/sites/selectors';
import FormAnalyticsStores from '../form-analytics-stores';
import './style.scss';
const GoogleAnalyticsJetpackForm = ( {
displayForm,
enableForm,
fields,
handleCodeChange,
handleFieldChange,
handleFieldFocus,
handleFieldKeypress,
handleSubmitForm,
isCodeValid,
isRequestingSettings,
isSavingSettings,
isSubmitButtonDisabled,
jetpackModuleActive,
path,
placeholderText,
recordSupportLinkClick,
setDisplayForm,
showUpgradeNudge,
site,
siteId,
sitePlugins,
translate,
isAtomic,
isJetpackModuleAvailable,
} ) => {
const upsellHref = `/checkout/${ site.slug }/${ PRODUCT_UPSELLS_BY_FEATURE[ FEATURE_GOOGLE_ANALYTICS ] }`;
const analyticsSupportUrl = isAtomic
? localizeUrl( 'https://wordpress.com/support/google-analytics/' )
: 'https://jetpack.com/support/google-analytics/';
const nudgeTitle = translate( 'Connect your site to Google Analytics' );
// TODO: it would be better to get wooCommercePlugin directly in form-google-analytics using getAllPluginsIndexedByPluginSlug
const wooCommercePlugin = find( sitePlugins, { slug: 'woocommerce' } );
const wooCommerceActive = wooCommercePlugin ? wooCommercePlugin.sites[ siteId ].active : false;
const dispatch = useDispatch();
const trackTracksEvent = ( name, props ) => dispatch( recordTracksEvent( name, props ) );
const statsUrl = useSelector( ( state ) =>
site.options?.is_wpcom_atomic
? getSiteAdminUrl( state, siteId, 'admin.php?page=stats' )
: '/stats/' + site.domain
);
useEffect( () => {
// Show the form if GA module is active, or it's been removed but GA is activated via the Legacy Plugin.
if ( jetpackModuleActive || ( ! isJetpackModuleAvailable && fields?.wga?.is_active ) ) {
setDisplayForm( true );
} else {
setDisplayForm( false );
}
}, [ jetpackModuleActive, setDisplayForm, isJetpackModuleAvailable, fields?.wga?.is_active ] );
useEffect( () => {
if ( jetpackModuleActive && ! fields.hasOwnProperty( 'wga' ) ) {
dispatch( requestSiteSettings( siteId ) );
}
}, [ jetpackModuleActive, siteId ] );
const handleToggleChange = ( key ) => {
const value = fields.wga ? ! fields.wga[ key ] : false;
trackTracksEvent( 'calypso_google_analytics_setting_changed', { key, path } );
handleFieldChange( key, value );
};
const handleAnonymizeChange = () => {
handleToggleChange( 'anonymize_ip' );
};
const handleSubmitFormCustom = () => {
if ( isJetpackModuleAvailable ) {
handleFieldChange( 'is_active', !! jetpackModuleActive, handleSubmitForm );
return;
}
handleSubmitForm();
};
const trackActiveToggle = () => {
trackTracksEvent( 'calypso_google_analytics_setting_changed', { key: 'is_active', path } );
};
const handleSettingsToggleChange = ( value ) => {
trackActiveToggle();
handleFieldChange( 'is_active', value, handleSubmitForm );
};
const renderSettingsToggle = () => {
return (
<span className="jetpack-module-toggle">
<ToggleControl
id={ `${ siteId }-ga-settings-toggle` }
checked={ fields?.wga?.is_active }
onChange={ handleSettingsToggleChange }
label={ translate( 'Add Google' ) }
disabled={ isRequestingSettings || isSavingSettings }
/>
</span>
);
};
const renderForm = () => {
return (
<form
aria-label="Google Analytics Site Settings"
id="analytics"
onSubmit={ handleSubmitFormCustom }
>
<QueryJetpackModules siteId={ siteId } />
<>
<PanelCardHeading>{ translate( 'Google Analytics' ) }</PanelCardHeading>
<div className="analytics site-settings__analytics">
<div className="analytics site-settings__analytics-illustration">
<img src={ googleIllustration } alt="" />
</div>
<div className="analytics site-settings__analytics-text">
<p>
{ translate(
'A free analytics tool that offers additional insights into your site.'
) }{ ' ' }
<InlineSupportLink
onClick={ recordSupportLinkClick }
showIcon={ false }
supportPostId={ 98905 }
supportLink={ analyticsSupportUrl }
>
{ translate( 'Learn more' ) }
</InlineSupportLink>
</p>
</div>
</div>
{ displayForm && (
<div className="analytics site-settings__analytics-form-content">
<FormFieldset>
<FormLabel htmlFor="wgaCode">
{ translate( 'Google Analytics Measurement ID', { context: 'site setting' } ) }
</FormLabel>
<FormTextInput
name="wgaCode"
id="wgaCode"
value={ fields.wga ? fields.wga.code : '' }
onChange={ handleCodeChange }
placeholder={ placeholderText }
disabled={ isRequestingSettings || ! enableForm }
onFocus={ handleFieldFocus }
onKeyPress={ handleFieldKeypress }
isError={ ! isCodeValid }
/>
{ ! isCodeValid && (
<FormTextValidation
isError
text={ translate( 'Invalid Google Analytics Measurement ID.' ) }
/>
) }
<InlineSupportLink supportContext="google-analytics-measurement-id">
{ translate( 'Where can I find my Measurement ID?' ) }
</InlineSupportLink>
</FormFieldset>
<FormFieldset>
<ToggleControl
checked={ fields.wga ? Boolean( fields.wga.anonymize_ip ) : false }
disabled={ isRequestingSettings || ! enableForm }
onChange={ handleAnonymizeChange }
label={ translate( 'Anonymize IP addresses' ) }
/>
<FormSettingExplanation>
{ translate(
'Enabling this option is mandatory in certain countries due to national ' +
'privacy laws.'
) }
<ExternalLink
icon
href="https://support.google.com/analytics/answer/2763052"
target="_blank"
>
{ translate( 'Learn more' ) }
</ExternalLink>
</FormSettingExplanation>
</FormFieldset>
{ wooCommerceActive && (
<FormAnalyticsStores fields={ fields } handleToggleChange={ handleToggleChange } />
) }
<p>
{ translate(
'Google Analytics is a free service that complements our {{a}}built-in stats{{/a}} ' +
'with different insights into your traffic. Jetpack Stats and Google Analytics ' +
'use different methods to identify and track activity on your site, so they will ' +
'normally show slightly different totals for your visits, views, etc.',
{
components: {
a: <a href={ statsUrl } />,
},
}
) }
</p>
<p>
{ translate(
'Learn more about using {{a}}Google Analytics with WordPress.com{{/a}}.',
{
components: {
a: (
<InlineSupportLink
showIcon={ false }
supportPostId={ 98905 }
supportLink={ analyticsSupportUrl }
/>
),
},
}
) }
</p>
</div>
) }
</>
{ showUpgradeNudge && site && site.plan ? (
<UpsellNudge
description={ translate(
"Monitor your site's views, clicks, and other important metrics"
) }
event="google_analytics_settings"
feature={ FEATURE_GOOGLE_ANALYTICS }
plan={ PLAN_JETPACK_SECURITY_DAILY }
href={ upsellHref }
showIcon
title={ nudgeTitle }
/>
) : (
<>
<div className="analytics site-settings__analytics">
<FormFieldset>
<SupportInfo
text={ translate(
'Reports help you track the path visitors take' +
' through your site, and goal conversion lets you' +
' measure how visitors complete specific tasks.'
) }
link="https://jetpack.com/support/google-analytics/"
/>
{ isJetpackModuleAvailable ? (
<JetpackModuleToggle
siteId={ siteId }
moduleSlug="google-analytics"
label={ translate( 'Add Google' ) }
disabled={ isRequestingSettings || isSavingSettings }
onChange={ trackActiveToggle }
/>
) : (
renderSettingsToggle()
) }
</FormFieldset>
</div>
<Button
className="is-primary"
disabled={ isSubmitButtonDisabled }
busy={ isSavingSettings }
onClick={ handleSubmitFormCustom }
>
{ translate( 'Save' ) }
</Button>
</>
) }
</form>
);
};
// we need to check that site has loaded first... a placeholder would be better,
// but returning null is better than a fatal error for now
if ( ! site ) {
return null;
}
return <PanelCard>{ renderForm() }</PanelCard>;
};
export default GoogleAnalyticsJetpackForm;
|