67 lines
2.3 KiB
TypeScript
67 lines
2.3 KiB
TypeScript
import { useId } from "@radix-ui/react-id";
|
|
import * as Label from "@radix-ui/react-label";
|
|
import * as PrimitiveSwitch from "@radix-ui/react-switch";
|
|
import React from "react";
|
|
|
|
import classNames from "@calcom/lib/classNames";
|
|
|
|
import { Tooltip } from "../../tooltip";
|
|
|
|
const Wrapper = ({ children, tooltip }: { tooltip?: string; children: React.ReactNode }) => {
|
|
if (!tooltip) {
|
|
return <>{children}</>;
|
|
}
|
|
return <Tooltip content={tooltip}>{children}</Tooltip>;
|
|
};
|
|
const Switch = (
|
|
props: React.ComponentProps<typeof PrimitiveSwitch.Root> & {
|
|
label?: string;
|
|
thumbProps?: {
|
|
className?: string;
|
|
};
|
|
fitToHeight?: boolean;
|
|
tooltip?: string;
|
|
}
|
|
) => {
|
|
const { label, fitToHeight, ...primitiveProps } = props;
|
|
const id = useId();
|
|
|
|
return (
|
|
<Wrapper tooltip={props.tooltip}>
|
|
<div className={classNames("flex h-auto w-auto flex-row items-center", fitToHeight && "h-fit")}>
|
|
<PrimitiveSwitch.Root
|
|
className={classNames(
|
|
props.checked ? "bg-gray-900" : "bg-gray-200",
|
|
primitiveProps.disabled ? "cursor-not-allowed" : "hover:bg-gray-300",
|
|
"focus:ring-brand-800 h-5 w-[34px] rounded-full shadow-none",
|
|
props.className
|
|
)}
|
|
{...primitiveProps}>
|
|
<PrimitiveSwitch.Thumb
|
|
id={id}
|
|
// Since we dont support global dark mode - we have to style dark mode components specifically on the instance for now
|
|
// TODO: Remove once we support global dark mode
|
|
className={classNames(
|
|
"block h-[14px] w-[14px] rounded-full bg-white transition will-change-transform ltr:translate-x-[4px] rtl:-translate-x-[4px] ltr:[&[data-state='checked']]:translate-x-[17px] rtl:[&[data-state='checked']]:-translate-x-[17px]",
|
|
props.checked && "shadow-inner",
|
|
props.thumbProps?.className
|
|
)}
|
|
/>
|
|
</PrimitiveSwitch.Root>
|
|
{label && (
|
|
<Label.Root
|
|
htmlFor={id}
|
|
className={classNames(
|
|
"align-text-top text-sm font-medium text-gray-900 ltr:ml-2 rtl:mr-2 dark:text-white",
|
|
primitiveProps.disabled ? "cursor-not-allowed opacity-25" : "cursor-pointer "
|
|
)}>
|
|
{label}
|
|
</Label.Root>
|
|
)}
|
|
</div>
|
|
</Wrapper>
|
|
);
|
|
};
|
|
|
|
export default Switch;
|