2017-05-03 09:04:16 +09:00
|
|
|
import React from 'react';
|
2016-11-17 01:20:52 +09:00
|
|
|
import { FormattedMessage } from 'react-intl';
|
2017-04-22 03:05:35 +09:00
|
|
|
import PropTypes from 'prop-types';
|
2016-10-20 01:20:19 +09:00
|
|
|
|
2017-04-22 03:05:35 +09:00
|
|
|
class ColumnBackButton extends React.PureComponent {
|
2016-10-20 01:20:19 +09:00
|
|
|
|
2017-05-12 21:44:10 +09:00
|
|
|
static contextTypes = {
|
2017-05-21 00:31:47 +09:00
|
|
|
router: PropTypes.object,
|
2017-05-12 21:44:10 +09:00
|
|
|
};
|
2016-10-20 01:20:19 +09:00
|
|
|
|
2017-05-12 21:44:10 +09:00
|
|
|
handleClick = () => {
|
2017-04-15 20:27:27 +09:00
|
|
|
if (window.history && window.history.length === 1) this.context.router.push("/");
|
2017-03-01 15:24:34 +09:00
|
|
|
else this.context.router.goBack();
|
2017-04-22 03:05:35 +09:00
|
|
|
}
|
2016-10-20 01:20:19 +09:00
|
|
|
|
|
|
|
render () {
|
|
|
|
return (
|
2017-04-15 20:27:27 +09:00
|
|
|
<div role='button' tabIndex='0' onClick={this.handleClick} className='column-back-button'>
|
2017-04-23 11:26:55 +09:00
|
|
|
<i className='fa fa-fw fa-chevron-left column-back-button__icon'/>
|
2016-11-17 01:20:52 +09:00
|
|
|
<FormattedMessage id='column_back_button.label' defaultMessage='Back' />
|
2016-10-20 01:20:19 +09:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-05-12 21:44:10 +09:00
|
|
|
}
|
2016-10-20 01:20:19 +09:00
|
|
|
|
|
|
|
export default ColumnBackButton;
|