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