* ui playground * add types to ui * push avatar ignore ts and eslint errors * feat: V3 UI avatar (#18997) * avatar playground * add overflow-hidden back for loading indicator * update lock * feat: v3/badge (#18999) * badge intro * fix text on small badge * add dark mode warning * feat: v3/button (#19014) * TOC * wip buttons * shadows * secondary * semantic colours * minimal buttons * update disabled states * checkbox * dropdown v3 * load icons * fix design sections * fix icon gap * fix * remove client component from rsc * use peer as avatar * gif * fix button gap - dropdown iocn * support start icon in dropdowns * add alert demo + v3 component + darken semantic text * base inputs and text field * wip input * input field addon/suffix * toast page * wip select * match designs for input and select rounded * fix * fix select isloading transform * fix multi icons transition rotation * fix group heading * range slider demo + range slider * range slider popover design * v3 dialog * fix slider thumb size * wrap in suspense for useSearchParam difference in next14+ * base of tabs + horizontal tabs * fix select sizing to match input 36px * fix dark mode hover on button * target domState class for light/dark so we work on portal elements * fix default bg on popover * lightmode toasts + eleveation token * empty screen * intro to split button concept * mass colour updates * intro to themes * remove i18n from label with name * bouncy buttons * feat: small select * nav item dumb component * full demo * settings demo * fix tabs * fix mt * fix dropdown feedback from loom * alert fixes mentioned in loom * push font-cal * move to fumadocs * fix avatar * colors table * add typeography * icon + spacing guide * add border radius and shadow tables * fix colours and border radius * remove prose undline via fumas fork * fix icon buttons sizes * button group component * fix horizontal tabs * tab fixes * switches * pagination component * show toasts components raw * sync with airtable * add use client * 10px on input again * 10px in select also * fix input height * fix files merge * fix loading state for icon buttons * fix button fab * Enable addon to now overflow to next line in DS * use cal font for dialog text * add avatar square variant * fix select padding and menu size * fix type errors * fix type errors * add switch small size and fix type errors * fix ref types on input * update web styles * remove addonFilled to fix type errors * push dialog fixes * fix checkbox display * remove prose from alert examples * remove prose from all our component examples * badge rounded-lg on lg size * update colors * force w/h on icon buttons instead of inheriting * remove border-focus * remove border-focus from tailwind config * update tokens to match new colours * add new border subtle tokens and add to toasts * fix lg button padding * fix and drastically improve rtl rests * multi select use badges * use badge design for select pills * fix avatar alignment * fix tests and remove redudant ones * fix tests and remove redudant ones * update atoms globals css * extract tokens.css * extract app.css * force flex for atoms * add @calcom/ui/css * revert ui playground styles abstraction * fix input focus states * fix focus states for buttons * feat: v3/app work (#19233) * globals.css for app + event types listing search * few app wide NITS * fix select foucs within styling * fix formbuilder switch styles * fix disabled state of nested inputs * workflow fixes * webhook form fixes * i18n on tabs info * booking filters + tab * fix filters spacing * make first item so we get correct border radius if not default * round radio group in create event types + make button small * profile page * update editor br * button nits in existing places in the app * fix timezone select and multilist in guest form * fix text area on public booking page * size small event types create * margin on routing filter * filters improvments * routing insights fixes * fix date filter range * ooo fixes * fix teams/members bulk actions * create team UI * i18n in useTabs instead of in tab component now * Add event type setup border to availability * fix bulk actions on org members table * onboarding fixes * fix input types with ref stripe comparision * i18n fixes for platform * update globals of atoms * fix form builder firstname/lastname switch + correct footer useage * fix select * Revert "add @calcom/ui/css" This reverts commit 0dd8f9012907a278cfede4a98f289cb0744c9244. * revert tokens css * Revert "extract app.css" This reverts commit 10b998604816ad3310c24b36a02a638dabc5be24. * linear nits * workflow dropdown * fix page theme heading sizes to match cards * fix stepper for team creation * adjust margin to FilterSearchField * fix ooo icon * fix booker and dark mode due to darkgray 50 * more dark mode fixes * add size prop --------- Co-authored-by: Eunjae Lee <hey@eunjae.dev> Co-authored-by: Morgan Vernay <morgan@cal.com> * remove ui-playground * fix grow missing from merge * add search icon data-test-id back to search * fix FormAction style * fix datatestid for apps and tabs * change selector for team invitation e2e * fix use data-testid from item instaed of using names * rename upper case O * fix unit tests data-testid * fix unit tests data-testid * more data-testid changes * add data-testid to apps tab * data-testid to installed appPage * fix embed tests * fix filter-popover-trigger * use text-error and use dataId for locator * more e2e improvment * pass in single testId as button is now duplicate * show field-error instead * add test to eventtype tabs * Add css vars to embed too\ * add scrollbar and change dialog overlay colour * fix type * use attribute instead of class for tab detection * await promise * use new tokens for sprite generation * add correct testing Ids to e2e instead of button:text * use testIds for creation of orgs * Webhook receiver wait for 10 seconds --------- Co-authored-by: Eunjae Lee <hey@eunjae.dev> Co-authored-by: Morgan Vernay <morgan@cal.com> Co-authored-by: Hariom <hariombalhara@gmail.com> Co-authored-by: Joe Au-Yeung <j.auyeung419@gmail.com> Co-authored-by: Joe Au-Yeung <65426560+joeauyeung@users.noreply.github.com>
365 lines
14 KiB
TypeScript
365 lines
14 KiB
TypeScript
import { useEffect, useState } from "react";
|
|
import { Controller, useForm } from "react-hook-form";
|
|
|
|
import { TimeTimeUnitInput } from "@calcom/features/ee/workflows/components/TimeTimeUnitInput";
|
|
import { WEBAPP_URL } from "@calcom/lib/constants";
|
|
import { useLocale } from "@calcom/lib/hooks/useLocale";
|
|
import { TimeUnit } from "@calcom/prisma/enums";
|
|
import { WebhookTriggerEvents } from "@calcom/prisma/enums";
|
|
import type { RouterOutputs } from "@calcom/trpc/react";
|
|
import { Button, Form, Label, Select, Switch, TextArea, TextField, ToggleGroup } from "@calcom/ui";
|
|
|
|
import SectionBottomActions from "../../settings/SectionBottomActions";
|
|
import customTemplate, { hasTemplateIntegration } from "../lib/integrationTemplate";
|
|
import WebhookTestDisclosure from "./WebhookTestDisclosure";
|
|
|
|
export type TWebhook = RouterOutputs["viewer"]["webhook"]["list"][number];
|
|
|
|
export type WebhookFormData = {
|
|
id?: string;
|
|
subscriberUrl: string;
|
|
active: boolean;
|
|
eventTriggers: WebhookTriggerEvents[];
|
|
secret: string | null;
|
|
payloadTemplate: string | undefined | null;
|
|
time?: number | null;
|
|
timeUnit?: TimeUnit | null;
|
|
};
|
|
|
|
export type WebhookFormSubmitData = WebhookFormData & {
|
|
changeSecret: boolean;
|
|
newSecret: string;
|
|
};
|
|
|
|
type WebhookTriggerEventOptions = readonly { value: WebhookTriggerEvents; label: string }[];
|
|
|
|
const WEBHOOK_TRIGGER_EVENTS_GROUPED_BY_APP_V2: Record<string, WebhookTriggerEventOptions> = {
|
|
core: [
|
|
{ value: WebhookTriggerEvents.BOOKING_CANCELLED, label: "booking_cancelled" },
|
|
{ value: WebhookTriggerEvents.BOOKING_CREATED, label: "booking_created" },
|
|
{ value: WebhookTriggerEvents.BOOKING_REJECTED, label: "booking_rejected" },
|
|
{ value: WebhookTriggerEvents.BOOKING_REQUESTED, label: "booking_requested" },
|
|
{ value: WebhookTriggerEvents.BOOKING_PAYMENT_INITIATED, label: "booking_payment_initiated" },
|
|
{ value: WebhookTriggerEvents.BOOKING_RESCHEDULED, label: "booking_rescheduled" },
|
|
{ value: WebhookTriggerEvents.BOOKING_PAID, label: "booking_paid" },
|
|
{ value: WebhookTriggerEvents.BOOKING_NO_SHOW_UPDATED, label: "booking_no_show_updated" },
|
|
{ value: WebhookTriggerEvents.MEETING_ENDED, label: "meeting_ended" },
|
|
{ value: WebhookTriggerEvents.MEETING_STARTED, label: "meeting_started" },
|
|
{ value: WebhookTriggerEvents.RECORDING_READY, label: "recording_ready" },
|
|
{ value: WebhookTriggerEvents.INSTANT_MEETING, label: "instant_meeting" },
|
|
{ value: WebhookTriggerEvents.OOO_CREATED, label: "ooo_created" },
|
|
{
|
|
value: WebhookTriggerEvents.RECORDING_TRANSCRIPTION_GENERATED,
|
|
label: "recording_transcription_generated",
|
|
},
|
|
{ value: WebhookTriggerEvents.AFTER_HOSTS_CAL_VIDEO_NO_SHOW, label: "after_hosts_cal_video_no_show" },
|
|
{
|
|
value: WebhookTriggerEvents.AFTER_GUESTS_CAL_VIDEO_NO_SHOW,
|
|
label: "after_guests_cal_video_no_show",
|
|
},
|
|
],
|
|
"routing-forms": [
|
|
{ value: WebhookTriggerEvents.FORM_SUBMITTED, label: "form_submitted" },
|
|
{ value: WebhookTriggerEvents.FORM_SUBMITTED_NO_EVENT, label: "form_submitted_no_event" },
|
|
],
|
|
} as const;
|
|
|
|
export type WebhookFormValues = {
|
|
subscriberUrl: string;
|
|
active: boolean;
|
|
eventTriggers: WebhookTriggerEvents[];
|
|
secret: string | null;
|
|
payloadTemplate: string | undefined | null;
|
|
time?: number | null;
|
|
timeUnit?: TimeUnit | null;
|
|
};
|
|
|
|
const WebhookForm = (props: {
|
|
webhook?: WebhookFormData;
|
|
apps?: (keyof typeof WEBHOOK_TRIGGER_EVENTS_GROUPED_BY_APP_V2)[];
|
|
overrideTriggerOptions?: (typeof WEBHOOK_TRIGGER_EVENTS_GROUPED_BY_APP_V2)["core"];
|
|
onSubmit: (event: WebhookFormSubmitData) => void;
|
|
onCancel?: () => void;
|
|
noRoutingFormTriggers: boolean;
|
|
selectOnlyInstantMeetingOption?: boolean;
|
|
}) => {
|
|
const { apps = [], selectOnlyInstantMeetingOption = false, overrideTriggerOptions } = props;
|
|
const { t } = useLocale();
|
|
|
|
const triggerOptions = overrideTriggerOptions
|
|
? [...overrideTriggerOptions]
|
|
: [...WEBHOOK_TRIGGER_EVENTS_GROUPED_BY_APP_V2["core"]];
|
|
if (apps) {
|
|
for (const app of apps) {
|
|
if (app === "routing-forms" && props.noRoutingFormTriggers) continue;
|
|
if (WEBHOOK_TRIGGER_EVENTS_GROUPED_BY_APP_V2[app]) {
|
|
triggerOptions.push(...WEBHOOK_TRIGGER_EVENTS_GROUPED_BY_APP_V2[app]);
|
|
}
|
|
}
|
|
}
|
|
const translatedTriggerOptions = triggerOptions.map((option) => ({ ...option, label: t(option.label) }));
|
|
|
|
const getEventTriggers = () => {
|
|
if (props.webhook) return props.webhook.eventTriggers;
|
|
|
|
return (
|
|
selectOnlyInstantMeetingOption
|
|
? translatedTriggerOptions.filter((option) => option.value === WebhookTriggerEvents.INSTANT_MEETING)
|
|
: translatedTriggerOptions.filter((option) => option.value !== WebhookTriggerEvents.INSTANT_MEETING)
|
|
).map((option) => option.value);
|
|
};
|
|
|
|
const formMethods = useForm({
|
|
defaultValues: {
|
|
subscriberUrl: props.webhook?.subscriberUrl || "",
|
|
active: props.webhook ? props.webhook.active : true,
|
|
eventTriggers: getEventTriggers(),
|
|
secret: props?.webhook?.secret || "",
|
|
payloadTemplate: props?.webhook?.payloadTemplate || undefined,
|
|
timeUnit: props?.webhook?.timeUnit || undefined,
|
|
time: props?.webhook?.time || undefined,
|
|
},
|
|
});
|
|
|
|
const showTimeSection = formMethods
|
|
.watch("eventTriggers")
|
|
?.find(
|
|
(trigger) =>
|
|
trigger === WebhookTriggerEvents.AFTER_HOSTS_CAL_VIDEO_NO_SHOW ||
|
|
trigger === WebhookTriggerEvents.AFTER_GUESTS_CAL_VIDEO_NO_SHOW
|
|
);
|
|
|
|
const [useCustomTemplate, setUseCustomTemplate] = useState(
|
|
props?.webhook?.payloadTemplate !== undefined && props?.webhook?.payloadTemplate !== null
|
|
);
|
|
const [newSecret, setNewSecret] = useState("");
|
|
const [changeSecret, setChangeSecret] = useState<boolean>(false);
|
|
const hasSecretKey = !!props?.webhook?.secret;
|
|
|
|
useEffect(() => {
|
|
if (changeSecret) {
|
|
formMethods.unregister("secret", { keepDefaultValue: false });
|
|
}
|
|
}, [changeSecret, formMethods]);
|
|
|
|
return (
|
|
<Form
|
|
form={formMethods}
|
|
handleSubmit={(values) => props.onSubmit({ ...values, changeSecret, newSecret })}>
|
|
<div className="border-subtle rounded-t-lg border p-6">
|
|
<Controller
|
|
name="subscriberUrl"
|
|
control={formMethods.control}
|
|
render={({ field: { value } }) => (
|
|
<>
|
|
<TextField
|
|
name="subscriberUrl"
|
|
label={t("subscriber_url")}
|
|
labelClassName="font-medium text-emphasis font-sm"
|
|
value={value}
|
|
required
|
|
type="url"
|
|
onChange={(e) => {
|
|
formMethods.setValue("subscriberUrl", e?.target.value, { shouldDirty: true });
|
|
if (hasTemplateIntegration({ url: e.target.value })) {
|
|
setUseCustomTemplate(true);
|
|
formMethods.setValue("payloadTemplate", customTemplate({ url: e.target.value }), {
|
|
shouldDirty: true,
|
|
});
|
|
}
|
|
}}
|
|
/>
|
|
</>
|
|
)}
|
|
/>
|
|
<Controller
|
|
name="active"
|
|
control={formMethods.control}
|
|
render={({ field: { value } }) => (
|
|
<div className="font-sm text-emphasis mt-6 font-medium">
|
|
<Switch
|
|
label={t("enable_webhook")}
|
|
checked={value}
|
|
// defaultChecked={props?.webhook?.active ? props?.webhook?.active : true}
|
|
onCheckedChange={(value) => {
|
|
formMethods.setValue("active", value, { shouldDirty: true });
|
|
}}
|
|
/>
|
|
</div>
|
|
)}
|
|
/>
|
|
<Controller
|
|
name="eventTriggers"
|
|
control={formMethods.control}
|
|
render={({ field: { onChange, value } }) => {
|
|
const selectValue = translatedTriggerOptions.filter((option) => value.includes(option.value));
|
|
return (
|
|
<div className="mt-6">
|
|
<Label className="font-sm text-emphasis font-medium">
|
|
<>{t("event_triggers")}</>
|
|
</Label>
|
|
<Select
|
|
grow
|
|
options={translatedTriggerOptions}
|
|
isMulti
|
|
value={selectValue}
|
|
onChange={(event) => {
|
|
onChange(event.map((selection) => selection.value));
|
|
const noShowWebhookTriggerExists = !!event.find(
|
|
(trigger) =>
|
|
trigger.value === WebhookTriggerEvents.AFTER_HOSTS_CAL_VIDEO_NO_SHOW ||
|
|
trigger.value === WebhookTriggerEvents.AFTER_GUESTS_CAL_VIDEO_NO_SHOW
|
|
);
|
|
|
|
if (noShowWebhookTriggerExists) {
|
|
formMethods.setValue("time", props.webhook?.time ?? 5, { shouldDirty: true });
|
|
formMethods.setValue("timeUnit", props.webhook?.timeUnit ?? TimeUnit.MINUTE, {
|
|
shouldDirty: true,
|
|
});
|
|
} else {
|
|
formMethods.setValue("time", undefined, { shouldDirty: true });
|
|
formMethods.setValue("timeUnit", undefined, { shouldDirty: true });
|
|
}
|
|
}}
|
|
/>
|
|
</div>
|
|
);
|
|
}}
|
|
/>
|
|
|
|
{showTimeSection && (
|
|
<div className="mt-5">
|
|
<Label>{t("how_long_after_user_no_show_minutes")}</Label>
|
|
<TimeTimeUnitInput disabled={false} defaultTime={5} />
|
|
</div>
|
|
)}
|
|
|
|
<Controller
|
|
name="secret"
|
|
control={formMethods.control}
|
|
render={({ field: { value } }) => (
|
|
<div className="mt-6">
|
|
{!!hasSecretKey && !changeSecret && (
|
|
<>
|
|
<Label className="font-sm text-emphasis font-medium">Secret</Label>
|
|
<div className="bg-default space-y-0 rounded-md border-0 border-neutral-200 sm:mx-0 md:border">
|
|
<div className="text-emphasis rounded-sm border-b p-2 text-sm">
|
|
{t("forgotten_secret_description")}
|
|
</div>
|
|
<div className="p-2">
|
|
<Button
|
|
color="secondary"
|
|
type="button"
|
|
onClick={() => {
|
|
setChangeSecret(true);
|
|
}}>
|
|
{t("change_secret")}
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
</>
|
|
)}
|
|
{!!hasSecretKey && changeSecret && (
|
|
<>
|
|
<TextField
|
|
autoComplete="off"
|
|
label={t("secret")}
|
|
labelClassName="font-medium text-emphasis font-sm"
|
|
{...formMethods.register("secret")}
|
|
value={newSecret}
|
|
onChange={(event) => setNewSecret(event.currentTarget.value)}
|
|
type="text"
|
|
placeholder={t("leave_blank_to_remove_secret")}
|
|
/>
|
|
<Button
|
|
color="secondary"
|
|
type="button"
|
|
className="py-1 text-xs"
|
|
onClick={() => {
|
|
setChangeSecret(false);
|
|
}}>
|
|
{t("cancel")}
|
|
</Button>
|
|
</>
|
|
)}
|
|
{!hasSecretKey && (
|
|
<TextField
|
|
name="secret"
|
|
label={t("secret")}
|
|
labelClassName="font-medium text-emphasis font-sm"
|
|
value={value}
|
|
onChange={(e) => {
|
|
formMethods.setValue("secret", e?.target.value, { shouldDirty: true });
|
|
}}
|
|
/>
|
|
)}
|
|
</div>
|
|
)}
|
|
/>
|
|
|
|
<Controller
|
|
name="payloadTemplate"
|
|
control={formMethods.control}
|
|
render={({ field: { value } }) => (
|
|
<>
|
|
<Label className="font-sm text-emphasis mt-6">
|
|
<>{t("payload_template")}</>
|
|
</Label>
|
|
<div className="mb-2">
|
|
<ToggleGroup
|
|
onValueChange={(val) => {
|
|
if (val === "default") {
|
|
setUseCustomTemplate(false);
|
|
formMethods.setValue("payloadTemplate", undefined, { shouldDirty: true });
|
|
} else {
|
|
setUseCustomTemplate(true);
|
|
}
|
|
}}
|
|
defaultValue={value ? "custom" : "default"}
|
|
options={[
|
|
{ value: "default", label: t("default") },
|
|
{ value: "custom", label: t("custom") },
|
|
]}
|
|
isFullWidth={true}
|
|
/>
|
|
</div>
|
|
{useCustomTemplate && (
|
|
<TextArea
|
|
name="customPayloadTemplate"
|
|
rows={3}
|
|
value={value}
|
|
onChange={(e) => {
|
|
formMethods.setValue("payloadTemplate", e?.target.value, { shouldDirty: true });
|
|
}}
|
|
/>
|
|
)}
|
|
</>
|
|
)}
|
|
/>
|
|
</div>
|
|
<SectionBottomActions align="end">
|
|
<Button
|
|
type="button"
|
|
color="minimal"
|
|
onClick={props.onCancel}
|
|
{...(!props.onCancel ? { href: `${WEBAPP_URL}/settings/developer/webhooks` } : {})}>
|
|
{t("cancel")}
|
|
</Button>
|
|
<Button
|
|
type="submit"
|
|
data-testid="create_webhook"
|
|
disabled={!formMethods.formState.isDirty && !changeSecret}
|
|
loading={formMethods.formState.isSubmitting}>
|
|
{props?.webhook?.id ? t("save") : t("create_webhook")}
|
|
</Button>
|
|
</SectionBottomActions>
|
|
|
|
<div className="mb-4 mt-6 rounded-md">
|
|
<WebhookTestDisclosure />
|
|
</div>
|
|
</Form>
|
|
);
|
|
};
|
|
|
|
export default WebhookForm;
|