/**
* External dependencies
*/
import { __ } from '@wordpress/i18n';
import { Fragment } from '@wordpress/element';
import PropTypes from 'prop-types';
import Gridicon from 'gridicons';
import classNames from 'classnames';
import { escapeHTML } from '@wordpress/escape-html';
import {
Button,
Placeholder,
Spinner,
} from '@wordpress/components';
const getErrorMessage = ( { apiMessage, message } ) => {
if ( message ) {
return message;
}
if ( apiMessage ) {
return (
{ __( 'The following error was returned from the API', 'woo-gutenberg-products-block' ) }
{ escapeHTML( apiMessage ) }
);
}
return __( 'An unknown error occurred which prevented the block from being updated.', 'woo-gutenberg-products-block' );
};
const ApiErrorPlaceholder = ( { className, error, isLoading, onRetry } ) => (
}
label={ __( 'Sorry, an error occurred', 'woo-gutenberg-products-block' ) }
className={ classNames( 'wc-block-api-error', className ) }
>
{ getErrorMessage( error ) }
{ onRetry && (
{ isLoading ? (
) : (
) }
) }
);
ApiErrorPlaceholder.propTypes = {
/**
* Callback to retry an action.
*/
onRetry: PropTypes.func.isRequired,
/**
* Classname to add to placeholder in addition to the defaults.
*/
className: PropTypes.string,
/**
* The error object.
*/
error: PropTypes.shape( {
/**
* API error message to display in case of a missing `message`.
*/
apiMessage: PropTypes.node,
/**
* Human-readable error message to display.
*/
message: PropTypes.string,
} ),
/**
* Whether there is a request running, so the 'Retry' button is hidden and
* a spinner is shown instead.
*/
isLoading: PropTypes.bool,
};
export default ApiErrorPlaceholder;