Files
calendar/packages/features/ee/workflows/components/WebCallDialog.tsx
T
d6546c3107 feat: upgrade tailwind v4 (#24598)
* chore: refactor config files to prevent migration tool errors

* refactor: upgrade with the tailwind migration tool

* chore: restore pre-commit command + mc

* refactor(wip): update dependencies and migrate to Tailwind CSS v4 (mainly web)

* chore: resolve Tailwind v4 migration conflicts from merging main

* chore: remove unused Tailwind packages from config and update dependencies for v4 migration

* chore: uncomment Tailwind CSS utility classes in globals.css

* fix: resolve token conflicts between calcom and coss ui

* fix: textarea scrollbar

* Fix CUI-16

* fix: added @tailwindcss/forms plugin and cleaned up CSS classes in various components to remove unnecessary dark mode styles

* fix: selects and inputs of different sizes

* fix: remove unnecessary leading-20 class from modal titles in various components

* fix: update Checkbox component styles to remove unnecessary border on checked state

* fix: clean up styles in RequiresConfirmationController, Checkbox, and Radio components to enhance consistency

* fix: update button and filter component styles to remove unnecessary rounded classes for consistency

* fix: calendar

* fix: update KBarSearch

* fix: refine styles in Empty and Checkbox components for improved consistency

* Fix focus state email input

* fix: update button hover and active states to use 'not-disabled' instead of 'enabled'

* fix: line-height issues

* fix: update class name for muted background in BookingListItem component

* fix: sidebar spacing

* chore: update class names to use new Tailwind CSS color utilities

* fix embed

* chore: upgrade Tailwind CSS to version 4.1.16 and update related dependencies

* Map css variables and add a playground test for heavy css customization

* suggestion for coss-ui

* refactor: update CSS variable usage and clean up styles

- Replace instances of `--cal-brand-color` with `--cal-brand` in embed-related HTML files.
- Remove the now-unnecessary `addAppCssVars` function from the embed core.
- Import theme tokens in the embed core styles for better consistency.
- Clean up whitespace and formatting in CSS files for improved readability.
- Add a comment in `tokens.css` regarding its usage in both embed and webapp contexts.

* Handle within tokens.css instead of fixing coss-ui

* Remove initial, not needed. Also, remove tailwind.config.js as tailwidn scans the html automaically

* fix: examples app breaking

* fix: modal not resizing correctly

* feat: upgrade atoms to tailwind v4

* fix: atoms build breaking

* fix: atoms build breaking

* chore: upgrate examples/base to tailwind 4

* chore: update globals.css

* fix: add missing scheduler css variables

* fix: PlatformAdditionalCalendarSelector

* chore: update global styles

* chore: update tailwindcss and postcss dependencies to stable versions

* chore: remove unneeded class

* fix: dialog and toast animation

* fix: replace flex-shrink-0 with shrink-0 for consistent styling in various components

* fix: dialog modal for Apple connect

* add margin in SaveFilterSegmentButton

* Fix radix button nested states

* add cursor pointer to buttons but keep dsabled state

* Fix commandK selectors and adds cursor pointer

* Fix teams filter

* fix - round checkboxes

* fix filter checkbox

* fix select indicator's margin

* command group font size

* style: fix badge and tooltip radius

* chore: remove unneeded files

* Delete PR_REVIEW_MANAGED_EVENT_REASSIGNMENT.md

* remove ui-playground leftover

* fix: add missing react phone input styles in atoms

* Delete managed-event-reassignment-flow-and-architecture.mermaid

* fix: inter font not loading

* Add theme to skeleton container so that it can support dark mode

* fix: create custom stack-y-* utilities post tw4 upgrade

* fix: typo

* fix: atoms stack class + remove unused css file

* fix default radius valiue

* fix space-y in embed

* fix skeleton background

* Hardcode radius values to match production

* fix border in embed

* add missing externalThemeClass

* feat: create a custom stack-y-* utility

* fix: add stack utility to atom global css

* fix: Skeleton loader class modalbox

* Add stack-y utility in embed

* fix: add missing stack utilities in atoms globals.css

* update yarn.lock

* add popover portla

* update

---------

Co-authored-by: Sean Brydon <sean@cal.com>
Co-authored-by: Hariom Balhara <hariombalhara@gmail.com>
Co-authored-by: Ryukemeister <sahalrajiv6900@gmail.com>
Co-authored-by: cal.com <morgan@cal.com>
Co-authored-by: Eunjae Lee <hey@eunjae.dev>
Co-authored-by: Anik Dhabal Babu <adhabal2002@gmail.com>
2025-11-25 17:32:28 -03:00

489 lines
16 KiB
TypeScript

import Link from "next/link";
import { useState, useEffect, useRef, useCallback } from "react";
import type { UseFormReturn } from "react-hook-form";
import type { RetellWebClient } from "retell-client-js-sdk";
import { Dialog } from "@calcom/features/components/controlled-dialog";
import { useLocale } from "@calcom/lib/hooks/useLocale";
import { trpc } from "@calcom/trpc/react";
import { Alert } from "@calcom/ui/components/alert";
import { Button } from "@calcom/ui/components/button";
import { DialogContent, DialogFooter } from "@calcom/ui/components/dialog";
import { Icon } from "@calcom/ui/components/icon";
import { showToast } from "@calcom/ui/components/toast";
import { Tooltip } from "@calcom/ui/components/tooltip";
import { getEventTypeIdForCalAiTest } from "../lib/actionHelperFunctions";
import type { FormValues } from "../pages/workflow";
interface WebCallDialogProps {
open: boolean;
onOpenChange: (open: boolean) => void;
agentId: string;
teamId?: number;
isOrganization?: boolean;
form: UseFormReturn<FormValues>;
eventTypeIds?: number[];
outboundEventTypeId?: number | null;
}
interface TranscriptEntry {
speaker: "agent" | "user";
text: string;
timestamp: Date;
}
type CallStatus = "idle" | "connecting" | "active" | "ended" | "error";
export function WebCallDialog({
open,
onOpenChange,
agentId,
teamId,
isOrganization = false,
form,
eventTypeIds = [],
outboundEventTypeId,
}: WebCallDialogProps) {
const { t } = useLocale();
const [callStatus, setCallStatus] = useState<CallStatus>("idle");
const [transcript, setTranscript] = useState<TranscriptEntry[]>([]);
const [isMuted, setIsMuted] = useState(false);
const [callDuration, setCallDuration] = useState(0);
const [error, setError] = useState<string | null>(null);
const retellWebClientRef = useRef<RetellWebClient | null>(null);
const callStartTimeRef = useRef<Date | null>(null);
const durationIntervalRef = useRef<NodeJS.Timeout | null>(null);
const transcriptEndRef = useRef<HTMLDivElement>(null);
const callStatusRef = useRef<CallStatus>("idle");
const { data: hasCredits, isLoading: creditsLoading } = trpc.viewer.credits.hasAvailableCredits.useQuery(
{ teamId },
{ enabled: open }
);
const getBillingPath = () => {
if (!teamId) return "/settings/billing";
return isOrganization ? "/settings/organizations/billing" : `/settings/teams/${teamId}/billing`;
};
const createWebCallMutation = trpc.viewer.aiVoiceAgent.createWebCall.useMutation({
onSuccess: async (data) => {
try {
await startWebCall(data.accessToken);
} catch (error) {
console.error("Failed to start web call:", error);
setCallStatus("error");
setError(t("failed_to_start_web_call_try_again"));
}
},
onError: (error: { message: string }) => {
setCallStatus("error");
setError(error.message);
showToast(error.message, "error");
},
});
const startWebCall = async (accessToken: string) => {
try {
const { RetellWebClient } = await import("retell-client-js-sdk");
const retellWebClient = new RetellWebClient();
retellWebClientRef.current = retellWebClient;
retellWebClient.on("call_started", () => {
callStartTimeRef.current = new Date();
callStatusRef.current = "active";
setCallStatus("active");
startDurationTimer();
});
retellWebClient.on("call_ended", () => {
setCallStatus("ended");
stopDurationTimer();
});
retellWebClient.on("agent_start_talking", () => {
console.log("Agent started talking");
});
retellWebClient.on("agent_stop_talking", () => {
console.log("Agent stopped talking");
});
retellWebClient.on("update", (update: { transcript?: Array<{ role: string; content: string }> }) => {
console.log("📝 Received update event:", update);
if (update.transcript && Array.isArray(update.transcript)) {
console.log("📜 Transcript array received:", update.transcript);
try {
const newEntries: TranscriptEntry[] = update.transcript
.map((entry) => {
if (!entry.role || !entry.content) {
console.warn("⚠️ Invalid transcript entry:", entry);
return null;
}
const mappedEntry = {
speaker: entry.role === "agent" ? "agent" : "user",
text: entry.content,
timestamp: new Date(),
};
console.log("✅ Mapped transcript entry:", mappedEntry);
return mappedEntry;
})
.filter(Boolean) as TranscriptEntry[];
console.log("🔄 Setting transcript with entries:", newEntries.length, "entries");
console.log("📋 Current transcript state has:", transcript.length, "entries");
setTranscript(newEntries);
} catch (error) {
console.error("❌ Error processing transcript update:", error);
}
} else {
console.log(
"🚫 No transcript data in update or transcript is not an array:",
typeof update.transcript
);
}
});
retellWebClient.on("error", (error: Error | { message?: string }) => {
console.error("Web call error:", error);
setCallStatus("error");
setError(t("call_encountered_error_try_again"));
stopDurationTimer();
});
setCallStatus("connecting");
await retellWebClient.startCall({
accessToken: accessToken,
sampleRate: 24000,
emitRawAudioSamples: false,
});
} catch (error) {
console.error("Error starting web call:", error);
setCallStatus("error");
setError(t("failed_initialize_web_call_microphone_permissions"));
}
};
const startDurationTimer = useCallback(() => {
if (durationIntervalRef.current) {
clearInterval(durationIntervalRef.current);
durationIntervalRef.current = null;
}
if (!callStartTimeRef.current) {
return;
}
durationIntervalRef.current = setInterval(() => {
if (callStartTimeRef.current) {
const now = Date.now();
const startTime = callStartTimeRef.current.getTime();
const duration = Math.floor((now - startTime) / 1000);
if (duration >= 0) {
setCallDuration(duration);
}
}
}, 1000);
}, []);
const stopDurationTimer = () => {
if (durationIntervalRef.current) {
clearInterval(durationIntervalRef.current);
durationIntervalRef.current = null;
}
};
const handleStartCall = () => {
const eventTypeValidation = getEventTypeIdForCalAiTest({
trigger: form.getValues("trigger"),
outboundEventTypeId,
eventTypeIds,
activeOnEventTypeId: form.getValues("activeOn")?.[0]?.value,
t,
});
if (eventTypeValidation.error || !eventTypeValidation.eventTypeId) {
showToast(eventTypeValidation.error || t("no_event_type_selected"), "error");
return;
}
if (agentId) {
setError(null);
setTranscript([]);
setCallDuration(0);
createWebCallMutation.mutate({
agentId: agentId,
teamId: teamId,
eventTypeId: eventTypeValidation.eventTypeId,
});
}
};
const handleEndCall = async () => {
if (retellWebClientRef.current && callStatus === "active") {
try {
await retellWebClientRef.current.stopCall();
setCallStatus("ended");
stopDurationTimer();
} catch (error) {
console.error("Error ending call:", error);
}
}
};
const handleToggleMute = async () => {
if (retellWebClientRef.current && callStatus === "active") {
try {
if (isMuted) {
await retellWebClientRef.current.unmute();
} else {
await retellWebClientRef.current.mute();
}
setIsMuted(!isMuted);
} catch (error) {
console.error("Error toggling mute:", error);
}
}
};
const formatDuration = (seconds: number) => {
const mins = Math.floor(seconds / 60);
const secs = seconds % 60;
return `${mins.toString().padStart(2, "0")}:${secs.toString().padStart(2, "0")}`;
};
const getStatusIcon = () => {
switch (callStatus) {
case "connecting":
return <Icon name="loader" className="h-4 w-4 animate-spin rounded-full" />;
case "active":
return <Icon name="phone" className="text-success h-4 w-4" />;
case "ended":
return <Icon name="phone-off" className="text-muted h-4 w-4" />;
case "error":
return <Icon name="triangle-alert" className="text-error h-4 w-4" />;
default:
return <Icon name="phone" className="text-subtle h-4 w-4" />;
}
};
const getStatusText = () => {
switch (callStatus) {
case "connecting":
return t("connecting_to_agent");
case "active":
return `${t("call_active")} - ${formatDuration(callDuration)}`;
case "ended":
return `${t("call_ended")} - ${formatDuration(callDuration)}`;
case "error":
return t("call_error");
default:
return t("ready_to_start_call");
}
};
useEffect(() => {
if (transcriptEndRef.current) {
transcriptEndRef.current.scrollIntoView({ behavior: "smooth" });
}
}, [transcript]);
useEffect(() => {
return () => {
stopDurationTimer();
if (retellWebClientRef.current && callStatus === "active") {
try {
retellWebClientRef.current.stopCall();
} catch (error) {
console.error("Error stopping call during cleanup:", error);
}
}
};
}, [callStatus]);
useEffect(() => {
callStatusRef.current = callStatus;
if (callStatus === "active" && callStartTimeRef.current && !durationIntervalRef.current) {
startDurationTimer();
}
}, [callStatus, startDurationTimer]);
useEffect(() => {
return () => {
stopDurationTimer();
};
}, []);
const resetDialogState = () => {
setCallStatus("idle");
callStatusRef.current = "idle";
setTranscript([]);
setIsMuted(false);
setCallDuration(0);
setError(null);
callStartTimeRef.current = null;
stopDurationTimer();
retellWebClientRef.current = null;
};
return (
<Dialog
open={open}
onOpenChange={(open) => {
if (!open) {
if (retellWebClientRef.current) {
try {
retellWebClientRef.current.stopCall();
} catch (e) {
console.error("Error stopping call on close:", e);
}
}
resetDialogState();
}
onOpenChange(open);
}}>
<DialogContent
enableOverflow
type="creation"
title={t("web_call")}
description={t("test_your_agent_with_web_call")}>
{!creditsLoading && (
<Alert
severity="info"
CustomIcon="info"
title={t("credits_required")}
message={
hasCredits ? (
t("web_call_credits_info")
) : (
<>
{t("web_call_no_credits")}{" "}
<Link href={getBillingPath()} className="text-semantic-info underline">
{t("purchase_credits")}
</Link>
</>
)
}
/>
)}
<div className="mt-2 flex items-center justify-between rounded-lg border p-3">
<div className="flex items-center gap-2">
{getStatusIcon()}
<span className="text-sm font-medium">{getStatusText()}</span>
</div>
{callStatus === "active" && (
<div className="flex items-center gap-2">
<div className="bg-error h-2 w-2 animate-pulse rounded-full" />
<span className="text-subtle text-xs">{t("live")}</span>
</div>
)}
</div>
<div className="mt-2 rounded-lg border p-3 placeholder:min-h-[300px]">
<div className="mb-3 flex items-center justify-between">
<h4 className="text-sm font-medium">{t("transcript")}</h4>
{transcript.length > 0 && (
<Button
type="button"
color="secondary"
size="sm"
variant="icon"
onClick={() => setTranscript([])}
disabled={callStatus === "active"}>
<Icon name="trash" className="h-4 w-4" />
</Button>
)}
</div>
<div className="h-60 stack-y-3 overflow-y-auto p-2">
{transcript.length === 0 ? (
<div className="flex h-40 items-center justify-center text-center">
<div>
<Icon name="message-circle" className="text-subtle mx-auto h-8 w-8" />
<p className="text-subtle mt-2 text-sm">
{callStatus === "idle"
? t("start_call_to_see_conversation")
: t("waiting_for_conversation")}
</p>
</div>
</div>
) : (
transcript.map((entry, index) => (
<div
key={index}
className={`flex gap-2 ${entry.speaker === "agent" ? "justify-start" : "justify-end"}`}>
<div
className={`max-w-[80%] rounded-lg px-3 py-2 text-sm ${
entry.speaker === "agent"
? "border-brand bg-brand/10 text-brand-emphasis border"
: "border-subtle bg-subtle text-emphasis border"
}`}>
<div className="mb-1 flex items-center gap-2">
<span className="text-xs font-medium">
{entry.speaker === "agent" ? t("ai_agent") : t("you")}
</span>
</div>
<p>{entry.text}</p>
</div>
</div>
))
)}
<div ref={transcriptEndRef} />
</div>
</div>
{error && callStatus === "error" && (
<div className="border-error bg-error/10 rounded-lg p-3">
<div className="flex items-center gap-2">
<Icon name="triangle-alert" className="text-error h-6 w-6" />
<span className="text-error text-sm">{error}</span>
</div>
</div>
)}
<DialogFooter showDivider className="mt-6">
<div className="flex gap-2">
{callStatus === "active" && (
<Button type="button" color="secondary" onClick={handleToggleMute} variant="icon">
<Icon name={isMuted ? "mic-off" : "mic"} className="h-4 w-4" />
</Button>
)}
{callStatus === "idle" ||
callStatus === "error" ||
callStatus === "ended" ||
callStatus === "connecting" ? (
<Tooltip content={!hasCredits ? t("credits_required_tooltip") : undefined}>
<Button
type="button"
onClick={handleStartCall}
loading={createWebCallMutation.isPending || callStatus === "connecting"}
disabled={!hasCredits || createWebCallMutation.isPending || callStatus === "connecting"}>
<Icon name="phone" className="mr-2 h-4 w-4" />
{callStatus === "connecting" ? t("connecting") : t("start_web_call")}
</Button>
</Tooltip>
) : (
<Button
type="button"
color="destructive"
onClick={handleEndCall}
disabled={callStatus !== "active"}>
<Icon name="phone-off" className="mr-2 h-4 w-4" />
{t("end_call")}
</Button>
)}
</div>
</DialogFooter>
</DialogContent>
</Dialog>
);
}