about summary refs log tree commit diff
path: root/app/assets/javascripts/components/components/icon_button.jsx
blob: a08b1159b16030348b3a73cff77216dbbbee3c8d (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
63
64
65
66
67
68
69
import PureRenderMixin from 'react-addons-pure-render-mixin';
import { Motion, spring } from 'react-motion';

const IconButton = React.createClass({

  propTypes: {
    title: React.PropTypes.string.isRequired,
    icon: React.PropTypes.string.isRequired,
    onClick: React.PropTypes.func,
    size: React.PropTypes.number,
    active: React.PropTypes.bool,
    style: React.PropTypes.object,
    activeStyle: React.PropTypes.object,
    disabled: React.PropTypes.bool,
    inverted: React.PropTypes.bool,
    animate: React.PropTypes.bool
  },

  getDefaultProps () {
    return {
      size: 18,
      active: false,
      disabled: false,
      animate: false
    };
  },

  mixins: [PureRenderMixin],

  handleClick (e) {
    e.preventDefault();

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

  render () {
    let style = {
      fontSize: `${this.props.size}px`,
      width: `${this.props.size * 1.28571429}px`,
      height: `${this.props.size}px`,
      lineHeight: `${this.props.size}px`,
      ...this.props.style
    };

    if (this.props.active) {
      style = { ...style, ...this.props.activeStyle };
    }

    return (
      <Motion defaultStyle={{ rotate: this.props.active ? -360 : 0 }} style={{ rotate: this.props.animate ? spring(this.props.active ? -360 : 0, { stiffness: 120, damping: 7 }) : 0 }}>
        {({ rotate }) =>
          <button
            aria-label={this.props.title}
            title={this.props.title}
            className={`icon-button ${this.props.active ? 'active' : ''} ${this.props.disabled ? 'disabled' : ''} ${this.props.inverted ? 'inverted' : ''}`}
            onClick={this.handleClick}
            style={style}>
            <i style={{ transform: `rotate(${rotate}deg)` }} className={`fa fa-fw fa-${this.props.icon}`} aria-hidden='true' />
          </button>
        }
      </Motion>
    );
  }

});

export default IconButton;