Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
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 { getSignupDependencyStore } from 'calypso/state/signup/dependency-store/selectors';
import './style.scss';
class RewindWereBacking extends Component {
static propTypes = {
flowName: PropTypes.string,
goToNextStep: PropTypes.func.isRequired,
positionInFlow: PropTypes.number,
stepName: PropTypes.string,
// Connected props
siteSlug: PropTypes.string.isRequired,
dependencyStore: PropTypes.object,
};
stepContent = () => {
const { translate, siteSlug, dependencyStore } = this.props;
return (
<Card className="rewind-were-backing__card rewind-switch__card rewind-switch__content">
<h3 className="rewind-were-backing__title rewind-switch__heading">
{ translate( 'Your site is set up and ready!' ) }
</h3>
<img src="/calypso/images/illustrations/thankYou.svg" alt="" />
<p className="rewind-were-backing__description rewind-switch__description">
{ get( dependencyStore, 'rewindconfig', false ) &&
translate(
'Your site is being backed up because it is set up with ' +
'Jetpack Premium at no additional cost to you.'
) + ' ' }
{ translate(
'Finish setting up Jetpack and your site is ready to be ' +
'transformed into the site of your dreams.'
) }
</p>
<Button primary href={ `/activity-log/${ siteSlug }` }>
{ translate( 'View your activity' ) }
</Button>
</Card>
);
};
render() {
return (
<StepWrapper
flowName={ this.props.flowName }
stepName={ this.props.stepName }
positionInFlow={ this.props.positionInFlow }
stepContent={ this.stepContent() }
hideFormattedHeader
hideSkip
hideBack
/>
);
}
}
export default connect(
( state, ownProps ) => ( {
siteSlug: get( ownProps, [ 'initialContext', 'query', 'siteSlug' ], 0 ),
dependencyStore: getSignupDependencyStore( state ),
} ),
null
)( localize( RewindWereBacking ) );