Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
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 ) );