File size: 13,802 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 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 | import { isEnabled } from '@automattic/calypso-config';
import { CompactCard } from '@automattic/components';
import { localize } from 'i18n-calypso';
import { once } from 'lodash';
import PropTypes from 'prop-types';
import { Component } from 'react';
import { connect } from 'react-redux';
import JetpackPluginUpdateWarning from 'calypso/blocks/jetpack-plugin-update-warning';
import DocumentHead from 'calypso/components/data/document-head';
import EmailVerificationGate from 'calypso/components/email-verification/email-verification-gate';
import EmptyContent from 'calypso/components/empty-content';
import InlineSupportLink from 'calypso/components/inline-support-link';
import Main from 'calypso/components/main';
import NavigationHeader from 'calypso/components/navigation-header';
import SectionHeader from 'calypso/components/section-header';
import { getImporterByKey, getImporters } from 'calypso/lib/importer/importer-config';
import { EVERY_FIVE_SECONDS, Interval } from 'calypso/lib/interval';
import memoizeLast from 'calypso/lib/memoize-last';
import version_compare from 'calypso/lib/version-compare';
import BloggerImporter from 'calypso/my-sites/importer/importer-blogger';
import MediumImporter from 'calypso/my-sites/importer/importer-medium';
import SquarespaceImporter from 'calypso/my-sites/importer/importer-squarespace';
import SubstackImporter from 'calypso/my-sites/importer/importer-substack';
import WixImporter from 'calypso/my-sites/importer/importer-wix';
import WordPressImporter from 'calypso/my-sites/importer/importer-wordpress';
import JetpackImporter from 'calypso/my-sites/importer/jetpack-importer';
import { recordTracksEvent } from 'calypso/state/analytics/actions';
import { cancelImport, fetchImporterState, startImport } from 'calypso/state/imports/actions';
import { appStates } from 'calypso/state/imports/constants';
import {
getImporterStatusForSiteId,
isImporterStatusHydrated,
} from 'calypso/state/imports/selectors';
import { canCurrentUser } from 'calypso/state/selectors/can-current-user';
import { getSiteOption, getSiteTitle } from 'calypso/state/sites/selectors';
import {
getSelectedSite,
getSelectedSiteId,
getSelectedSiteSlug,
} from 'calypso/state/ui/selectors';
import './section-import.scss';
/**
* Configuration mapping import engines to associated import components.
* The key is the engine, and the value is the component. To add new importers,
* add it here and add its configuration to lib/importer/importer-config.
* @type {Object}
*/
const importerComponents = {
blogger: BloggerImporter,
medium: MediumImporter,
substack: SubstackImporter,
squarespace: SquarespaceImporter,
wix: WixImporter,
wordpress: WordPressImporter,
};
const getImporterTypeForEngine = ( engine ) => `importer-type-${ engine }`;
/**
* Turns filesize into a range divided by 100MB, so that we dont'need to track specific filesizes in Tracks.
*
* For example:
* 0mb = 0—100MB (1 chunk)
* 85mb = 0—100MB (1 chunk)
* 100mb = 100—200MB (2 chunks)
* 110mb = 100—200MB (2 chunks)
* 350mb = 300—400MB (4 chunks)
*/
const bytesToFilesizeRange = ( bytes ) => {
const megabytes = parseInt( bytes / ( 1024 * 1024 ) );
const maxChunk = 100;
// How many full chunks can fit into our megabytes?
const chunks = Math.floor( megabytes / maxChunk );
const min = chunks * 100;
const max = min + maxChunk;
// Range of mbs where the filesize fits
return `${ min }—${ max }MB`;
};
/**
* The minimum version of the Jetpack plugin required to use the Jetpack Importer API.
*/
const JETPACK_IMPORT_MIN_PLUGIN_VERSION = '12.1';
class SectionImport extends Component {
static propTypes = {
site: PropTypes.object,
engine: PropTypes.string,
fromSite: PropTypes.string,
};
state = {
latestSuccessImport: null,
};
onceAutoStartImport = once( () => {
const { engine, siteId, siteImports, afterStartImport } = this.props;
if ( ! engine ) {
return;
}
// If there is no existing import and the `engine` is valid, start a new import.
if ( siteImports.length === 0 && importerComponents[ engine ] ) {
this.props.startImport( siteId, getImporterTypeForEngine( engine ) );
}
// After import was started, redirect back to the route without `engine` query arg.
// That removes the `engine` prop from this component and doesn't spoil future
// rendering when the import is, e.g., cancelled.
//
// We redirect back even if we decided to not start the import requested by the `engine`
// query arg. The request has been processed, only with a negative result.
afterStartImport?.();
} );
handleStateChanges = () => {
this.props.siteImports.map( ( importItem ) => {
const { importerState, type: importerId } = importItem;
let eventProps = {};
// Log more info about upload failures
if ( importerState === appStates.UPLOAD_FAILURE ) {
eventProps = {
error_code: importItem.errorData.code,
error_type: importItem.errorData.type,
filesize_range: importItem.file?.size
? bytesToFilesizeRange( importItem.file.size )
: null,
};
}
if ( importerState === appStates.IMPORT_SUCCESS && ! this.state.latestSuccessImport ) {
this.setState( { latestSuccessImport: importItem } );
}
this.trackImporterStateChange( importerState, importerId, eventProps );
} );
};
cancelNonStartedImports = () => {
this.props.siteImports
.filter( ( x ) => x.importerState === appStates.READY_FOR_UPLOAD )
.forEach( ( x ) => this.props.cancelImport( x.site.ID, x.importerId ) );
};
trackImporterStateChange = memoizeLast( ( importerState, importerId, eventProps = {} ) => {
const stateToEventNameMap = {
[ appStates.READY_FOR_UPLOAD ]: 'calypso_importer_view',
[ appStates.UPLOADING ]: 'calypso_importer_upload_start',
[ appStates.UPLOAD_SUCCESS ]: 'calypso_importer_upload_success',
[ appStates.UPLOAD_FAILURE ]: 'calypso_importer_upload_fail',
[ appStates.MAP_AUTHORS ]: 'calypso_importer_map_authors_view',
[ appStates.IMPORTING ]: 'calypso_importer_import_start',
[ appStates.IMPORT_SUCCESS ]: 'calypso_importer_import_success',
[ appStates.IMPORT_FAILURE ]: 'calypso_importer_import_fail',
};
if ( stateToEventNameMap[ importerState ] ) {
this.props.recordTracksEvent( stateToEventNameMap[ importerState ], {
importer_id: importerId,
...eventProps,
} );
}
} );
componentDidMount() {
this.updateFromAPI();
if ( this.props.isImporterStatusHydrated ) {
this.onceAutoStartImport();
}
}
resetSuccessState = () => {
this.setState( { latestSuccessImport: null } );
};
componentDidUpdate() {
if ( this.props.isImporterStatusHydrated ) {
this.onceAutoStartImport();
}
this.handleStateChanges();
}
componentWillUnmount() {
this.cancelNonStartedImports();
}
/**
* Renders each enabled importer at the provided `state`
* @param {string} importerState The state constant for the importer components
* @returns {Array} A list of react elements for each enabled importer
*/
renderIdleImporters( importerState ) {
const { site, siteSlug, siteTitle } = this.props;
const importers = getImporters( {
isAtomic: site.options?.is_wpcom_atomic,
isJetpack: site.jetpack,
} );
const importerElements = importers.map( ( { engine } ) => {
const ImporterComponent = importerComponents[ engine ];
if ( ! ImporterComponent ) {
return null;
}
const importerStatus = {
importerState,
type: getImporterTypeForEngine( engine ),
};
return (
<ImporterComponent
key={ engine }
site={ site }
siteSlug={ siteSlug }
siteTitle={ siteTitle }
importerStatus={ importerStatus }
isAtomic={ site.options?.is_wpcom_atomic }
isJetpack={ site.jetpack }
fromSite={ this.props.fromSite }
/>
);
} );
// add the 'other importers' card to the end of the list of importers
return (
<>
{ importerElements }
<CompactCard href={ site.options?.admin_url + 'import.php' }>
{ this.props.translate( 'Choose from full list' ) }
</CompactCard>
</>
);
}
renderLatestSuccessImport() {
const { site, siteSlug, siteTitle } = this.props;
const ImporterComponent =
importerComponents[ getImporterByKey( this.state.latestSuccessImport.type ).engine ];
return (
<ImporterComponent
site={ site }
siteSlug={ siteSlug }
siteTitle={ siteTitle }
importerStatus={ this.state.latestSuccessImport }
onImportSuccessClose={ () => {
this.resetSuccessState();
} }
/>
);
}
/**
* Renders list of importer elements for active import jobs
* @returns {Array} Importer react elements for the active import jobs
*/
renderActiveImporters() {
const { fromSite, site, siteSlug, siteTitle, siteImports } = this.props;
return siteImports.map( ( importItem, idx ) => {
const importer = getImporterByKey( importItem.type );
if ( ! importer ) {
return;
}
const ImporterComponent = importerComponents[ importer.engine ];
return (
ImporterComponent && (
<ImporterComponent
key={ idx }
site={ site }
fromSite={ fromSite }
siteSlug={ siteSlug }
siteTitle={ siteTitle }
importerStatus={ importItem }
onImportSuccessClose={ () => {
this.resetSuccessState();
} }
/>
)
);
} );
}
/**
* Return rendered importer elements
* @returns {Array} Importer react elements
*/
renderImporters() {
const { engine } = this.props;
if ( this.state.latestSuccessImport ) {
return this.renderLatestSuccessImport();
}
// If starting a new import was requested by the `engine` query param, never show the list
// of available "idle" importers. Always render the list of active importers, even if it's
// initially empty. A new import will be started very soon by `onceAutoStartImport`.
if ( engine && importerComponents[ engine ] ) {
return this.renderActiveImporters();
}
if ( ! this.props.isImporterStatusHydrated ) {
return this.renderIdleImporters( appStates.DISABLED );
}
if ( this.props.siteImports.length === 0 ) {
return this.renderIdleImporters( appStates.INACTIVE );
}
return this.renderActiveImporters();
}
updateFromAPI = () => {
this.props.fetchImporterState( this.props.siteId );
};
renderImportersList() {
const { translate } = this.props;
const isSpecificImporter = this.props.siteImports.length > 0;
const sectionHeaderLabel = isSpecificImporter
? translate( 'Importing content from:', {
comment:
"This text appears above the icon of another service (e.g. Wix, Squarespace) indicating that the process of importing the user's data from that service is ongoing",
} )
: translate( 'I want to import content from:', {
comment:
'This text appears above a list of service icons (e.g. Wix, Squarespace) asking the user to choose one.',
} );
const isImportSuccess = Boolean( this.state.latestSuccessImport );
const skipHeader = isSpecificImporter || isImportSuccess;
return (
<>
{ ! this.state.latestSuccessImport && (
<Interval onTick={ this.updateFromAPI } period={ EVERY_FIVE_SECONDS } />
) }
{ ! skipHeader && (
<SectionHeader label={ sectionHeaderLabel } className="importer__section-header" />
) }
{ this.renderImporters() }
</>
);
}
render() {
const { site, translate, canImport } = this.props;
if ( ! canImport ) {
return (
<Main>
<EmptyContent
title={ this.props.translate( 'You are not authorized to view this page' ) }
/>
</Main>
);
}
const {
jetpack: isJetpack,
options: { is_wpcom_atomic: isAtomic },
} = site;
// Target site Jetpack version is not compatible with the importer.
const jetpackVersionInCompatible = version_compare(
this.props.siteJetpackVersion,
JETPACK_IMPORT_MIN_PLUGIN_VERSION,
'<'
);
const hasUnifiedImporter = isEnabled( 'importer/unified' );
return (
<Main>
<DocumentHead title={ translate( 'Import Content' ) } />
<NavigationHeader
screenOptionsTab="import.php"
navigationItems={ [] }
title={ translate( 'Import Content' ) }
subtitle={ translate(
'Import content from another website or platform. {{learnMoreLink}}Learn more{{/learnMoreLink}}.',
{
components: {
learnMoreLink: <InlineSupportLink supportContext="import" showIcon={ false } />,
},
}
) }
/>
<EmailVerificationGate allowUnlaunched>
{ isJetpack && ! isAtomic && ! hasUnifiedImporter ? (
<JetpackImporter />
) : (
<>
{ /** Show a plugin update warning if Jetpack version does not support import endpoints */ }
{ isJetpack && ! isAtomic && (
<JetpackPluginUpdateWarning
siteId={ this.props.siteId }
minJetpackVersion={ JETPACK_IMPORT_MIN_PLUGIN_VERSION }
warningRequirement={ translate( 'To make sure you can import reliably' ) }
/>
) }
{ isJetpack && ! isAtomic && jetpackVersionInCompatible
? this.renderIdleImporters( appStates.DISABLED )
: this.renderImportersList() }
</>
) }
</EmailVerificationGate>
</Main>
);
}
}
export default connect(
( state ) => {
const siteId = getSelectedSiteId( state );
return {
siteId,
site: getSelectedSite( state ),
siteSlug: getSelectedSiteSlug( state ),
siteTitle: getSiteTitle( state, siteId ),
siteImports: getImporterStatusForSiteId( state, siteId ),
canImport: canCurrentUser( state, siteId, 'manage_options' ),
isImporterStatusHydrated: isImporterStatusHydrated( state ),
siteJetpackVersion: getSiteOption( state, siteId, 'jetpack_version' ),
};
},
{ recordTracksEvent, startImport, fetchImporterState, cancelImport }
)( localize( SectionImport ) );
|