about summary refs log tree commit diff
path: root/app/assets/javascripts/components/components/button.jsx
blob: 6c3da10fe1034486ec78ab0852ba4808f1480e1f (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
import PureRenderMixin from 'react-addons-pure-render-mixin';

const Button = React.createClass({

  propTypes: {
    text: React.PropTypes.node,
    onClick: React.PropTypes.func,
    disabled: React.PropTypes.bool,
    block: React.PropTypes.bool,
    secondary: React.PropTypes.bool,
    size: React.PropTypes.number,
    style: React.PropTypes.object,
    children: React.PropTypes.node
  },

  getDefaultProps () {
    return {
      size: 36
    };
  },

  mixins: [PureRenderMixin],

  handleClick (e) {
    if (!this.props.disabled) {
      this.props.onClick();
    }
  },

  render () {
    const style = {
      fontFamily: 'inherit',
      display: this.props.block ? 'block' : 'inline-block',
      width: this.props.block ? '100%' : 'auto',
      position: 'relative',
      boxSizing: 'border-box',
      textAlign: 'center',
      border: '10px none',
      fontSize: '14px',
      fontWeight: '500',
      letterSpacing: '0',
      padding: `0 ${this.props.size / 2.25}px`,
      height: `${this.props.size}px`,
      cursor: 'pointer',
      lineHeight: `${this.props.size}px`,
      borderRadius: '4px',
      textDecoration: 'none',
      whiteSpace: 'nowrap',
      textOverflow: 'ellipsis',
      overflow: 'hidden'
    };

    return (
      <button className={`button ${this.props.secondary ? 'button-secondary' : ''}`} disabled={this.props.disabled} onClick={this.handleClick} style={{ ...style, ...this.props.style }}>
        {this.props.text || this.props.children}
      </button>
    );
  }

});

export default Button;