File size: 5,934 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
import {
	planHasFeature,
	FEATURE_UPLOAD_THEMES_PLUGINS,
	PLAN_ECOMMERCE_TRIAL_MONTHLY,
	getPlan,
	PLAN_BUSINESS,
	PLAN_WOOEXPRESS_SMALL,
} from '@automattic/calypso-products';
import page from '@automattic/calypso-router';
import { Button, CompactCard, Gridicon } 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 CardHeading from 'calypso/components/card-heading';
import HeaderCake from 'calypso/components/header-cake';
import SitesBlock from 'calypso/my-sites/migrate/components/sites-block';
import { isMigrationTrialSite } from 'calypso/sites-dashboard/utils';
import { recordTracksEvent } from 'calypso/state/analytics/actions';
import MigrateButton from './migrate-button.jsx';

import './section-migrate.scss';

class StepConfirmMigration extends Component {
	static propTypes = {
		sourceSite: PropTypes.object.isRequired,
		startMigration: PropTypes.func.isRequired,
		targetSite: PropTypes.object.isRequired,
		targetSiteSlug: PropTypes.string.isRequired,
	};

	componentDidMount() {
		this.props.recordTracksEvent( 'calypso_site_migration_confirm_viewed', {} );
	}

	handleClick = () => {
		const { sourceSite, startMigration, targetSiteSlug, targetSite } = this.props;
		const sourceSiteId = get( sourceSite, 'ID' );
		const targetSiteId = get( targetSite, 'ID' );
		const sourceSiteSlug = get( sourceSite, 'slug', sourceSiteId );
		const sourceSiteUrl = get( sourceSite, 'URL', sourceSiteId );

		const hasCompatiblePlan = this.isTargetSitePlanCompatible();

		this.props.recordTracksEvent( 'calypso_site_migration_confirm_clicked', {
			plan_compatible: hasCompatiblePlan,
		} );

		if ( hasCompatiblePlan ) {
			const trackEventProps = {
				source_site_id: sourceSiteId,
				source_site_url: sourceSiteUrl,
				target_site_id: targetSiteId,
				target_site_slug: targetSiteSlug,
				is_migrate_from_wp: false,
				is_trial: isMigrationTrialSite( targetSite ),
				type: 'in-product',
			};
			return startMigration( trackEventProps );
		}

		page( `/migrate/upgrade/from/${ sourceSiteSlug }/to/${ targetSiteSlug }` );
	};

	isTargetSitePlanCompatible() {
		const { targetSite } = this.props;
		const planSlug = get( targetSite, 'plan.product_slug' );

		return planSlug && planHasFeature( planSlug, FEATURE_UPLOAD_THEMES_PLUGINS );
	}

	getFooterText() {
		const { translate, targetSite } = this.props;
		const currentPlanSlug = get( targetSite, 'plan.product_slug' );
		const isEcommerceTrial = currentPlanSlug === PLAN_ECOMMERCE_TRIAL_MONTHLY;
		const upsellPlanName = isEcommerceTrial
			? getPlan( PLAN_WOOEXPRESS_SMALL )?.getTitle()
			: getPlan( PLAN_BUSINESS )?.getTitle();
		if ( isEcommerceTrial ) {
			// translators: %(essentialPlanName)s is the name of the Essential plan
			return translate( 'An %(essentialPlanName)s Plan is required to import everything.', {
				args: {
					essentialPlanName: upsellPlanName,
				},
			} );
		}

		// translators: %(businessPlanName)s is the name of the Creator/Business plan
		return translate( 'A %(businessPlanName)s Plan is required to import everything.', {
			args: {
				businessPlanName: upsellPlanName,
			},
		} );
	}

	renderCardFooter() {
		// If the site is has an appropriate plan, no upgrade footer is required
		if ( this.isTargetSitePlanCompatible() ) {
			return null;
		}

		return (
			<CompactCard className="migrate__card-footer">
				<Gridicon className="migrate__card-footer-gridicon" icon="info-outline" size={ 12 } />
				<span className="migrate__card-footer-text">{ this.getFooterText() }</span>
			</CompactCard>
		);
	}

	renderMigrationButton() {
		const { targetSite, translate } = this.props;
		const targetSiteDomain = get( targetSite, 'domain' );

		// TODO: is the following "import everything" behaviour up to date?
		if ( this.isTargetSitePlanCompatible() ) {
			return (
				<MigrateButton onClick={ this.handleClick } targetSiteDomain={ targetSiteDomain }>
					{ translate( 'Import Everything' ) }
				</MigrateButton>
			);
		}

		return (
			<Button primary onClick={ this.handleClick }>
				{ translate( 'Import Everything' ) }
			</Button>
		);
	}

	render() {
		const { sourceSite, targetSite, targetSiteSlug, translate } = this.props;

		const sourceSiteDomain = get( sourceSite, 'domain' );
		const targetSiteDomain = get( targetSite, 'domain' );
		const backHref = `/migrate/${ targetSiteSlug }`;

		return (
			<>
				<HeaderCake backHref={ backHref }>Import { sourceSiteDomain }</HeaderCake>
				<SitesBlock
					sourceSite={ sourceSite }
					loadingSourceSite={ false }
					targetSite={ targetSite }
				/>
				<CompactCard>
					<CardHeading>
						{ translate(
							'Import everything from %(sourceSiteDomain)s and overwrite everything on %(targetSiteDomain)s?',
							{
								args: {
									sourceSiteDomain,
									targetSiteDomain,
								},
							}
						) }
					</CardHeading>
					<div className="migrate__confirmation">
						<ul className="migrate__list">
							<li>
								<Gridicon icon="checkmark" size="12" className="migrate__checkmark" />
								{ translate( 'All posts, pages, comments, and media' ) }
							</li>
							<li>
								<Gridicon icon="checkmark" size="12" className="migrate__checkmark" />
								{ translate( 'All users and roles' ) }
							</li>
							<li>
								<Gridicon icon="checkmark" size="12" className="migrate__checkmark" />
								{ translate( 'Theme, plugins, and settings' ) }
							</li>
						</ul>
						<div>
							{ translate(
								'Your site will keep working, but your WordPress.com dashboard will be locked during importing.'
							) }
						</div>
					</div>
					{ this.renderMigrationButton() }
				</CompactCard>
				{ this.renderCardFooter() }
			</>
		);
	}
}

export default connect( null, { recordTracksEvent } )( localize( StepConfirmMigration ) );