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