221 lines
6.2 KiB
TypeScript
221 lines
6.2 KiB
TypeScript
|
import React, { Fragment } from "react";
|
||
|
import { useMutation } from "react-query";
|
||
|
|
||
|
import { QueryCell } from "@lib/QueryCell";
|
||
|
import showToast from "@lib/notification";
|
||
|
import { trpc } from "@lib/trpc";
|
||
|
|
||
|
import { List } from "@components/List";
|
||
|
import { ShellSubHeading } from "@components/Shell";
|
||
|
import { Alert } from "@components/ui/Alert";
|
||
|
import Button from "@components/ui/Button";
|
||
|
import Switch from "@components/ui/Switch";
|
||
|
|
||
|
import ConnectIntegration from "./ConnectIntegrations";
|
||
|
import DisconnectIntegration from "./DisconnectIntegration";
|
||
|
import IntegrationListItem from "./IntegrationListItem";
|
||
|
import SubHeadingTitleWithConnections from "./SubHeadingTitleWithConnections";
|
||
|
|
||
|
type Props = {
|
||
|
onChanged: () => unknown | Promise<unknown>;
|
||
|
};
|
||
|
|
||
|
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 (
|
||
|
<div className="py-1">
|
||
|
<Switch
|
||
|
key={props.externalId}
|
||
|
name="enabled"
|
||
|
label={props.title}
|
||
|
defaultChecked={props.defaultSelected}
|
||
|
onCheckedChange={(isOn: boolean) => {
|
||
|
mutation.mutate({ isOn });
|
||
|
}}
|
||
|
/>
|
||
|
</div>
|
||
|
);
|
||
|
}
|
||
|
|
||
|
function ConnectedCalendarsList(props: Props) {
|
||
|
const query = trpc.useQuery(["viewer.connectedCalendars"], { suspense: true });
|
||
|
|
||
|
return (
|
||
|
<QueryCell
|
||
|
query={query}
|
||
|
empty={() => null}
|
||
|
success={({ data }) => (
|
||
|
<List>
|
||
|
{data.map((item) => (
|
||
|
<Fragment key={item.credentialId}>
|
||
|
{item.calendars ? (
|
||
|
<IntegrationListItem
|
||
|
{...item.integration}
|
||
|
description={item.primary?.externalId || "No external Id"}
|
||
|
actions={
|
||
|
<DisconnectIntegration
|
||
|
id={item.credentialId}
|
||
|
render={(btnProps) => (
|
||
|
<Button {...btnProps} color="warn">
|
||
|
Disconnect
|
||
|
</Button>
|
||
|
)}
|
||
|
onOpenChange={props.onChanged}
|
||
|
/>
|
||
|
}>
|
||
|
<ul className="p-4 space-y-2">
|
||
|
{item.calendars.map((cal) => (
|
||
|
<CalendarSwitch
|
||
|
key={cal.externalId}
|
||
|
externalId={cal.externalId as string}
|
||
|
title={cal.name as string}
|
||
|
type={item.integration.type}
|
||
|
defaultSelected={cal.isSelected}
|
||
|
/>
|
||
|
))}
|
||
|
</ul>
|
||
|
</IntegrationListItem>
|
||
|
) : (
|
||
|
<Alert
|
||
|
severity="warning"
|
||
|
title="Something went wrong"
|
||
|
message={item.error?.message}
|
||
|
actions={
|
||
|
<DisconnectIntegration
|
||
|
id={item.credentialId}
|
||
|
render={(btnProps) => (
|
||
|
<Button {...btnProps} color="warn">
|
||
|
Disconnect
|
||
|
</Button>
|
||
|
)}
|
||
|
onOpenChange={() => props.onChanged()}
|
||
|
/>
|
||
|
}
|
||
|
/>
|
||
|
)}
|
||
|
</Fragment>
|
||
|
))}
|
||
|
</List>
|
||
|
)}
|
||
|
/>
|
||
|
);
|
||
|
}
|
||
|
|
||
|
function CalendarList(props: Props) {
|
||
|
const query = trpc.useQuery(["viewer.integrations"]);
|
||
|
|
||
|
return (
|
||
|
<QueryCell
|
||
|
query={query}
|
||
|
success={({ data }) => (
|
||
|
<List>
|
||
|
{data.calendar.items.map((item) => (
|
||
|
<IntegrationListItem
|
||
|
key={item.title}
|
||
|
{...item}
|
||
|
actions={
|
||
|
<ConnectIntegration
|
||
|
type={item.type}
|
||
|
render={(btnProps) => (
|
||
|
<Button color="secondary" {...btnProps}>
|
||
|
Connect
|
||
|
</Button>
|
||
|
)}
|
||
|
onOpenChange={() => props.onChanged()}
|
||
|
/>
|
||
|
}
|
||
|
/>
|
||
|
))}
|
||
|
</List>
|
||
|
)}
|
||
|
/>
|
||
|
);
|
||
|
}
|
||
|
export function CalendarListContainer(props: { heading?: false }) {
|
||
|
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"]);
|
||
|
return (
|
||
|
<>
|
||
|
{heading && (
|
||
|
<ShellSubHeading
|
||
|
className="mt-10"
|
||
|
title={<SubHeadingTitleWithConnections title="Calendars" numConnections={query.data?.length} />}
|
||
|
subtitle={
|
||
|
<>
|
||
|
Configure how your links integrate with your calendars.
|
||
|
<br />
|
||
|
You can override these settings on a per event basis.
|
||
|
</>
|
||
|
}
|
||
|
/>
|
||
|
)}
|
||
|
<ConnectedCalendarsList onChanged={onChanged} />
|
||
|
{!!query.data?.length && (
|
||
|
<ShellSubHeading
|
||
|
className="mt-6"
|
||
|
title={<SubHeadingTitleWithConnections title="Connect an additional calendar" />}
|
||
|
/>
|
||
|
)}
|
||
|
<CalendarList onChanged={onChanged} />
|
||
|
</>
|
||
|
);
|
||
|
}
|