97 lines
3.1 KiB
TypeScript
97 lines
3.1 KiB
TypeScript
import Link from "next/link";
|
|
import { useRouter } from "next/router";
|
|
import { ComponentProps, Fragment } from "react";
|
|
|
|
import classNames from "@calcom/lib/classNames";
|
|
import { useLocale } from "@calcom/lib/hooks/useLocale";
|
|
import { SVGComponent } from "@calcom/types/SVGComponent";
|
|
|
|
import { FiChevronRight, FiExternalLink } from "../../icon";
|
|
import { Skeleton } from "../../skeleton";
|
|
|
|
export type VerticalTabItemProps = {
|
|
name: string;
|
|
info?: string;
|
|
icon?: SVGComponent;
|
|
disabled?: boolean;
|
|
children?: VerticalTabItemProps[];
|
|
textClassNames?: string;
|
|
className?: string;
|
|
isChild?: boolean;
|
|
hidden?: boolean;
|
|
disableChevron?: boolean;
|
|
href: string;
|
|
isExternalLink?: boolean;
|
|
linkProps?: Omit<ComponentProps<typeof Link>, "href">;
|
|
avatar?: string;
|
|
};
|
|
|
|
const VerticalTabItem = function ({
|
|
name,
|
|
href,
|
|
info,
|
|
isChild,
|
|
disableChevron,
|
|
linkProps,
|
|
...props
|
|
}: VerticalTabItemProps) {
|
|
const { t } = useLocale();
|
|
const { asPath } = useRouter();
|
|
const isCurrent = asPath.startsWith(href);
|
|
|
|
return (
|
|
<Fragment key={name}>
|
|
{!props.hidden && (
|
|
<>
|
|
<Link
|
|
key={name}
|
|
href={href}
|
|
{...linkProps}
|
|
target={props.isExternalLink ? "_blank" : "_self"}
|
|
className={classNames(
|
|
props.textClassNames || "text-sm font-medium leading-none text-gray-600",
|
|
"min-h-8 group flex w-64 flex-row items-center rounded-md px-2 py-[10px] hover:bg-gray-100 group-hover:text-gray-700 [&[aria-current='page']]:bg-gray-200 [&[aria-current='page']]:text-gray-900",
|
|
props.disabled && "pointer-events-none !opacity-30",
|
|
(isChild || !props.icon) && "ml-7 w-auto ltr:mr-5 rtl:ml-5",
|
|
!info ? "h-6" : "h-14",
|
|
props.className
|
|
)}
|
|
data-testid={`vertical-tab-${name}`}
|
|
aria-current={isCurrent ? "page" : undefined}>
|
|
{props.icon && (
|
|
<props.icon className="h-[16px] w-[16px] stroke-[2px] ltr:mr-[10px] rtl:ml-[10px] md:mt-0" />
|
|
)}
|
|
<div className="h-fit">
|
|
<span className="flex items-center space-x-2 rtl:space-x-reverse">
|
|
<Skeleton title={t(name)} as="p" className="max-w-36 min-h-4 mt-px truncate">
|
|
{t(name)}
|
|
</Skeleton>
|
|
{props.isExternalLink ? <FiExternalLink /> : null}
|
|
</span>
|
|
{info && (
|
|
<Skeleton as="p" title={t(info)} className="max-w-44 mt-1 truncate text-xs font-normal">
|
|
{t(info)}
|
|
</Skeleton>
|
|
)}
|
|
</div>
|
|
{!disableChevron && isCurrent && (
|
|
<div className="ml-auto self-center">
|
|
<FiChevronRight
|
|
width={20}
|
|
height={20}
|
|
className="h-auto w-[20px] stroke-[1.5px] text-gray-700"
|
|
/>
|
|
</div>
|
|
)}
|
|
</Link>
|
|
{props.children?.map((child) => (
|
|
<VerticalTabItem key={child.name} {...child} isChild />
|
|
))}
|
|
</>
|
|
)}
|
|
</Fragment>
|
|
);
|
|
};
|
|
|
|
export default VerticalTabItem;
|