File size: 8,905 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 |
import { Card, LoadingPlaceholder } from '@automattic/components';
import { ToggleControl } from '@wordpress/components';
import { localize } from 'i18n-calypso';
import { get } from 'lodash';
import { Component } from 'react';
import { connect } from 'react-redux';
import FormSectionHeading from 'calypso/components/forms/form-section-heading';
import Main from 'calypso/components/main';
import NavigationHeader from 'calypso/components/navigation-header';
import PageViewTracker from 'calypso/lib/analytics/page-view-tracker';
import twoStepAuthorization from 'calypso/lib/two-step-authorization';
import ReauthRequired from 'calypso/me/reauth-required';
import {
fetchSettings,
toggleWPcomEmailSetting,
saveSettings,
} from 'calypso/state/notification-settings/actions';
import {
getNotificationSettings,
isFetchingNotificationsSettings,
} from 'calypso/state/notification-settings/selectors';
import hasJetpackSites from 'calypso/state/selectors/has-jetpack-sites';
import Navigation from '../navigation';
import SubscriptionManagementBackButton from '../subscription-management-back-button';
import EmailCategory from './email-category';
import './style.scss';
/**
* Module variables for wpcom
*/
const options = {
marketing: 'marketing',
research: 'research',
community: 'community',
promotion: 'promotion',
news: 'news',
digest: 'digest',
reports: 'reports',
news_developer: 'news_developer',
scheduled_updates: 'scheduled_updates',
};
/**
* Module variables for jetpack
*/
const jetpackOptions = {
jetpack_marketing: 'jetpack_marketing',
jetpack_research: 'jetpack_research',
jetpack_promotion: 'jetpack_promotion',
jetpack_news: 'jetpack_news',
jetpack_reports: 'jetpack_reports',
};
class WPCOMNotifications extends Component {
static displayName = 'WPCOMNotifications';
// TODO: Add propTypes
componentDidMount() {
this.props.fetchSettings();
}
unsubscribeFromAll = ( productOptions ) => ( toggleValue ) => {
const toggledSettings = {};
Object.keys( productOptions ).forEach( ( option ) => {
if ( this.props.settings[ option ] !== toggleValue ) {
toggledSettings[ option ] = toggleValue;
this.props.toggleWPcomEmailSetting( option );
}
} );
this.props.saveSettings( 'wpcom', toggledSettings );
};
toggleShouldBeOff = ( productOptions ) => {
return Object.keys( productOptions ).some(
( key ) => key in this.props.settings && this.props.settings[ key ] === true
);
};
renderWpcomPreferences = () => {
const { settings, translate } = this.props;
return (
<div>
<p>
{ translate(
"We'll always send important emails regarding your account, security, " +
'privacy, and purchase transactions, but you can get some helpful extras, too.'
) }
</p>
<FormSectionHeading>
{ this.props.translate( 'Email from WordPress.com' ) }
</FormSectionHeading>
<ToggleControl
__nextHasNoMarginBottom
checked={ this.toggleShouldBeOff( options ) }
className="wpcom-settings__notification-settings-emailsection-toggle"
label={
this.toggleShouldBeOff( options )
? this.props.translate( 'Unsubscribe from all' )
: this.props.translate( 'Subscribe to all' )
}
onChange={ this.unsubscribeFromAll( options ) }
disabled={ this.props.isFetching }
/>
<EmailCategory
name={ options.marketing }
isEnabled={ get( settings, options.marketing ) }
title={ translate( 'Suggestions' ) }
description={ translate( 'Tips for getting the most out of WordPress.com.' ) }
/>
<EmailCategory
name={ options.research }
isEnabled={ get( settings, options.research ) }
title={ translate( 'Research' ) }
description={ translate(
'Opportunities to participate in WordPress.com research and surveys.'
) }
/>
<EmailCategory
name={ options.community }
isEnabled={ get( settings, options.community ) }
title={ translate( 'Community' ) }
description={ translate(
'Information on WordPress.com courses and events (online and in-person).'
) }
/>
<EmailCategory
name={ options.promotion }
isEnabled={ get( settings, options.promotion ) }
title={ translate( 'Promotions' ) }
description={ translate(
'Sales and promotions for WordPress.com products and services.'
) }
/>
<EmailCategory
name={ options.news }
isEnabled={ get( settings, options.news ) }
title={ translate( 'Newsletter' ) }
description={ translate( 'WordPress.com news, announcements, and product spotlights.' ) }
/>
<EmailCategory
name={ options.digest }
isEnabled={ get( settings, options.digest ) }
title={ translate( 'Digests' ) }
description={ translate( 'Popular content from the blogs you follow.' ) }
/>
<EmailCategory
name={ options.reports }
isEnabled={ get( settings, options.reports ) }
title={ translate( 'Reports' ) }
description={ translate(
'Complimentary reports and updates regarding site performance and traffic.'
) }
/>
<EmailCategory
name={ options.news_developer }
isEnabled={ get( settings, options.news_developer ) }
title={ translate( 'Developer Newsletter' ) }
description={ translate(
'A once-monthly roundup of notable news for WordPress developers.'
) }
/>
<EmailCategory
name={ options.scheduled_updates }
isEnabled={ get( settings, options.scheduled_updates ) }
title={ translate( 'Scheduled updates' ) }
description={ translate( 'Complimentary reports regarding scheduled plugin updates.' ) }
/>
{ this.props.hasJetpackSites && (
<>
<FormSectionHeading>
{ this.props.translate( 'Email from Jetpack' ) }
</FormSectionHeading>
<p>
{ this.props.translate(
'Jetpack is a suite of tools connected to your WordPress site, like backups, security, and performance reports.'
) }
</p>
<ToggleControl
__nextHasNoMarginBottom
checked={ this.toggleShouldBeOff( jetpackOptions ) }
className="wpcom-settings__notification-settings-emailsection-toggle"
label={
this.toggleShouldBeOff( jetpackOptions )
? this.props.translate( 'Unsubscribe from all' )
: this.props.translate( 'Subscribe to all' )
}
onChange={ this.unsubscribeFromAll( jetpackOptions ) }
disabled={ this.props.isFetching }
/>
<EmailCategory
name={ jetpackOptions.jetpack_marketing }
isEnabled={ get( settings, jetpackOptions.jetpack_marketing ) }
title={ translate( 'Suggestions' ) }
description={ translate( 'Tips for getting the most out of Jetpack.' ) }
/>
<EmailCategory
name={ jetpackOptions.jetpack_research }
isEnabled={ get( settings, jetpackOptions.jetpack_research ) }
title={ translate( 'Research' ) }
description={ translate(
'Opportunities to participate in Jetpack research and surveys.'
) }
/>
<EmailCategory
name={ jetpackOptions.jetpack_promotion }
isEnabled={ get( settings, jetpackOptions.jetpack_promotion ) }
title={ translate( 'Promotions' ) }
description={ translate( 'Sales and promotions for Jetpack products and services.' ) }
/>
<EmailCategory
name={ jetpackOptions.jetpack_news }
isEnabled={ get( settings, jetpackOptions.jetpack_news ) }
title={ translate( 'Newsletter' ) }
description={ translate( 'Jetpack news, announcements, and product spotlights.' ) }
/>
<EmailCategory
name={ jetpackOptions.jetpack_reports }
isEnabled={ get( settings, jetpackOptions.jetpack_reports ) }
title={ translate( 'Reports' ) }
description={ translate( 'Jetpack security and performance reports.' ) }
/>
</>
) }
</div>
);
};
renderPlaceholder = () => {
return <LoadingPlaceholder />;
};
render() {
return (
<Main wideLayout className="wpcom-settings__main">
<PageViewTracker
path="/me/notifications/updates"
title="Me > Notifications > Updates from WordPress.com"
/>
<ReauthRequired twoStepAuthorization={ twoStepAuthorization } />
<SubscriptionManagementBackButton />
<NavigationHeader
navigationItems={ [] }
label={ this.props.translate( 'Notification Settings' ) }
/>
<Navigation path={ this.props.path } />
<Card>
{ this.props.settings ? this.renderWpcomPreferences() : this.renderPlaceholder() }
</Card>
</Main>
);
}
}
export default connect(
( state ) => ( {
settings: getNotificationSettings( state, 'wpcom' ),
hasJetpackSites: hasJetpackSites( state ),
isFetching: isFetchingNotificationsSettings( state ),
} ),
{ fetchSettings, toggleWPcomEmailSetting, saveSettings }
)( localize( WPCOMNotifications ) );
|