blob: ae5b33a7df543670afcc558b5403b17e9112e5bf (
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
|
/*
* This file is part of caronte (https://github.com/eciavatta/caronte).
* Copyright (c) 2020 Emiliano Ciavatta.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, version 3.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
import React, { Component } from "react";
import "./ButtonField.scss";
import "./common.scss";
import classNames from "classnames";
class ButtonField extends Component {
render() {
const handler = () => {
if (typeof this.props.onClick === "function") {
this.props.onClick();
}
};
let buttonClassnames = {
"button-bordered": this.props.bordered,
};
if (this.props.variant) {
buttonClassnames[`button-variant-${this.props.variant}`] = true;
}
let buttonStyle = {};
if (this.props.color) {
buttonStyle["backgroundColor"] = this.props.color;
}
if (this.props.border) {
buttonStyle["borderColor"] = this.props.border;
}
if (this.props.fullSpan) {
buttonStyle["width"] = "100%";
}
if (this.props.rounded) {
buttonStyle["borderRadius"] = "3px";
}
if (this.props.inline) {
buttonStyle["marginTop"] = "8px";
}
return (
<div
className={classNames(
"field",
"button-field",
{ "field-small": this.props.small },
{ "field-active": this.props.active }
)}
>
<button
type="button"
className={classNames(buttonClassnames)}
onClick={handler}
style={buttonStyle}
disabled={this.props.disabled}
>
{this.props.name}
</button>
</div>
);
}
}
export default ButtonField;
|