* chore: refactor config files to prevent migration tool errors * refactor: upgrade with the tailwind migration tool * chore: restore pre-commit command + mc * refactor(wip): update dependencies and migrate to Tailwind CSS v4 (mainly web) * chore: resolve Tailwind v4 migration conflicts from merging main * chore: remove unused Tailwind packages from config and update dependencies for v4 migration * chore: uncomment Tailwind CSS utility classes in globals.css * fix: resolve token conflicts between calcom and coss ui * fix: textarea scrollbar * Fix CUI-16 * fix: added @tailwindcss/forms plugin and cleaned up CSS classes in various components to remove unnecessary dark mode styles * fix: selects and inputs of different sizes * fix: remove unnecessary leading-20 class from modal titles in various components * fix: update Checkbox component styles to remove unnecessary border on checked state * fix: clean up styles in RequiresConfirmationController, Checkbox, and Radio components to enhance consistency * fix: update button and filter component styles to remove unnecessary rounded classes for consistency * fix: calendar * fix: update KBarSearch * fix: refine styles in Empty and Checkbox components for improved consistency * Fix focus state email input * fix: update button hover and active states to use 'not-disabled' instead of 'enabled' * fix: line-height issues * fix: update class name for muted background in BookingListItem component * fix: sidebar spacing * chore: update class names to use new Tailwind CSS color utilities * fix embed * chore: upgrade Tailwind CSS to version 4.1.16 and update related dependencies * Map css variables and add a playground test for heavy css customization * suggestion for coss-ui * refactor: update CSS variable usage and clean up styles - Replace instances of `--cal-brand-color` with `--cal-brand` in embed-related HTML files. - Remove the now-unnecessary `addAppCssVars` function from the embed core. - Import theme tokens in the embed core styles for better consistency. - Clean up whitespace and formatting in CSS files for improved readability. - Add a comment in `tokens.css` regarding its usage in both embed and webapp contexts. * Handle within tokens.css instead of fixing coss-ui * Remove initial, not needed. Also, remove tailwind.config.js as tailwidn scans the html automaically * fix: examples app breaking * fix: modal not resizing correctly * feat: upgrade atoms to tailwind v4 * fix: atoms build breaking * fix: atoms build breaking * chore: upgrate examples/base to tailwind 4 * chore: update globals.css * fix: add missing scheduler css variables * fix: PlatformAdditionalCalendarSelector * chore: update global styles * chore: update tailwindcss and postcss dependencies to stable versions * chore: remove unneeded class * fix: dialog and toast animation * fix: replace flex-shrink-0 with shrink-0 for consistent styling in various components * fix: dialog modal for Apple connect * add margin in SaveFilterSegmentButton * Fix radix button nested states * add cursor pointer to buttons but keep dsabled state * Fix commandK selectors and adds cursor pointer * Fix teams filter * fix - round checkboxes * fix filter checkbox * fix select indicator's margin * command group font size * style: fix badge and tooltip radius * chore: remove unneeded files * Delete PR_REVIEW_MANAGED_EVENT_REASSIGNMENT.md * remove ui-playground leftover * fix: add missing react phone input styles in atoms * Delete managed-event-reassignment-flow-and-architecture.mermaid * fix: inter font not loading * Add theme to skeleton container so that it can support dark mode * fix: create custom stack-y-* utilities post tw4 upgrade * fix: typo * fix: atoms stack class + remove unused css file * fix default radius valiue * fix space-y in embed * fix skeleton background * Hardcode radius values to match production * fix border in embed * add missing externalThemeClass * feat: create a custom stack-y-* utility * fix: add stack utility to atom global css * fix: Skeleton loader class modalbox * Add stack-y utility in embed * fix: add missing stack utilities in atoms globals.css * update yarn.lock * add popover portla * update --------- Co-authored-by: Sean Brydon <sean@cal.com> Co-authored-by: Hariom Balhara <hariombalhara@gmail.com> Co-authored-by: Ryukemeister <sahalrajiv6900@gmail.com> Co-authored-by: cal.com <morgan@cal.com> Co-authored-by: Eunjae Lee <hey@eunjae.dev> Co-authored-by: Anik Dhabal Babu <adhabal2002@gmail.com>
381 lines
11 KiB
TypeScript
381 lines
11 KiB
TypeScript
import type { VariantProps } from "class-variance-authority";
|
|
import { cva } from "class-variance-authority";
|
|
import type { LinkProps } from "next/link";
|
|
import Link from "next/link";
|
|
import React, { forwardRef } from "react";
|
|
|
|
import classNames from "@calcom/ui/classNames";
|
|
|
|
import { Icon } from "../icon/Icon";
|
|
import type { IconName } from "../icon/Icon";
|
|
import { Tooltip } from "../tooltip/Tooltip";
|
|
|
|
type InferredVariantProps = VariantProps<typeof buttonClasses>;
|
|
|
|
export type ButtonColor = NonNullable<InferredVariantProps["color"]>;
|
|
export type ButtonBaseProps = {
|
|
/** Action that happens when the button is clicked */
|
|
onClick?: (event: React.MouseEvent<HTMLElement, MouseEvent>) => void;
|
|
/**Left aligned icon*/
|
|
CustomStartIcon?: React.ReactNode;
|
|
StartIcon?: IconName;
|
|
/**Right aligned icon */
|
|
EndIcon?: IconName;
|
|
shallow?: boolean;
|
|
/**Tool tip used when icon size is set to small */
|
|
tooltip?: string | React.ReactNode;
|
|
tooltipSide?: "top" | "right" | "bottom" | "left";
|
|
tooltipOffset?: number;
|
|
tooltipClassName?: string;
|
|
disabled?: boolean;
|
|
flex?: boolean;
|
|
} & Omit<InferredVariantProps, "color"> & {
|
|
color?: ButtonColor;
|
|
};
|
|
|
|
export type ButtonProps = ButtonBaseProps &
|
|
(
|
|
| (Omit<JSX.IntrinsicElements["a"], "href" | "onClick" | "ref"> & LinkProps)
|
|
| (Omit<JSX.IntrinsicElements["button"], "onClick" | "ref"> & { href?: never })
|
|
);
|
|
|
|
export const buttonClasses = cva(
|
|
"group whitespace-nowrap inline-flex items-center text-sm font-medium relative rounded-[10px] transition cursor-pointer disabled:cursor-not-allowed gap-1",
|
|
{
|
|
variants: {
|
|
variant: {
|
|
button: "",
|
|
icon: "flex justify-center",
|
|
fab: "min-w-14 min-h-14 md:min-w-min md:min-h-min rounded-full justify-center md:rounded-[10px] radix-state-open:rotate-45 md:radix-state-open:rotate-0 radix-state-open:shadown-none radix-state-open:ring-0",
|
|
},
|
|
color: {
|
|
primary: [
|
|
// Base colors
|
|
"bg-brand-default",
|
|
"text-brand",
|
|
// Hover state
|
|
"not-disabled:hover:bg-brand-emphasis",
|
|
// Focus state
|
|
"focus-visible:outline-none",
|
|
"focus-visible:ring-0",
|
|
"focus-visible:shadow-button-solid-brand-focused",
|
|
// Border
|
|
"border border-brand-default",
|
|
// Disabled
|
|
"disabled:opacity-30",
|
|
// Shadows and effects
|
|
"shadow-button-solid-brand-default",
|
|
"not-disabled:active:shadow-button-solid-brand-active",
|
|
"not-disabled:hover:shadow-button-solid-brand-hover",
|
|
"transition-shadow",
|
|
"transition-transform",
|
|
"duration-100",
|
|
],
|
|
|
|
secondary: [
|
|
// Base colors and border
|
|
"bg-default",
|
|
"text-default",
|
|
"border",
|
|
"border-default",
|
|
// Hover state
|
|
"not-disabled:hover:bg-cal-muted",
|
|
"not-disabled:hover:text-emphasis",
|
|
// Disabled
|
|
"disabled:opacity-30",
|
|
// Focus state
|
|
"focus-visible:bg-subtle",
|
|
"focus-visible:outline-none",
|
|
"focus-visible:ring-0",
|
|
"focus-visible:shadow-outline-gray-focused",
|
|
// Shadows and effects
|
|
"shadow-outline-gray-rested",
|
|
"not-disabled:hover:shadow-outline-gray-hover",
|
|
"not-disabled:active:shadow-outline-gray-active",
|
|
"transition-shadow",
|
|
"duration-200",
|
|
],
|
|
|
|
minimal: [
|
|
// Base color
|
|
"text-subtle",
|
|
"border border-transparent",
|
|
// Hover
|
|
"not-disabled:hover:bg-subtle",
|
|
"not-disabled:hover:text-emphasis",
|
|
"not-disabled:hover:border-subtle hover:border",
|
|
// Disabled
|
|
"disabled:opacity-30",
|
|
// Focus
|
|
"focus-visible:bg-subtle",
|
|
"focus-visible:outline-none",
|
|
"focus-visible:ring-0",
|
|
"focus-visible:border-subtle",
|
|
"focus-visible:shadow-button-outline-gray-focused",
|
|
|
|
// Shadows and effects
|
|
"not-disabled:active:shadow-outline-gray-active",
|
|
"transition-shadow",
|
|
"duration-200",
|
|
],
|
|
|
|
destructive: [
|
|
// Base colors and border
|
|
"border",
|
|
"border-default",
|
|
"text-error",
|
|
// Hover state
|
|
"dark:hover:text-red-100",
|
|
"hover:border-semantic-error",
|
|
"hover:bg-error",
|
|
// Focus state
|
|
"focus-visible:text-red-700",
|
|
"focus-visible:bg-error",
|
|
"focus-visible:outline-none",
|
|
"focus-visible:ring-0",
|
|
"focus-visible:shadow-button-outline-red-focused",
|
|
// Disabled state
|
|
"disabled:bg-red-100",
|
|
"disabled:border-red-200",
|
|
"disabled:text-red-700",
|
|
"disabled:hover:border-red-200",
|
|
"disabled:opacity-30",
|
|
// Shadows and effects
|
|
"shadow-outline-red-rested",
|
|
"not-disabled:hover:shadow-outline-red-hover",
|
|
"not-disabled:active:shadow-outline-red-active",
|
|
"transition-shadow",
|
|
"duration-200",
|
|
],
|
|
},
|
|
size: {
|
|
xs: "h-6 p-2 leading-none text-xs rounded-md",
|
|
sm: "h-7 px-2 py-1.5 leading-none text-sm" /** For backwards compatibility */,
|
|
base: "px-2.5 py-2 text-sm leading-none",
|
|
lg: "px-3 py-2.5 ",
|
|
},
|
|
loading: {
|
|
true: "cursor-wait",
|
|
},
|
|
},
|
|
compoundVariants: [
|
|
// Primary variants
|
|
{
|
|
loading: true,
|
|
color: "primary",
|
|
className: "opacity-30",
|
|
},
|
|
// Secondary variants
|
|
{
|
|
loading: true,
|
|
color: "secondary",
|
|
className: "bg-subtle text-emphasis/80",
|
|
},
|
|
// Minimal variants
|
|
{
|
|
loading: true,
|
|
color: "minimal",
|
|
className: "bg-subtle text-emphasis/30",
|
|
},
|
|
// Destructive variants
|
|
{
|
|
loading: true,
|
|
color: "destructive",
|
|
className:
|
|
"text-red-700/30 dark:text-red-700/30 hover:text-red-700/30 border border-default text-emphasis",
|
|
},
|
|
{
|
|
variant: "icon",
|
|
size: "base",
|
|
className: "min-h-[36px] min-w-[36px] p-2! hover:border-default",
|
|
},
|
|
{
|
|
variant: "icon",
|
|
size: "xs",
|
|
className: "h-5 w-5 p-1! rounded-md",
|
|
},
|
|
{
|
|
variant: "icon",
|
|
size: "sm",
|
|
className: "h-6 w-6 p-1! rounded-md",
|
|
},
|
|
{
|
|
variant: "icon",
|
|
size: "lg",
|
|
className: "h-10 w-10 p-1!",
|
|
},
|
|
{
|
|
variant: "fab",
|
|
size: "base",
|
|
className: "md:px-4 md:py-2.5",
|
|
},
|
|
],
|
|
defaultVariants: {
|
|
variant: "button",
|
|
color: "primary",
|
|
size: "base",
|
|
},
|
|
}
|
|
);
|
|
|
|
export const Button = forwardRef<HTMLAnchorElement | HTMLButtonElement, ButtonProps>(function Button(
|
|
props: ButtonProps,
|
|
forwardedRef
|
|
) {
|
|
const {
|
|
loading = false,
|
|
color = "primary",
|
|
size,
|
|
variant = "button",
|
|
type = "button",
|
|
tooltipSide = "top",
|
|
tooltipOffset = 4,
|
|
tooltipClassName,
|
|
StartIcon,
|
|
CustomStartIcon,
|
|
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,
|
|
type: !isLink ? type : undefined,
|
|
ref: forwardedRef,
|
|
className: classNames(buttonClasses({ color, size, loading, variant }), 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,
|
|
},
|
|
<>
|
|
{CustomStartIcon ||
|
|
(StartIcon && (
|
|
<>
|
|
{variant === "fab" ? (
|
|
<>
|
|
<Icon name={StartIcon} className="hidden h-4 w-4 stroke-[1.5px] md:inline-flex" />
|
|
<Icon name="plus" data-testid="plus" className="inline h-6 w-6 md:hidden" />
|
|
</>
|
|
) : (
|
|
<Icon
|
|
data-name="start-icon"
|
|
name={StartIcon}
|
|
className={classNames(
|
|
loading ? "invisible" : "visible",
|
|
"button-icon group-active:translate-y-[0.5px]",
|
|
variant === "icon" && "h-4 w-4",
|
|
variant === "button" && "h-4 w-4 stroke-[1.5px] "
|
|
)}
|
|
/>
|
|
)}
|
|
</>
|
|
))}
|
|
<div
|
|
className={classNames(
|
|
"contents", // This makes the div behave like it doesn't exist in the layout
|
|
loading ? "invisible" : "visible",
|
|
variant === "fab" ? "hidden md:contents" : "",
|
|
"group-active:translate-y-[0.5px]"
|
|
)}>
|
|
{props.children}
|
|
</div>
|
|
{loading && (
|
|
<div className="absolute left-1/2 top-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-inverted" : "text-emphasis"
|
|
)}
|
|
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>
|
|
)}
|
|
{EndIcon && (
|
|
<>
|
|
{variant === "fab" ? (
|
|
<>
|
|
<Icon name={EndIcon} className="-mr-1 me-2 ms-2 hidden h-5 w-5 md:inline" />
|
|
<Icon name="plus" data-testid="plus" className="inline h-6 w-6 md:hidden" />
|
|
</>
|
|
) : (
|
|
<Icon
|
|
name={EndIcon}
|
|
className={classNames(
|
|
loading ? "invisible" : "visible",
|
|
"group-active:translate-y-[0.5px]",
|
|
variant === "icon" && "h-4 w-4",
|
|
variant === "button" && "h-4 w-4 stroke-[1.5px] "
|
|
)}
|
|
/>
|
|
)}
|
|
</>
|
|
)}
|
|
</>
|
|
);
|
|
|
|
return props.href ? (
|
|
<Link data-testid="link-component" passHref href={props.href} shallow={shallow && shallow} legacyBehavior>
|
|
{element}
|
|
</Link>
|
|
) : (
|
|
<Wrapper
|
|
data-testid="wrapper"
|
|
tooltip={props.tooltip}
|
|
tooltipSide={tooltipSide}
|
|
tooltipOffset={tooltipOffset}
|
|
tooltipClassName={tooltipClassName}>
|
|
{element}
|
|
</Wrapper>
|
|
);
|
|
});
|
|
|
|
const Wrapper = ({
|
|
children,
|
|
tooltip,
|
|
tooltipSide,
|
|
tooltipOffset,
|
|
tooltipClassName,
|
|
}: {
|
|
tooltip?: string | React.ReactNode;
|
|
children: React.ReactNode;
|
|
tooltipSide?: "top" | "right" | "bottom" | "left";
|
|
tooltipOffset?: number;
|
|
tooltipClassName?: string;
|
|
}) => {
|
|
if (!tooltip) {
|
|
return <>{children}</>;
|
|
}
|
|
|
|
return (
|
|
<Tooltip
|
|
data-testid="tooltip"
|
|
className={tooltipClassName}
|
|
content={tooltip}
|
|
side={tooltipSide}
|
|
sideOffset={tooltipOffset}>
|
|
{children}
|
|
</Tooltip>
|
|
);
|
|
};
|
|
|
|
Button.displayName = "Button";
|