|
|
import { |
|
|
planHasFeature, |
|
|
FEATURE_UPLOAD_THEMES_PLUGINS, |
|
|
PLAN_ECOMMERCE_TRIAL_MONTHLY, |
|
|
PLAN_BUSINESS, |
|
|
PLAN_WOOEXPRESS_SMALL, |
|
|
} from '@automattic/calypso-products'; |
|
|
import page from '@automattic/calypso-router'; |
|
|
import { Button, Card, CompactCard, ProgressBar, Gridicon, Spinner } from '@automattic/components'; |
|
|
import { getLocaleSlug, localize } from 'i18n-calypso'; |
|
|
import { get, isEmpty, omit } from 'lodash'; |
|
|
import moment from 'moment'; |
|
|
import { Component } from 'react'; |
|
|
import { connect } from 'react-redux'; |
|
|
import { |
|
|
storeMigrationStatus, |
|
|
clearMigrationStatus, |
|
|
} from 'calypso/blocks/importer/wordpress/utils'; |
|
|
import DocumentHead from 'calypso/components/data/document-head'; |
|
|
import FormattedHeader from 'calypso/components/formatted-header'; |
|
|
import Main from 'calypso/components/main'; |
|
|
import { Interval, EVERY_TEN_SECONDS, EVERY_FIVE_SECONDS } from 'calypso/lib/interval'; |
|
|
import { urlToSlug } from 'calypso/lib/url'; |
|
|
import wpcom from 'calypso/lib/wp'; |
|
|
import { isMigrationTrialSite } from 'calypso/sites-dashboard/utils'; |
|
|
import { recordTracksEvent } from 'calypso/state/analytics/actions'; |
|
|
import getCurrentQueryArguments from 'calypso/state/selectors/get-current-query-arguments'; |
|
|
import isSiteAutomatedTransfer from 'calypso/state/selectors/is-site-automated-transfer'; |
|
|
import { receiveSite, updateSiteMigrationMeta, requestSite } from 'calypso/state/sites/actions'; |
|
|
import { getSite, getSiteAdminUrl, isJetpackSite } from 'calypso/state/sites/selectors'; |
|
|
import { |
|
|
getSelectedSite, |
|
|
getSelectedSiteId, |
|
|
getSelectedSiteSlug, |
|
|
} from 'calypso/state/ui/selectors'; |
|
|
import { MigrationInProgress } from './components/migration-in-progress'; |
|
|
import StepConfirmMigration from './step-confirm-migration'; |
|
|
import StepImportOrMigrate from './step-import-or-migrate'; |
|
|
import StepSourceSelect from './step-source-select'; |
|
|
import StepUpgrade from './step-upgrade'; |
|
|
|
|
|
import './section-migrate.scss'; |
|
|
|
|
|
const THIRTY_SECONDS = 30 * 1000; |
|
|
|
|
|
export class SectionMigrate extends Component { |
|
|
_startedMigrationFromCart = false; |
|
|
_timeStartedMigrationFromCart = false; |
|
|
|
|
|
state = { |
|
|
errorMessage: '', |
|
|
isJetpackConnected: false, |
|
|
migrationStatus: 'unknown', |
|
|
migrationErrorStatus: null, |
|
|
percent: 0, |
|
|
backupPercent: 0, |
|
|
restorePercent: 0, |
|
|
restoreMessage: '', |
|
|
backupPosts: 0, |
|
|
backupMedia: 0, |
|
|
siteSize: 0, |
|
|
siteInfo: null, |
|
|
selectedSiteSlug: null, |
|
|
sourceSitePlugins: [], |
|
|
sourceSiteThemes: [], |
|
|
startTime: '', |
|
|
url: '', |
|
|
stage: 0, |
|
|
stageTotal: 0, |
|
|
}; |
|
|
|
|
|
componentDidMount() { |
|
|
const { targetSite, targetSiteId, targetSiteSlug, sourceSite, sourceSiteId } = this.props; |
|
|
const sourceSiteUrl = get( sourceSite, 'URL', sourceSiteId ); |
|
|
clearMigrationStatus(); |
|
|
|
|
|
if ( this.isNonAtomicJetpack() ) { |
|
|
return page( `/import/${ this.props.targetSiteSlug }` ); |
|
|
} |
|
|
|
|
|
if ( this.props.url ) { |
|
|
this.setMigrationState( { url: this.props.url } ); |
|
|
} |
|
|
|
|
|
if ( true === this.props.startMigration ) { |
|
|
this._startedMigrationFromCart = true; |
|
|
this._timeStartedMigrationFromCart = new Date().getTime(); |
|
|
this.setMigrationState( { migrationStatus: 'backing-up' } ); |
|
|
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-from-cart', |
|
|
}; |
|
|
this.startMigration( trackEventProps ); |
|
|
} |
|
|
|
|
|
this.fetchSourceSitePluginsAndThemes(); |
|
|
this.updateFromAPI(); |
|
|
} |
|
|
|
|
|
|
|
|
componentDidUpdate( prevProps, prevState ) { |
|
|
if ( this.isNonAtomicJetpack() ) { |
|
|
return page( `/import/${ this.props.targetSiteSlug }` ); |
|
|
} |
|
|
|
|
|
if ( this.props.sourceSiteId !== prevProps.sourceSiteId ) { |
|
|
this.fetchSourceSitePluginsAndThemes(); |
|
|
} |
|
|
|
|
|
if ( this.props.targetSiteId !== prevProps.targetSiteId ) { |
|
|
this.updateFromAPI(); |
|
|
} |
|
|
|
|
|
if ( 'done' === this.state.migrationStatus && prevState.migrationStatus !== 'done' ) { |
|
|
this.finishMigration(); |
|
|
} |
|
|
} |
|
|
|
|
|
fetchSourceSitePluginsAndThemes = () => { |
|
|
if ( ! this.props.sourceSite ) { |
|
|
return; |
|
|
} |
|
|
|
|
|
wpcom.site( this.props.sourceSite.ID ).pluginsList( ( error, data ) => { |
|
|
if ( data?.plugins ) { |
|
|
this.setState( { sourceSitePlugins: data.plugins } ); |
|
|
} |
|
|
} ); |
|
|
|
|
|
wpcom.req |
|
|
.get( `/sites/${ this.props.sourceSite.ID }/themes`, { apiVersion: '1' } ) |
|
|
.then( ( data ) => { |
|
|
const sourceSiteThemes = [ |
|
|
|
|
|
...data.themes.filter( ( theme ) => theme.active ), |
|
|
...data.themes.filter( ( theme ) => ! theme.active ), |
|
|
]; |
|
|
this.setState( { sourceSiteThemes } ); |
|
|
} ); |
|
|
}; |
|
|
|
|
|
handleJetpackSelect = () => { |
|
|
this.props.navigateToSelectedSourceSite( this.state.selectedSiteSlug ); |
|
|
}; |
|
|
|
|
|
requestMigrationReset = async ( targetSiteId ) => { |
|
|
await wpcom.req |
|
|
.post( { |
|
|
path: `/sites/${ targetSiteId }/reset-migration`, |
|
|
apiNamespace: 'wpcom/v2', |
|
|
} ) |
|
|
.catch( () => {} ); |
|
|
}; |
|
|
|
|
|
finishMigration = () => { |
|
|
const { targetSiteId, targetSiteSlug } = this.props; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
this.props.requestSite( targetSiteId ); |
|
|
|
|
|
this.requestMigrationReset( targetSiteId ).finally( () => { |
|
|
page( `/home/${ targetSiteSlug }` ); |
|
|
} ); |
|
|
}; |
|
|
|
|
|
resetMigration = () => { |
|
|
const { targetSiteId, targetSiteSlug } = this.props; |
|
|
|
|
|
this.requestMigrationReset( targetSiteId ).finally( () => { |
|
|
page( `/migrate/${ targetSiteSlug }` ); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
this.setState( |
|
|
{ |
|
|
migrationStatus: 'inactive', |
|
|
errorMessage: '', |
|
|
}, |
|
|
this.updateFromAPI |
|
|
); |
|
|
} ); |
|
|
}; |
|
|
|
|
|
setMigrationState = ( state ) => { |
|
|
storeMigrationStatus( state.migrationStatus ); |
|
|
|
|
|
|
|
|
|
|
|
if ( 'error' === this.state.migrationStatus ) { |
|
|
return; |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if ( |
|
|
this._startedMigrationFromCart && |
|
|
'backing-up' === this.state.migrationStatus && |
|
|
state.migrationStatus === 'inactive' && |
|
|
new Date().getTime() - this._timeStartedMigrationFromCart < THIRTY_SECONDS |
|
|
) { |
|
|
return; |
|
|
} |
|
|
|
|
|
if ( state.migrationStatus ) { |
|
|
this.props.updateSiteMigrationMeta( |
|
|
this.props.targetSiteId, |
|
|
state.migrationStatus, |
|
|
state.migrationErrorStatus, |
|
|
state.lastModified |
|
|
); |
|
|
} |
|
|
|
|
|
this.setState( state ); |
|
|
}; |
|
|
|
|
|
setSiteInfo = ( siteInfo, callback ) => { |
|
|
this.setState( { siteInfo }, () => { |
|
|
const selectedSiteSlug = urlToSlug( siteInfo.site_url.replace( /\/$/, '' ) ); |
|
|
this.setState( { selectedSiteSlug } ); |
|
|
this.updateSiteInfo( selectedSiteSlug, callback ); |
|
|
} ); |
|
|
}; |
|
|
|
|
|
updateSiteInfo = ( selectedSiteSlug, callback = () => {} ) => { |
|
|
selectedSiteSlug = selectedSiteSlug || this.state.selectedSiteSlug; |
|
|
if ( ! selectedSiteSlug ) { |
|
|
return; |
|
|
} |
|
|
return wpcom |
|
|
.site( selectedSiteSlug ) |
|
|
.get( { |
|
|
apiVersion: '1.2', |
|
|
} ) |
|
|
.then( ( site ) => { |
|
|
if ( ! ( site && site.capabilities ) ) { |
|
|
|
|
|
return this.setState( { isJetpackConnected: false } ); |
|
|
} |
|
|
|
|
|
|
|
|
this.props.receiveSite( omit( site, '_headers' ) ); |
|
|
this.setState( { isJetpackConnected: true } ); |
|
|
} ) |
|
|
.catch( () => { |
|
|
|
|
|
this.setState( { isJetpackConnected: false } ); |
|
|
} ) |
|
|
.finally( callback ); |
|
|
}; |
|
|
|
|
|
setSourceSiteId = ( sourceSiteId ) => { |
|
|
this.props.navigateToSelectedSourceSite( sourceSiteId ); |
|
|
}; |
|
|
|
|
|
setUrl = ( event ) => this.setState( { url: event.target.value } ); |
|
|
|
|
|
startMigration = ( trackingProps = {} ) => { |
|
|
const { sourceSiteId, targetSiteId, targetSite, isMigrateFromWp } = this.props; |
|
|
|
|
|
if ( ! sourceSiteId || ! targetSiteId ) { |
|
|
return; |
|
|
} |
|
|
|
|
|
const planSlug = get( targetSite, 'plan.product_slug' ); |
|
|
if ( |
|
|
planSlug && |
|
|
! this._startedMigrationFromCart && |
|
|
! planHasFeature( planSlug, FEATURE_UPLOAD_THEMES_PLUGINS ) |
|
|
) { |
|
|
this.goToCart(); |
|
|
return; |
|
|
} |
|
|
|
|
|
this.setMigrationState( { migrationStatus: 'backing-up', startTime: null } ); |
|
|
|
|
|
this.props.recordTracksEvent( 'calypso_site_migration_start_migration', trackingProps ); |
|
|
|
|
|
wpcom.req |
|
|
.post( { |
|
|
path: `/sites/${ targetSiteId }/migrate-from/${ sourceSiteId }`, |
|
|
apiNamespace: 'wpcom/v2', |
|
|
body: { |
|
|
check_migration_plugin: isMigrateFromWp, |
|
|
}, |
|
|
} ) |
|
|
.then( () => this.updateFromAPI() ) |
|
|
.catch( ( error ) => { |
|
|
const { code = '', message = '' } = error; |
|
|
|
|
|
if ( 'no_supported_plan' === code ) { |
|
|
this.goToCart(); |
|
|
return; |
|
|
} |
|
|
|
|
|
this.setMigrationState( { |
|
|
migrationStatus: 'error', |
|
|
migrationErrorStatus: code, |
|
|
errorMessage: message, |
|
|
} ); |
|
|
} ); |
|
|
}; |
|
|
|
|
|
goToCart = () => { |
|
|
const { sourceSite, targetSiteSlug, targetSite } = this.props; |
|
|
const sourceSiteSlug = get( sourceSite, 'slug' ); |
|
|
const currentPlanSlug = get( targetSite, 'plan.product_slug' ); |
|
|
const isEcommerceTrial = currentPlanSlug === PLAN_ECOMMERCE_TRIAL_MONTHLY; |
|
|
const plan = isEcommerceTrial ? PLAN_WOOEXPRESS_SMALL : PLAN_BUSINESS; |
|
|
|
|
|
page( |
|
|
`/checkout/${ targetSiteSlug }/${ plan }?redirect_to=/migrate/from/${ sourceSiteSlug }/to/${ targetSiteSlug }%3Fstart%3Dtrue` |
|
|
); |
|
|
}; |
|
|
|
|
|
updateFromAPI = () => { |
|
|
const { targetSiteId, targetSite } = this.props; |
|
|
wpcom.req |
|
|
.get( { |
|
|
path: `/sites/${ targetSiteId }/migration-status`, |
|
|
apiNamespace: 'wpcom/v2', |
|
|
} ) |
|
|
.then( ( response ) => { |
|
|
const { |
|
|
status: migrationStatus, |
|
|
error_status: migrationErrorStatus, |
|
|
percent, |
|
|
backup_percent: backupPercent, |
|
|
restore_percent: restorePercent, |
|
|
restore_message: restoreMessage, |
|
|
site_size: siteSize, |
|
|
posts_count: backupPosts, |
|
|
uploads_count: backupMedia, |
|
|
source_blog_id: sourceSiteId, |
|
|
created: startTime, |
|
|
last_modified: lastModified, |
|
|
is_atomic: isBackendAtomic, |
|
|
step, |
|
|
step_name: stepName, |
|
|
total_steps: stepTotal, |
|
|
} = response; |
|
|
|
|
|
if ( String( sourceSiteId ) !== String( this.props.sourceSiteId ) ) { |
|
|
sourceSiteId && this.setSourceSiteId( sourceSiteId ); |
|
|
} |
|
|
|
|
|
if ( migrationStatus ) { |
|
|
const newState = { |
|
|
migrationStatus, |
|
|
migrationErrorStatus, |
|
|
percent, |
|
|
backupPercent, |
|
|
restorePercent, |
|
|
restoreMessage, |
|
|
siteSize, |
|
|
backupPosts, |
|
|
backupMedia, |
|
|
lastModified, |
|
|
step, |
|
|
stepName, |
|
|
stepTotal, |
|
|
}; |
|
|
|
|
|
if ( startTime && isEmpty( this.state.startTime ) ) { |
|
|
const startMoment = moment.utc( startTime, 'YYYY-MM-DD HH:mm:ss' ); |
|
|
|
|
|
if ( ! startMoment.isValid() ) { |
|
|
this.setMigrationState( newState ); |
|
|
|
|
|
return; |
|
|
} |
|
|
|
|
|
const localizedStartTime = startMoment |
|
|
.local() |
|
|
.locale( getLocaleSlug() ) |
|
|
.format( 'lll' ); |
|
|
|
|
|
newState.startTime = localizedStartTime; |
|
|
this.setMigrationState( newState ); |
|
|
|
|
|
return; |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if ( isBackendAtomic && ! get( targetSite, 'options.is_wpcom_atomic', false ) ) { |
|
|
this.props.requestSite( targetSiteId ); |
|
|
} |
|
|
|
|
|
this.setMigrationState( newState ); |
|
|
} |
|
|
} ) |
|
|
.catch( ( error ) => { |
|
|
const { message = '' } = error; |
|
|
this.setMigrationState( { |
|
|
migrationStatus: 'error', |
|
|
errorMessage: message, |
|
|
} ); |
|
|
} ); |
|
|
}; |
|
|
|
|
|
isInProgress = () => { |
|
|
return [ 'new', 'backing-up', 'restoring' ].includes( this.state.migrationStatus ); |
|
|
}; |
|
|
|
|
|
isFinished = () => { |
|
|
return [ 'done', 'error', 'unknown' ].includes( this.state.migrationStatus ); |
|
|
}; |
|
|
|
|
|
isNonAtomicJetpack = () => { |
|
|
return ! this.props.isTargetSiteAtomic && this.props.isTargetSiteJetpack; |
|
|
}; |
|
|
|
|
|
renderLoading() { |
|
|
const { translate } = this.props; |
|
|
|
|
|
return ( |
|
|
<CompactCard> |
|
|
<span className="migrate__placeholder">{ translate( 'Loading…' ) }</span> |
|
|
</CompactCard> |
|
|
); |
|
|
} |
|
|
|
|
|
renderMigrationComplete() { |
|
|
const { targetSite, translate } = this.props; |
|
|
const viewSiteURL = get( targetSite, 'URL' ); |
|
|
|
|
|
return ( |
|
|
<> |
|
|
<FormattedHeader |
|
|
className="migrate__section-header" |
|
|
headerText={ translate( 'Congratulations!' ) } |
|
|
align="left" |
|
|
/> |
|
|
<CompactCard> |
|
|
<div className="migrate__status"> |
|
|
{ translate( 'Your import has completed successfully.' ) } |
|
|
</div> |
|
|
<Button primary href={ viewSiteURL }> |
|
|
{ translate( 'View site' ) } |
|
|
</Button> |
|
|
<Button onClick={ this.resetMigration }>Start over</Button> |
|
|
</CompactCard> |
|
|
</> |
|
|
); |
|
|
} |
|
|
|
|
|
renderMigrationError() { |
|
|
const { translate } = this.props; |
|
|
|
|
|
return ( |
|
|
<Card className="migrate__pane migrate__error"> |
|
|
<FormattedHeader |
|
|
className="migrate__section-header" |
|
|
headerText={ translate( 'Import failed' ) } |
|
|
align="center" |
|
|
/> |
|
|
<div className="migrate__status"> |
|
|
{ translate( 'There was an error with your import.' ) } |
|
|
<br /> |
|
|
{ this.state.errorMessage } |
|
|
|
|
|
<p className="migrate__info"> |
|
|
{ translate( |
|
|
'{{supportLink}}Contact us{{/supportLink}} so we can' + |
|
|
' figure out exactly' + |
|
|
' what needs adjusting, or try again.', |
|
|
{ |
|
|
components: { |
|
|
supportLink: ( |
|
|
<a |
|
|
href="https://wordpress.com/help/contact" |
|
|
target="_blank" |
|
|
rel="noopener noreferrer" |
|
|
/> |
|
|
), |
|
|
}, |
|
|
} |
|
|
) } |
|
|
</p> |
|
|
</div> |
|
|
<Button primary onClick={ this.resetMigration }> |
|
|
{ translate( 'Try again' ) } |
|
|
</Button> |
|
|
</Card> |
|
|
); |
|
|
} |
|
|
|
|
|
renderMigrationProgress() { |
|
|
const { sourceSite, targetSite, translate } = this.props; |
|
|
const sourceSiteDomain = get( sourceSite, 'domain' ); |
|
|
const targetSiteDomain = get( targetSite, 'domain' ); |
|
|
const subHeaderText = ( |
|
|
<> |
|
|
{ translate( |
|
|
"We're moving everything from {{sp}}%(sourceSiteDomain)s{{/sp}} to {{sp}}%(targetSiteDomain)s{{/sp}}.", |
|
|
{ |
|
|
args: { |
|
|
sourceSiteDomain, |
|
|
targetSiteDomain, |
|
|
}, |
|
|
components: { |
|
|
sp: <span className="migrate__domain" />, |
|
|
}, |
|
|
} |
|
|
) } |
|
|
</> |
|
|
); |
|
|
|
|
|
return ( |
|
|
<> |
|
|
<Interval onTick={ this.updateFromAPI } period={ EVERY_TEN_SECONDS } /> |
|
|
<Card className="migrate__pane"> |
|
|
<img |
|
|
className="migrate__illustration" |
|
|
src="/calypso/images/illustrations/waitTime-plain.svg" |
|
|
alt="" |
|
|
/> |
|
|
<FormattedHeader |
|
|
className="migrate__section-header" |
|
|
headerText={ translate( 'Import in progress' ) } |
|
|
subHeaderText={ subHeaderText } |
|
|
align="center" |
|
|
/> |
|
|
{ this.renderStartTime() } |
|
|
{ this.renderProgressBar() } |
|
|
{ this.renderProgressList() } |
|
|
<p className="migrate__note"> |
|
|
{ translate( |
|
|
"You can safely navigate away from this page if you need to; we'll send you a notification when it's done." |
|
|
) } |
|
|
</p> |
|
|
</Card> |
|
|
</> |
|
|
); |
|
|
} |
|
|
|
|
|
renderStartTime() { |
|
|
const { translate } = this.props; |
|
|
|
|
|
if ( isEmpty( this.state.startTime ) ) { |
|
|
return <div className="migrate__start-time"> </div>; |
|
|
} |
|
|
|
|
|
return ( |
|
|
<div className="migrate__start-time"> |
|
|
{ translate( 'Import started' ) } { this.state.startTime } |
|
|
</div> |
|
|
); |
|
|
} |
|
|
|
|
|
renderProgressBar() { |
|
|
if ( this.isInProgress() ) { |
|
|
return ( |
|
|
<ProgressBar isPulsing className="migrate__progress" value={ this.state.percent || 0 } /> |
|
|
); |
|
|
} |
|
|
|
|
|
if ( this.isFinished() ) { |
|
|
return <ProgressBar className="migrate__progress is-complete" value={ 100 } />; |
|
|
} |
|
|
} |
|
|
|
|
|
renderProgressIcon( progressState ) { |
|
|
const { migrationStatus } = this.state; |
|
|
|
|
|
if ( progressState === migrationStatus ) { |
|
|
return <Spinner />; |
|
|
} |
|
|
|
|
|
if ( 'backing-up' === progressState ) { |
|
|
if ( 'new' === migrationStatus ) { |
|
|
return <Spinner />; |
|
|
} |
|
|
return <Gridicon className="migrate__progress-item-icon-success" icon="checkmark-circle" />; |
|
|
} |
|
|
|
|
|
return ( |
|
|
<img |
|
|
alt="" |
|
|
src="/calypso/images/importer/circle-gray.svg" |
|
|
className="migrate__progress-item-icon-todo" |
|
|
/> |
|
|
); |
|
|
} |
|
|
|
|
|
renderProgressItem( progressState ) { |
|
|
const { migrationStatus } = this.state; |
|
|
const { sourceSite, targetSite, translate } = this.props; |
|
|
const sourceSiteDomain = get( sourceSite, 'domain' ); |
|
|
const targetSiteDomain = get( targetSite, 'domain' ); |
|
|
|
|
|
let progressItemText; |
|
|
switch ( progressState ) { |
|
|
case 'backing-up': |
|
|
if ( 'backing-up' === migrationStatus || 'new' === migrationStatus ) { |
|
|
progressItemText = ( |
|
|
<span> |
|
|
{ translate( 'Backing up {{sp}}%(sourceSiteDomain)s{{/sp}}', { |
|
|
args: { |
|
|
sourceSiteDomain, |
|
|
}, |
|
|
components: { |
|
|
sp: <span className="migrate__domain" />, |
|
|
}, |
|
|
} ) } |
|
|
</span> |
|
|
); |
|
|
break; |
|
|
} |
|
|
progressItemText = ( |
|
|
<span> |
|
|
{ translate( 'Backup of {{sp}}%(sourceSiteDomain)s{{/sp}} completed', { |
|
|
args: { |
|
|
sourceSiteDomain, |
|
|
}, |
|
|
components: { |
|
|
sp: <span className="migrate__domain" />, |
|
|
}, |
|
|
} ) } |
|
|
</span> |
|
|
); |
|
|
break; |
|
|
case 'restoring': |
|
|
progressItemText = ( |
|
|
<span> |
|
|
{ translate( 'Restoring to {{sp}}%(targetSiteDomain)s{{/sp}}', { |
|
|
args: { |
|
|
targetSiteDomain, |
|
|
}, |
|
|
components: { |
|
|
sp: <span className="migrate__domain" />, |
|
|
}, |
|
|
} ) } |
|
|
</span> |
|
|
); |
|
|
break; |
|
|
} |
|
|
|
|
|
return ( |
|
|
<li key={ `progress-${ progressState }` } className="migrate__progress-item"> |
|
|
<div className="migrate__progress-item-icon"> |
|
|
{ this.renderProgressIcon( progressState ) } |
|
|
</div> |
|
|
<div className="migrate__progress-item-text">{ progressItemText }</div> |
|
|
</li> |
|
|
); |
|
|
} |
|
|
|
|
|
renderProgressList() { |
|
|
const steps = [ 'backing-up', 'restoring' ]; |
|
|
|
|
|
return ( |
|
|
<ul className="migrate__progress-list"> |
|
|
{ steps.map( ( step ) => this.renderProgressItem( step ) ) } |
|
|
</ul> |
|
|
); |
|
|
} |
|
|
|
|
|
render() { |
|
|
const { step, sourceSite, targetSite, targetSiteSlug, translate, targetSiteId } = this.props; |
|
|
const sourceSiteSlug = get( sourceSite, 'slug' ); |
|
|
|
|
|
let migrationElement; |
|
|
|
|
|
switch ( this.state.migrationStatus ) { |
|
|
case 'in-progress': |
|
|
return ( |
|
|
<MigrationInProgress |
|
|
sourceSite={ sourceSite?.domain } |
|
|
targetSite={ targetSite?.domain } |
|
|
targetSiteId={ targetSiteId } |
|
|
onComplete={ this.finishMigration } |
|
|
/> |
|
|
); |
|
|
|
|
|
case 'inactive': |
|
|
switch ( step ) { |
|
|
case 'confirm': |
|
|
migrationElement = ( |
|
|
<StepConfirmMigration |
|
|
sourceSite={ sourceSite } |
|
|
startMigration={ this.startMigration } |
|
|
targetSite={ targetSite } |
|
|
targetSiteSlug={ targetSiteSlug } |
|
|
/> |
|
|
); |
|
|
break; |
|
|
case 'migrateOrImport': |
|
|
migrationElement = ( |
|
|
<> |
|
|
<Interval onTick={ this.updateSiteInfo } period={ EVERY_FIVE_SECONDS } /> |
|
|
<StepImportOrMigrate |
|
|
onJetpackSelect={ this.handleJetpackSelect } |
|
|
sourceSiteInfo={ this.state.siteInfo } |
|
|
targetSite={ targetSite } |
|
|
targetSiteSlug={ targetSiteSlug } |
|
|
sourceHasJetpack={ this.state.isJetpackConnected } |
|
|
isTargetSiteAtomic={ this.props.isTargetSiteAtomic } |
|
|
/> |
|
|
</> |
|
|
); |
|
|
break; |
|
|
case 'upgrade': |
|
|
migrationElement = ( |
|
|
<StepUpgrade |
|
|
plugins={ this.state.sourceSitePlugins } |
|
|
sourceSite={ sourceSite } |
|
|
sourceSiteSlug={ sourceSiteSlug } |
|
|
startMigration={ this.startMigration } |
|
|
targetSite={ targetSite } |
|
|
targetSiteSlug={ targetSiteSlug } |
|
|
themes={ this.state.sourceSiteThemes } |
|
|
/> |
|
|
); |
|
|
break; |
|
|
case 'input': |
|
|
default: |
|
|
migrationElement = ( |
|
|
<StepSourceSelect |
|
|
onSiteInfoReceived={ this.setSiteInfo } |
|
|
onUrlChange={ this.setUrl } |
|
|
targetSite={ targetSite } |
|
|
targetSiteSlug={ targetSiteSlug } |
|
|
url={ this.state.url } |
|
|
/> |
|
|
); |
|
|
break; |
|
|
} |
|
|
break; |
|
|
|
|
|
case 'new': |
|
|
case 'backing-up': |
|
|
case 'restoring': |
|
|
migrationElement = this.renderMigrationProgress(); |
|
|
break; |
|
|
|
|
|
case 'done': |
|
|
return null; |
|
|
|
|
|
case 'error': |
|
|
migrationElement = this.renderMigrationError(); |
|
|
break; |
|
|
|
|
|
case 'unknown': |
|
|
default: |
|
|
migrationElement = this.renderLoading(); |
|
|
} |
|
|
|
|
|
return ( |
|
|
<Main> |
|
|
<DocumentHead title={ translate( 'Migrate' ) } /> |
|
|
{ migrationElement } |
|
|
</Main> |
|
|
); |
|
|
} |
|
|
} |
|
|
|
|
|
const navigateToSelectedSourceSite = ( sourceSiteId ) => ( dispatch, getState ) => { |
|
|
const state = getState(); |
|
|
const sourceSite = getSite( state, sourceSiteId ); |
|
|
const sourceSiteSlug = get( sourceSite, 'slug', sourceSiteId ); |
|
|
const targetSiteSlug = getSelectedSiteSlug( state ); |
|
|
|
|
|
page( `/migrate/from/${ sourceSiteSlug }/to/${ targetSiteSlug }` ); |
|
|
}; |
|
|
|
|
|
export const connector = connect( |
|
|
( state, ownProps ) => { |
|
|
const targetSiteId = getSelectedSiteId( state ); |
|
|
return { |
|
|
isTargetSiteAtomic: !! isSiteAutomatedTransfer( state, targetSiteId ), |
|
|
isTargetSiteJetpack: !! isJetpackSite( state, targetSiteId ), |
|
|
sourceSite: ownProps.sourceSiteId && getSite( state, ownProps.sourceSiteId ), |
|
|
startMigration: !! get( getCurrentQueryArguments( state ), 'start', false ), |
|
|
sourceSiteHasJetpack: false, |
|
|
targetSite: getSelectedSite( state ), |
|
|
targetSiteId, |
|
|
targetSiteImportAdminUrl: getSiteAdminUrl( state, targetSiteId, 'import.php' ), |
|
|
targetSiteSlug: getSelectedSiteSlug( state ), |
|
|
}; |
|
|
}, |
|
|
{ |
|
|
navigateToSelectedSourceSite, |
|
|
receiveSite, |
|
|
updateSiteMigrationMeta, |
|
|
requestSite, |
|
|
recordTracksEvent, |
|
|
} |
|
|
); |
|
|
|
|
|
export default connector( localize( SectionMigrate ) ); |
|
|
|