File size: 10,928 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 310 311 312 313 314 315 316 317 318 319 320 321 322 323 |
import page from '@automattic/calypso-router';
import { Card, Gridicon } from '@automattic/components';
import { localize } from 'i18n-calypso';
import { Component } from 'react';
import { connect } from 'react-redux';
import { preventWidows } from 'calypso/lib/formatting';
import { errorNotice, successNotice } from 'calypso/state/notices/actions';
import { addSubscriber, deleteSubscriber } from './utils';
class MainComponent extends Component {
static displayName = 'MainComponent';
state = {
isError: false,
isSubscribed: true,
};
componentDidMount() {
// Automatically call unsubscribe when the page is viewed in the browser;
// it is done this way to prevent an accidental unsubscribe from occuring
// if an email client prefetches the unsubscribe link in an email
this.onUnsubscribeClick();
}
componentDidUpdate( prevProps, prevState ) {
if ( this.state.isSubscribed !== prevState.isSubscribed ) {
this.props.successNotice(
this.state.isSubscribed ? this.getSubscribedMessage() : this.getUnsubscribedMessage(),
{ overlay: false, showDismiss: false }
);
} else if ( this.state.isError ) {
this.props.errorNotice(
this.state.isSubscribed
? this.getUnsubscribedErrorMessage()
: this.getSubscribedErrorMessage(),
{ overlay: false, showDismiss: false }
);
}
}
getSubscribedMessage = () => {
return this.props.translate( 'Subscribed to {{em}}%(categoryName)s{{/em}}', {
args: {
categoryName: this.getCategoryName(),
},
components: {
em: <em />,
},
} );
};
getUnsubscribedMessage = () => {
return this.props.translate( 'Unsubscribed from {{em}}%(categoryName)s{{/em}}', {
args: {
categoryName: this.getCategoryName(),
},
components: {
em: <em />,
},
} );
};
getSubscribedErrorMessage = () => {
return this.props.translate(
'Error subscribing to {{em}}%(categoryName)s{{/em}} mailing list! Try again later.',
{
args: {
categoryName: this.getCategoryName(),
},
components: {
em: <em />,
},
}
);
};
getUnsubscribedErrorMessage = () => {
return this.props.translate(
'Error unsubscribing from {{em}}%(categoryName)s{{/em}} mailing list! Try again later.',
{
args: {
categoryName: this.getCategoryName(),
},
components: {
em: <em />,
},
}
);
};
getCategoryName = () => {
const category = this.getCategoryFromMessageTypeId();
if ( 'marketing' === category ) {
return this.props.translate( 'Suggestions' );
} else if ( 'research' === category ) {
return this.props.translate( 'Research' );
} else if ( 'community' === category ) {
return this.props.translate( 'Community' );
} else if ( 'affiliates' === category ) {
return this.props.translate( 'Affiliates' );
} else if ( 'digest' === category ) {
return this.props.translate( 'Digests' );
} else if ( 'news' === category ) {
return this.props.translate( 'Newsletter' );
} else if ( 'promotion' === category ) {
return this.props.translate( 'Promotions' );
} else if ( 'reports' === category ) {
return this.props.translate( 'Reports' );
} else if ( 'news_developer' === category ) {
return this.props.translate( 'Developer Newsletter' );
} else if ( 'scheduled_updates' === category ) {
return this.props.translate( 'Scheduled Updates' );
} else if ( 'learn' === category ) {
return this.props.translate( 'Learn Faster to Grow Faster' );
} else if ( 'jetpack_marketing' === category ) {
return this.props.translate( 'Jetpack Suggestions' );
} else if ( 'jetpack_research' === category ) {
return this.props.translate( 'Jetpack Research' );
} else if ( 'jetpack_promotion' === category ) {
return this.props.translate( 'Jetpack Promotions' );
} else if ( 'jetpack_news' === category ) {
return this.props.translate( 'Jetpack Newsletter' );
} else if ( 'jetpack_reports' === category ) {
return this.props.translate( 'Jetpack Reports' );
} else if ( 'jetpack_manage_onboarding' === category ) {
return this.props.translate( 'Jetpack Manage Onboarding' );
} else if ( 'akismet_marketing' === category ) {
return this.props.translate( 'Akismet Marketing' );
} else if ( 'woopay_marketing' === category ) {
return this.props.translate( 'WooPay Marketing' );
} else if ( 'gravatar_onboarding' === category ) {
return this.props.translate( 'Gravatar Onboarding' );
}
return category;
};
getCategoryDescription = () => {
const category = this.getCategoryFromMessageTypeId();
if ( 'marketing' === category ) {
return this.props.translate( 'Tips for getting the most out of WordPress.com.' );
} else if ( 'research' === category ) {
return this.props.translate(
'Opportunities to participate in WordPress.com research and surveys.'
);
} else if ( 'community' === category ) {
return this.props.translate(
'Information on WordPress.com courses and events (online and in-person).'
);
} else if ( 'affiliates' === category ) {
return this.props.translate(
'Communications regarding the refer.wordpress.com affiliate program.'
);
} else if ( 'digest' === category ) {
return this.props.translate( 'Popular content from the blogs you follow.' );
} else if ( 'news' === category ) {
return this.props.translate( 'WordPress.com news, announcements, and product spotlights.' );
} else if ( 'promotion' === category ) {
return this.props.translate(
'Sales and promotions for WordPress.com products and services.'
);
} else if ( 'reports' === category ) {
return this.props.translate(
'Complimentary reports and updates regarding site performance and traffic.'
);
} else if ( 'news_developer' === category ) {
return this.props.translate(
'A once-monthly roundup of notable news for WordPress developers.'
);
} else if ( 'scheduled_updates' === category ) {
return this.props.translate( 'Complimentary reports regarding scheduled plugin updates.' );
} else if ( 'learn' === category ) {
return this.props.translate(
'Take your WordPress.com site to new heights with expert webinars, courses, and community forums.'
);
} else if ( 'jetpack_marketing' === category ) {
return this.props.translate( 'Tips for getting the most out of Jetpack.' );
} else if ( 'jetpack_research' === category ) {
return this.props.translate(
'Opportunities to participate in Jetpack research and surveys.'
);
} else if ( 'jetpack_promotion' === category ) {
return this.props.translate( 'Sales and promotions for Jetpack products and services.' );
} else if ( 'jetpack_news' === category ) {
return this.props.translate( 'Jetpack news, announcements, and product spotlights.' );
} else if ( 'jetpack_reports' === category ) {
return this.props.translate( 'Jetpack security and performance reports.' );
} else if ( 'jetpack_manage_onboarding' === category ) {
return this.props.translate( 'Jetpack Manage program setup and onboarding.' );
} else if ( 'akismet_marketing' === category ) {
return this.props.translate(
'Relevant tips and new features to get the most out of Akismet'
);
} else if ( 'woopay_marketing' === category ) {
return this.props.translate( 'Tips for getting the most out of WooPay.' );
} else if ( 'gravatar_onboarding' === category ) {
return this.props.translate(
'Get tips and reminders to optimize your Gravatar profile setup.'
);
}
return null;
};
/*
* If category is in the list of those that should be mapped, return the mapped value. Otherwise just return the existing category.
* Some unsubscribe links contain a numeric category.
* These are Iterable message type ids that we need to map to our internal categories.
*/
getCategoryFromMessageTypeId = () => {
switch ( this.props.category ) {
case '20659':
return 'marketing';
case '20784':
return 'research';
case '20786':
return 'community';
case '20796':
return 'digest';
case '20783':
return 'promotion';
case '20785':
return 'news';
case '22504':
return 'jetpack_marketing';
case '22507':
return 'jetpack_research';
case '22506':
return 'jetpack_promotion';
case '22505':
return 'jetpack_news';
default:
return this.props.category;
}
};
onUnsubscribeClick = () => {
deleteSubscriber( this.props.category, this.props.email, this.props.hmac, this.props.context )
.then( () => {
this.setState( { isError: false, isSubscribed: false } );
} )
.catch( () => {
this.setState( { isError: true } );
} );
};
onResubscribeClick = () => {
addSubscriber( this.props.category, this.props.email, this.props.hmac, this.props.context )
.then( () => {
this.setState( { isError: false, isSubscribed: true } );
} )
.catch( () => {
this.setState( { isError: true } );
} );
};
onManageUpdatesClick = () => {
// Use redirect because we want to replace the history entry,
// preventing the user from going back to the unsubscribe page
page.redirect( '/me/notifications/updates' );
};
render() {
const translate = this.props.translate;
const headingLabel = this.state.isSubscribed
? translate( "You're subscribed" )
: translate( "We've unsubscribed your email." );
const messageLabel = this.state.isSubscribed
? translate( "We'll send you updates for this mailing list." )
: translate( 'You will no longer receive updates for this mailing list.' );
return (
<div className="mailing-lists">
<div className="mailing-lists__header">
<Gridicon icon="mail" size={ 54 } />
{ this.state.isSubscribed ? null : <Gridicon icon="cross" size={ 24 } /> }
<h1>{ preventWidows( headingLabel, 2 ) }</h1>
<p>{ preventWidows( messageLabel, 2 ) }</p>
</div>
<Card className="mailing-lists__details">
<h4>{ this.getCategoryName() }</h4>
<p>{ this.getCategoryDescription() }</p>
{ this.state.isSubscribed ? (
<button
className="mailing-lists__unsubscribe-button button is-primary"
onClick={ this.onUnsubscribeClick }
>
{ translate( 'Unsubscribe' ) }
</button>
) : (
<button
className="mailing-lists__resubscribe-button button"
onClick={ this.onResubscribeClick }
>
{ translate( 'Resubscribe' ) }
</button>
) }
</Card>
{
// Don't show the manage link for Gravatar-related categories.
! this.getCategoryFromMessageTypeId()?.startsWith( 'gravatar_' ) && (
<p className="mailing-lists__manage-link">
<button
className="mailing-lists__manage-button button is-link"
onClick={ this.onManageUpdatesClick }
>
{ translate( 'Manage all your email subscriptions' ) }
</button>
</p>
)
}
</div>
);
}
}
export default connect( null, {
errorNotice,
successNotice,
} )( localize( MainComponent ) );
|