2022-10-20 05:09:52 +00:00
|
|
|
import { useAutoAnimate } from "@formkit/auto-animate/react";
|
2022-10-14 16:24:43 +00:00
|
|
|
import Link from "next/link";
|
|
|
|
|
2023-02-16 22:39:57 +00:00
|
|
|
import type { RouterOutputs } from "@calcom/trpc/react";
|
2022-11-23 02:55:25 +00:00
|
|
|
import { Switch } from "@calcom/ui";
|
2022-10-14 16:24:43 +00:00
|
|
|
|
2023-02-16 22:39:57 +00:00
|
|
|
import type { SetAppDataGeneric } from "../EventTypeAppContext";
|
|
|
|
import type { eventTypeAppCardZod } from "../eventTypeAppCardZod";
|
2022-11-26 13:54:42 +00:00
|
|
|
import OmniInstallAppButton from "./OmniInstallAppButton";
|
2022-10-14 16:24:43 +00:00
|
|
|
|
|
|
|
export default function AppCard({
|
|
|
|
app,
|
|
|
|
description,
|
|
|
|
switchOnClick,
|
|
|
|
switchChecked,
|
|
|
|
children,
|
|
|
|
setAppData,
|
2022-12-21 20:31:09 +00:00
|
|
|
returnTo,
|
2022-10-14 16:24:43 +00:00
|
|
|
}: {
|
2022-11-10 23:40:01 +00:00
|
|
|
app: RouterOutputs["viewer"]["apps"][number];
|
2022-10-14 16:24:43 +00:00
|
|
|
description?: React.ReactNode;
|
|
|
|
switchChecked?: boolean;
|
|
|
|
switchOnClick?: (e: boolean) => void;
|
|
|
|
children?: React.ReactNode;
|
|
|
|
setAppData: SetAppDataGeneric<typeof eventTypeAppCardZod>;
|
2022-12-21 20:31:09 +00:00
|
|
|
returnTo?: string;
|
2022-10-14 16:24:43 +00:00
|
|
|
}) {
|
2022-10-20 05:09:52 +00:00
|
|
|
const [animationRef] = useAutoAnimate<HTMLDivElement>();
|
2022-10-17 16:38:43 +00:00
|
|
|
|
2022-10-14 16:24:43 +00:00
|
|
|
return (
|
2022-12-07 21:47:02 +00:00
|
|
|
<div className={`mb-4 mt-2 rounded-md border border-gray-200 ${!app.enabled && "grayscale"}`}>
|
2022-11-11 19:35:10 +00:00
|
|
|
<div className="p-4 text-sm sm:p-8">
|
|
|
|
<div className="flex w-full flex-col gap-2 sm:flex-row sm:gap-0">
|
|
|
|
{/* Don't know why but w-[42px] isn't working, started happening when I started using next/dynamic */}
|
2023-01-06 12:13:56 +00:00
|
|
|
<Link href={"/apps/" + app.slug} className="mr-3 h-auto w-10 rounded-sm">
|
|
|
|
<img className="w-full" src={app?.logo} alt={app?.name} />
|
2022-11-11 19:35:10 +00:00
|
|
|
</Link>
|
|
|
|
<div className="flex flex-col">
|
|
|
|
<span className="text-base font-semibold leading-4 text-black">{app?.name}</span>
|
|
|
|
<p className="pt-2 text-sm font-normal leading-4 text-gray-600">
|
|
|
|
{description || app?.description}
|
|
|
|
</p>
|
2022-10-14 16:24:43 +00:00
|
|
|
</div>
|
2022-11-11 19:35:10 +00:00
|
|
|
{app?.isInstalled ? (
|
|
|
|
<div className="ml-auto flex items-center">
|
|
|
|
<Switch
|
2022-12-07 21:47:02 +00:00
|
|
|
disabled={!app.enabled}
|
2022-11-11 19:35:10 +00:00
|
|
|
onCheckedChange={(enabled) => {
|
|
|
|
if (switchOnClick) {
|
|
|
|
switchOnClick(enabled);
|
|
|
|
}
|
|
|
|
setAppData("enabled", enabled);
|
|
|
|
}}
|
|
|
|
checked={switchChecked}
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
) : (
|
2022-12-21 20:31:09 +00:00
|
|
|
<OmniInstallAppButton
|
|
|
|
className="ml-auto flex items-center"
|
|
|
|
appId={app.slug}
|
|
|
|
returnTo={returnTo}
|
|
|
|
/>
|
2022-11-11 19:35:10 +00:00
|
|
|
)}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div ref={animationRef}>
|
|
|
|
{app?.isInstalled && switchChecked && <hr />}
|
|
|
|
{app?.isInstalled && switchChecked ? <div className="p-4 text-sm sm:px-8">{children}</div> : null}
|
2022-10-14 16:24:43 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|