2017-05-03 10:04:16 +10:00
|
|
|
import React from 'react';
|
2016-11-17 03:20:52 +11:00
|
|
|
import { FormattedMessage } from 'react-intl';
|
2017-04-22 04:05:35 +10:00
|
|
|
import PropTypes from 'prop-types';
|
2023-05-09 11:11:56 +10:00
|
|
|
import { Icon } from 'mastodon/components/icon';
|
2019-08-02 03:17:17 +10:00
|
|
|
import { createPortal } from 'react-dom';
|
2016-10-20 03:20:19 +11:00
|
|
|
|
2017-06-24 03:36:54 +10:00
|
|
|
export default class ColumnBackButton extends React.PureComponent {
|
2016-10-20 03:20:19 +11:00
|
|
|
|
2017-05-12 22:44:10 +10:00
|
|
|
static contextTypes = {
|
2017-05-21 01:31:47 +10:00
|
|
|
router: PropTypes.object,
|
2017-05-12 22:44:10 +10:00
|
|
|
};
|
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,
|
2019-08-02 03:17:17 +10:00
|
|
|
};
|
|
|
|
|
2017-07-31 08:18:15 +10:00
|
|
|
handleClick = () => {
|
2023-04-24 06:24:53 +10:00
|
|
|
const { router } = this.context;
|
|
|
|
const { onClick } = this.props;
|
|
|
|
|
|
|
|
if (onClick) {
|
|
|
|
onClick();
|
2023-05-04 16:14:04 +10:00
|
|
|
// Check if there is a previous page in the app to go back to per https://stackoverflow.com/a/70532858/9703201
|
|
|
|
// When upgrading to V6, check `location.key !== 'default'` instead per https://github.com/remix-run/history/blob/main/docs/api-reference.md#location
|
2023-05-05 23:13:28 +10:00
|
|
|
} else if (router.route.location.key) {
|
2023-04-24 06:24:53 +10:00
|
|
|
router.history.goBack();
|
2023-03-05 09:18:19 +11:00
|
|
|
} else {
|
2023-04-24 06:24:53 +10:00
|
|
|
router.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'>
|
2019-02-01 10:14:05 +11:00
|
|
|
<Icon id='chevron-left' className='column-back-button__icon' fixedWidth />
|
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
|
|
|
}
|