about summary refs log tree commit diff
path: root/app/javascript/mastodon/components/button.js
blob: 7612bd2334c936b3cf19c69cf425e6ffa7e5db68 (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
import React from 'react';
import PropTypes from 'prop-types';

class Button extends React.PureComponent {

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

  static defaultProps = {
    size: 36
  };

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

  render () {
    const style = {
      padding: `0 ${this.props.size / 2.25}px`,
      height: `${this.props.size}px`,
      lineHeight: `${this.props.size}px`,
      ...this.props.style
    };

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

}

export default Button;