2016-10-19 16:20:19 +00:00
|
|
|
import PureRenderMixin from 'react-addons-pure-render-mixin';
|
2016-11-16 16:20:52 +00:00
|
|
|
import { FormattedMessage } from 'react-intl';
|
2016-10-19 16:20:19 +00:00
|
|
|
|
|
|
|
const iconStyle = {
|
|
|
|
display: 'inline-block',
|
|
|
|
marginRight: '5px'
|
|
|
|
};
|
|
|
|
|
|
|
|
const ColumnBackButton = React.createClass({
|
|
|
|
|
|
|
|
contextTypes: {
|
|
|
|
router: React.PropTypes.object
|
|
|
|
},
|
|
|
|
|
|
|
|
mixins: [PureRenderMixin],
|
|
|
|
|
|
|
|
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();
|
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>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
export default ColumnBackButton;
|