about summary refs log tree commit diff
path: root/app/assets/javascripts/components/components/column_back_button.jsx
blob: 6b5ffee53f7ed40af7e8d48f32dc4599b04a1426 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
import PureRenderMixin from 'react-addons-pure-render-mixin';
import { FormattedMessage } from 'react-intl';

const iconStyle = {
  display: 'inline-block',
  marginRight: '5px'
};

const ColumnBackButton = React.createClass({

  contextTypes: {
    router: React.PropTypes.object
  },

  mixins: [PureRenderMixin],

  handleClick () {
    if (window.history && window.history.length == 1) this.context.router.push("/");
    else this.context.router.goBack();
  },

  render () {
    return (
      <div onClick={this.handleClick} className='column-back-button'>
        <i className='fa fa-fw fa-chevron-left' style={iconStyle} />
        <FormattedMessage id='column_back_button.label' defaultMessage='Back' />
      </div>
    );
  }

});

export default ColumnBackButton;