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-05-09 11:11:56 +10:00
|
|
|
import { Icon } from 'mastodon/components/icon';
|
2016-10-20 03:20:19 +11:00
|
|
|
|
2023-05-23 18:52:27 +10:00
|
|
|
export default class ColumnBackButton extends 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-07-18 01:32:46 +10:00
|
|
|
} else if (router.history.location?.state?.fromMastodon) {
|
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
|
|
|
}
|