make endcall button keeps when connection fail

This commit is contained in:
2025-12-17 11:33:44 +08:00
parent 2decf208b4
commit 800aa700f9
3 changed files with 61 additions and 22 deletions

View File

@@ -715,7 +715,7 @@ export function PhoneSimulator({
> >
<PhoneIcon className="w-8 h-8" /> <PhoneIcon className="w-8 h-8" />
</div> </div>
<span className="font-medium text-white">Call Agent</span> <span className="font-medium text-white"></span>
</button> </button>
<div className="relative"> <div className="relative">
@@ -725,7 +725,7 @@ export function PhoneSimulator({
> >
<VoiceIcon className="w-3 h-3" /> <VoiceIcon className="w-3 h-3" />
<span> <span>
{currentVoiceId === "BV001_streaming" ? "Female Voice" : "Male Voice"} {currentVoiceId === "BV001_streaming" ? "女性声音" : "男性声音"}
</span> </span>
</button> </button>
{showVoiceMenu && ( {showVoiceMenu && (
@@ -745,7 +745,7 @@ export function PhoneSimulator({
: "text-white" : "text-white"
}`} }`}
> >
<span>Female Voice</span> <span></span>
{currentVoiceId === "BV001_streaming" && <CheckIcon />} {currentVoiceId === "BV001_streaming" && <CheckIcon />}
</button> </button>
<button <button
@@ -760,7 +760,7 @@ export function PhoneSimulator({
: "text-white" : "text-white"
}`} }`}
> >
<span>Male Voice</span> <span></span>
{currentVoiceId === "BV002_streaming" && ( {currentVoiceId === "BV002_streaming" && (
<CheckIcon /> <CheckIcon />
)} )}
@@ -1198,6 +1198,20 @@ export function PhoneSimulator({
</button> </button>
</div> </div>
)} )}
{/* Fallback: Show End Call Button when in push-to-talk mode but no agent/audio */}
{phoneMode === "normal" &&
isPushToTalkMode &&
!voiceAssistant.agent && (
<div className="w-full flex items-center justify-center">
<button
className="p-4 rounded-full bg-red-500 text-white hover:bg-red-600 transition-colors"
onClick={handleDisconnect}
>
<PhoneOffIcon className="w-6 h-6" />
</button>
</div>
)}
</div> </div>
</div> </div>
) )

View File

@@ -100,7 +100,18 @@ export const PlaygroundTabbedTile: React.FC<PlaygroundTabbedTileProps> = ({
padding: `${contentPadding * 4}px`, padding: `${contentPadding * 4}px`,
}} }}
> >
{tabs[activeTab].content} {tabs.map((tab, index) => (
<div
key={index}
style={{
display: index === activeTab ? 'block' : 'none',
height: '100%',
width: '100%',
}}
>
{tab.content}
</div>
))}
</div> </div>
</div> </div>
); );

View File

@@ -11,7 +11,7 @@ import {
Track, Track,
TranscriptionSegment, TranscriptionSegment,
} from "livekit-client"; } from "livekit-client";
import { useEffect, useState } from "react"; import { useEffect, useState, useRef } from "react";
export function TranscriptionTile({ export function TranscriptionTile({
agentAudioTrack, agentAudioTrack,
@@ -30,39 +30,51 @@ export function TranscriptionTile({
participant: localParticipant.localParticipant, participant: localParticipant.localParticipant,
}); });
const [transcripts, setTranscripts] = useState<Map<string, ChatMessageType>>(
new Map(),
);
const [messages, setMessages] = useState<ChatMessageType[]>([]); const [messages, setMessages] = useState<ChatMessageType[]>([]);
const { chatMessages, send: sendChat } = useChat(); const { chatMessages, send: sendChat } = useChat();
const transcriptMapRef = useRef<Map<string, ChatMessageType>>(new Map());
// store transcripts // Build messages from segments and chat - always rebuild from current state
useEffect(() => { useEffect(() => {
const transcriptMap = transcriptMapRef.current;
// Process agent segments - update existing or add new
if (agentAudioTrack) { if (agentAudioTrack) {
agentMessages.segments.forEach((s) => agentMessages.segments.forEach((s) => {
transcripts.set( const existing = transcriptMap.get(s.id);
transcriptMap.set(
s.id, s.id,
segmentToChatMessage( segmentToChatMessage(
s, s,
transcripts.get(s.id), existing,
agentAudioTrack.participant, agentAudioTrack.participant,
), ),
),
); );
});
} }
localMessages.segments.forEach((s) => // Process local segments - update existing or add new
transcripts.set( localMessages.segments.forEach((s) => {
const existing = transcriptMap.get(s.id);
transcriptMap.set(
s.id, s.id,
segmentToChatMessage( segmentToChatMessage(
s, s,
transcripts.get(s.id), existing,
localParticipant.localParticipant, localParticipant.localParticipant,
), ),
),
); );
});
const allMessages = Array.from(transcripts.values()); // Build all messages
const allMessages: ChatMessageType[] = [];
// Add all transcript messages
transcriptMap.forEach((msg) => {
allMessages.push(msg);
});
// Add chat messages
for (const msg of chatMessages) { for (const msg of chatMessages) {
const isAgent = agentAudioTrack const isAgent = agentAudioTrack
? msg.from?.identity === agentAudioTrack.participant?.identity ? msg.from?.identity === agentAudioTrack.participant?.identity
@@ -79,6 +91,7 @@ export function TranscriptionTile({
name = "Unknown"; name = "Unknown";
} }
} }
allMessages.push({ allMessages.push({
name, name,
message: msg.message, message: msg.message,
@@ -86,10 +99,11 @@ export function TranscriptionTile({
isSelf: isSelf, isSelf: isSelf,
}); });
} }
// Sort by timestamp
allMessages.sort((a, b) => a.timestamp - b.timestamp); allMessages.sort((a, b) => a.timestamp - b.timestamp);
setMessages(allMessages); setMessages(allMessages);
}, [ }, [
transcripts,
chatMessages, chatMessages,
localParticipant.localParticipant, localParticipant.localParticipant,
agentAudioTrack?.participant, agentAudioTrack?.participant,