-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathButton.tsx
More file actions
72 lines (67 loc) · 1.49 KB
/
Button.tsx
File metadata and controls
72 lines (67 loc) · 1.49 KB
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
/*
* Copyright (c) 2019-2026 by Brockmann Consult Development team
* Permissions are hereby granted under the terms of the MIT License:
* https://opensource.org/licenses/MIT.
*/
import { type MouseEvent } from "react";
import MuiButton from "@mui/material/Button";
import type { ComponentProps, ComponentState } from "@/index";
import { Tooltip } from "./Tooltip";
import { Icon } from "./Icon";
interface ButtonState extends ComponentState {
text?: string;
startIcon?: string;
endIcon?: string;
variant?: "contained" | "outlined" | "text";
color?:
| "inherit"
| "primary"
| "secondary"
| "success"
| "error"
| "info"
| "warning";
}
export interface ButtonProps extends ComponentProps, ButtonState {}
export function Button({
type,
id,
name,
style,
variant,
color,
disabled,
text,
startIcon,
endIcon,
tooltip,
onChange,
}: ButtonProps) {
const handleClick = (_event: MouseEvent<HTMLButtonElement>) => {
if (id) {
onChange({
componentType: type,
id: id,
property: "clicked",
value: true,
});
}
};
return (
<Tooltip title={tooltip}>
<MuiButton
id={id}
name={name}
style={style}
variant={variant}
color={color}
disabled={disabled}
startIcon={startIcon && <Icon iconName={startIcon} />}
endIcon={endIcon && <Icon iconName={endIcon} />}
onClick={handleClick}
>
{text}
</MuiButton>
</Tooltip>
);
}