2023-05-28 21:18:23 +09:00
|
|
|
import { PureComponent } from 'react';
|
2023-05-28 23:38:10 +09:00
|
|
|
|
2017-01-03 09:15:42 +09:00
|
|
|
import { FormattedMessage } from 'react-intl';
|
2023-05-28 23:38:10 +09:00
|
|
|
|
2023-10-20 02:44:55 +09:00
|
|
|
import { withRouter } from 'react-router-dom';
|
|
|
|
|
2023-05-09 10:11:56 +09:00
|
|
|
import { Icon } from 'flavours/glitch/components/icon';
|
2023-10-20 02:44:55 +09:00
|
|
|
import { WithRouterPropTypes } from 'flavours/glitch/utils/react_router';
|
2017-01-03 09:15:42 +09:00
|
|
|
|
2023-10-20 02:44:55 +09:00
|
|
|
class ColumnBackButtonSlim extends PureComponent {
|
2017-01-03 09:15:42 +09:00
|
|
|
|
2023-10-20 02:44:55 +09:00
|
|
|
static propTypes = {
|
|
|
|
...WithRouterPropTypes,
|
2017-05-12 21:44:10 +09:00
|
|
|
};
|
2017-01-03 09:15:42 +09:00
|
|
|
|
2023-05-26 02:14:51 +09:00
|
|
|
handleClick = () => {
|
2023-10-20 02:44:55 +09:00
|
|
|
const { location, history } = this.props;
|
2023-05-26 02:14:51 +09:00
|
|
|
|
|
|
|
// 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
|
2023-10-20 02:44:55 +09:00
|
|
|
if (location.key) {
|
|
|
|
history.goBack();
|
2018-05-23 21:17:05 +09:00
|
|
|
} else {
|
2023-10-20 02:44:55 +09:00
|
|
|
history.push('/');
|
2017-07-07 15:27:52 +09:00
|
|
|
}
|
2023-02-04 04:52:07 +09:00
|
|
|
};
|
2017-01-03 09:15:42 +09:00
|
|
|
|
|
|
|
render () {
|
|
|
|
return (
|
2017-04-23 11:26:55 +09:00
|
|
|
<div className='column-back-button--slim'>
|
2023-04-04 23:33:44 +09:00
|
|
|
<div role='button' tabIndex={0} onClick={this.handleClick} className='column-back-button column-back-button--slim-button'>
|
2019-09-09 23:41:41 +09:00
|
|
|
<Icon id='chevron-left' className='column-back-button__icon' fixedWidth />
|
2017-01-03 09:15:42 +09:00
|
|
|
<FormattedMessage id='column_back_button.label' defaultMessage='Back' />
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
2017-04-22 03:05:35 +09:00
|
|
|
}
|
2023-10-20 02:44:55 +09:00
|
|
|
|
|
|
|
export default withRouter(ColumnBackButtonSlim);
|