You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
811 B

  1. import { FormattedMessage } from 'react-intl';
  2. import PropTypes from 'prop-types';
  3. class ColumnBackButton extends React.PureComponent {
  4. constructor (props, context) {
  5. super(props, context);
  6. this.handleClick = this.handleClick.bind(this);
  7. }
  8. handleClick () {
  9. if (window.history && window.history.length === 1) this.context.router.push("/");
  10. else this.context.router.goBack();
  11. }
  12. render () {
  13. return (
  14. <div role='button' tabIndex='0' onClick={this.handleClick} className='column-back-button'>
  15. <i className='fa fa-fw fa-chevron-left column-back-button__icon'/>
  16. <FormattedMessage id='column_back_button.label' defaultMessage='Back' />
  17. </div>
  18. );
  19. }
  20. };
  21. ColumnBackButton.contextTypes = {
  22. router: PropTypes.object
  23. };
  24. export default ColumnBackButton;