2016-11-16 16:20:52 +00:00
|
|
|
import { FormattedMessage } from 'react-intl';
|
2017-04-21 18:05:35 +00:00
|
|
|
import PropTypes from 'prop-types';
|
2016-10-19 16:20:19 +00:00
|
|
|
|
|
|
|
const iconStyle = {
|
|
|
|
display: 'inline-block',
|
|
|
|
marginRight: '5px'
|
|
|
|
};
|
|
|
|
|
2017-04-21 18:05:35 +00:00
|
|
|
class ColumnBackButton extends React.PureComponent {
|
2016-10-19 16:20:19 +00:00
|
|
|
|
2017-04-21 18:05:35 +00:00
|
|
|
constructor (props, context) {
|
|
|
|
super(props, context);
|
|
|
|
this.handleClick = this.handleClick.bind(this);
|
|
|
|
}
|
2016-10-19 16:20:19 +00:00
|
|
|
|
|
|
|
handleClick () {
|
2017-04-15 11:27:27 +00:00
|
|
|
if (window.history && window.history.length === 1) this.context.router.push("/");
|
2017-03-01 06:24:34 +00:00
|
|
|
else this.context.router.goBack();
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|
2016-10-19 16:20:19 +00:00
|
|
|
|
|
|
|
render () {
|
|
|
|
return (
|
2017-04-15 11:27:27 +00:00
|
|
|
<div role='button' tabIndex='0' onClick={this.handleClick} className='column-back-button'>
|
2016-10-19 16:20:19 +00:00
|
|
|
<i className='fa fa-fw fa-chevron-left' style={iconStyle} />
|
2016-11-16 16:20:52 +00:00
|
|
|
<FormattedMessage id='column_back_button.label' defaultMessage='Back' />
|
2016-10-19 16:20:19 +00:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-04-21 18:05:35 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
ColumnBackButton.contextTypes = {
|
|
|
|
router: PropTypes.object
|
|
|
|
};
|
2016-10-19 16:20:19 +00:00
|
|
|
|
|
|
|
export default ColumnBackButton;
|