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 SquarespaceImporter: React.FunctionComponent< ImporterBaseProps > = ( props ) => { const importer: Importer = 'squarespace'; 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 ( <>