2017-05-03 02:04:16 +02:00
|
|
|
import React from 'react';
|
2017-01-03 01:15:42 +01:00
|
|
|
import { FormattedMessage } from 'react-intl';
|
2017-04-21 20:05:35 +02:00
|
|
|
import PropTypes from 'prop-types';
|
2019-09-30 15:22:28 +02:00
|
|
|
import Icon from 'flavours/glitch/components/icon';
|
2017-01-03 01:15:42 +01:00
|
|
|
|
2017-06-23 19:36:54 +02:00
|
|
|
export default class ColumnBackButtonSlim extends React.PureComponent {
|
2017-01-03 01:15:42 +01: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
|
|
|
};
|
2017-01-03 01:15:42 +01:00
|
|
|
|
2019-04-15 22:23:05 +02:00
|
|
|
handleClick = (event) => {
|
2017-07-07 08:27:52 +02:00
|
|
|
// if history is exhausted, or we would leave mastodon, just go to root.
|
2018-05-23 14:17:05 +02:00
|
|
|
if (window.history.state) {
|
2019-04-15 22:23:05 +02:00
|
|
|
const state = this.context.router.history.location.state;
|
|
|
|
if (event.shiftKey && state && state.mastodonBackSteps) {
|
|
|
|
this.context.router.history.go(-state.mastodonBackSteps);
|
|
|
|
} else {
|
|
|
|
this.context.router.history.goBack();
|
|
|
|
}
|
2018-05-23 14:17:05 +02:00
|
|
|
} else {
|
|
|
|
this.context.router.history.push('/');
|
2017-07-07 08:27:52 +02:00
|
|
|
}
|
2017-04-21 20:05:35 +02:00
|
|
|
}
|
2017-01-03 01:15:42 +01:00
|
|
|
|
|
|
|
render () {
|
|
|
|
return (
|
2017-04-23 04:26:55 +02:00
|
|
|
<div className='column-back-button--slim'>
|
2017-04-23 14:18:58 +02:00
|
|
|
<div role='button' tabIndex='0' onClick={this.handleClick} className='column-back-button column-back-button--slim-button'>
|
2019-09-09 16:41:41 +02:00
|
|
|
<Icon id='chevron-left' className='column-back-button__icon' fixedWidth />
|
2017-01-03 01:15:42 +01:00
|
|
|
<FormattedMessage id='column_back_button.label' defaultMessage='Back' />
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
2017-05-20 17:31:47 +02:00
|
|
|
|
2017-04-21 20:05:35 +02:00
|
|
|
}
|