2022-09-06 22:58:16 +00:00
|
|
|
import { ArrowRightIcon } from "@heroicons/react/solid";
|
|
|
|
|
|
|
|
import classNames from "@calcom/lib/classNames";
|
|
|
|
import { useLocale } from "@calcom/lib/hooks/useLocale";
|
|
|
|
import { trpc } from "@calcom/trpc/react";
|
2022-11-23 02:55:25 +00:00
|
|
|
import { SkeletonAvatar, SkeletonText, SkeletonButton, List } from "@calcom/ui";
|
2022-09-06 22:58:16 +00:00
|
|
|
|
|
|
|
import { CalendarItem } from "../components/CalendarItem";
|
|
|
|
import { ConnectedCalendarItem } from "../components/ConnectedCalendarItem";
|
|
|
|
import { CreateEventsOnCalendarSelect } from "../components/CreateEventsOnCalendarSelect";
|
|
|
|
|
|
|
|
interface IConnectCalendarsProps {
|
|
|
|
nextStep: () => void;
|
|
|
|
}
|
|
|
|
|
|
|
|
const ConnectedCalendars = (props: IConnectCalendarsProps) => {
|
|
|
|
const { nextStep } = props;
|
2022-11-10 23:40:01 +00:00
|
|
|
const queryConnectedCalendars = trpc.viewer.connectedCalendars.useQuery();
|
2022-09-06 22:58:16 +00:00
|
|
|
const { t } = useLocale();
|
2022-11-10 23:40:01 +00:00
|
|
|
const queryIntegrations = trpc.viewer.integrations.useQuery({ variant: "calendar", onlyInstalled: false });
|
2022-09-06 22:58:16 +00:00
|
|
|
|
|
|
|
const firstCalendar = queryConnectedCalendars.data?.connectedCalendars.find(
|
|
|
|
(item) => item.calendars && item.calendars?.length > 0
|
|
|
|
);
|
|
|
|
const disabledNextButton = firstCalendar === undefined;
|
|
|
|
const destinationCalendar = queryConnectedCalendars.data?.destinationCalendar;
|
|
|
|
return (
|
|
|
|
<>
|
|
|
|
{/* Already connected calendars */}
|
2022-09-22 04:26:56 +00:00
|
|
|
{!queryConnectedCalendars.isLoading &&
|
|
|
|
firstCalendar &&
|
2022-09-06 22:58:16 +00:00
|
|
|
firstCalendar.integration &&
|
|
|
|
firstCalendar.integration.title &&
|
|
|
|
firstCalendar.integration.imageSrc && (
|
|
|
|
<>
|
|
|
|
<List className="rounded-md border border-gray-200 bg-white p-0 dark:bg-black">
|
|
|
|
<ConnectedCalendarItem
|
|
|
|
key={firstCalendar.integration.title}
|
|
|
|
name={firstCalendar.integration.title}
|
|
|
|
logo={firstCalendar.integration.imageSrc}
|
|
|
|
externalId={
|
|
|
|
firstCalendar && firstCalendar.calendars && firstCalendar.calendars.length > 0
|
|
|
|
? firstCalendar.calendars[0].externalId
|
|
|
|
: ""
|
|
|
|
}
|
|
|
|
calendars={firstCalendar.calendars}
|
|
|
|
integrationType={firstCalendar.integration.type}
|
|
|
|
/>
|
|
|
|
</List>
|
|
|
|
{/* Create event on selected calendar */}
|
|
|
|
<CreateEventsOnCalendarSelect calendar={destinationCalendar} />
|
2022-09-14 09:55:49 +00:00
|
|
|
<p className="mt-4 text-sm text-gray-500">{t("connect_calendars_from_app_store")}</p>
|
2022-09-06 22:58:16 +00:00
|
|
|
</>
|
|
|
|
)}
|
|
|
|
|
|
|
|
{/* Connect calendars list */}
|
|
|
|
{firstCalendar === undefined && queryIntegrations.data && queryIntegrations.data.items.length > 0 && (
|
2022-09-07 01:34:33 +00:00
|
|
|
<List className="mx-1 divide-y divide-gray-200 rounded-md border border-gray-200 bg-white p-0 dark:bg-black sm:mx-0">
|
2022-09-06 22:58:16 +00:00
|
|
|
{queryIntegrations.data &&
|
|
|
|
queryIntegrations.data.items.map((item) => (
|
|
|
|
<li key={item.title}>
|
|
|
|
{item.title && item.imageSrc && (
|
|
|
|
<CalendarItem
|
|
|
|
type={item.type}
|
|
|
|
title={item.title}
|
|
|
|
description={item.description}
|
|
|
|
imageSrc={item.imageSrc}
|
|
|
|
/>
|
|
|
|
)}
|
|
|
|
</li>
|
|
|
|
))}
|
|
|
|
</List>
|
|
|
|
)}
|
|
|
|
|
2022-10-04 15:37:20 +00:00
|
|
|
{queryIntegrations.isLoading && (
|
2022-09-06 22:58:16 +00:00
|
|
|
<ul className="divide-y divide-gray-200 rounded-md border border-gray-200 bg-white p-0 dark:bg-black">
|
|
|
|
{[0, 0, 0, 0].map((_item, index) => {
|
|
|
|
return (
|
|
|
|
<li className="flex w-full flex-row justify-center border-b-0 py-6" key={index}>
|
2022-09-09 08:22:39 +00:00
|
|
|
<SkeletonAvatar className="mx-6 h-8 w-8 px-4" />
|
|
|
|
<SkeletonText className="ml-1 mr-4 mt-3 h-5 w-full" />
|
|
|
|
<SkeletonButton className="mr-6 h-8 w-20 rounded-md p-5" />
|
2022-09-06 22:58:16 +00:00
|
|
|
</li>
|
|
|
|
);
|
|
|
|
})}
|
|
|
|
</ul>
|
|
|
|
)}
|
|
|
|
<button
|
|
|
|
type="button"
|
|
|
|
data-testid="save-calendar-button"
|
|
|
|
className={classNames(
|
|
|
|
"mt-8 flex w-full flex-row justify-center rounded-md border border-black bg-black p-2 text-center text-sm text-white",
|
|
|
|
disabledNextButton ? "cursor-not-allowed opacity-20" : ""
|
|
|
|
)}
|
|
|
|
onClick={() => nextStep()}
|
|
|
|
disabled={disabledNextButton}>
|
|
|
|
{firstCalendar ? `${t("continue")}` : `${t("next_step_text")}`}
|
|
|
|
<ArrowRightIcon className="ml-2 h-4 w-4 self-center" aria-hidden="true" />
|
|
|
|
</button>
|
|
|
|
</>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export { ConnectedCalendars };
|