aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/ui/Button.js
blob: f6c9fd3d30f17829b0f9471ec4e800484cb4c49c (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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
import React, { Component } from 'react';
import PropTypes from 'prop-types';
import { observer, inject } from 'mobx-react';
import Loader from 'react-loader';
import classnames from 'classnames';

@inject('stores')
@observer
class Button extends Component {
  static propTypes = {
    className: PropTypes.string,
    label: PropTypes.string.isRequired,
    disabled: PropTypes.bool,
    onClick: PropTypes.func,
    type: PropTypes.string,
    buttonType: PropTypes.string,
    loaded: PropTypes.bool,
    htmlForm: PropTypes.string,
    stores: PropTypes.shape({
      settings: PropTypes.shape({
        app: PropTypes.shape({
          accentColor: PropTypes.string.isRequired,
        }).isRequired,
      }).isRequired,
    }).isRequired,
  };

  static defaultProps = {
    className: null,
    disabled: false,
    onClick: () => {},
    type: 'button',
    buttonType: '',
    loaded: true,
    htmlForm: '',
  };

  element = null;

  render() {
    const {
      label,
      className,
      disabled,
      onClick,
      type,
      buttonType,
      loaded,
      htmlForm,
    } = this.props;

    const buttonProps = {
      className: classnames({
        'franz-form__button': true,
        [`franz-form__button--${buttonType}`]: buttonType,
        [`${className}`]: className,
      }),
      type,
    };

    if (disabled) {
      buttonProps.disabled = true;
    }

    if (onClick) {
      buttonProps.onClick = onClick;
    }

    if (htmlForm) {
      buttonProps.form = htmlForm;
    }

    return (
      // disabling rule as button has type defined in `buttonProps`
      /* eslint-disable react/button-has-type */
      <button {...buttonProps}>
        <Loader
          loaded={loaded}
          lines={10}
          scale={0.4}
          color={
            buttonType !== 'secondary'
              ? '#FFF'
              : this.props.stores.settings.app.accentColor
          }
          component="span"
        />
        {label}
      </button>
      /* eslint-enable react/button-has-type */
    );
  }
}

export default Button;