File size: 3,682 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 |
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;
/**
* Effects
*/
useEffect( handleJobStateTransition, [ job ] );
/**
↓ Methods
*/
function handleJobStateTransition() {
// If there is no existing import job, create a new job
if ( job === undefined ) {
startImport( siteId, getImporterTypeForEngine( importer ) );
}
// If the job is in a ready state, start the import process
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 );
|