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