File size: 4,241 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 |
import config from '@automattic/calypso-config';
import { getUrlParts } from '@automattic/calypso-url';
import { localize } from 'i18n-calypso';
import PropTypes from 'prop-types';
import { Component } from 'react';
import { connect } from 'react-redux';
import Notice from 'calypso/components/notice';
import { getSignupUrl } from 'calypso/lib/login';
import { recordTracksEvent } from 'calypso/state/analytics/actions';
import {
getRequestError,
getTwoFactorAuthRequestError,
getCreateSocialAccountError,
getRequestSocialAccountError,
} from 'calypso/state/login/selectors';
import { getCurrentOAuth2Client } from 'calypso/state/oauth2-clients/ui/selectors';
import getCurrentQueryArguments from 'calypso/state/selectors/get-current-query-arguments';
import getCurrentRoute from 'calypso/state/selectors/get-current-route';
class ErrorNotice extends Component {
static propTypes = {
createAccountError: PropTypes.object,
requestAccountError: PropTypes.object,
requestError: PropTypes.object,
twoFactorAuthRequestError: PropTypes.object,
locale: PropTypes.string,
};
componentDidUpdate( prevProps ) {
const receiveNewError = ( key ) => this.props[ key ] !== prevProps[ key ];
if (
receiveNewError( 'createAccountError' ) ||
receiveNewError( 'requestAccountError' ) ||
receiveNewError( 'requestError' ) ||
receiveNewError( 'twoFactorAuthRequestError' )
) {
window.scrollTo( 0, 0 );
}
}
getCreateAccountError() {
const { createAccountError } = this.props;
if ( createAccountError && createAccountError.code !== 'unknown_user' ) {
return createAccountError;
}
return null;
}
getError() {
const { requestAccountError, requestError, twoFactorAuthRequestError } = this.props;
return (
requestError ||
twoFactorAuthRequestError ||
requestAccountError ||
this.getCreateAccountError()
);
}
getSignupUrl() {
const { currentQuery, currentRoute, oauth2Client, locale } = this.props;
const { pathname } = getUrlParts( window.location.href );
return getSignupUrl( currentQuery, currentRoute, oauth2Client, locale, pathname );
}
render() {
const error = this.getError();
if ( ! error || ( error.field && error.field !== 'global' ) || ! error.message ) {
return null;
}
/*
* The user_exists error is caught in SocialLoginForm.
* The relevant messages are displayed inline in LoginForm.
*/
if ( error.code === 'user_exists' ) {
return null;
}
let message = error.message;
const signupUrl = this.getSignupUrl();
if ( error.code === 'unknown_user' && signupUrl ) {
message = this.props.translate(
// The first part of this message replicates error.message from the API.
"Hmm, we can't find a WordPress.com account for that social login. Please double check your information and try again." +
' Alternatively, you can {{a}}sign up for a new account{{/a}}.',
{
components: {
a: (
<a
href={ signupUrl }
onClick={ () => {
this.props.recordTracksEvent(
'calypso_login_social_unknown_user_signup_link_click'
);
} }
/>
),
},
}
);
}
// Account closed error from the API contains HTML, so set a custom message for that case
if ( error.code === 'deleted_user' ) {
message = this.props.translate(
'This account has been closed. ' +
'If you believe your account was closed in error, please {{a}}contact us{{/a}}.',
{
components: {
a: (
<a
href={ config( 'login_url' ) + '?action=recovery' }
target="_blank"
rel="noopener noreferrer"
/>
),
},
}
);
}
return (
<Notice status="is-error" showDismiss={ false }>
{ message }
</Notice>
);
}
}
export default connect(
( state ) => ( {
createAccountError: getCreateSocialAccountError( state ),
requestAccountError: getRequestSocialAccountError( state ),
requestError: getRequestError( state ),
twoFactorAuthRequestError: getTwoFactorAuthRequestError( state ),
currentQuery: getCurrentQueryArguments( state ),
currentRoute: getCurrentRoute( state ),
oauth2Client: getCurrentOAuth2Client( state ),
} ),
{
recordTracksEvent,
}
)( localize( ErrorNotice ) );
|