2017-05-02 20:04:16 -04:00
|
|
|
import React from 'react';
|
2016-11-16 11:20:52 -05:00
|
|
|
import { FormattedMessage } from 'react-intl';
|
2017-04-21 14:05:35 -04:00
|
|
|
import PropTypes from 'prop-types';
|
2019-01-31 18:14:05 -05:00
|
|
|
import Icon from 'mastodon/components/icon';
|
2016-10-19 12:20:19 -04:00
|
|
|
|
2017-06-23 13:36:54 -04:00
|
|
|
export default class ColumnBackButton extends React.PureComponent {
|
2016-10-19 12:20:19 -04:00
|
|
|
|
2017-05-12 08:44:10 -04:00
|
|
|
static contextTypes = {
|
2017-05-20 11:31:47 -04:00
|
|
|
router: PropTypes.object,
|
2017-05-12 08:44:10 -04:00
|
|
|
};
|
2016-10-19 12:20:19 -04:00
|
|
|
|
2017-07-30 18:18:15 -04:00
|
|
|
handleClick = () => {
|
|
|
|
if (window.history && window.history.length === 1) {
|
|
|
|
this.context.router.history.push('/');
|
|
|
|
} else {
|
|
|
|
this.context.router.history.goBack();
|
2017-07-28 19:58:53 -04:00
|
|
|
}
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|
2016-10-19 12:20:19 -04:00
|
|
|
|
|
|
|
render () {
|
|
|
|
return (
|
2017-07-30 18:18:15 -04:00
|
|
|
<button onClick={this.handleClick} className='column-back-button'>
|
2019-01-31 18:14:05 -05:00
|
|
|
<Icon id='chevron-left' className='column-back-button__icon' fixedWidth />
|
2016-11-16 11:20:52 -05:00
|
|
|
<FormattedMessage id='column_back_button.label' defaultMessage='Back' />
|
2017-07-30 18:18:15 -04:00
|
|
|
</button>
|
2016-10-19 12:20:19 -04:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-05-12 08:44:10 -04:00
|
|
|
}
|