|
|
import { recordTracksEvent } from '@automattic/calypso-analytics'; |
|
|
import clsx from 'clsx'; |
|
|
import React, { useEffect } from 'react'; |
|
|
import { connect } from 'react-redux'; |
|
|
import { resetImport, startImport } from 'calypso/state/imports/actions'; |
|
|
import { appStates } from 'calypso/state/imports/constants'; |
|
|
import { importSite } from 'calypso/state/imports/site-importer/actions'; |
|
|
import CompleteScreen from '../components/complete-screen'; |
|
|
import ErrorMessage from '../components/error-message'; |
|
|
import GettingStartedVideo from '../components/getting-started-video'; |
|
|
import ImporterDrag from '../components/importer-drag'; |
|
|
import { getImportDragConfig } from '../components/importer-drag/config'; |
|
|
import ProgressScreen from '../components/progress-screen'; |
|
|
import { Importer, ImporterBaseProps, ImportJob, ImportJobParams } from '../types'; |
|
|
import { getImporterTypeForEngine } from '../util'; |
|
|
|
|
|
export const MediumImporter: React.FunctionComponent< ImporterBaseProps > = ( props ) => { |
|
|
const importer: Importer = 'medium'; |
|
|
const { |
|
|
job, |
|
|
urlData, |
|
|
siteId, |
|
|
site, |
|
|
siteSlug, |
|
|
fromSite, |
|
|
importSite, |
|
|
startImport, |
|
|
resetImport, |
|
|
stepNavigator, |
|
|
renderHeading, |
|
|
} = props; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
useEffect( handleJobStateTransition, [ job ] ); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function handleJobStateTransition() { |
|
|
|
|
|
if ( job === undefined ) { |
|
|
startImport( siteId, getImporterTypeForEngine( importer ) ); |
|
|
} |
|
|
|
|
|
else if ( job.importerState === appStates.READY_FOR_UPLOAD ) { |
|
|
importSite( prepareImportParams() ); |
|
|
} |
|
|
} |
|
|
|
|
|
function prepareImportParams(): ImportJobParams { |
|
|
const targetSiteUrl = fromSite.startsWith( 'http' ) ? fromSite : 'https://' + fromSite; |
|
|
|
|
|
return { |
|
|
engine: importer, |
|
|
importerStatus: job as ImportJob, |
|
|
params: { engine: importer }, |
|
|
site: { ID: siteId }, |
|
|
targetSiteUrl, |
|
|
supportedContent: [], |
|
|
unsupportedContent: [], |
|
|
}; |
|
|
} |
|
|
|
|
|
function onTryAgainClick() { |
|
|
job?.importerId && resetImport( siteId, job.importerId ); |
|
|
} |
|
|
|
|
|
function checkProgress() { |
|
|
return job?.importerState === appStates.IMPORTING; |
|
|
} |
|
|
|
|
|
function checkIsSuccess() { |
|
|
return job?.importerState === appStates.IMPORT_SUCCESS; |
|
|
} |
|
|
|
|
|
function checkIsFailed() { |
|
|
return job?.importerState === appStates.IMPORT_FAILURE; |
|
|
} |
|
|
|
|
|
function showVideoComponent() { |
|
|
return checkProgress() || checkIsSuccess(); |
|
|
} |
|
|
|
|
|
function onSiteViewClick() { |
|
|
recordTracksEvent( 'calypso_site_importer_pick_a_design' ); |
|
|
stepNavigator?.navigate?.( 'design-setup' ); |
|
|
} |
|
|
|
|
|
return ( |
|
|
<> |
|
|
<div className={ clsx( `importer-${ importer }` ) }> |
|
|
{ ( () => { |
|
|
if ( ! job ) { |
|
|
return; |
|
|
} else if ( checkIsSuccess() ) { |
|
|
return ( |
|
|
<CompleteScreen |
|
|
siteId={ siteId } |
|
|
siteSlug={ siteSlug } |
|
|
job={ job as ImportJob } |
|
|
resetImport={ resetImport } |
|
|
onSiteViewClick={ onSiteViewClick } |
|
|
/> |
|
|
); |
|
|
} else if ( checkIsFailed() ) { |
|
|
return <ErrorMessage onPrimaryBtnClick={ onTryAgainClick } />; |
|
|
} else if ( checkProgress() ) { |
|
|
return <ProgressScreen job={ job } showHeading={ renderHeading } />; |
|
|
} |
|
|
|
|
|
/** |
|
|
* Upload section |
|
|
*/ |
|
|
return ( |
|
|
<ImporterDrag |
|
|
urlData={ urlData } |
|
|
site={ site } |
|
|
importerData={ getImportDragConfig( importer, stepNavigator?.supportLinkModal ) } |
|
|
importerStatus={ job } |
|
|
renderHeading={ renderHeading } |
|
|
/> |
|
|
); |
|
|
} )() } |
|
|
|
|
|
{ showVideoComponent() && <GettingStartedVideo /> } |
|
|
</div> |
|
|
</> |
|
|
); |
|
|
}; |
|
|
|
|
|
export default connect( null, { |
|
|
importSite, |
|
|
startImport, |
|
|
resetImport, |
|
|
} )( MediumImporter ); |
|
|
|