72 lines
2.1 KiB
TypeScript
72 lines
2.1 KiB
TypeScript
import Image from "next/image";
|
|
import type { ReactNode } from "react";
|
|
|
|
import { classNames } from "@calcom/lib";
|
|
import { useHasTeamPlan } from "@calcom/lib/hooks/useHasPaidPlan";
|
|
import { useLocale } from "@calcom/lib/hooks/useLocale";
|
|
|
|
export function UpgradeTip({
|
|
dark,
|
|
title,
|
|
emptyTitle,
|
|
emptyDescription,
|
|
description,
|
|
background,
|
|
features,
|
|
buttons,
|
|
isParentLoading,
|
|
children,
|
|
}: {
|
|
dark?: boolean;
|
|
title: string;
|
|
description: string;
|
|
/* overwrite EmptyScreen text */
|
|
emptyTitle?: string;
|
|
emptyDescription?: string;
|
|
background: string;
|
|
features: Array<{ icon: JSX.Element; title: string; description: string }>;
|
|
buttons?: JSX.Element;
|
|
/**Chldren renders when the user is in a team */
|
|
children: JSX.Element;
|
|
isParentLoading?: ReactNode;
|
|
}) {
|
|
const { t } = useLocale();
|
|
const { isLoading, hasTeamPlan } = useHasTeamPlan();
|
|
|
|
if (hasTeamPlan) return children;
|
|
|
|
if (isParentLoading || isLoading) return <>{isParentLoading}</>;
|
|
|
|
return (
|
|
<>
|
|
<div className="relative flex min-h-[295px] w-full items-center justify-between overflow-hidden rounded-lg pb-10">
|
|
<Image
|
|
alt={title}
|
|
src={background}
|
|
className="absolute min-h-[295px] w-full rounded-lg object-cover"
|
|
height={295}
|
|
width={1118}
|
|
quality={100}
|
|
/>
|
|
<div className="relative mt-4 px-8 sm:px-14">
|
|
<h1 className={classNames("font-cal text-3xl", dark && "text-inverted")}>{t(title)}</h1>
|
|
<p className={classNames("mt-4 mb-8 max-w-sm", dark ? "text-inverted" : "text-default")}>
|
|
{t(description)}
|
|
</p>
|
|
{buttons}
|
|
</div>
|
|
</div>
|
|
|
|
<div className="mt-4 grid-cols-3 md:grid md:gap-4">
|
|
{features.map((feature) => (
|
|
<div key={feature.title} className="bg-muted mb-4 min-h-[180px] w-full rounded-md p-8 md:mb-0">
|
|
{feature.icon}
|
|
<h2 className="font-cal text-emphasis mt-4 text-lg">{feature.title}</h2>
|
|
<p className="text-default">{feature.description}</p>
|
|
</div>
|
|
))}
|
|
</div>
|
|
</>
|
|
);
|
|
}
|