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-04-21 19:05:35 +01:00
|
|
|
class ColumnBackButton extends React.PureComponent {
|
2016-10-19 17:20:19 +01:00
|
|
|
|
2017-04-21 19:05:35 +01:00
|
|
|
constructor (props, context) {
|
|
|
|
super(props, context);
|
|
|
|
this.handleClick = this.handleClick.bind(this);
|
|
|
|
}
|
2016-10-19 17:20:19 +01:00
|
|
|
|
|
|
|
handleClick () {
|
2017-04-15 12:27:27 +01: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 19:05:35 +01:00
|
|
|
}
|
2016-10-19 17:20:19 +01:00
|
|
|
|
|
|
|
render () {
|
|
|
|
return (
|
2017-04-15 12:27:27 +01:00
|
|
|
<div role='button' tabIndex='0' onClick={this.handleClick} className='column-back-button'>
|
2017-04-23 03:26:55 +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' />
|
2016-10-19 17:20:19 +01:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-04-21 19:05:35 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
ColumnBackButton.contextTypes = {
|
|
|
|
router: PropTypes.object
|
|
|
|
};
|
2016-10-19 17:20:19 +01:00
|
|
|
|
|
|
|
export default ColumnBackButton;
|