Files
calendar/apps/web/modules/calendars/components/CalendarSwitch.tsx
T
2026-01-28 10:44:18 -03:00

123 lines
3.7 KiB
TypeScript

"use client";
import { useMutation } from "@tanstack/react-query";
import { useState } from "react";
import { useLocale } from "@calcom/lib/hooks/useLocale";
import { trpc } from "@calcom/trpc/react";
import classNames from "@calcom/ui/classNames";
import { Switch } from "@calcom/ui/components/form";
import { Icon } from "@calcom/ui/components/icon";
import { showToast } from "@calcom/ui/components/toast";
import type { ICalendarSwitchProps } from "@calcom/ui/components/calendar-switch";
type UserCalendarSwitchProps = Omit<ICalendarSwitchProps, "eventTypeId">;
type EventCalendarSwitchProps = ICalendarSwitchProps & {
eventTypeId: number;
};
const CalendarSwitch = (props: ICalendarSwitchProps) => {
const {
title,
externalId,
type,
isChecked,
name,
credentialId,
delegationCredentialId,
eventTypeId,
disabled,
} = props;
const [checkedInternal, setCheckedInternal] = useState(isChecked);
const utils = trpc.useUtils();
const { t } = useLocale();
const mutation = useMutation({
mutationFn: async ({ isOn }: { isOn: boolean }) => {
const body = {
integration: type,
externalId: externalId,
...(delegationCredentialId && { delegationCredentialId }),
// new URLSearchParams does not accept numbers
credentialId: String(credentialId),
...(eventTypeId ? { eventTypeId: String(eventTypeId) } : {}),
};
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?${new URLSearchParams(body)}`, {
method: "DELETE",
headers: {
"Content-Type": "application/json",
},
});
if (!res.ok) {
throw new Error("Something went wrong");
}
}
},
async onSettled() {
await utils.viewer.apps.integrations.invalidate();
await utils.viewer.calendars.connectedCalendars.invalidate();
},
onError() {
setCheckedInternal(false);
showToast(`Something went wrong when toggling "${title}"`, "error");
},
});
return (
<div className={classNames("my-2 flex flex-row items-center")}>
<div className="flex pl-2">
<Switch
id={externalId}
checked={checkedInternal}
disabled={disabled || mutation.isPending}
onCheckedChange={async (isOn: boolean) => {
setCheckedInternal(isOn);
await mutation.mutate({ isOn });
}}
/>
</div>
<label
className={classNames(
"ml-3 break-all text-sm font-medium leading-5",
disabled ? "cursor-not-allowed opacity-25" : "cursor-pointer"
)}
htmlFor={externalId}>
{name}
</label>
{!!props.destination && (
<span className="bg-subtle text-default ml-8 inline-flex items-center gap-1 rounded-md px-2 py-1 text-sm font-normal sm:ml-4">
<Icon name="arrow-left" className="h-4 w-4" />
{t("adding_events_to")}
</span>
)}
{mutation.isPending && (
<Icon name="rotate-cw" className="text-muted h-4 w-4 animate-spin ltr:ml-1 rtl:mr-1" />
)}
</div>
);
};
export const UserCalendarSwitch = (props: UserCalendarSwitchProps) => {
return <CalendarSwitch {...props} eventTypeId={null} />;
};
export const EventCalendarSwitch = (props: EventCalendarSwitchProps) => {
return <CalendarSwitch {...props} />;
};
export { CalendarSwitch };