react-code-dataset / wp-calypso /client /jetpack-connect /jetpack-remote-install-notices.jsx
Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import { Button, Card } from '@automattic/components';
import { localize } from 'i18n-calypso';
import PropTypes from 'prop-types';
import { Component, Fragment } from 'react';
import { connect } from 'react-redux';
import FormattedHeader from 'calypso/components/formatted-header';
import { addQueryArgs } from 'calypso/lib/route';
import { recordTracksEvent } from 'calypso/state/analytics/actions';
import { getConnectingSite } from 'calypso/state/jetpack-connect/selectors';
import {
ACTIVATION_FAILURE,
ACTIVATION_RESPONSE_ERROR,
INSTALL_RESPONSE_ERROR,
INVALID_PERMISSIONS,
UNKNOWN_REMOTE_INSTALL_ERROR,
} from './connection-notice-types';
export class JetpackRemoteInstallNotices extends Component {
static propTypes = {
noticeType: PropTypes.oneOf( [
ACTIVATION_FAILURE,
ACTIVATION_RESPONSE_ERROR,
INSTALL_RESPONSE_ERROR,
INVALID_PERMISSIONS,
UNKNOWN_REMOTE_INSTALL_ERROR,
] ).isRequired,
translate: PropTypes.func.isRequired,
url: PropTypes.string,
};
trackManualInstallClick = ( noticeType ) => () => {
this.props.recordTracksEvent( 'calypso_remote_install_manual_install_click', {
notice_type: noticeType,
} );
};
renderNotice() {
const { noticeType, siteToConnect, translate } = this.props;
const buttonLabel = translate( 'Install Jetpack manually' );
const redirectTo = addQueryArgs( { url: siteToConnect }, '/jetpack/connect/instructions' );
// default values for INSTALL_RESPONSE_ERROR,
let header = translate( 'Try Installing Manually' );
let subheader = translate(
"We were unable to install Jetpack. Don't worry—you can either install Jetpack manually or contact support for help."
);
let noticeImage = '/calypso/images/illustrations/customizeTheme.svg';
switch ( noticeType ) {
case ACTIVATION_RESPONSE_ERROR:
case ACTIVATION_FAILURE:
subheader = translate(
"We were unable to activate Jetpack. Don't worry—you can either install Jetpack manually or contact support for help."
);
break;
case INVALID_PERMISSIONS:
header = translate( 'Contact your site Administrator' );
subheader = translate(
'We were unable to install Jetpack because you do not have permissions ' +
"to install plugins. Please contact your site's Administrator to " +
'continue with installing Jetpack or try installing Jetpack manually.'
);
noticeImage = '/calypso/images/illustrations/almost-there.svg';
break;
case UNKNOWN_REMOTE_INSTALL_ERROR:
subheader = translate( 'We were unable to install Jetpack because something went wrong.' );
}
return (
<Fragment>
<FormattedHeader headerText={ header } subHeaderText={ subheader } />
<Card className="jetpack-connect__site-url-input-container">
<img className="jetpack-connect__notices-image" src={ noticeImage } alt="" />
<Button
className="jetpack-connect__connect-button"
primary
href={ redirectTo }
onClick={ this.trackManualInstallClick( noticeType ) }
>
{ buttonLabel }
</Button>
</Card>
</Fragment>
);
}
render() {
return <div>{ this.renderNotice() }</div>;
}
}
export default connect(
( state ) => {
const jetpackConnectSite = getConnectingSite( state );
const siteData = jetpackConnectSite.data || {};
return {
siteToConnect: siteData.urlAfterRedirects || jetpackConnectSite.url,
};
},
{ recordTracksEvent }
)( localize( JetpackRemoteInstallNotices ) );