import { Fragment } from "react"; import { useMutation } from "react-query"; import { InstallAppButton } from "@calcom/app-store/components"; import showToast from "@calcom/lib/notification"; import { Alert } from "@calcom/ui/Alert"; import Button from "@calcom/ui/Button"; import Switch from "@calcom/ui/Switch"; import { QueryCell } from "@lib/QueryCell"; import { useLocale } from "@lib/hooks/useLocale"; import { trpc } from "@lib/trpc"; import DestinationCalendarSelector from "@components/DestinationCalendarSelector"; import { List } from "@components/List"; import { ShellSubHeading } from "@components/Shell"; import DisconnectIntegration from "./DisconnectIntegration"; import IntegrationListItem from "./IntegrationListItem"; import SubHeadingTitleWithConnections from "./SubHeadingTitleWithConnections"; type Props = { onChanged: () => unknown | Promise; }; function CalendarSwitch(props: { type: string; externalId: string; title: string; defaultSelected: boolean; }) { const utils = trpc.useContext(); const mutation = useMutation< unknown, unknown, { isOn: boolean; } >( async ({ isOn }) => { const body = { integration: props.type, externalId: props.externalId, }; if (isOn) { const res = await fetch("/api/availability/calendar", { method: "POST", headers: { "Content-Type": "application/json", }, body: JSON.stringify(body), }); if (!res.ok) { throw new Error("Something went wrong"); } } else { const res = await fetch("/api/availability/calendar", { method: "DELETE", headers: { "Content-Type": "application/json", }, body: JSON.stringify(body), }); if (!res.ok) { throw new Error("Something went wrong"); } } }, { async onSettled() { await utils.invalidateQueries(["viewer.integrations"]); }, onError() { showToast(`Something went wrong when toggling "${props.title}""`, "error"); }, } ); return (
{ mutation.mutate({ isOn }); }} />
); } function ConnectedCalendarsList(props: Props) { const { t } = useLocale(); const query = trpc.useQuery(["viewer.connectedCalendars"], { suspense: true }); return ( null} success={({ data }) => { if (!data.connectedCalendars.length) { return null; } return ( {data.connectedCalendars.map((item) => ( {item.calendars ? ( ( )} onOpenChange={props.onChanged} /> }>
    {item.calendars.map((cal) => ( ))}
) : ( ( )} onOpenChange={() => props.onChanged()} /> } /> )}
))}
); }} /> ); } function CalendarList(props: Props) { const { t } = useLocale(); const query = trpc.useQuery(["viewer.integrations"]); return ( ( {data.calendar.items.map((item) => ( ( )} onChanged={() => props.onChanged()} /> } /> ))} )} /> ); } export function CalendarListContainer(props: { heading?: false }) { const { t } = useLocale(); const { heading = true } = props; const utils = trpc.useContext(); const onChanged = () => Promise.allSettled([ utils.invalidateQueries(["viewer.integrations"]), utils.invalidateQueries(["viewer.connectedCalendars"]), ]); const query = trpc.useQuery(["viewer.connectedCalendars"]); const mutation = trpc.useMutation("viewer.setDestinationCalendar"); return ( <> {heading && ( } subtitle={t("configure_how_your_event_types_interact")} actions={
} /> )} {!!query.data?.connectedCalendars.length && ( } /> )} ); }