2017-05-03 02:04:16 +02:00
|
|
|
import React from 'react';
|
2016-11-16 17:20:52 +01:00
|
|
|
import { FormattedMessage } from 'react-intl';
|
2017-04-21 20:05:35 +02:00
|
|
|
import PropTypes from 'prop-types';
|
2016-10-19 18:20:19 +02:00
|
|
|
|
2017-06-23 19:36:54 +02:00
|
|
|
export default class ColumnBackButton extends React.PureComponent {
|
2016-10-19 18:20:19 +02:00
|
|
|
|
2017-05-12 14:44:10 +02:00
|
|
|
static contextTypes = {
|
2017-05-20 17:31:47 +02:00
|
|
|
router: PropTypes.object,
|
2017-05-12 14:44:10 +02:00
|
|
|
};
|
2016-10-19 18:20:19 +02:00
|
|
|
|
2017-05-12 14:44:10 +02:00
|
|
|
handleClick = () => {
|
2017-07-07 08:27:52 +02:00
|
|
|
// if history is exhausted, or we would leave mastodon, just go to root.
|
|
|
|
if (window.history && (window.history.length === 1 || window.history.length === window._mastoInitialHistoryLen)) {
|
|
|
|
this.context.router.history.push('/');
|
|
|
|
} else {
|
|
|
|
this.context.router.history.goBack();
|
|
|
|
}
|
2017-04-21 20:05:35 +02:00
|
|
|
}
|
2016-10-19 18:20:19 +02:00
|
|
|
|
|
|
|
render () {
|
|
|
|
return (
|
2017-07-31 00:18:15 +02:00
|
|
|
<button onClick={this.handleClick} className='column-back-button'>
|
2017-06-06 13:20:07 +02:00
|
|
|
<i className='fa fa-fw fa-chevron-left 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
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-05-12 14:44:10 +02:00
|
|
|
}
|