2023-05-23 17:15:17 +02:00
|
|
|
import PropTypes from 'prop-types';
|
2023-05-23 10:52:27 +02:00
|
|
|
import { PureComponent } from 'react';
|
2023-05-23 17:15:17 +02:00
|
|
|
import { createPortal } from 'react-dom';
|
|
|
|
|
2016-11-16 17:20:52 +01:00
|
|
|
import { FormattedMessage } from 'react-intl';
|
2023-05-23 17:15:17 +02:00
|
|
|
|
2023-10-19 19:44:55 +02:00
|
|
|
import { withRouter } from 'react-router-dom';
|
2016-10-19 18:20:19 +02:00
|
|
|
|
2023-10-24 19:45:08 +02:00
|
|
|
import { ReactComponent as ArrowBackIcon } from '@material-symbols/svg-600/outlined/arrow_back.svg';
|
|
|
|
|
2023-10-19 19:44:55 +02:00
|
|
|
import { Icon } from 'mastodon/components/icon';
|
|
|
|
import { WithRouterPropTypes } from 'mastodon/utils/react_router';
|
2016-10-19 18:20:19 +02:00
|
|
|
|
2023-10-24 22:43:55 +02:00
|
|
|
export 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-04-23 22:24:53 +02:00
|
|
|
onClick: PropTypes.func,
|
2023-10-19 19:44:55 +02:00
|
|
|
...WithRouterPropTypes,
|
2019-08-01 19:17:17 +02:00
|
|
|
};
|
|
|
|
|
2017-07-31 00:18:15 +02:00
|
|
|
handleClick = () => {
|
2023-10-19 19:44:55 +02:00
|
|
|
const { onClick, history } = this.props;
|
2023-04-23 22:24:53 +02:00
|
|
|
|
|
|
|
if (onClick) {
|
|
|
|
onClick();
|
2023-10-19 19:44:55 +02:00
|
|
|
} else if (history.location?.state?.fromMastodon) {
|
|
|
|
history.goBack();
|
2023-03-04 23:18:19 +01:00
|
|
|
} else {
|
2023-10-19 19:44:55 +02:00
|
|
|
history.push('/');
|
2017-07-29 01:58:53 +02:00
|
|
|
}
|
2023-01-30 01:45:35 +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'>
|
2023-10-24 19:45:08 +02:00
|
|
|
<Icon id='chevron-left' icon={ArrowBackIcon} className='column-back-button__icon' />
|
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);
|