File size: 720 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 |
import { translate } from 'i18n-calypso';
import Notice from 'calypso/components/notice';
import { activateContext } from './activate-context';
interface HostingErrorStatusProps {
context: activateContext;
}
export const HostingErrorStatus = ( { context }: HostingErrorStatusProps ) => {
const getErrorText = () => {
switch ( context ) {
case 'theme':
return translate( 'There was an error activating theme features.' );
case 'plugin':
return translate( 'There was an error activating plugin features.' );
default:
return translate( 'There was an error activating hosting features.' );
}
};
return <Notice status="is-error" showDismiss={ false } text={ getErrorText() } icon="bug" />;
};
|