Port front-end changes from c453888616
to glitch-soc
Signed-off-by: Thibaut Girka <thib@sitedethib.com>
th-downstream
parent
9506d9cafc
commit
bee8c9112f
@ -1,17 +1,24 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
|
import PropTypes from 'prop-types';
|
||||||
import { FormattedMessage } from 'react-intl';
|
import { FormattedMessage } from 'react-intl';
|
||||||
|
import illustration from 'flavours/glitch/images/elephant_ui_disappointed.svg';
|
||||||
|
import classNames from 'classnames';
|
||||||
|
|
||||||
const MissingIndicator = () => (
|
const MissingIndicator = ({ fullPage }) => (
|
||||||
<div className='regeneration-indicator missing-indicator'>
|
<div className={classNames('regeneration-indicator', { 'regeneration-indicator--without-header': fullPage })}>
|
||||||
<div>
|
<div className='regeneration-indicator__figure'>
|
||||||
<div className='regeneration-indicator__figure' />
|
<img src={illustration} alt='' />
|
||||||
|
</div>
|
||||||
|
|
||||||
<div className='regeneration-indicator__label'>
|
<div className='regeneration-indicator__label'>
|
||||||
<FormattedMessage id='missing_indicator.label' tagName='strong' defaultMessage='Not found' />
|
<FormattedMessage id='missing_indicator.label' tagName='strong' defaultMessage='Not found' />
|
||||||
<FormattedMessage id='missing_indicator.sublabel' defaultMessage='This resource could not be found' />
|
<FormattedMessage id='missing_indicator.sublabel' defaultMessage='This resource could not be found' />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
);
|
);
|
||||||
|
|
||||||
|
MissingIndicator.propTypes = {
|
||||||
|
fullPage: PropTypes.bool,
|
||||||
|
};
|
||||||
|
|
||||||
export default MissingIndicator;
|
export default MissingIndicator;
|
||||||
|
@ -0,0 +1,18 @@
|
|||||||
|
import React from 'react';
|
||||||
|
import { FormattedMessage } from 'react-intl';
|
||||||
|
import illustration from 'flavours/glitch/images/elephant_ui_working.svg';
|
||||||
|
|
||||||
|
const MissingIndicator = () => (
|
||||||
|
<div className='regeneration-indicator'>
|
||||||
|
<div className='regeneration-indicator__figure'>
|
||||||
|
<img src={illustration} alt='' />
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className='regeneration-indicator__label'>
|
||||||
|
<FormattedMessage id='regeneration_indicator.label' tagName='strong' defaultMessage='Loading…' />
|
||||||
|
<FormattedMessage id='regeneration_indicator.sublabel' defaultMessage='Your home feed is being prepared!' />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
|
||||||
|
export default MissingIndicator;
|
Loading…
Reference in new issue