2022-11-22 17:07:55 +00:00
|
|
|
import { cva, VariantProps } from "class-variance-authority";
|
2022-07-23 00:39:50 +00:00
|
|
|
import Link, { LinkProps } from "next/link";
|
|
|
|
import React, { forwardRef } from "react";
|
|
|
|
|
|
|
|
import classNames from "@calcom/lib/classNames";
|
2022-11-22 17:07:55 +00:00
|
|
|
import { applyStyleToMultipleVariants } from "@calcom/lib/cva";
|
2022-12-18 10:44:44 +00:00
|
|
|
import { SVGComponent } from "@calcom/types/SVGComponent";
|
2023-01-26 22:51:03 +00:00
|
|
|
|
|
|
|
import { FiPlus } from "../icon";
|
|
|
|
import { Tooltip } from "../tooltip";
|
2022-07-23 00:39:50 +00:00
|
|
|
|
2022-11-23 02:55:25 +00:00
|
|
|
type InferredVariantProps = VariantProps<typeof buttonClasses>;
|
|
|
|
|
2023-01-17 17:12:22 +00:00
|
|
|
export type ButtonColor = NonNullable<InferredVariantProps["color"]>;
|
2022-07-23 00:39:50 +00:00
|
|
|
export type ButtonBaseProps = {
|
|
|
|
/** Action that happens when the button is clicked */
|
|
|
|
onClick?: (event: React.MouseEvent<HTMLElement, MouseEvent>) => void;
|
|
|
|
/**Left aligned icon*/
|
2022-12-18 10:44:44 +00:00
|
|
|
StartIcon?: SVGComponent | React.ElementType;
|
2022-07-23 00:39:50 +00:00
|
|
|
/**Right aligned icon */
|
2022-12-18 10:44:44 +00:00
|
|
|
EndIcon?: SVGComponent;
|
2022-07-23 00:39:50 +00:00
|
|
|
shallow?: boolean;
|
|
|
|
/**Tool tip used when icon size is set to small */
|
|
|
|
tooltip?: string;
|
2022-08-03 16:01:29 +00:00
|
|
|
flex?: boolean;
|
2022-11-23 02:55:25 +00:00
|
|
|
} & Omit<InferredVariantProps, "color"> & {
|
2023-01-17 17:12:22 +00:00
|
|
|
color?: ButtonColor;
|
2022-11-23 02:55:25 +00:00
|
|
|
};
|
2022-11-22 17:07:55 +00:00
|
|
|
|
2022-07-23 00:39:50 +00:00
|
|
|
export type ButtonProps = ButtonBaseProps &
|
|
|
|
(
|
2022-09-02 19:00:41 +00:00
|
|
|
| (Omit<JSX.IntrinsicElements["a"], "href" | "onClick" | "ref"> & LinkProps)
|
|
|
|
| (Omit<JSX.IntrinsicElements["button"], "onClick" | "ref"> & { href?: never })
|
2022-07-23 00:39:50 +00:00
|
|
|
);
|
|
|
|
|
2022-11-22 17:07:55 +00:00
|
|
|
const buttonClasses = cva(
|
|
|
|
"inline-flex items-center text-sm font-medium relative rounded-md transition-colors",
|
|
|
|
{
|
|
|
|
variants: {
|
2023-01-19 14:55:32 +00:00
|
|
|
variant: {
|
|
|
|
button: "",
|
|
|
|
icon: "flex justify-center",
|
2023-02-02 08:24:31 +00:00
|
|
|
fab: "rounded-full justify-center md:rounded-md radix-state-open:rotate-45 md:radix-state-open:rotate-0 transition-transform radix-state-open:shadown-none radix-state-open:ring-0 !shadow-none",
|
2023-01-19 14:55:32 +00:00
|
|
|
},
|
2022-11-22 17:07:55 +00:00
|
|
|
color: {
|
|
|
|
primary: "text-white dark:text-black",
|
2023-01-12 21:09:12 +00:00
|
|
|
secondary: "text-gray-900 dark:text-darkgray-900",
|
2022-11-22 17:07:55 +00:00
|
|
|
minimal: "text-gray-900 dark:text-darkgray-900",
|
|
|
|
destructive: "",
|
|
|
|
},
|
|
|
|
size: {
|
2022-11-23 02:55:25 +00:00
|
|
|
sm: "px-3 py-2 leading-4 rounded-sm" /** For backwards compatibility */,
|
|
|
|
base: "h-9 px-4 py-2.5 ",
|
2022-11-22 17:07:55 +00:00
|
|
|
lg: "h-[36px] px-4 py-2.5 ",
|
|
|
|
},
|
|
|
|
loading: {
|
|
|
|
true: "cursor-wait",
|
|
|
|
},
|
|
|
|
disabled: {
|
|
|
|
true: "cursor-not-allowed",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
compoundVariants: [
|
|
|
|
// Primary variants
|
|
|
|
{
|
|
|
|
disabled: true,
|
|
|
|
color: "primary",
|
|
|
|
className: "bg-gray-800 bg-opacity-30 dark:bg-opacity-30 dark:bg-darkgray-800",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
loading: true,
|
|
|
|
color: "primary",
|
|
|
|
className: "bg-gray-800/30 text-white/30 dark:bg-opacity-30 dark:bg-darkgray-700 dark:text-black/30",
|
|
|
|
},
|
|
|
|
...applyStyleToMultipleVariants({
|
|
|
|
disabled: [undefined, false],
|
|
|
|
color: "primary",
|
|
|
|
className:
|
2023-01-21 16:07:30 +00:00
|
|
|
"bg-brand-500 hover:bg-brand-400 focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-offset focus-visible:ring-brand-500 dark:hover:bg-darkgray-600 dark:bg-darkgray-900",
|
2022-11-22 17:07:55 +00:00
|
|
|
}),
|
|
|
|
// Secondary variants
|
|
|
|
{
|
|
|
|
disabled: true,
|
|
|
|
color: "secondary",
|
|
|
|
className:
|
2023-01-12 21:09:12 +00:00
|
|
|
"border border-gray-200 bg-opacity-30 text-gray-900/30 dark:text-darkgray-900/30 dark:border-darkgray-200",
|
2022-11-22 17:07:55 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
loading: true,
|
|
|
|
color: "secondary",
|
|
|
|
className:
|
|
|
|
"bg-gray-100 text-gray-900/30 dark:bg-darkgray-100 dark:text-darkgray-900/30 dark:border-darkgray-200",
|
|
|
|
},
|
|
|
|
...applyStyleToMultipleVariants({
|
|
|
|
disabled: [undefined, false],
|
|
|
|
color: "secondary",
|
|
|
|
className:
|
2023-01-21 16:07:30 +00:00
|
|
|
"border border-gray-300 dark:border-darkgray-300 bg-white dark:bg-darkgray-100 hover:bg-gray-50 hover:border-gray-400 focus-visible:bg-gray-100 dark:hover:bg-darkgray-200 dark:focus-visible:bg-darkgray-200 focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-offset focus-visible:ring-gray-900 dark:focus-visible:ring-white",
|
2022-11-22 17:07:55 +00:00
|
|
|
}),
|
|
|
|
// Minimal variants
|
|
|
|
{
|
|
|
|
disabled: true,
|
|
|
|
color: "minimal",
|
|
|
|
className:
|
|
|
|
"border:gray-200 bg-opacity-30 text-gray-900/30 dark:bg-darkgray-100 dark:text-darkgray-900/30 dark:border-darkgray-200",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
loading: true,
|
|
|
|
color: "minimal",
|
|
|
|
className:
|
|
|
|
"bg-gray-100 text-gray-900/30 dark:bg-darkgray-100 dark:text-darkgray-900/30 dark:border-darkgray-200",
|
|
|
|
},
|
2022-11-30 16:13:20 +00:00
|
|
|
...applyStyleToMultipleVariants({
|
2022-11-22 17:07:55 +00:00
|
|
|
disabled: [undefined, false],
|
|
|
|
color: "minimal",
|
|
|
|
className:
|
2023-01-21 16:07:30 +00:00
|
|
|
"hover:bg-gray-100 focus-visible:bg-gray-100 dark:hover:bg-darkgray-200 dark:focus-visible:bg-darkgray-200 focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-offset focus-visible:ring-gray-900 dark:focus-visible:ring-white",
|
2022-11-22 17:07:55 +00:00
|
|
|
}),
|
|
|
|
// Destructive variants
|
|
|
|
{
|
|
|
|
disabled: true,
|
|
|
|
color: "destructive",
|
|
|
|
className:
|
|
|
|
"text-red-700/30 dark:text-red-700/30 bg-red-100/40 dark:bg-red-100/80 border border-red-200",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
loading: true,
|
|
|
|
color: "destructive",
|
|
|
|
className:
|
|
|
|
"text-red-700/30 dark:text-red-700/30 hover:text-red-700/30 bg-red-100 border border-red-200",
|
|
|
|
},
|
|
|
|
...applyStyleToMultipleVariants({
|
|
|
|
disabled: [false, undefined],
|
|
|
|
color: "destructive",
|
|
|
|
className:
|
2023-01-21 16:07:30 +00:00
|
|
|
"border dark:text-white text-gray-900 hover:text-red-700 focus-visible:text-red-700 dark:hover:text-red-700 dark:focus-visible:text-red-700 hover:border-red-100 focus-visible:border-red-100 hover:bg-red-100 focus-visible:bg-red-100 focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-offset focus-visible:ring-red-700",
|
2022-11-22 17:07:55 +00:00
|
|
|
}),
|
2023-01-19 14:55:32 +00:00
|
|
|
// https://github.com/joe-bell/cva/issues/95 created an issue about using !p-2 on the icon variants as i would expect this to take priority
|
|
|
|
{
|
|
|
|
variant: "icon",
|
|
|
|
size: "base",
|
|
|
|
className: "min-h-[36px] min-w-[36px] !p-2",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
variant: "icon",
|
|
|
|
size: "sm",
|
|
|
|
className: "h-6 w-6 !p-1",
|
|
|
|
},
|
2023-01-21 16:14:08 +00:00
|
|
|
{
|
|
|
|
variant: "fab",
|
|
|
|
size: "base",
|
2023-02-02 08:24:31 +00:00
|
|
|
className: "h-14 md:h-9 md:w-auto md:px-4 md:py-2.5",
|
2023-01-21 16:14:08 +00:00
|
|
|
},
|
2022-11-22 17:07:55 +00:00
|
|
|
],
|
|
|
|
defaultVariants: {
|
2023-01-19 14:55:32 +00:00
|
|
|
variant: "button",
|
2022-11-22 17:07:55 +00:00
|
|
|
color: "primary",
|
|
|
|
size: "base",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
);
|
2022-07-23 00:39:50 +00:00
|
|
|
|
|
|
|
export const Button = forwardRef<HTMLAnchorElement | HTMLButtonElement, ButtonProps>(function Button(
|
|
|
|
props: ButtonProps,
|
|
|
|
forwardedRef
|
|
|
|
) {
|
|
|
|
const {
|
|
|
|
loading = false,
|
2022-11-23 02:55:25 +00:00
|
|
|
color = "primary",
|
2022-11-22 17:07:55 +00:00
|
|
|
size,
|
2023-01-19 14:55:32 +00:00
|
|
|
variant = "button",
|
2022-09-15 12:10:41 +00:00
|
|
|
type = "button",
|
2022-07-23 00:39:50 +00:00
|
|
|
StartIcon,
|
|
|
|
EndIcon,
|
|
|
|
shallow,
|
|
|
|
// attributes propagated from `HTMLAnchorProps` or `HTMLButtonProps`
|
|
|
|
...passThroughProps
|
|
|
|
} = props;
|
|
|
|
// Buttons are **always** disabled if we're in a `loading` state
|
|
|
|
const disabled = props.disabled || loading;
|
|
|
|
// If pass an `href`-attr is passed it's `<a>`, otherwise it's a `<button />`
|
|
|
|
const isLink = typeof props.href !== "undefined";
|
|
|
|
const elementType = isLink ? "a" : "button";
|
|
|
|
const element = React.createElement(
|
|
|
|
elementType,
|
|
|
|
{
|
|
|
|
...passThroughProps,
|
|
|
|
disabled,
|
2022-09-15 12:10:41 +00:00
|
|
|
type: !isLink ? type : undefined,
|
2022-07-23 00:39:50 +00:00
|
|
|
ref: forwardedRef,
|
|
|
|
className: classNames(
|
2023-01-19 14:55:32 +00:00
|
|
|
buttonClasses({ color, size, loading, disabled: props.disabled, variant }),
|
2022-07-23 00:39:50 +00:00
|
|
|
props.className
|
|
|
|
),
|
|
|
|
// if we click a disabled button, we prevent going through the click handler
|
|
|
|
onClick: disabled
|
|
|
|
? (e: React.MouseEvent<HTMLElement, MouseEvent>) => {
|
|
|
|
e.preventDefault();
|
|
|
|
}
|
|
|
|
: props.onClick,
|
|
|
|
},
|
|
|
|
<>
|
|
|
|
{StartIcon && (
|
2023-01-02 08:28:12 +00:00
|
|
|
<>
|
2023-01-19 14:55:32 +00:00
|
|
|
{variant === "fab" ? (
|
2023-01-02 08:28:12 +00:00
|
|
|
<>
|
2023-02-02 08:24:31 +00:00
|
|
|
<StartIcon className="hidden h-4 w-4 stroke-[1.5px] ltr:mr-2 rtl:ml-2 md:inline-flex" />
|
|
|
|
<FiPlus className="inline h-6 w-6 md:hidden" />
|
2023-01-02 08:28:12 +00:00
|
|
|
</>
|
|
|
|
) : (
|
|
|
|
<StartIcon
|
|
|
|
className={classNames(
|
2023-01-19 14:55:32 +00:00
|
|
|
variant === "icon" && "h-4 w-4",
|
2023-02-08 17:02:08 +00:00
|
|
|
variant === "button" && "h-4 w-4 stroke-[1.5px] ltr:mr-2 rtl:ml-2"
|
2023-01-02 08:28:12 +00:00
|
|
|
)}
|
|
|
|
/>
|
|
|
|
)}
|
|
|
|
</>
|
2022-07-23 00:39:50 +00:00
|
|
|
)}
|
2023-02-02 08:24:31 +00:00
|
|
|
{variant === "fab" ? <span className="hidden md:inline">{props.children}</span> : props.children}
|
2022-07-23 00:39:50 +00:00
|
|
|
{loading && (
|
|
|
|
<div className="absolute top-1/2 left-1/2 -translate-x-1/2 -translate-y-1/2 transform">
|
|
|
|
<svg
|
2022-11-22 17:07:55 +00:00
|
|
|
className="mx-4 h-5 w-5 animate-spin text-black dark:text-white"
|
2022-07-23 00:39:50 +00:00
|
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
|
|
fill="none"
|
|
|
|
viewBox="0 0 24 24">
|
|
|
|
<circle className="opacity-25" cx="12" cy="12" r="10" stroke="currentColor" strokeWidth="4" />
|
|
|
|
<path
|
|
|
|
className="opacity-75"
|
|
|
|
fill="currentColor"
|
|
|
|
d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"
|
|
|
|
/>
|
|
|
|
</svg>
|
|
|
|
</div>
|
|
|
|
)}
|
2023-01-02 08:28:12 +00:00
|
|
|
{EndIcon && (
|
|
|
|
<>
|
2023-01-19 14:55:32 +00:00
|
|
|
{variant === "fab" ? (
|
2023-01-02 08:28:12 +00:00
|
|
|
<>
|
2023-02-02 08:24:31 +00:00
|
|
|
<EndIcon className="-mr-1 hidden h-5 w-5 ltr:ml-2 rtl:-ml-1 rtl:mr-2 md:inline" />
|
|
|
|
<FiPlus className="inline h-6 w-6 md:hidden" />
|
2023-01-02 08:28:12 +00:00
|
|
|
</>
|
|
|
|
) : (
|
2023-01-19 14:55:32 +00:00
|
|
|
<EndIcon
|
|
|
|
className={classNames(
|
|
|
|
"inline-flex",
|
|
|
|
variant === "icon" && "h-4 w-4",
|
2023-02-03 16:49:33 +00:00
|
|
|
variant === "button" && "h-4 w-4 stroke-[1.5px] ltr:ml-2 rtl:mr-2"
|
2023-01-19 14:55:32 +00:00
|
|
|
)}
|
|
|
|
/>
|
2023-01-02 08:28:12 +00:00
|
|
|
)}
|
|
|
|
</>
|
|
|
|
)}
|
2022-07-23 00:39:50 +00:00
|
|
|
</>
|
|
|
|
);
|
|
|
|
|
|
|
|
return props.href ? (
|
2023-01-06 12:13:56 +00:00
|
|
|
<Link passHref href={props.href} shallow={shallow && shallow} legacyBehavior>
|
2022-07-23 00:39:50 +00:00
|
|
|
{element}
|
|
|
|
</Link>
|
|
|
|
) : (
|
|
|
|
<Wrapper tooltip={props.tooltip}>{element}</Wrapper>
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
const Wrapper = ({ children, tooltip }: { tooltip?: string; children: React.ReactNode }) => {
|
|
|
|
if (!tooltip) {
|
|
|
|
return <>{children}</>;
|
|
|
|
}
|
|
|
|
|
|
|
|
return <Tooltip content={tooltip}>{children}</Tooltip>;
|
|
|
|
};
|