Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import page from '@automattic/calypso-router';
import { Card, Button } from '@automattic/components';
import { localize } from 'i18n-calypso';
import { get } from 'lodash';
import PropTypes from 'prop-types';
import { Component } from 'react';
import { connect } from 'react-redux';
import StepWrapper from 'calypso/signup/step-wrapper';
import { recordTracksEvent } from 'calypso/state/analytics/actions';
import { autoConfigCredentials } from 'calypso/state/jetpack/credentials/actions';
import { submitSignupStep } from 'calypso/state/signup/progress/actions';
import { getSelectedSiteSlug } from 'calypso/state/ui/selectors';
import './style.scss';
class CredsConfirmStep extends Component {
static propTypes = {
flowName: PropTypes.string,
goToNextStep: PropTypes.func.isRequired,
positionInFlow: PropTypes.number,
stepName: PropTypes.string,
// Connected props
siteSlug: PropTypes.string.isRequired,
// localize
translate: PropTypes.func.isRequired,
};
autoConfigCredentials = () => this.props.autoConfigCredentials( this.props.siteId );
skipStep = () => {
this.props.recordTracksEvent( 'calypso_pressable_nux_credentials_skip', {} );
// The flow /start/rewind-auto-config exits back to AL on the second skip
return page.redirect( `/activity-log/${ this.props.siteSlug }` );
};
shareCredentials = () => {
this.autoConfigCredentials();
this.props.recordTracksEvent( 'calypso_pressable_nux_credentials_share', {} );
this.props.submitSignupStep( { stepName: this.props.stepName }, { rewindconfig: true } );
this.props.goToStep( 'rewind-were-backing' );
};
renderStepContent() {
const { translate } = this.props;
return (
<Card className="creds-confirm__card">
<h3 className="creds-confirm__title">{ translate( 'Are you sure?' ) }</h3>
<img
className="creds-confirm__image"
src="/calypso/images/illustrations/security.svg"
alt=""
/>
<p className="creds-confirm__description">
{ translate(
"If you don't share credentials with Jetpack, your site won't be backed up. Our " +
'support staff is available to answer any questions you might have.'
) }
</p>
<Button primary onClick={ this.shareCredentials }>
{ translate( 'Share credentials' ) }
</Button>
</Card>
);
}
render() {
return (
<StepWrapper
flowName={ this.props.flowName }
stepName={ this.props.stepName }
positionInFlow={ this.props.positionInFlow }
stepContent={ this.renderStepContent() }
goToNextStep={ this.skipStep }
hideFormattedHeader
skipLabelText="Skip"
hideBack
/>
);
}
}
export default connect(
( state, ownProps ) => {
const siteId = get( ownProps, [ 'initialContext', 'query', 'blogid' ], 0 );
return {
siteId,
siteSlug: getSelectedSiteSlug( state, siteId ),
};
},
{
autoConfigCredentials,
recordTracksEvent,
submitSignupStep,
}
)( localize( CredsConfirmStep ) );