* feat: workflow auto translation * tests: add unit tests * refactor: tests and workflow * fix: type err * fix: type err * fix: remove redundant index on WorkflowStepTranslation The @@index on [workflowStepId, field, targetLocale] duplicates the @@unique constraint on the same columns. A unique index already provides efficient lookups, so the separate @@index adds storage overhead and write latency without benefit. Addresses Cubic AI review feedback (confidence 9/10). Co-Authored-By: unknown <> * fix: correct locale mapping when translation API returns null Map translations with their corresponding locales before filtering to preserve correct locale-to-translation associations. Previously, filtering out null translations would reindex the array, causing incorrect locale mappings when any translation in the batch failed. Also fixes pre-existing lint warnings: - Move exports to end of file - Add explicit return type to processTranslations - Replace ternary with if-else for upsertMany selection Co-Authored-By: udit@cal.com <udit222001@gmail.com> * fix: address review feedback for workflow auto-translation - Add change detection before creating translation tasks - Rename userLocale to sourceLocale in task props for clarity - Show source language in UI with new translation key - Extract SUPPORTED_LOCALES to shared translationConstants.ts - Fix locale mapping bug in translateEventTypeData.ts - Add WhatsApp translation support - Abstract translation lookup into shared translationLookup.ts helper - Restore if-else readability for SCANNING_WORKFLOW_STEPS Co-authored-by: Udit Takkar <udit.takkar@cal.com> Co-Authored-By: unknown <> * fix: update test to use sourceLocale instead of userLocale Co-Authored-By: unknown <> * refactor: feedback * fix: handle first time * fix: tests * fix: tests * fix: address Cubic AI review feedback (confidence 9/10 issues) - WhatsApp translation: Apply variable substitution using getSMSMessageWithVariables and clear contentSid when using translated body to ensure Twilio uses the translated text instead of the original template - update.handler.ts: Change sourceLocale assignment from ?? to || for consistency with tasker payload behavior (line 481) - ITranslationService.ts: Rename methods from plural to singular naming: - getWorkflowStepTranslations -> getWorkflowStepTranslation - getEventTypeTranslations -> getEventTypeTranslation Updated all call sites and tests accordingly Co-Authored-By: unknown <> * fix: address Cubic AI review feedback (confidence 9/10+ issues) - Fix getSMSMessageWithVariables to handle WHATSAPP_ATTENDEE action for locale and timezone (confidence 9/10) - Remove WhatsApp translation feature that set contentSid to undefined since Twilio ignores body parameter for WhatsApp and requires pre-approved Message Templates (confidence 10/10) Co-Authored-By: unknown <> * fix: translatio * Add tests: packages/features/eventTypeTranslation/repositories/EventTypeTranslationRepository.test.ts Generated by Paragon from proposal for PR #27087 * Add tests: packages/features/tasker/tasks/translateWorkflowStepData.test.ts Generated by Paragon from proposal for PR #27087 * chore: nit * chore: verfied atg * fix: set sourceLocale for new steps, add shouldDirty to checkbox, remove spec docs - Set sourceLocale fallback in addedSteps mapping to fix stale detection mismatch - Add { shouldDirty: true } to autoTranslateEnabled checkbox onChange - Remove specs/workflow-translation/ directory (planning docs, not for repo) Co-authored-by: Udit Takkar <udit.07.takkar@gmail.com> Co-Authored-By: unknown <> * chore: add specs back * fix: type error * fix: type error * fix: type err * fix: tests * refactor: feedback * fix: type err * refactor --------- Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Co-authored-by: Udit Takkar <udit.takkar@cal.com> Co-authored-by: Udit Takkar <udit.07.takkar@gmail.com>
335 lines
13 KiB
TypeScript
335 lines
13 KiB
TypeScript
import {
|
|
isCalAIAction,
|
|
isFormTrigger,
|
|
isSMSAction,
|
|
} from "@calcom/features/ee/workflows/lib/actionHelperFunctions";
|
|
import { ALLOWED_FORM_WORKFLOW_ACTIONS } from "@calcom/features/ee/workflows/lib/constants";
|
|
import emailReminderTemplate from "@calcom/features/ee/workflows/lib/reminders/templates/emailReminderTemplate";
|
|
import type { FormValues } from "@calcom/features/ee/workflows/lib/types";
|
|
import type { WorkflowPermissions } from "@calcom/features/workflows/repositories/WorkflowPermissionsRepository";
|
|
import { SCANNING_WORKFLOW_STEPS, SENDER_ID, SENDER_NAME } from "@calcom/lib/constants";
|
|
import { useLocale } from "@calcom/lib/hooks/useLocale";
|
|
import { getTimeFormatStringFromUserTimeFormat } from "@calcom/lib/timeFormat";
|
|
import { WorkflowActions, WorkflowTemplates } from "@calcom/prisma/enums";
|
|
import { type RouterOutputs, trpc } from "@calcom/trpc/react";
|
|
import { Button } from "@calcom/ui/components/button";
|
|
import { FormCard, FormCardBody } from "@calcom/ui/components/card";
|
|
import type { MultiSelectCheckboxesOptionType as Option } from "@calcom/ui/components/form";
|
|
import { useHasPaidPlan, useHasActiveTeamPlan } from "@calcom/web/modules/billing/hooks/useHasPaidPlan";
|
|
import { useAgentsData } from "@calcom/web/modules/ee/workflows/hooks/useAgentsData";
|
|
import { ArrowRightIcon, ZapIcon } from "@coss/ui/icons";
|
|
import { useSearchParams } from "next/navigation";
|
|
import type { Dispatch, SetStateAction } from "react";
|
|
import { useEffect, useState } from "react";
|
|
import type { UseFormReturn } from "react-hook-form";
|
|
|
|
import { AddActionDialog } from "./AddActionDialog";
|
|
import WorkflowStepContainer from "./WorkflowStepContainer";
|
|
|
|
type User = RouterOutputs["viewer"]["me"]["get"];
|
|
|
|
interface Props {
|
|
form: UseFormReturn<FormValues>;
|
|
workflowId: number;
|
|
selectedOptions: Option[];
|
|
setSelectedOptions: Dispatch<SetStateAction<Option[]>>;
|
|
teamId?: number;
|
|
user: User;
|
|
isOrg: boolean;
|
|
allOptions: Option[];
|
|
eventTypeOptions: Option[];
|
|
onSaveWorkflow?: () => Promise<void>;
|
|
permissions: WorkflowPermissions;
|
|
}
|
|
|
|
export default function WorkflowDetailsPage(props: Props) {
|
|
const {
|
|
form,
|
|
workflowId,
|
|
selectedOptions,
|
|
setSelectedOptions,
|
|
teamId,
|
|
isOrg,
|
|
allOptions,
|
|
eventTypeOptions,
|
|
permissions,
|
|
} = props;
|
|
const { t, i18n } = useLocale();
|
|
const { hasPaidPlan } = useHasPaidPlan();
|
|
const { hasActiveTeamPlan, isTrial } = useHasActiveTeamPlan();
|
|
|
|
const [isAddActionDialogOpen, setIsAddActionDialogOpen] = useState(false);
|
|
const [isDeleteStepDialogOpen, setIsDeleteStepDialogOpen] = useState(false);
|
|
|
|
const [reload, setReload] = useState(false);
|
|
const [updateTemplate, setUpdateTemplate] = useState(false);
|
|
|
|
const searchParams = useSearchParams();
|
|
const eventTypeId = searchParams?.get("eventTypeId");
|
|
|
|
// Get base action options and transform them for form triggers
|
|
const { data: baseActionOptions } = trpc.viewer.workflows.getWorkflowActionOptions.useQuery();
|
|
|
|
const transformedActionOptions = baseActionOptions
|
|
? baseActionOptions
|
|
.filter((option) => {
|
|
const isFormWorkflowWithInvalidSteps =
|
|
isFormTrigger(form.getValues("trigger")) &&
|
|
!ALLOWED_FORM_WORKFLOW_ACTIONS.some((action) => action === option.value);
|
|
|
|
const isSelectAllCalAiAction = isCalAIAction(option.value) && form.watch("selectAll");
|
|
|
|
const isOrgCalAiAction = isCalAIAction(option.value) && isOrg;
|
|
|
|
if (isFormWorkflowWithInvalidSteps || isSelectAllCalAiAction || isOrgCalAiAction) {
|
|
return false;
|
|
}
|
|
return true;
|
|
})
|
|
.map((option) => {
|
|
let label = option.label;
|
|
|
|
// Transform labels for form triggers
|
|
if (isFormTrigger(form.getValues("trigger"))) {
|
|
if (option.value === WorkflowActions.EMAIL_ATTENDEE) {
|
|
label = t("email_attendee_action_form");
|
|
} else if (option.value === WorkflowActions.SMS_ATTENDEE) {
|
|
label = t("sms_attendee_action_form");
|
|
}
|
|
}
|
|
|
|
const needsTeamsUpgrade = isFormTrigger(form.getValues("trigger")) && !hasActiveTeamPlan;
|
|
|
|
return {
|
|
...option,
|
|
label,
|
|
creditsTeamId: teamId,
|
|
isOrganization: isOrg,
|
|
isCalAi: isCalAIAction(option.value),
|
|
needsTeamsUpgrade,
|
|
upgradeTeamsBadgeProps: needsTeamsUpgrade
|
|
? { hasPaidPlan, hasActiveTeamPlan, isTrial }
|
|
: undefined,
|
|
};
|
|
})
|
|
: [];
|
|
|
|
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 -- intentionally only run when eventTypeId changes
|
|
}, [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 timeFormat = getTimeFormatStringFromUserTimeFormat(props.user.timeFormat);
|
|
|
|
const template = isFormTrigger(form.getValues("trigger"))
|
|
? WorkflowTemplates.CUSTOM
|
|
: WorkflowTemplates.REMINDER;
|
|
|
|
const { emailBody: reminderBody, emailSubject } =
|
|
template !== WorkflowTemplates.CUSTOM
|
|
? emailReminderTemplate({
|
|
isEditingMode: true,
|
|
locale: i18n.language,
|
|
t,
|
|
action,
|
|
timeFormat,
|
|
})
|
|
: { emailBody: null, emailSubject: null };
|
|
|
|
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,
|
|
emailSubject,
|
|
template,
|
|
numberRequired: numberRequired || false,
|
|
sender: isSMSAction(action) ? sender || SENDER_ID : SENDER_ID,
|
|
senderName: !isSMSAction(action) ? senderName || SENDER_NAME : SENDER_NAME,
|
|
numberVerificationPending: false,
|
|
includeCalendarEvent: false,
|
|
verifiedAt: SCANNING_WORKFLOW_STEPS ? null : new Date(),
|
|
agentId: null,
|
|
inboundAgentId: null,
|
|
autoTranslateEnabled: false,
|
|
sourceLocale: null,
|
|
};
|
|
steps?.push(step);
|
|
form.setValue("steps", steps);
|
|
};
|
|
|
|
const { outboundAgentQueries: agentQueriesTrpc, inboundAgentQueries: inboundAgentQueriesTrpc } =
|
|
useAgentsData(form);
|
|
|
|
return (
|
|
<>
|
|
<div>
|
|
<FormCard
|
|
className="border-muted mb-0"
|
|
collapsible={false}
|
|
label={
|
|
<div className="flex items-center gap-2 pt-1 pb-2">
|
|
<div className="border-subtle text-subtle ml-1 rounded-lg border p-1">
|
|
<ZapIcon size={16} />
|
|
</div>
|
|
<div className="text-sm font-medium leading-none">{t("trigger")}</div>
|
|
</div>
|
|
}>
|
|
<FormCardBody className="border-muted">
|
|
<WorkflowStepContainer
|
|
form={form}
|
|
user={props.user}
|
|
teamId={teamId}
|
|
readOnly={permissions.readOnly}
|
|
selectedOptions={selectedOptions}
|
|
setSelectedOptions={setSelectedOptions}
|
|
isOrganization={isOrg}
|
|
allOptions={allOptions}
|
|
eventTypeOptions={eventTypeOptions}
|
|
onSaveWorkflow={props.onSaveWorkflow}
|
|
actionOptions={transformedActionOptions}
|
|
updateTemplate={updateTemplate}
|
|
setUpdateTemplate={setUpdateTemplate}
|
|
/>
|
|
</FormCardBody>
|
|
</FormCard>
|
|
|
|
<div className="mt-0! ml-7 h-3 w-2 border-l" />
|
|
{form.getValues("steps") && (
|
|
<div className="">
|
|
{form.getValues("steps")?.map((step, index) => {
|
|
const agentData = agentQueriesTrpc[index]?.data;
|
|
const isAgentLoading = agentQueriesTrpc[index]?.isPending;
|
|
const inboundAgentData = inboundAgentQueriesTrpc[index]?.data;
|
|
const isInboundAgentLoading = inboundAgentQueriesTrpc[index]?.isPending;
|
|
|
|
return (
|
|
<div key={index}>
|
|
<FormCard
|
|
key={step.id}
|
|
className="bg-cal-muted border-muted mb-0"
|
|
collapsible={false}
|
|
label={
|
|
<div className="flex items-center gap-2 pt-1 pb-2">
|
|
<div className="border-subtle text-subtle rounded-lg border p-1">
|
|
<ArrowRightIcon size={16} />
|
|
</div>
|
|
<div className="text-sm font-medium leading-none">{t("action")}</div>
|
|
</div>
|
|
}
|
|
deleteField={
|
|
!permissions.readOnly
|
|
? {
|
|
color: "destructive",
|
|
check: () => true,
|
|
disabled: !permissions.canUpdate,
|
|
fn: () => {
|
|
if (
|
|
isCalAIAction(step.action) &&
|
|
agentData?.outboundPhoneNumbers &&
|
|
agentData.outboundPhoneNumbers.length > 0
|
|
) {
|
|
setIsDeleteStepDialogOpen(true);
|
|
} else {
|
|
const steps = form.getValues("steps");
|
|
const updatedSteps = steps
|
|
?.filter((currStep) => currStep.id !== step.id)
|
|
.map((s) => {
|
|
const updatedStep = s;
|
|
if (step.stepNumber < updatedStep.stepNumber) {
|
|
updatedStep.stepNumber = updatedStep.stepNumber - 1;
|
|
}
|
|
return updatedStep;
|
|
});
|
|
form.setValue("steps", updatedSteps);
|
|
if (setReload) {
|
|
setReload(!reload);
|
|
}
|
|
}
|
|
},
|
|
}
|
|
: null
|
|
}>
|
|
<FormCardBody className="border-muted">
|
|
<WorkflowStepContainer
|
|
form={form}
|
|
user={props.user}
|
|
step={step}
|
|
reload={reload}
|
|
setReload={setReload}
|
|
teamId={teamId}
|
|
readOnly={permissions.readOnly}
|
|
eventTypeOptions={eventTypeOptions}
|
|
onSaveWorkflow={props.onSaveWorkflow}
|
|
setIsDeleteStepDialogOpen={setIsDeleteStepDialogOpen}
|
|
isDeleteStepDialogOpen={isDeleteStepDialogOpen}
|
|
isAgentLoading={isAgentLoading}
|
|
agentData={agentData}
|
|
inboundAgentData={inboundAgentData}
|
|
isInboundAgentLoading={isInboundAgentLoading}
|
|
allOptions={allOptions}
|
|
actionOptions={transformedActionOptions}
|
|
updateTemplate={updateTemplate}
|
|
setUpdateTemplate={setUpdateTemplate}
|
|
/>
|
|
</FormCardBody>
|
|
</FormCard>
|
|
{index !== form.getValues("steps").length - 1 && (
|
|
<div className="border-default mt-0! ml-7 h-3 w-2 border-l" />
|
|
)}
|
|
</div>
|
|
);
|
|
})}
|
|
</div>
|
|
)}
|
|
{!permissions.readOnly && (
|
|
<>
|
|
<div className="border-default mt-0! ml-7 h-3 w-2 border-l" />
|
|
<Button
|
|
type="button"
|
|
onClick={() => setIsAddActionDialogOpen(true)}
|
|
color="secondary"
|
|
className="bg-default">
|
|
{t("add_action")}
|
|
</Button>
|
|
</>
|
|
)}
|
|
</div>
|
|
|
|
<AddActionDialog
|
|
isOpenDialog={isAddActionDialogOpen}
|
|
setIsOpenDialog={setIsAddActionDialogOpen}
|
|
addAction={addAction}
|
|
actionOptions={transformedActionOptions}
|
|
/>
|
|
</>
|
|
);
|
|
}
|