* refactor: move Segment, BookerLayoutSelector, CreateLicenseKeyForm from packages/features to apps/web/modules Co-Authored-By: benny@cal.com <sldisek783@gmail.com> * fix: update relative imports to absolute paths in moved files Co-Authored-By: benny@cal.com <sldisek783@gmail.com> * refactor: move useBookingLocation and blocklist components from packages/features to apps/web/modules Co-Authored-By: benny@cal.com <sldisek783@gmail.com> * refactor: move EmbedTabs and embed hooks from packages/features to apps/web/modules Co-Authored-By: benny@cal.com <sldisek783@gmail.com> * fix * migrate useBookerUrl * migrate embed tabs * fix * fix * fix * mv ThemeLabel * mv settings headers to webn * update imports * clean up --------- Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
157 lines
5.4 KiB
TypeScript
157 lines
5.4 KiB
TypeScript
"use client";
|
|
|
|
import Link from "next/link";
|
|
import { useRouter } from "next/navigation";
|
|
|
|
import SettingsHeaderWithBackButton from "@calcom/web/modules/settings/components/SettingsHeaderWithBackButton";
|
|
import {
|
|
WEBHOOK_VERSION_OPTIONS,
|
|
getWebhookVersionLabel,
|
|
getWebhookVersionDocsUrl,
|
|
} from "@calcom/features/webhooks/lib/constants";
|
|
import type { WebhookVersion } from "@calcom/features/webhooks/lib/interface/IWebhookRepository";
|
|
import { subscriberUrlReserved } from "@calcom/features/webhooks/lib/subscriberUrlReserved";
|
|
import { APP_NAME } from "@calcom/lib/constants";
|
|
import { useLocale } from "@calcom/lib/hooks/useLocale";
|
|
import type { WebhookTriggerEvents } from "@calcom/prisma/enums";
|
|
import { trpc } from "@calcom/trpc/react";
|
|
import { Select } from "@calcom/ui/components/form";
|
|
import { Icon } from "@calcom/ui/components/icon";
|
|
import { SkeletonContainer } from "@calcom/ui/components/skeleton";
|
|
import { showToast } from "@calcom/ui/components/toast";
|
|
import { Tooltip } from "@calcom/ui/components/tooltip";
|
|
import { revalidateWebhooksList } from "@calcom/web/app/(use-page-wrapper)/settings/(settings-layout)/developer/webhooks/(with-loader)/actions";
|
|
|
|
import type { WebhookFormSubmitData } from "../components/WebhookForm";
|
|
import WebhookForm from "../components/WebhookForm";
|
|
|
|
type WebhookProps = {
|
|
id: string;
|
|
userId: number | null;
|
|
teamId: number | null;
|
|
subscriberUrl: string;
|
|
payloadTemplate: string | null;
|
|
active: boolean;
|
|
eventTriggers: WebhookTriggerEvents[];
|
|
secret: string | null;
|
|
platform: boolean;
|
|
version: WebhookVersion;
|
|
};
|
|
|
|
export function EditWebhookView({ webhook }: { webhook?: WebhookProps }) {
|
|
const { t } = useLocale();
|
|
const utils = trpc.useUtils();
|
|
const router = useRouter();
|
|
const { data: installedApps, isPending } = trpc.viewer.apps.integrations.useQuery(
|
|
{ variant: "other", onlyInstalled: true },
|
|
{
|
|
suspense: true,
|
|
enabled: !!webhook,
|
|
}
|
|
);
|
|
|
|
const { data: webhooks } = trpc.viewer.webhook.list.useQuery(undefined, {
|
|
suspense: true,
|
|
enabled: !!webhook,
|
|
});
|
|
const editWebhookMutation = trpc.viewer.webhook.edit.useMutation({
|
|
async onSuccess() {
|
|
await utils.viewer.webhook.list.invalidate();
|
|
await utils.viewer.webhook.get.invalidate({ webhookId: webhook?.id });
|
|
showToast(t("webhook_updated_successfully"), "success");
|
|
revalidateWebhooksList();
|
|
router.push("/settings/developer/webhooks");
|
|
},
|
|
onError(error) {
|
|
showToast(`${error.message}`, "error");
|
|
},
|
|
});
|
|
|
|
if (isPending || !webhook) return <SkeletonContainer />;
|
|
|
|
return (
|
|
<WebhookForm
|
|
noRoutingFormTriggers={false}
|
|
webhook={webhook}
|
|
headerWrapper={(formMethods, children) => (
|
|
<SettingsHeaderWithBackButton
|
|
title={t("edit_webhook")}
|
|
description={t("add_webhook_description", { appName: APP_NAME })}
|
|
borderInShellHeader={true}
|
|
CTA={
|
|
<div className="flex items-center gap-2">
|
|
<Tooltip content={t("webhook_version")}>
|
|
<div>
|
|
<Select
|
|
className="min-w-36"
|
|
options={WEBHOOK_VERSION_OPTIONS}
|
|
value={{
|
|
value: formMethods.watch("version"),
|
|
label: getWebhookVersionLabel(formMethods.watch("version")),
|
|
}}
|
|
onChange={(option) => {
|
|
if (option) {
|
|
formMethods.setValue("version", option.value, { shouldDirty: true });
|
|
}
|
|
}}
|
|
/>
|
|
</div>
|
|
</Tooltip>
|
|
<Tooltip
|
|
content={t("webhook_version_docs", {
|
|
version: getWebhookVersionLabel(formMethods.watch("version")),
|
|
})}>
|
|
<Link
|
|
href={getWebhookVersionDocsUrl(formMethods.watch("version"))}
|
|
target="_blank"
|
|
className="text-subtle hover:text-emphasis flex items-center">
|
|
<Icon name="external-link" className="h-4 w-4" />
|
|
</Link>
|
|
</Tooltip>
|
|
</div>
|
|
}>
|
|
{children}
|
|
</SettingsHeaderWithBackButton>
|
|
)}
|
|
onSubmit={(values: WebhookFormSubmitData) => {
|
|
if (
|
|
subscriberUrlReserved({
|
|
subscriberUrl: values.subscriberUrl,
|
|
id: webhook.id,
|
|
webhooks,
|
|
teamId: webhook.teamId ?? undefined,
|
|
userId: webhook.userId ?? undefined,
|
|
platform: webhook.platform ?? undefined,
|
|
})
|
|
) {
|
|
showToast(t("webhook_subscriber_url_reserved"), "error");
|
|
return;
|
|
}
|
|
|
|
if (values.changeSecret) {
|
|
values.secret = values.newSecret.trim().length ? values.newSecret : null;
|
|
}
|
|
|
|
if (!values.payloadTemplate) {
|
|
values.payloadTemplate = null;
|
|
}
|
|
|
|
editWebhookMutation.mutate({
|
|
id: webhook.id,
|
|
subscriberUrl: values.subscriberUrl,
|
|
eventTriggers: values.eventTriggers,
|
|
active: values.active,
|
|
payloadTemplate: values.payloadTemplate,
|
|
secret: values.secret,
|
|
time: values.time,
|
|
timeUnit: values.timeUnit,
|
|
version: values.version,
|
|
});
|
|
}}
|
|
apps={installedApps?.items.map((app) => app.slug)}
|
|
/>
|
|
);
|
|
}
|
|
|
|
export default EditWebhookView;
|