import { useRouter, useSearchParams } from "next/navigation"; import type { Dispatch, SetStateAction } from "react"; import { useState, useEffect } from "react"; import type { UseFormReturn } from "react-hook-form"; import { Controller } from "react-hook-form"; import { SENDER_ID, SENDER_NAME } from "@calcom/lib/constants"; import { useLocale } from "@calcom/lib/hooks/useLocale"; import type { WorkflowActions } from "@calcom/prisma/enums"; import { WorkflowTemplates } from "@calcom/prisma/enums"; import type { RouterOutputs } from "@calcom/trpc/react"; import type { MultiSelectCheckboxesOptionType as Option } from "@calcom/ui"; import { Button, Icon, Label, MultiSelectCheckboxes, TextField, CheckboxField, InfoBadge } from "@calcom/ui"; import { isSMSAction, isWhatsappAction } from "../lib/actionHelperFunctions"; import type { FormValues } from "../pages/workflow"; import { AddActionDialog } from "./AddActionDialog"; import { DeleteDialog } from "./DeleteDialog"; import WorkflowStepContainer from "./WorkflowStepContainer"; type User = RouterOutputs["viewer"]["me"]; interface Props { form: UseFormReturn; workflowId: number; selectedOptions: Option[]; setSelectedOptions: Dispatch>; teamId?: number; user: User; readOnly: boolean; isOrg: boolean; allOptions: Option[]; } export default function WorkflowDetailsPage(props: Props) { const { form, workflowId, selectedOptions, setSelectedOptions, teamId, isOrg, allOptions } = props; const { t } = useLocale(); const router = useRouter(); const [isAddActionDialogOpen, setIsAddActionDialogOpen] = useState(false); const [reload, setReload] = useState(false); const [deleteDialogOpen, setDeleteDialogOpen] = useState(false); const searchParams = useSearchParams(); const eventTypeId = searchParams?.get("eventTypeId"); useEffect(() => { const matchingOption = allOptions.find((option) => option.value === eventTypeId); if (matchingOption && !selectedOptions.find((option) => option.value === eventTypeId)) { const newOptions = [...selectedOptions, matchingOption]; setSelectedOptions(newOptions); form.setValue("activeOn", newOptions); } // eslint-disable-next-line react-hooks/exhaustive-deps }, [eventTypeId]); const addAction = ( action: WorkflowActions, sendTo?: string, numberRequired?: boolean, sender?: string, senderName?: string ) => { const steps = form.getValues("steps"); const id = steps?.length > 0 ? steps.sort((a, b) => { return a.id - b.id; })[0].id - 1 : 0; const step = { id: id > 0 ? 0 : id, //id of new steps always <= 0 action, stepNumber: steps && steps.length > 0 ? steps.sort((a, b) => { return a.stepNumber - b.stepNumber; })[steps.length - 1].stepNumber + 1 : 1, sendTo: sendTo || null, workflowId: workflowId, reminderBody: null, emailSubject: null, template: isWhatsappAction(action) ? WorkflowTemplates.REMINDER : WorkflowTemplates.CUSTOM, numberRequired: numberRequired || false, sender: isSMSAction(action) ? sender || SENDER_ID : SENDER_ID, senderName: !isSMSAction(action) ? senderName || SENDER_NAME : SENDER_NAME, numberVerificationPending: false, includeCalendarEvent: false, }; steps?.push(step); form.setValue("steps", steps); }; return ( <>
{isOrg ? (
) : ( )} { return ( { form.setValue("activeOn", s); }} countText={isOrg ? "count_team" : "nr_event_type"} /> ); }} />
( { onChange(e); if (e.target.value) { setSelectedOptions(allOptions); form.setValue("activeOn", allOptions); } }} checked={value} /> )} />
{!props.readOnly && ( )}
{/* Workflow Trigger Event & Steps */}
{form.getValues("trigger") && (
)} {form.getValues("steps") && ( <> {form.getValues("steps")?.map((step) => { return ( ); })} )} {!props.readOnly && ( <>
)}
router.push("/workflows")} /> ); }