* Fixes spacings style * Fix spacings * Update test * Fix router push when image upload is success, also typo * Fix styles for mobile * Sumodule sync Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com> Co-authored-by: zomars <zomars@me.com>
87 lines
2.1 KiB
TypeScript
87 lines
2.1 KiB
TypeScript
import { useMutation } from "react-query";
|
|
|
|
import showToast from "@calcom/lib/notification";
|
|
import { trpc } from "@calcom/trpc/react";
|
|
import { Switch } from "@calcom/ui/v2";
|
|
|
|
import classNames from "@lib/classNames";
|
|
|
|
interface ICalendarSwitchProps {
|
|
title: string;
|
|
externalId: string;
|
|
type: string;
|
|
isChecked: boolean;
|
|
name: string;
|
|
isLastItemInList?: boolean;
|
|
}
|
|
const CalendarSwitch = (props: ICalendarSwitchProps) => {
|
|
const { title, externalId, type, isChecked, name, isLastItemInList = false } = props;
|
|
const utils = trpc.useContext();
|
|
const mutation = useMutation<
|
|
unknown,
|
|
unknown,
|
|
{
|
|
isOn: boolean;
|
|
}
|
|
>(
|
|
async ({ isOn }: { isOn: boolean }) => {
|
|
const body = {
|
|
integration: type,
|
|
externalId: 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 "${title}""`, "error");
|
|
},
|
|
}
|
|
);
|
|
return (
|
|
<div className={classNames("flex flex-row items-center", !isLastItemInList ? "mb-4" : "")}>
|
|
<div className="flex pl-2">
|
|
<Switch
|
|
id={externalId}
|
|
defaultChecked={isChecked}
|
|
onCheckedChange={(isOn: boolean) => {
|
|
mutation.mutate({ isOn });
|
|
}}
|
|
/>
|
|
</div>
|
|
<label className="ml-3 text-sm font-medium leading-5" htmlFor={externalId}>
|
|
{name}
|
|
</label>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export { CalendarSwitch };
|