2017-05-03 09:04:16 +09:00
|
|
|
import React from 'react';
|
2016-11-17 01:20:52 +09:00
|
|
|
import { FormattedMessage } from 'react-intl';
|
2017-04-22 03:05:35 +09:00
|
|
|
import PropTypes from 'prop-types';
|
2019-02-01 08:14:05 +09:00
|
|
|
import Icon from 'mastodon/components/icon';
|
2019-08-02 02:17:17 +09:00
|
|
|
import { createPortal } from 'react-dom';
|
2016-10-20 01:20:19 +09:00
|
|
|
|
2017-06-24 02:36:54 +09:00
|
|
|
export default class ColumnBackButton extends React.PureComponent {
|
2016-10-20 01:20:19 +09:00
|
|
|
|
2017-05-12 21:44:10 +09:00
|
|
|
static contextTypes = {
|
2017-05-21 00:31:47 +09:00
|
|
|
router: PropTypes.object,
|
2017-05-12 21:44:10 +09:00
|
|
|
};
|
2016-10-20 01:20:19 +09:00
|
|
|
|
2019-08-02 02:17:17 +09:00
|
|
|
static propTypes = {
|
|
|
|
multiColumn: PropTypes.bool,
|
|
|
|
};
|
|
|
|
|
2017-07-31 07:18:15 +09:00
|
|
|
handleClick = () => {
|
2023-03-05 07:18:19 +09:00
|
|
|
if (window.history && window.history.state) {
|
2017-07-31 07:18:15 +09:00
|
|
|
this.context.router.history.goBack();
|
2023-03-05 07:18:19 +09:00
|
|
|
} else {
|
|
|
|
this.context.router.history.push('/');
|
2017-07-29 08:58:53 +09:00
|
|
|
}
|
2023-01-30 09:45:35 +09:00
|
|
|
};
|
2016-10-20 01:20:19 +09:00
|
|
|
|
|
|
|
render () {
|
2019-08-02 02:17:17 +09:00
|
|
|
const { multiColumn } = this.props;
|
|
|
|
|
|
|
|
const component = (
|
2017-07-31 07:18:15 +09:00
|
|
|
<button onClick={this.handleClick} className='column-back-button'>
|
2019-02-01 08:14:05 +09:00
|
|
|
<Icon id='chevron-left' className='column-back-button__icon' fixedWidth />
|
2016-11-17 01:20:52 +09:00
|
|
|
<FormattedMessage id='column_back_button.label' defaultMessage='Back' />
|
2017-07-31 07:18:15 +09:00
|
|
|
</button>
|
2016-10-20 01:20:19 +09:00
|
|
|
);
|
2019-08-02 02:17:17 +09:00
|
|
|
|
|
|
|
if (multiColumn) {
|
|
|
|
return component;
|
|
|
|
} else {
|
2019-08-25 22:49:02 +09: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 02:17:17 +09:00
|
|
|
}
|
2016-10-20 01:20:19 +09:00
|
|
|
}
|
|
|
|
|
2017-05-12 21:44:10 +09:00
|
|
|
}
|