-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathindex.tsx
137 lines (123 loc) · 3.36 KB
/
index.tsx
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
import React, { useEffect, useState } from "react";
import { FloaterPlacement } from "../Floater";
import { Loader } from "../Loader";
import { Tooltip } from "../Tooltip";
import "./styles.scss";
/**
* Including all valid [button attributes](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/button#attributes).
*/
export interface ButtonProps {
/** Variant of the button */
variant:
| "primary"
| "secondary"
| "tertiary"
| "destructive"
| "error"
| "success";
/** Size of the button */
size: "sm" | "md" | "lg";
/** Label of the button */
children?: string | React.ReactNode;
/** Icon element */
icon?: React.ReactNode;
/** Position of the icon @defaultValue `right` */
iconPosition?: "left" | "right";
/** Loading state indicator */
isLoading?: boolean;
/** Sets width of the button to match the parent container */
isFullWidth?: boolean;
/** Show onClick action tooltip @defaultValue `false` */
showActionTooltip?: boolean;
/** Action tooltip text @defaultValue `Done` */
actionTooltipText?: string;
/** Action tooltip placement @defaultValue `bottom` */
actionTooltipPlacement?: FloaterPlacement;
}
interface Props
extends ButtonProps,
React.ButtonHTMLAttributes<HTMLButtonElement> {}
/**
* `Button` is used to trigger an action that is not opening a link (to trigger an action that opens a link, use {@link Link}
* instead).
*/
export const Button: React.FC<Props> = ({
variant,
size,
children,
icon,
iconPosition = "right",
isLoading,
isFullWidth,
showActionTooltip = false,
actionTooltipText = "Done",
actionTooltipPlacement = "bottom",
...props
}) => {
const [isTooltipVisible, setIsTooltipVisible] = useState(false);
useEffect(() => {
if (isTooltipVisible) {
const t = setTimeout(() => {
setIsTooltipVisible(false);
clearTimeout(t);
}, 1000);
}
}, [isTooltipVisible]);
const additionalClasses = [
`Button--${variant}`,
`Button--${size}`,
...(isFullWidth ? [`Button--full-width`] : []),
].join(" ");
const renderIcon = (position: "left" | "right") => {
// By default, show loader on the right side
if (!icon && isLoading && position === "right") {
return <Loader />;
}
// If there is icon, replace icon with loader
if (icon && iconPosition === position) {
if (isLoading) {
return <Loader />;
}
return <span className="Button__icon">{icon}</span>;
}
return null;
};
const renderButton = () => {
return (
<button
className={`Button ${additionalClasses}`}
{...props}
{...(isLoading ? { disabled: true } : {})}
{...(props.onClick
? {
onClick: (event) => {
if (props.onClick) {
props.onClick(event);
if (showActionTooltip) {
setIsTooltipVisible(true);
}
}
},
}
: {})}
>
{renderIcon("left")}
{children ?? null}
{renderIcon("right")}
</button>
);
};
if (showActionTooltip) {
return (
<Tooltip
triggerEl={renderButton()}
isVisible={isTooltipVisible}
placement={actionTooltipPlacement}
>
{actionTooltipText}
</Tooltip>
);
}
return renderButton();
};
Button.displayName = "Button";