-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathVapiWidget.tsx
More file actions
618 lines (564 loc) · 18.5 KB
/
VapiWidget.tsx
File metadata and controls
618 lines (564 loc) · 18.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
import React, { useState, useEffect, useRef, useCallback } from 'react';
import { useVapiWidget } from '../hooks';
import { VapiWidgetProps, ColorScheme, StyleConfig } from './types';
import { sizeStyles, radiusStyles, positionStyles } from './constants';
import ConsentForm from './widget/ConsentForm';
import FloatingButton from './widget/FloatingButton';
import WidgetHeader from './widget/WidgetHeader';
import AnimatedStatusIcon from './AnimatedStatusIcon';
import ConversationMessage from './widget/conversation/Message';
import EmptyConversation from './widget/conversation/EmptyState';
import VoiceControls from './widget/controls/VoiceControls';
import ChatControls from './widget/controls/ChatControls';
import HybridControls from './widget/controls/HybridControls';
import '../styles/animations.css';
const VapiWidget: React.FC<VapiWidgetProps> = ({
publicKey,
assistantId,
assistant,
assistantOverrides,
apiUrl,
position = 'bottom-right',
size = 'full',
borderRadius,
radius = 'medium', // deprecated
mode = 'chat',
theme = 'light',
// Colors
baseBgColor,
baseColor, // deprecated
accentColor,
ctaButtonColor,
buttonBaseColor, // deprecated
ctaButtonTextColor,
buttonAccentColor, // deprecated
// Text labels
title,
mainLabel, // deprecated
startButtonText,
endButtonText,
ctaTitle,
ctaSubtitle,
// Empty messages
voiceEmptyMessage,
emptyVoiceMessage = 'Click the start button to begin a conversation', // deprecated
voiceActiveEmptyMessage,
emptyVoiceActiveMessage = 'Listening...', // deprecated
chatEmptyMessage,
emptyChatMessage = 'Type a message to start chatting', // deprecated
hybridEmptyMessage,
emptyHybridMessage = 'Use voice or text to communicate', // deprecated
// Chat configuration
chatFirstMessage,
chatEndMessage,
firstChatMessage, // deprecated
chatPlaceholder,
// Voice configuration
voiceShowTranscript,
showTranscript = false, // deprecated
voiceAutoReconnect = false,
reconnectStorageKey = 'vapi_widget_web_call',
// Consent configuration
consentRequired,
requireConsent = false, // deprecated
consentTitle,
consentContent,
termsContent = 'By clicking "Agree," and each time I interact with this AI agent, I consent to the recording, storage, and sharing of my communications with third-party service providers, and as otherwise described in our Terms of Service.', // deprecated
consentStorageKey,
localStorageKey = 'vapi_widget_consent', // deprecated
// Event handlers
onVoiceStart,
onCallStart, // deprecated
onVoiceEnd,
onCallEnd, // deprecated
onMessage,
onError,
}) => {
// Create storage key for expanded state
const expandedStorageKey = `vapi_widget_expanded`;
// Initialize expanded state from localStorage
const [isExpanded, setIsExpanded] = useState(() => {
try {
const stored = sessionStorage.getItem(expandedStorageKey);
return stored === 'true';
} catch {
return false;
}
});
const [hasConsent, setHasConsent] = useState(false);
const [chatInput, setChatInput] = useState('');
const [showEndScreen, setShowEndScreen] = useState(false);
const conversationEndRef = useRef<HTMLDivElement>(null);
const inputRef = useRef<HTMLInputElement>(null);
// Custom setter that updates both state and localStorage
const updateExpandedState = useCallback(
(expanded: boolean) => {
setIsExpanded(expanded);
try {
sessionStorage.setItem(expandedStorageKey, expanded.toString());
} catch (error) {
console.warn('Failed to save expanded state to localStorage:', error);
}
},
[expandedStorageKey]
);
const effectiveBorderRadius = borderRadius ?? radius;
const effectiveBaseBgColor = baseBgColor ?? baseColor;
const effectiveAccentColor = accentColor ?? '#14B8A6';
const effectiveColorButtonBase =
buttonBaseColor ?? ctaButtonColor ?? '#000000';
const effectiveColorButtonAccent =
buttonAccentColor ?? ctaButtonTextColor ?? '#FFFFFF';
const effectiveTextWidgetTitle = title ?? mainLabel ?? 'Talk with AI';
const effectiveCtaTitle = ctaTitle ?? effectiveTextWidgetTitle;
const effectiveCtaSubtitle = ctaSubtitle;
const effectiveStartButtonText = startButtonText ?? 'Start';
const effectiveEndButtonText = endButtonText ?? 'End Call';
const effectiveVoiceEmptyMessage = voiceEmptyMessage ?? emptyVoiceMessage;
const effectiveVoiceActiveEmptyMessage =
voiceActiveEmptyMessage ?? emptyVoiceActiveMessage;
const effectiveChatEmptyMessage = chatEmptyMessage ?? emptyChatMessage;
const effectiveHybridEmptyMessage = hybridEmptyMessage ?? emptyHybridMessage;
const effectiveChatFirstMessage = chatFirstMessage ?? firstChatMessage;
const effectiveVoiceShowTranscript = voiceShowTranscript ?? showTranscript;
const effectiveConsentRequired = consentRequired ?? requireConsent;
const effectiveConsentTitle = consentTitle;
const effectiveConsentContent = consentContent ?? termsContent;
const effectiveConsentStorageKey = consentStorageKey ?? localStorageKey;
const effectiveOnVoiceStart = onVoiceStart ?? onCallStart;
const effectiveOnVoiceEnd = onVoiceEnd ?? onCallEnd;
const effectiveChatPlaceholder = chatPlaceholder ?? 'Type your message...';
const effectiveChatEndMessage =
chatEndMessage ?? 'This chat has ended. Thank you.';
const vapi = useVapiWidget({
mode,
publicKey,
assistantId,
assistant,
assistantOverrides,
apiUrl,
firstChatMessage: effectiveChatFirstMessage,
voiceAutoReconnect,
reconnectStorageKey,
onCallStart: effectiveOnVoiceStart,
onCallEnd: effectiveOnVoiceEnd,
onMessage,
onError,
});
const colors: ColorScheme = {
baseColor: effectiveBaseBgColor
? theme === 'dark' && effectiveBaseBgColor === '#FFFFFF'
? '#000000'
: effectiveBaseBgColor
: theme === 'dark'
? '#000000'
: '#FFFFFF',
accentColor: effectiveAccentColor,
ctaButtonColor: effectiveColorButtonBase,
ctaButtonTextColor: effectiveColorButtonAccent,
};
const effectiveSize = mode !== 'voice' && size === 'tiny' ? 'compact' : size;
const styles: StyleConfig = {
size: effectiveSize,
radius: effectiveBorderRadius,
theme,
};
const showExpandedView = isExpanded && !(mode === 'voice' && size === 'tiny');
const getExpandedWidgetStyle = (): React.CSSProperties => ({
...sizeStyles[size].expanded,
...radiusStyles[radius],
backgroundColor: colors.baseColor,
border: `1px solid ${styles.theme === 'dark' ? '#1F2937' : '#E5E7EB'}`,
display: 'flex',
flexDirection: 'column',
overflow: 'hidden',
boxShadow:
styles.theme === 'dark'
? '0 25px 50px -12px rgba(0, 0, 0, 0.5)'
: '0 25px 50px -12px rgb(0 0 0 / 0.25)',
});
const getConversationAreaStyle = (): React.CSSProperties => ({
flex: '1 1 0%',
padding: '1rem',
overflowY: 'auto',
backgroundColor: colors.baseColor,
...(styles.theme === 'dark' ? { filter: 'brightness(1.1)' } : {}),
});
const getControlsAreaStyle = (): React.CSSProperties => ({
padding: '1rem',
borderTop: `1px solid ${styles.theme === 'dark' ? '#1F2937' : '#E5E7EB'}`,
backgroundColor: colors.baseColor,
...(styles.theme === 'dark'
? { filter: 'brightness(1.05)' }
: { filter: 'brightness(0.97)' }),
});
const getConversationLayoutStyle = (): React.CSSProperties => {
const isEmpty = vapi.conversation.length === 0;
const hideTranscript =
!effectiveVoiceShowTranscript &&
vapi.voice.isCallActive &&
(mode === 'voice' || mode === 'hybrid');
const showingEmptyState = mode === 'voice' && !vapi.voice.isCallActive;
if (isEmpty || hideTranscript || showingEmptyState) {
return {
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
};
}
return {
display: 'flex',
flexDirection: 'column',
gap: '0.75rem',
};
};
useEffect(() => {
if (effectiveConsentRequired) {
const storedConsent = localStorage.getItem(effectiveConsentStorageKey);
const hasStoredConsent = storedConsent === 'true';
setHasConsent(hasStoredConsent);
} else {
setHasConsent(true);
}
}, [effectiveConsentRequired, effectiveConsentStorageKey]);
useEffect(() => {
conversationEndRef.current?.scrollIntoView({ behavior: 'smooth' });
}, [vapi.conversation, vapi.chat.isTyping]);
useEffect(() => {
if (isExpanded && (mode === 'chat' || mode === 'hybrid')) {
setTimeout(() => {
inputRef.current?.focus();
}, 100);
}
}, [isExpanded, mode]);
const handleConsentAgree = () => {
localStorage.setItem(effectiveConsentStorageKey, 'true');
setHasConsent(true);
};
const handleConsentCancel = () => {
updateExpandedState(false);
};
const handleToggleCall = async () => {
await vapi.voice.toggleCall({ force: voiceAutoReconnect });
};
const handleSendMessage = async () => {
if (!chatInput.trim()) return;
const message = chatInput.trim();
setChatInput('');
await vapi.chat.sendMessage(message);
inputRef.current?.focus();
};
const handleChatInputChange = (e: React.ChangeEvent<HTMLInputElement>) => {
const value = e.target.value;
setChatInput(value);
vapi.chat.handleInput(value);
};
const handleReset = () => {
vapi.clearConversation();
setShowEndScreen(false);
if (vapi.voice.isCallActive) {
vapi.voice.endCall({ force: voiceAutoReconnect });
}
setChatInput('');
if (mode === 'chat' || mode === 'hybrid') {
setTimeout(() => {
inputRef.current?.focus();
}, 100);
}
};
const handleChatComplete = async () => {
try {
await vapi.chat.sendMessage('Ending chat...', true);
setShowEndScreen(true);
} finally {
setChatInput('');
}
};
const handleStartNewChat = () => {
vapi.clearConversation();
setShowEndScreen(false);
if (mode === 'chat' || mode === 'hybrid') {
setTimeout(() => {
inputRef.current?.focus();
}, 100);
}
};
const handleCloseWidget = () => {
if (showEndScreen) {
vapi.clearConversation();
setShowEndScreen(false);
setChatInput('');
}
updateExpandedState(false);
};
const handleFloatingButtonClick = () => {
updateExpandedState(true);
};
const renderConversationMessages = () => {
if (vapi.conversation.length === 0) {
return (
<EmptyConversation
mode={mode}
isCallActive={vapi.voice.isCallActive}
theme={styles.theme}
voiceEmptyMessage={effectiveVoiceEmptyMessage}
voiceActiveEmptyMessage={effectiveVoiceActiveEmptyMessage}
chatEmptyMessage={effectiveChatEmptyMessage}
hybridEmptyMessage={effectiveHybridEmptyMessage}
/>
);
}
return (
<>
{vapi.conversation.map((message, index) => {
try {
const key = message?.id || `${message.role}-${index}`;
return (
<ConversationMessage
key={key}
role={message.role}
content={message.content || ''}
colors={colors}
styles={styles}
isLoading={
index === vapi.conversation.length - 1 &&
message.role === 'assistant' &&
vapi.chat.isTyping
}
/>
);
} catch (error) {
console.error('Error rendering message:', error, message);
return null;
}
})}
<div ref={conversationEndRef} />
</>
);
};
const renderConversationArea = () => {
if (showEndScreen) {
return (
<div
className="flex flex-col items-center justify-center text-center gap-4"
style={{ width: '100%' }}
>
<div
className={`text-base ${styles.theme === 'dark' ? 'text-gray-200' : 'text-gray-800'}`}
>
{effectiveChatEndMessage}
</div>
<div className="flex items-center gap-3">
<button
onClick={handleStartNewChat}
className="px-3 py-1.5 rounded-md"
style={{
backgroundColor: colors.ctaButtonColor,
color: colors.ctaButtonTextColor,
}}
>
Start new chat
</button>
<button
onClick={handleCloseWidget}
className={`px-3 py-1.5 rounded-md ${styles.theme === 'dark' ? 'bg-gray-800 text-gray-100' : 'bg-gray-100 text-gray-800'}`}
>
Close
</button>
</div>
</div>
);
}
// Chat mode: always show conversation messages
if (mode === 'chat') {
return renderConversationMessages();
}
// Hybrid mode: show messages when call is not active, respect showTranscript when active
if (mode === 'hybrid') {
if (!vapi.voice.isCallActive) {
return renderConversationMessages();
} else if (effectiveVoiceShowTranscript) {
return renderConversationMessages();
} else {
return (
<AnimatedStatusIcon
size={150}
connectionStatus={vapi.voice.connectionStatus}
isCallActive={vapi.voice.isCallActive}
isSpeaking={vapi.voice.isSpeaking}
isTyping={vapi.chat.isTyping}
volumeLevel={vapi.voice.volumeLevel}
baseColor={colors.accentColor}
colors={colors.accentColor}
/>
);
}
}
// Voice mode: respect showTranscript when call is active
if (mode === 'voice') {
if (vapi.voice.isCallActive) {
if (effectiveVoiceShowTranscript) {
return renderConversationMessages();
} else {
return (
<AnimatedStatusIcon
size={150}
connectionStatus={vapi.voice.connectionStatus}
isCallActive={vapi.voice.isCallActive}
isSpeaking={vapi.voice.isSpeaking}
isTyping={vapi.chat.isTyping}
volumeLevel={vapi.voice.volumeLevel}
baseColor={colors.accentColor}
colors={colors.accentColor}
/>
);
}
}
}
// Default: show empty conversation
return (
<EmptyConversation
mode={mode}
isCallActive={vapi.voice.isCallActive}
theme={styles.theme}
voiceEmptyMessage={effectiveVoiceEmptyMessage}
voiceActiveEmptyMessage={effectiveVoiceActiveEmptyMessage}
chatEmptyMessage={effectiveChatEmptyMessage}
hybridEmptyMessage={effectiveHybridEmptyMessage}
/>
);
};
const renderControls = () => {
if (showEndScreen) {
return null;
}
if (mode === 'voice') {
return (
<VoiceControls
isCallActive={vapi.voice.isCallActive}
connectionStatus={vapi.voice.connectionStatus}
isAvailable={vapi.voice.isAvailable}
isMuted={vapi.voice.isMuted}
onToggleCall={handleToggleCall}
onToggleMute={vapi.voice.toggleMute}
startButtonText={effectiveStartButtonText}
endButtonText={effectiveEndButtonText}
colors={colors}
/>
);
}
if (mode === 'chat') {
return (
<ChatControls
chatInput={chatInput}
isAvailable={vapi.chat.isAvailable}
onInputChange={handleChatInputChange}
onSendMessage={handleSendMessage}
colors={colors}
styles={styles}
inputRef={inputRef}
placeholder={effectiveChatPlaceholder}
/>
);
}
if (mode === 'hybrid') {
return (
<HybridControls
chatInput={chatInput}
isCallActive={vapi.voice.isCallActive}
connectionStatus={vapi.voice.connectionStatus}
isChatAvailable={vapi.chat.isAvailable}
isVoiceAvailable={vapi.voice.isAvailable}
isMuted={vapi.voice.isMuted}
onInputChange={handleChatInputChange}
onSendMessage={handleSendMessage}
onToggleCall={handleToggleCall}
onToggleMute={vapi.voice.toggleMute}
colors={colors}
styles={styles}
inputRef={inputRef}
placeholder={effectiveChatPlaceholder}
/>
);
}
return null;
};
const renderExpandedWidget = () => {
if (effectiveConsentRequired && !hasConsent) {
return (
<ConsentForm
consentTitle={effectiveConsentTitle}
consentContent={effectiveConsentContent}
onAccept={handleConsentAgree}
onCancel={handleConsentCancel}
colors={colors}
styles={styles}
radius={radius}
/>
);
}
return (
<div style={getExpandedWidgetStyle()}>
<WidgetHeader
mode={mode}
connectionStatus={vapi.voice.connectionStatus}
isCallActive={vapi.voice.isCallActive}
isSpeaking={vapi.voice.isSpeaking}
isTyping={vapi.chat.isTyping}
hasActiveConversation={vapi.conversation.length > 0}
mainLabel={effectiveTextWidgetTitle}
onClose={handleCloseWidget}
onReset={handleReset}
onChatComplete={handleChatComplete}
showEndChatButton={!showEndScreen}
colors={colors}
styles={styles}
/>
{/* Conversation Area */}
<div
className="vapi-conversation-area"
style={{
...getConversationAreaStyle(),
...getConversationLayoutStyle(),
}}
>
{renderConversationArea()}
</div>
{/* Controls Area */}
<div style={getControlsAreaStyle()}>{renderControls()}</div>
</div>
);
};
return (
<div className="vapi-widget-wrapper">
<div
style={{
position: 'fixed',
zIndex: 9999,
...positionStyles[position],
}}
>
{showExpandedView ? (
renderExpandedWidget()
) : (
<FloatingButton
isCallActive={vapi.voice.isCallActive}
connectionStatus={vapi.voice.connectionStatus}
isSpeaking={vapi.voice.isSpeaking}
isTyping={vapi.chat.isTyping}
volumeLevel={vapi.voice.volumeLevel}
onClick={handleFloatingButtonClick}
onToggleCall={handleToggleCall}
mainLabel={effectiveTextWidgetTitle}
ctaTitle={effectiveCtaTitle}
ctaSubtitle={effectiveCtaSubtitle}
colors={colors}
styles={styles}
mode={mode}
/>
)}
</div>
</div>
);
};
export default VapiWidget;