2022-02-21 16:41:25 +00:00
|
|
|
import Link, { LinkProps } from "next/link";
|
|
|
|
import React, { forwardRef } from "react";
|
|
|
|
|
|
|
|
import classNames from "@calcom/lib/classNames";
|
|
|
|
|
|
|
|
type SVGComponent = React.FunctionComponent<React.SVGProps<SVGSVGElement>>;
|
|
|
|
|
|
|
|
export type ButtonBaseProps = {
|
2022-05-16 16:27:36 +00:00
|
|
|
color?: "primary" | "secondary" | "minimal" | "warn" | "alert" | "alert2";
|
2022-02-21 16:41:25 +00:00
|
|
|
size?: "base" | "sm" | "lg" | "fab" | "icon";
|
|
|
|
loading?: boolean;
|
|
|
|
disabled?: boolean;
|
|
|
|
onClick?: (event: React.MouseEvent<HTMLElement, MouseEvent>) => void;
|
|
|
|
StartIcon?: SVGComponent;
|
2022-05-27 23:27:41 +00:00
|
|
|
startIconClassName?: string;
|
2022-02-21 16:41:25 +00:00
|
|
|
EndIcon?: SVGComponent;
|
2022-08-24 08:37:46 +00:00
|
|
|
endIconClassName?: string;
|
2022-02-21 16:41:25 +00:00
|
|
|
shallow?: boolean;
|
|
|
|
};
|
|
|
|
export type ButtonProps = ButtonBaseProps &
|
|
|
|
(
|
2022-06-24 15:27:52 +00:00
|
|
|
| (Omit<JSX.IntrinsicElements["a"], "href" | "onClick"> & LinkProps)
|
2022-05-17 19:31:49 +00:00
|
|
|
| (Omit<JSX.IntrinsicElements["button"], "onClick"> & { href?: never })
|
2022-02-21 16:41:25 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
export const Button = forwardRef<HTMLAnchorElement | HTMLButtonElement, ButtonProps>(function Button(
|
|
|
|
props: ButtonProps,
|
|
|
|
forwardedRef
|
|
|
|
) {
|
|
|
|
const {
|
|
|
|
loading = false,
|
|
|
|
color = "primary",
|
|
|
|
size = "base",
|
|
|
|
StartIcon,
|
2022-05-27 23:27:41 +00:00
|
|
|
startIconClassName,
|
2022-08-24 08:37:46 +00:00
|
|
|
endIconClassName,
|
2022-02-21 16:41:25 +00:00
|
|
|
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,
|
|
|
|
ref: forwardedRef,
|
|
|
|
className: classNames(
|
|
|
|
// base styles independent what type of button it is
|
2022-07-27 18:58:24 +00:00
|
|
|
"inline-flex items-center appearance-none",
|
2022-02-21 16:41:25 +00:00
|
|
|
// different styles depending on size
|
|
|
|
size === "sm" && "px-3 py-2 text-sm leading-4 font-medium rounded-sm",
|
|
|
|
size === "base" && "px-3 py-2 text-sm font-medium rounded-sm",
|
|
|
|
size === "lg" && "px-4 py-2 text-base font-medium rounded-sm",
|
|
|
|
size === "icon" &&
|
2022-07-27 02:24:00 +00:00
|
|
|
"w-10 h-10 justify-center group p-2 border rounded-lg border-transparent text-neutral-400 hover:border-gray-200 transition",
|
2022-02-21 16:41:25 +00:00
|
|
|
// turn button into a floating action button (fab)
|
|
|
|
size === "fab" ? "fixed" : "relative",
|
|
|
|
size === "fab" && "justify-center bottom-20 right-8 rounded-full p-4 w-14 h-14",
|
|
|
|
|
|
|
|
// different styles depending on color
|
|
|
|
color === "primary" &&
|
|
|
|
(disabled
|
|
|
|
? "border border-transparent bg-gray-400 text-white"
|
2022-03-05 15:37:46 +00:00
|
|
|
: "border border-transparent dark:text-darkmodebrandcontrast text-brandcontrast bg-brand dark:bg-darkmodebrand hover:bg-opacity-90 hover:shadow-md focus:outline-none focus:ring-2 focus:ring-offset-1 focus:ring-neutral-900"),
|
2022-02-21 16:41:25 +00:00
|
|
|
color === "secondary" &&
|
|
|
|
(disabled
|
|
|
|
? "border border-gray-200 text-gray-400 bg-white"
|
2022-03-24 13:15:24 +00:00
|
|
|
: "border border-gray-300 text-gray-700 bg-white hover:bg-gray-50 hover:text-gray-900 hover:shadow-sm focus:outline-none focus:ring-2 focus:ring-offset-1 focus:ring-neutral-900 dark:bg-transparent dark:text-white dark:border-gray-800 dark:hover:bg-gray-800"),
|
2022-05-16 16:27:36 +00:00
|
|
|
color === "alert" &&
|
|
|
|
(disabled
|
|
|
|
? "border border-transparent bg-gray-400 text-white"
|
|
|
|
: "border border-transparent dark:text-darkmodebrandcontrast text-brandcontrast bg-red-600 dark:bg-darkmodebrand hover:bg-opacity-90 hover:shadow-md focus:outline-none focus:ring-2 focus:ring-offset-1 focus:ring-neutral-900"),
|
|
|
|
color === "alert2" &&
|
|
|
|
(disabled
|
|
|
|
? "border border-transparent bg-gray-400 text-white"
|
|
|
|
: "border border-transparent dark:text-darkmodebrandcontrast text-black bg-yellow-400 dark:bg-darkmodebrand hover:bg-opacity-90 hover:shadow-md focus:outline-none focus:ring-2 focus:ring-offset-1 focus:ring-neutral-900"),
|
2022-02-21 16:41:25 +00:00
|
|
|
color === "minimal" &&
|
|
|
|
(disabled
|
|
|
|
? "text-gray-400 bg-transparent"
|
|
|
|
: "text-gray-700 bg-transparent hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-1 focus:bg-gray-100 focus:ring-neutral-500"),
|
|
|
|
color === "warn" &&
|
|
|
|
(disabled
|
|
|
|
? "text-gray-400 bg-transparent"
|
|
|
|
: "text-gray-700 bg-transparent hover:text-red-700 hover:bg-red-100 focus:outline-none focus:ring-2 focus:ring-offset-1 focus:bg-red-50 focus:ring-red-500"),
|
2022-05-16 16:27:36 +00:00
|
|
|
|
2022-02-21 16:41:25 +00:00
|
|
|
// set not-allowed cursor if disabled
|
|
|
|
loading ? "cursor-wait" : disabled ? "cursor-not-allowed" : "",
|
|
|
|
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 && (
|
|
|
|
<StartIcon
|
|
|
|
className={classNames(
|
|
|
|
"inline",
|
2022-07-27 02:24:00 +00:00
|
|
|
size === "icon" ? "h-4 w-4 " : "-ml-1 h-4 w-4 ltr:mr-2 rtl:ml-2 rtl:-mr-1",
|
2022-05-27 23:27:41 +00:00
|
|
|
startIconClassName || ""
|
2022-02-21 16:41:25 +00:00
|
|
|
)}
|
|
|
|
/>
|
|
|
|
)}
|
|
|
|
{props.children}
|
|
|
|
{loading && (
|
|
|
|
<div className="absolute top-1/2 left-1/2 -translate-x-1/2 -translate-y-1/2 transform">
|
|
|
|
<svg
|
|
|
|
className={classNames(
|
|
|
|
"mx-4 h-5 w-5 animate-spin",
|
|
|
|
color === "primary" ? "text-white dark:text-black" : "text-black"
|
|
|
|
)}
|
|
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
|
|
fill="none"
|
|
|
|
viewBox="0 0 24 24">
|
2022-07-23 00:39:50 +00:00
|
|
|
<circle className="opacity-25" cx="12" cy="12" r="10" stroke="currentColor" strokeWidth="4" />
|
2022-02-21 16:41:25 +00:00
|
|
|
<path
|
|
|
|
className="opacity-75"
|
|
|
|
fill="currentColor"
|
2022-07-23 00:39:50 +00:00
|
|
|
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"
|
|
|
|
/>
|
2022-02-21 16:41:25 +00:00
|
|
|
</svg>
|
|
|
|
</div>
|
|
|
|
)}
|
2022-08-24 08:37:46 +00:00
|
|
|
{EndIcon && (
|
|
|
|
<EndIcon className={classNames("-mr-1 inline h-5 w-5 ltr:ml-2 rtl:mr-2", endIconClassName || "")} />
|
|
|
|
)}
|
2022-02-21 16:41:25 +00:00
|
|
|
</>
|
|
|
|
);
|
|
|
|
return props.href ? (
|
|
|
|
<Link passHref href={props.href} shallow={shallow && shallow}>
|
|
|
|
{element}
|
|
|
|
</Link>
|
|
|
|
) : (
|
|
|
|
element
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
export default Button;
|