2023-05-28 16:38:10 +02:00
|
|
|
import PropTypes from 'prop-types';
|
2023-05-28 14:18:23 +02:00
|
|
|
import { PureComponent } from 'react';
|
2023-05-28 16:38:10 +02:00
|
|
|
import { createPortal } from 'react-dom';
|
|
|
|
|
2016-11-16 17:20:52 +01:00
|
|
|
import { FormattedMessage } from 'react-intl';
|
2023-05-28 16:38:10 +02:00
|
|
|
|
2023-10-19 19:44:55 +02:00
|
|
|
import { withRouter } from 'react-router-dom';
|
2023-05-28 16:38:10 +02:00
|
|
|
|
2023-10-19 19:44:55 +02:00
|
|
|
import { Icon } from 'flavours/glitch/components/icon';
|
|
|
|
import { WithRouterPropTypes } from 'flavours/glitch/utils/react_router';
|
2016-10-19 18:20:19 +02:00
|
|
|
|
2023-10-19 19:44:55 +02:00
|
|
|
class ColumnBackButton extends PureComponent {
|
2016-10-19 18:20:19 +02:00
|
|
|
|
2019-08-01 19:17:17 +02:00
|
|
|
static propTypes = {
|
|
|
|
multiColumn: PropTypes.bool,
|
2023-10-19 19:44:55 +02:00
|
|
|
...WithRouterPropTypes,
|
2019-08-01 19:17:17 +02:00
|
|
|
};
|
|
|
|
|
2023-05-25 19:14:51 +02:00
|
|
|
handleClick = () => {
|
2023-10-19 19:44:55 +02:00
|
|
|
const { history } = this.props;
|
2023-05-25 19:14:51 +02:00
|
|
|
|
2023-10-19 19:44:55 +02:00
|
|
|
if (history.location?.state?.fromMastodon) {
|
|
|
|
history.goBack();
|
2018-05-23 14:17:05 +02:00
|
|
|
} else {
|
2023-10-19 19:44:55 +02:00
|
|
|
history.push('/');
|
2017-07-07 08:27:52 +02:00
|
|
|
}
|
2023-02-03 20:52:07 +01:00
|
|
|
};
|
2016-10-19 18:20:19 +02:00
|
|
|
|
|
|
|
render () {
|
2019-08-01 19:17:17 +02:00
|
|
|
const { multiColumn } = this.props;
|
|
|
|
|
|
|
|
const component = (
|
2017-07-31 00:18:15 +02:00
|
|
|
<button onClick={this.handleClick} className='column-back-button'>
|
2019-09-09 16:41:41 +02:00
|
|
|
<Icon id='chevron-left' className='column-back-button__icon' fixedWidth />
|
2016-11-16 17:20:52 +01:00
|
|
|
<FormattedMessage id='column_back_button.label' defaultMessage='Back' />
|
2017-07-31 00:18:15 +02:00
|
|
|
</button>
|
2016-10-19 18:20:19 +02:00
|
|
|
);
|
2019-08-01 19:17:17 +02:00
|
|
|
|
|
|
|
if (multiColumn) {
|
|
|
|
return component;
|
|
|
|
} else {
|
2019-08-25 15:49:02 +02:00
|
|
|
// The portal container and the component may be rendered to the DOM in
|
|
|
|
// the same React render pass, so the container might not be available at
|
|
|
|
// the time `render()` is called.
|
|
|
|
const container = document.getElementById('tabs-bar__portal');
|
|
|
|
if (container === null) {
|
|
|
|
// The container wasn't available, force a re-render so that the
|
|
|
|
// component can eventually be inserted in the container and not scroll
|
|
|
|
// with the rest of the area.
|
|
|
|
this.forceUpdate();
|
|
|
|
return component;
|
|
|
|
} else {
|
|
|
|
return createPortal(component, container);
|
|
|
|
}
|
2019-08-01 19:17:17 +02:00
|
|
|
}
|
2016-10-19 18:20:19 +02:00
|
|
|
}
|
|
|
|
|
2017-05-12 14:44:10 +02:00
|
|
|
}
|
2023-10-19 19:44:55 +02:00
|
|
|
|
|
|
|
export default withRouter(ColumnBackButton);
|