Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
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 );