Co-authored-by: Joe Au-Yeung <65426560+joeauyeung@users.noreply.github.com> Co-authored-by: sean-brydon <55134778+sean-brydon@users.noreply.github.com>
57 lines
1.8 KiB
TypeScript
57 lines
1.8 KiB
TypeScript
import Link from "next/link";
|
|
|
|
import { WEBAPP_URL } from "@calcom/lib/constants";
|
|
import { useLocale } from "@calcom/lib/hooks/useLocale";
|
|
import { Icon } from "@calcom/ui";
|
|
|
|
const ExistingGoogleCal = ({ gCalInstalled, appName }: { gCalInstalled?: boolean; appName: string }) => {
|
|
const { t } = useLocale();
|
|
|
|
return gCalInstalled ? (
|
|
<div className="bg-subtle rounded-md px-4 py-3">
|
|
<div className="items-start space-x-2.5">
|
|
<div className="flex items-start">
|
|
<div>
|
|
<Icon name="check" className="mr-2 mt-1 font-semibold" />
|
|
</div>
|
|
<div>
|
|
<span className="font-semibold">{t("google_calendar_is_connected")}</span>
|
|
<div>
|
|
<div>
|
|
<span>{t("requires_google_calendar")}</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
) : (
|
|
<div className="bg-info text-info rounded-md px-4 py-3">
|
|
<div className="items-start space-x-2.5">
|
|
<div className="flex items-start">
|
|
<div>
|
|
<Icon name="circle-alert" className="mr-2 mt-1 font-semibold" />
|
|
</div>
|
|
<div>
|
|
<span className="font-semibold">{t("this_app_requires_google_calendar", { appName })}</span>
|
|
<div>
|
|
<div>
|
|
<>
|
|
<Link
|
|
href={`${WEBAPP_URL}/apps/google-calendar`}
|
|
className="text-info flex items-center underline">
|
|
<span className="mr-1">{t("connect_google_calendar")}</span>
|
|
<Icon name="arrow-right" />
|
|
</Link>
|
|
</>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default ExistingGoogleCal;
|