Co-authored-by: Alex van Andel <me@alexvanandel.com> Co-authored-by: Morgan <33722304+ThyMinimalDev@users.noreply.github.com> Co-authored-by: Morgan Vernay <morgan@cal.com> Co-authored-by: Omar López <zomars@me.com>
122 lines
3.6 KiB
TypeScript
122 lines
3.6 KiB
TypeScript
"use client";
|
|
|
|
import { useMutation } from "@tanstack/react-query";
|
|
import { useState } from "react";
|
|
|
|
import { classNames } from "@calcom/lib";
|
|
import { useLocale } from "@calcom/lib/hooks/useLocale";
|
|
import { trpc } from "@calcom/trpc/react";
|
|
import { Icon, showToast, Switch } from "@calcom/ui";
|
|
|
|
export type ICalendarSwitchProps = {
|
|
title: string;
|
|
externalId: string;
|
|
type: string;
|
|
isChecked: boolean;
|
|
name: string;
|
|
isLastItemInList?: boolean;
|
|
destination?: boolean;
|
|
credentialId: number;
|
|
eventTypeId: number | null;
|
|
disabled?: boolean;
|
|
};
|
|
|
|
type UserCalendarSwitchProps = Omit<ICalendarSwitchProps, "eventTypeId">;
|
|
|
|
type EventCalendarSwitchProps = ICalendarSwitchProps & {
|
|
eventTypeId: number;
|
|
};
|
|
|
|
const CalendarSwitch = (props: ICalendarSwitchProps) => {
|
|
const { title, externalId, type, isChecked, name, credentialId, 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,
|
|
// 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.integrations.invalidate();
|
|
await utils.viewer.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 };
|