2023-05-28 14:38:10 +00:00
|
|
|
import PropTypes from 'prop-types';
|
2023-05-28 12:18:23 +00:00
|
|
|
import { PureComponent } from 'react';
|
2023-05-28 14:38:10 +00:00
|
|
|
|
2017-01-03 00:15:42 +00:00
|
|
|
import { FormattedMessage } from 'react-intl';
|
2023-05-28 14:38:10 +00:00
|
|
|
|
2023-05-09 01:11:56 +00:00
|
|
|
import { Icon } from 'flavours/glitch/components/icon';
|
2017-01-03 00:15:42 +00:00
|
|
|
|
2023-05-28 12:18:23 +00:00
|
|
|
export default class ColumnBackButtonSlim extends PureComponent {
|
2017-01-03 00:15:42 +00:00
|
|
|
|
2017-05-12 12:44:10 +00:00
|
|
|
static contextTypes = {
|
2017-05-20 15:31:47 +00:00
|
|
|
router: PropTypes.object,
|
2017-05-12 12:44:10 +00:00
|
|
|
};
|
2017-01-03 00:15:42 +00:00
|
|
|
|
2023-05-25 17:14:51 +00:00
|
|
|
handleClick = () => {
|
|
|
|
const { router } = this.context;
|
|
|
|
|
|
|
|
// Check if there is a previous page in the app to go back to per https://stackoverflow.com/a/70532858/9703201
|
|
|
|
// When upgrading to V6, check `location.key !== 'default'` instead per https://github.com/remix-run/history/blob/main/docs/api-reference.md#location
|
|
|
|
if (router.route.location.key) {
|
|
|
|
router.history.goBack();
|
2018-05-23 12:17:05 +00:00
|
|
|
} else {
|
2023-05-25 17:14:51 +00:00
|
|
|
router.history.push('/');
|
2017-07-07 06:27:52 +00:00
|
|
|
}
|
2023-02-03 19:52:07 +00:00
|
|
|
};
|
2017-01-03 00:15:42 +00:00
|
|
|
|
|
|
|
render () {
|
|
|
|
return (
|
2017-04-23 02:26:55 +00:00
|
|
|
<div className='column-back-button--slim'>
|
2023-04-04 14:33:44 +00:00
|
|
|
<div role='button' tabIndex={0} onClick={this.handleClick} className='column-back-button column-back-button--slim-button'>
|
2019-09-09 14:41:41 +00:00
|
|
|
<Icon id='chevron-left' className='column-back-button__icon' fixedWidth />
|
2017-01-03 00:15:42 +00:00
|
|
|
<FormattedMessage id='column_back_button.label' defaultMessage='Back' />
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
2017-05-20 15:31:47 +00:00
|
|
|
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|