File size: 5,110 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 |
import config from '@automattic/calypso-config';
import { Card } from '@automattic/components';
import { withLocalizeUrl } from '@automattic/i18n-utils';
import { ToggleControl } from '@wordpress/components';
import { localize } from 'i18n-calypso';
import { flowRight as compose } from 'lodash';
import { Component } from 'react';
import { connect } from 'react-redux';
import DocumentHead from 'calypso/components/data/document-head';
import QueryUserSettings from 'calypso/components/data/query-user-settings';
import FormButton from 'calypso/components/forms/form-button';
import FormFieldset from 'calypso/components/forms/form-fieldset';
import Main from 'calypso/components/main';
import NavigationHeader from 'calypso/components/navigation-header';
import SectionHeader from 'calypso/components/section-header';
import PageViewTracker from 'calypso/lib/analytics/page-view-tracker';
import { protectForm } from 'calypso/lib/protect-form';
import twoStepAuthorization from 'calypso/lib/two-step-authorization';
import ReauthRequired from 'calypso/me/reauth-required';
import getUserSetting from 'calypso/state/selectors/get-user-setting';
import hasUnsavedUserSettings from 'calypso/state/selectors/has-unsaved-user-settings';
import { setUserSetting, saveUserSettings } from 'calypso/state/user-settings/actions';
import { isUpdatingUserSettings } from 'calypso/state/user-settings/selectors';
import { DoNotSellSetting } from './do-not-sell';
import DPA from './dpa';
const TRACKS_OPT_OUT_USER_SETTINGS_KEY = 'tracks_opt_out';
class Privacy extends Component {
componentDidUpdate( oldProps ) {
if ( oldProps.hasUnsavedUserSettings && ! this.props.hasUnsavedUserSettings ) {
this.props.markSaved();
}
}
updateTracksOptOut = ( isSendingTracksEvents ) => {
this.props.setUserSetting( TRACKS_OPT_OUT_USER_SETTINGS_KEY, ! isSendingTracksEvents );
};
submitForm = ( event ) => {
event.preventDefault();
this.props.saveUserSettings();
};
render() {
const {
markChanged,
translate,
/* eslint-disable no-shadow */
hasUnsavedUserSettings,
isUpdatingUserSettings,
/* eslint-enable no-shadow */
localizeUrl,
} = this.props;
const isSubmitButtonDisabled = ! hasUnsavedUserSettings || isUpdatingUserSettings;
const cookiePolicyLink = <a href={ localizeUrl( 'https://automattic.com/cookies/' ) } />;
const privacyPolicyLink = <a href={ localizeUrl( 'https://automattic.com/privacy/' ) } />;
return (
<Main wideLayout className="privacy">
<QueryUserSettings />
<PageViewTracker path="/me/privacy" title="Me > Privacy" />
<DocumentHead title={ translate( 'Privacy Settings' ) } />
<ReauthRequired twoStepAuthorization={ twoStepAuthorization } />
<NavigationHeader navigationItems={ [] } title={ translate( 'Privacy' ) } />
<SectionHeader label={ translate( 'Usage information' ) } />
<Card className="privacy__settings">
<form onChange={ markChanged } onSubmit={ this.submitForm }>
<FormFieldset>
<p>{ translate( 'We are committed to your privacy and security.' ) }</p>
<p>
{ translate(
'The information you choose to share helps us improve our products, make marketing to you more ' +
'relevant, personalize your WordPress.com experience, and more as detailed in ' +
'our {{privacyPolicyLink}}privacy policy{{/privacyPolicyLink}}.',
{
components: {
privacyPolicyLink,
},
}
) }
</p>
<p>
{ translate(
'In addition to our analytics tool, we use other tracking tools, including some from third parties. ' +
'{{cookiePolicyLink}}Read about these{{/cookiePolicyLink}} and how to ' +
'control them.',
{
components: {
cookiePolicyLink,
},
}
) }
</p>
<hr />
<ToggleControl
id="tracks_opt_out"
checked={ ! this.props.tracksOptOut }
onChange={ this.updateTracksOptOut }
label={ translate(
'Share information with our analytics tool about your use of services while ' +
'logged in to your WordPress.com account. {{cookiePolicyLink}}Learn more' +
'{{/cookiePolicyLink}}.',
{
components: {
cookiePolicyLink,
},
}
) }
/>
</FormFieldset>
<FormButton isSubmitting={ isUpdatingUserSettings } disabled={ isSubmitButtonDisabled }>
{ isUpdatingUserSettings
? translate( 'Saving…' )
: translate( 'Save privacy settings' ) }
</FormButton>
</form>
</Card>
<DPA />
{ config.isEnabled( 'cookie-banner' ) && <DoNotSellSetting /> }
</Main>
);
}
}
export default compose(
localize,
withLocalizeUrl,
protectForm,
connect(
( state ) => ( {
tracksOptOut: getUserSetting( state, TRACKS_OPT_OUT_USER_SETTINGS_KEY ) ?? true,
hasUnsavedUserSettings: hasUnsavedUserSettings( state ),
isUpdatingUserSettings: isUpdatingUserSettings( state ),
} ),
{ setUserSetting, saveUserSettings }
)
)( Privacy );
|