2017-05-03 00:04:16 +00:00
|
|
|
import React from 'react';
|
2019-10-06 20:11:17 +00:00
|
|
|
import PropTypes from 'prop-types';
|
2017-01-10 12:50:40 +00:00
|
|
|
import { FormattedMessage } from 'react-intl';
|
2019-10-06 20:11:17 +00:00
|
|
|
import illustration from 'flavours/glitch/images/elephant_ui_disappointed.svg';
|
|
|
|
import classNames from 'classnames';
|
2017-01-10 12:50:40 +00:00
|
|
|
|
2019-10-06 20:11:17 +00:00
|
|
|
const MissingIndicator = ({ fullPage }) => (
|
|
|
|
<div className={classNames('regeneration-indicator', { 'regeneration-indicator--without-header': fullPage })}>
|
|
|
|
<div className='regeneration-indicator__figure'>
|
|
|
|
<img src={illustration} alt='' />
|
|
|
|
</div>
|
2018-01-18 16:25:37 +00:00
|
|
|
|
2019-10-06 20:11:17 +00:00
|
|
|
<div className='regeneration-indicator__label'>
|
|
|
|
<FormattedMessage id='missing_indicator.label' tagName='strong' defaultMessage='Not found' />
|
|
|
|
<FormattedMessage id='missing_indicator.sublabel' defaultMessage='This resource could not be found' />
|
2017-05-03 00:04:16 +00:00
|
|
|
</div>
|
2017-01-10 12:50:40 +00:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
|
2019-10-06 20:11:17 +00:00
|
|
|
MissingIndicator.propTypes = {
|
|
|
|
fullPage: PropTypes.bool,
|
|
|
|
};
|
|
|
|
|
2017-01-10 12:50:40 +00:00
|
|
|
export default MissingIndicator;
|