File size: 3,422 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 |
import { Card } 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 RewindCredentialsForm from 'calypso/components/rewind-credentials-form';
import SectionHeader from 'calypso/components/section-header';
import StepWrapper from 'calypso/signup/step-wrapper';
import getJetpackCredentialsUpdateStatus from 'calypso/state/selectors/get-jetpack-credentials-update-status';
import getRewindState from 'calypso/state/selectors/get-rewind-state';
import { submitSignupStep } from 'calypso/state/signup/progress/actions';
import './style.scss';
class CloneCredentialsStep extends Component {
static propTypes = {
flowName: PropTypes.string,
goToNextStep: PropTypes.func.isRequired,
positionInFlow: PropTypes.number,
stepName: PropTypes.string,
signupDependencies: PropTypes.object,
};
goToNextStep = () => {
this.props.submitSignupStep( { stepName: this.props.stepName }, { roleName: 'alternate' } );
this.props.goToNextStep();
};
renderStepContent() {
const { destinationSiteName, destinationSiteUrl, originBlogId, translate } = this.props;
return (
<div>
<SectionHeader
label={ translate(
'Make sure the credentials you enter are for the destination site, %(site)s.',
{
args: { site: destinationSiteName },
}
) }
/>
<Card className="clone-credentials__form">
<RewindCredentialsForm
role={ 'alternate' /* eslint-disable-line */ }
siteId={ originBlogId }
siteUrl={ destinationSiteUrl }
labels={ {
host: translate( 'Destination Server Address' ),
path: translate( 'Destination WordPress Path' ),
} }
requirePath
/>
</Card>
</div>
);
}
componentDidUpdate( prevProps ) {
if ( 'success' !== prevProps.updateStatus && 'success' === this.props.updateStatus ) {
this.goToNextStep();
}
}
render() {
const { flowName, stepName, positionInFlow, translate, destinationSiteName } = this.props;
const headerText = translate( 'Enter your server credentials' );
const subHeaderText = translate(
'Before we can start cloning your site, we need the server credentials for %(destination)s.',
{ args: { destination: destinationSiteName } }
);
return (
<StepWrapper
className="clone-credentials"
flowName={ flowName }
stepName={ stepName }
headerText={ headerText }
fallbackHeaderText={ headerText }
subHeaderText={ subHeaderText }
fallbackSubHeaderText={ subHeaderText }
positionInFlow={ positionInFlow }
stepContent={ this.renderStepContent() }
/>
);
}
}
export default connect(
( state, ownProps ) => {
const originSiteName = get( ownProps, [ 'signupDependencies', 'originSiteName' ], '' );
const originBlogId = get( ownProps, [ 'signupDependencies', 'originBlogId' ] );
const destinationSiteName = get( ownProps, [ 'signupDependencies', 'destinationSiteName' ] );
const destinationSiteUrl = get( ownProps, [ 'signupDependencies', 'destinationSiteUrl' ] );
return {
originBlogId,
originSiteName,
destinationSiteName,
destinationSiteUrl,
rewind: getRewindState( state, originBlogId ),
updateStatus: getJetpackCredentialsUpdateStatus( state, originBlogId ),
};
},
{ submitSignupStep }
)( localize( CloneCredentialsStep ) );
|