File size: 5,632 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 | import { isEnabled } from '@automattic/calypso-config';
import { Button } from '@automattic/components';
import { localizeUrl } from '@automattic/i18n-utils';
import { localize } from 'i18n-calypso';
import PropTypes from 'prop-types';
import { PureComponent } from 'react';
import { WPImportError, FileTooLarge } from 'calypso/blocks/importer/wordpress/types';
import InlineSupportLink from 'calypso/components/inline-support-link';
import Notice from 'calypso/components/notice';
import { addQueryArgs } from 'calypso/lib/route';
const noop = () => {};
class ImporterError extends PureComponent {
static displayName = 'ImporterError';
static defaultProps = {
retryImport: noop,
};
static propTypes = {
description: PropTypes.string.isRequired,
type: PropTypes.string.isRequired,
retryImport: PropTypes.func,
siteSlug: PropTypes.string,
code: PropTypes.string,
importerEngine: PropTypes.string,
};
contactSupport = ( event ) => {
event.preventDefault();
event.stopPropagation();
window.open( '/help', '_blank', 'noopener,noreferrer' );
};
installPlugin = ( event ) => {
event.preventDefault();
event.stopPropagation();
window.location.href = '/plugins/all-in-one-wp-migration';
};
everythingImport = ( event ) => {
event.preventDefault();
event.stopPropagation();
window.location.href = addQueryArgs(
{ siteSlug: this.props.siteSlug },
'/setup/site-setup/import'
);
};
getImportError = () => {
return this.props.translate(
'%(errorDescription)s{{br/}}{{a}}Try again{{/a}} or {{cs}}get help{{/cs}}.',
{
args: {
errorDescription: this.props.description,
},
components: {
a: <Button className="importer__error-pane is-link" onClick={ this.retryImport } />,
br: <br />,
cs: <Button className="importer__error-pane is-link" onClick={ this.contactSupport } />,
},
}
);
};
getUploadError = () => {
const defaultError = this.props.translate(
'Oops! We ran into an unexpected error while uploading your file.'
);
const { description = '' } = this.props;
const helpButton = (
<Button className="importer__error-pane is-link" onClick={ this.contactSupport } />
);
const generalMessage = this.props.translate(
'%(errorDescription)s{{br/}}Make sure you are using a valid export file in XML or ZIP format.',
{
args: {
errorDescription: description.length ? description : defaultError,
},
components: {
br: <br />,
cs: helpButton,
},
}
);
if ( isEnabled( 'importer/site-backups' ) && this.props.importerEngine === 'wordpress' ) {
return this.props.translate(
'The file type you uploaded is not supported. Please upload a WordPress export file in XML or ZIP format, or a Playground ZIP file. {{cs}}Still need help{{/cs}}?',
{
components: {
cs: helpButton,
},
}
);
}
if ( this.props.importerEngine === 'substack' ) {
return this.props.translate(
'%(errorDescription)s{{br/}}Make sure you are using {{doc}}a valid export file{{/doc}} in XML or ZIP format.{{br/}}{{cs}}Still need help{{/cs}}?',
{
args: {
errorDescription: description.length ? description : defaultError,
},
components: {
br: <br />,
cs: helpButton,
doc: (
<InlineSupportLink
showIcon={ false }
supportLink={ localizeUrl(
'https://wordpress.com/support/import-from-substack/import-content/'
) }
supportPostId={ 400434 }
/>
),
},
}
);
}
return generalMessage;
};
getPreUploadError = () => {
const defaultError = this.props.translate(
'Oops! We ran into an unexpected error while uploading your file.'
);
if ( this.props.code === WPImportError.WPRESS_FILE_IS_NOT_SUPPORTED ) {
return this.props.translate(
'You have uploaded a .wpress file that works with the All-in-One WP Migration plugin. You can either {{ip}}install that plugin{{/ip}}, or {{ei}}try out Everything Import{{/ei}}. {{cs}}Still need help{{/cs}}?',
{
components: {
ip: <Button className="importer__error-pane is-link" onClick={ this.installPlugin } />,
// TODO: is this "everthing import" behaviour up to date?
ei: (
<Button className="importer__error-pane is-link" onClick={ this.everythingImport } />
),
cs: <Button className="importer__error-pane is-link" onClick={ this.contactSupport } />,
},
}
);
}
if ( this.props.code === FileTooLarge.FILE_TOO_LARGE ) {
return this.props.translate(
'The file you are importing is too large. {{cs}}Please contact support to continue{{/cs}}.',
{
components: {
cs: <Button className="importer__error-pane is-link" onClick={ this.contactSupport } />,
},
}
);
}
return defaultError;
};
getErrorMessage = () => {
let actionMessage;
switch ( this.props.type ) {
case 'uploadError':
actionMessage = this.getUploadError();
break;
case 'importError':
actionMessage = this.getImportError();
break;
case 'validationError':
actionMessage = this.props.description
? this.props.description
: this.props.translate( 'Data you entered are not valid' );
break;
case 'preUploadError':
actionMessage = this.getPreUploadError();
break;
}
return actionMessage;
};
retryImport = ( event ) => {
event.preventDefault();
event.stopPropagation();
this.props.retryImport();
};
render() {
return (
<div>
<Notice status="is-error" text={ this.getErrorMessage() } showDismiss={ false } />
</div>
);
}
}
export default localize( ImporterError );
|