Integrate `expo-callkit-telecom` to support native system call handling (answering, ending, and muting via system UI). This includes a new `callKeepService` and a `CallKeepBootstrap` component to manage the lifecycle of system call events. Additionally, improves the calling experience by: - Adding support for group calls with participant tracking and UI indicators. - Enhancing LiveKit integration by replacing polling with event-driven video track synchronization. - Updating `WebSocketService` to prevent disconnection when the app enters the background during an active call. - Adding new WebSocket message types for participant join/leave events and group invites. - Refining call UI components (`CallScreen`, `FloatingCallWindow`, `IncomingCallModal`) for better visual feedback and safe area handling. Refactor LiveKit service to use event-driven updates for local and remote tracks, improving performance and reliability.
461 lines
13 KiB
TypeScript
461 lines
13 KiB
TypeScript
import React, { useEffect, useState } from 'react';
|
|
import {
|
|
View,
|
|
Text,
|
|
StyleSheet,
|
|
TouchableOpacity,
|
|
Image,
|
|
StatusBar,
|
|
} from 'react-native';
|
|
import { MaterialCommunityIcons } from '@expo/vector-icons';
|
|
import { Track, LocalVideoTrack, RemoteVideoTrack } from 'livekit-client';
|
|
|
|
let VideoView: React.ComponentType<any> | null = null;
|
|
try {
|
|
VideoView = require('@livekit/react-native').VideoView;
|
|
} catch {
|
|
// WebRTC native module not available (e.g. Expo Go)
|
|
}
|
|
|
|
type VideoTrack = LocalVideoTrack | RemoteVideoTrack;
|
|
import { callStore } from '../../stores/call';
|
|
import { liveKitService } from '@/services/livekit';
|
|
|
|
const formatDuration = (seconds: number): string => {
|
|
const mins = Math.floor(seconds / 60);
|
|
const secs = seconds % 60;
|
|
return `${mins.toString().padStart(2, '0')}:${secs.toString().padStart(2, '0')}`;
|
|
};
|
|
|
|
const CallScreen: React.FC = () => {
|
|
const currentCall = callStore((s) => s.currentCall);
|
|
const callDuration = callStore((s) => s.callDuration);
|
|
const endCall = callStore((s) => s.endCall);
|
|
const toggleMute = callStore((s) => s.toggleMute);
|
|
const toggleSpeaker = callStore((s) => s.toggleSpeaker);
|
|
const toggleVideo = callStore((s) => s.toggleVideo);
|
|
const isMinimized = callStore((s) => s.isMinimized);
|
|
const toggleMinimize = callStore((s) => s.toggleMinimize);
|
|
|
|
const [remoteVideoTrack, setRemoteVideoTrack] = useState<VideoTrack | null>(null);
|
|
const [localVideoTrack, setLocalVideoTrack] = useState<VideoTrack | null>(null);
|
|
|
|
// Event-driven video track subscription (no polling)
|
|
useEffect(() => {
|
|
const unsubs: (() => void)[] = [];
|
|
|
|
// Sync current tracks immediately
|
|
const syncTracks = () => {
|
|
const lp = liveKitService.localParticipant;
|
|
if (lp) {
|
|
const videoPub = lp.getTrackPublication(Track.Source.Camera);
|
|
setLocalVideoTrack((videoPub?.track as VideoTrack | undefined) ?? null);
|
|
}
|
|
liveKitService.remoteParticipants.forEach((participant) => {
|
|
const videoPub = participant.getTrackPublication(Track.Source.Camera);
|
|
if (videoPub?.track) {
|
|
setRemoteVideoTrack(videoPub.track as VideoTrack);
|
|
}
|
|
});
|
|
};
|
|
syncTracks();
|
|
|
|
// Remote video track events
|
|
unsubs.push(
|
|
liveKitService.on('trackSubscribed', ({ track }) => {
|
|
if (track.kind === Track.Kind.Video) {
|
|
setRemoteVideoTrack(track as VideoTrack);
|
|
}
|
|
})
|
|
);
|
|
|
|
unsubs.push(
|
|
liveKitService.on('trackUnsubscribed', ({ track }) => {
|
|
if (track.kind === Track.Kind.Video) {
|
|
setRemoteVideoTrack(null);
|
|
}
|
|
})
|
|
);
|
|
|
|
unsubs.push(
|
|
liveKitService.on('trackMuted', ({ publication }) => {
|
|
if (publication.source === Track.Source.Camera) {
|
|
setRemoteVideoTrack(null);
|
|
}
|
|
})
|
|
);
|
|
|
|
unsubs.push(
|
|
liveKitService.on('trackUnmuted', ({ publication }) => {
|
|
if (publication.source === Track.Source.Camera && publication.track) {
|
|
setRemoteVideoTrack(publication.track as VideoTrack);
|
|
}
|
|
})
|
|
);
|
|
|
|
// Local video track events (replace 500ms polling)
|
|
unsubs.push(
|
|
liveKitService.on('localTrackPublished', ({ publication }) => {
|
|
if (publication.source === Track.Source.Camera && publication.track) {
|
|
setLocalVideoTrack(publication.track as VideoTrack);
|
|
}
|
|
})
|
|
);
|
|
|
|
unsubs.push(
|
|
liveKitService.on('localTrackUnpublished', ({ publication }) => {
|
|
if (publication.source === Track.Source.Camera) {
|
|
setLocalVideoTrack(null);
|
|
}
|
|
})
|
|
);
|
|
|
|
return () => {
|
|
unsubs.forEach((unsub) => unsub());
|
|
};
|
|
}, []);
|
|
|
|
// Don't render full screen when minimized or no call
|
|
if (!currentCall || isMinimized) return null;
|
|
|
|
const getStatusText = (): string => {
|
|
switch (currentCall.status) {
|
|
case 'calling':
|
|
return '正在等待对方接听...';
|
|
case 'ringing':
|
|
return '来电响铃中...';
|
|
case 'connecting':
|
|
return '连接中...';
|
|
case 'connected':
|
|
return formatDuration(callDuration);
|
|
case 'reconnecting':
|
|
return '网络重连中...';
|
|
case 'ended':
|
|
return '通话已结束';
|
|
case 'failed':
|
|
return '连接失败';
|
|
default:
|
|
return '';
|
|
}
|
|
};
|
|
|
|
const handleEndCall = () => {
|
|
endCall('hangup');
|
|
};
|
|
|
|
const showRemoteVideo = !!remoteVideoTrack;
|
|
const showLocalVideo = currentCall?.isVideoEnabled && !!localVideoTrack;
|
|
const isVideoCallActive = showRemoteVideo || showLocalVideo;
|
|
|
|
return (
|
|
<View style={styles.container}>
|
|
<StatusBar barStyle="light-content" backgroundColor="transparent" translucent />
|
|
<View style={styles.background} />
|
|
|
|
{/* Remote video - full screen */}
|
|
{showRemoteVideo && remoteVideoTrack && VideoView && (
|
|
<VideoView
|
|
videoTrack={remoteVideoTrack}
|
|
style={styles.fullScreenVideo}
|
|
objectFit="cover"
|
|
/>
|
|
)}
|
|
|
|
{/* Local video - picture in picture */}
|
|
{showLocalVideo && localVideoTrack && VideoView && (
|
|
<View style={styles.localVideoContainer}>
|
|
<VideoView
|
|
videoTrack={localVideoTrack}
|
|
style={styles.localVideo}
|
|
objectFit="cover"
|
|
mirror={true}
|
|
/>
|
|
</View>
|
|
)}
|
|
|
|
{/* Top area: minimize button */}
|
|
<View style={styles.topBar}>
|
|
<TouchableOpacity
|
|
style={styles.topButton}
|
|
onPress={toggleMinimize}
|
|
activeOpacity={0.7}
|
|
>
|
|
<MaterialCommunityIcons name="chevron-down" size={28} color="#fff" />
|
|
</TouchableOpacity>
|
|
</View>
|
|
|
|
{/* Center: Peer info - only show when no video */}
|
|
{!isVideoCallActive && (
|
|
<View style={styles.centerArea}>
|
|
<View style={styles.avatarOuter}>
|
|
{currentCall.peerAvatar ? (
|
|
<Image source={{ uri: currentCall.peerAvatar }} style={styles.avatar} />
|
|
) : (
|
|
<View style={[styles.avatar, styles.avatarPlaceholder]}>
|
|
<Text style={styles.avatarText}>
|
|
{currentCall.peerName?.charAt(0).toUpperCase() || '?'}
|
|
</Text>
|
|
</View>
|
|
)}
|
|
</View>
|
|
<Text style={styles.peerName} numberOfLines={1}>
|
|
{currentCall.peerName || '未知用户'}
|
|
</Text>
|
|
<Text style={styles.status}>{getStatusText()}</Text>
|
|
</View>
|
|
)}
|
|
|
|
{/* Peer name overlay when video is active */}
|
|
{isVideoCallActive && (
|
|
<View style={styles.videoOverlayInfo}>
|
|
<Text style={styles.videoPeerName} numberOfLines={1}>
|
|
{currentCall.peerName || '未知用户'}
|
|
</Text>
|
|
<Text style={styles.videoStatus}>{getStatusText()}</Text>
|
|
</View>
|
|
)}
|
|
|
|
{/* Bottom controls */}
|
|
<View style={styles.controls}>
|
|
<View style={styles.controlRow}>
|
|
{/* Mute */}
|
|
<TouchableOpacity
|
|
style={[styles.controlButton, currentCall.isMuted && styles.controlButtonActive]}
|
|
onPress={toggleMute}
|
|
activeOpacity={0.7}
|
|
>
|
|
<View style={[styles.controlCircle, currentCall.isMuted && styles.controlCircleActive]}>
|
|
<MaterialCommunityIcons
|
|
name={currentCall.isMuted ? 'microphone-off' : 'microphone'}
|
|
size={26}
|
|
color={currentCall.isMuted ? '#333' : '#fff'}
|
|
/>
|
|
</View>
|
|
<Text style={[styles.controlLabel, currentCall.isMuted && styles.controlLabelActive]}>
|
|
{currentCall.isMuted ? '取消静音' : '静音'}
|
|
</Text>
|
|
</TouchableOpacity>
|
|
{/* Video toggle */}
|
|
<TouchableOpacity
|
|
style={[styles.controlButton, currentCall.isVideoEnabled && styles.controlButtonActive]}
|
|
onPress={toggleVideo}
|
|
activeOpacity={0.7}
|
|
>
|
|
<View style={[styles.controlCircle, currentCall.isVideoEnabled && styles.controlCircleActive]}>
|
|
<MaterialCommunityIcons
|
|
name={currentCall.isVideoEnabled ? 'video' : 'video-off'}
|
|
size={26}
|
|
color={currentCall.isVideoEnabled ? '#333' : '#fff'}
|
|
/>
|
|
</View>
|
|
<Text style={[styles.controlLabel, currentCall.isVideoEnabled && styles.controlLabelActive]}>
|
|
{currentCall.isVideoEnabled ? '关闭摄像头' : '打开摄像头'}
|
|
</Text>
|
|
</TouchableOpacity>
|
|
{/* Speaker */}
|
|
<TouchableOpacity
|
|
style={[styles.controlButton, currentCall.isSpeakerOn && styles.controlButtonActive]}
|
|
onPress={toggleSpeaker}
|
|
activeOpacity={0.7}
|
|
>
|
|
<View style={[styles.controlCircle, currentCall.isSpeakerOn && styles.controlCircleActive]}>
|
|
<MaterialCommunityIcons
|
|
name={currentCall.isSpeakerOn ? 'volume-high' : 'cellphone'}
|
|
size={26}
|
|
color={currentCall.isSpeakerOn ? '#333' : '#fff'}
|
|
/>
|
|
</View>
|
|
<Text style={[styles.controlLabel, currentCall.isSpeakerOn && styles.controlLabelActive]}>
|
|
{currentCall.isSpeakerOn ? '免提' : '听筒'}
|
|
</Text>
|
|
</TouchableOpacity>
|
|
</View>
|
|
{/* End call */}
|
|
<TouchableOpacity
|
|
style={styles.endCallButton}
|
|
onPress={handleEndCall}
|
|
activeOpacity={0.8}
|
|
>
|
|
<View style={styles.endCallCircle}>
|
|
<MaterialCommunityIcons name="phone-hangup" size={32} color="#fff" />
|
|
</View>
|
|
<Text style={styles.endCallLabel}>挂断</Text>
|
|
</TouchableOpacity>
|
|
</View>
|
|
</View>
|
|
);
|
|
};
|
|
|
|
const styles = StyleSheet.create({
|
|
container: {
|
|
...StyleSheet.absoluteFill,
|
|
backgroundColor: '#1A1A2E',
|
|
zIndex: 9999,
|
|
},
|
|
background: {
|
|
...StyleSheet.absoluteFill,
|
|
backgroundColor: '#1A1A2E',
|
|
},
|
|
topBar: {
|
|
position: 'absolute',
|
|
top: 50,
|
|
left: 0,
|
|
right: 0,
|
|
flexDirection: 'row',
|
|
justifyContent: 'center',
|
|
alignItems: 'center',
|
|
height: 44,
|
|
zIndex: 100,
|
|
},
|
|
topButton: {
|
|
width: 44,
|
|
height: 44,
|
|
borderRadius: 22,
|
|
backgroundColor: 'rgba(255, 255, 255, 0.1)',
|
|
justifyContent: 'center',
|
|
alignItems: 'center',
|
|
},
|
|
centerArea: {
|
|
position: 'absolute',
|
|
top: '28%',
|
|
left: 0,
|
|
right: 0,
|
|
alignItems: 'center',
|
|
paddingHorizontal: 30,
|
|
},
|
|
avatarOuter: {
|
|
marginBottom: 16,
|
|
},
|
|
avatar: {
|
|
width: 100,
|
|
height: 100,
|
|
borderRadius: 50,
|
|
backgroundColor: '#3A3A5C',
|
|
},
|
|
avatarPlaceholder: {
|
|
justifyContent: 'center',
|
|
alignItems: 'center',
|
|
},
|
|
avatarText: {
|
|
fontSize: 40,
|
|
color: '#fff',
|
|
fontWeight: '600',
|
|
},
|
|
peerName: {
|
|
fontSize: 22,
|
|
fontWeight: '600',
|
|
color: '#FFFFFF',
|
|
marginBottom: 6,
|
|
textAlign: 'center',
|
|
maxWidth: 280,
|
|
},
|
|
status: {
|
|
fontSize: 14,
|
|
color: 'rgba(255, 255, 255, 0.5)',
|
|
letterSpacing: 0.3,
|
|
},
|
|
fullScreenVideo: {
|
|
...StyleSheet.absoluteFill,
|
|
backgroundColor: '#1A1A2E',
|
|
},
|
|
localVideoContainer: {
|
|
position: 'absolute',
|
|
top: 100,
|
|
right: 20,
|
|
width: 120,
|
|
height: 160,
|
|
borderRadius: 16,
|
|
overflow: 'hidden',
|
|
backgroundColor: '#2A2A4E',
|
|
borderWidth: 2,
|
|
borderColor: 'rgba(255, 255, 255, 0.2)',
|
|
zIndex: 50,
|
|
},
|
|
localVideo: {
|
|
width: '100%',
|
|
height: '100%',
|
|
},
|
|
videoOverlayInfo: {
|
|
position: 'absolute',
|
|
top: 100,
|
|
left: 0,
|
|
right: 0,
|
|
alignItems: 'center',
|
|
zIndex: 50,
|
|
},
|
|
videoPeerName: {
|
|
fontSize: 18,
|
|
fontWeight: '600',
|
|
color: '#FFFFFF',
|
|
textShadowColor: 'rgba(0, 0, 0, 0.5)',
|
|
textShadowOffset: { width: 0, height: 1 },
|
|
textShadowRadius: 2,
|
|
},
|
|
videoStatus: {
|
|
fontSize: 14,
|
|
color: 'rgba(255, 255, 255, 0.8)',
|
|
marginTop: 4,
|
|
textShadowColor: 'rgba(0, 0, 0, 0.5)',
|
|
textShadowOffset: { width: 0, height: 1 },
|
|
textShadowRadius: 2,
|
|
},
|
|
controls: {
|
|
position: 'absolute',
|
|
bottom: 60,
|
|
left: 0,
|
|
right: 0,
|
|
alignItems: 'center',
|
|
zIndex: 100,
|
|
},
|
|
controlRow: {
|
|
flexDirection: 'row',
|
|
justifyContent: 'center',
|
|
gap: 24,
|
|
marginBottom: 24,
|
|
},
|
|
controlButton: {
|
|
alignItems: 'center',
|
|
width: 70,
|
|
},
|
|
controlCircle: {
|
|
width: 56,
|
|
height: 56,
|
|
borderRadius: 28,
|
|
backgroundColor: 'rgba(255, 255, 255, 0.12)',
|
|
justifyContent: 'center',
|
|
alignItems: 'center',
|
|
},
|
|
controlCircleActive: {
|
|
backgroundColor: '#FFFFFF',
|
|
},
|
|
controlButtonActive: {},
|
|
controlLabel: {
|
|
fontSize: 11,
|
|
color: 'rgba(255, 255, 255, 0.55)',
|
|
marginTop: 8,
|
|
textAlign: 'center',
|
|
},
|
|
controlLabelActive: {
|
|
color: '#FFFFFF',
|
|
fontWeight: '500',
|
|
},
|
|
endCallButton: {
|
|
alignItems: 'center',
|
|
},
|
|
endCallCircle: {
|
|
width: 64,
|
|
height: 64,
|
|
borderRadius: 32,
|
|
backgroundColor: '#E54D42',
|
|
justifyContent: 'center',
|
|
alignItems: 'center',
|
|
},
|
|
endCallLabel: {
|
|
fontSize: 11,
|
|
color: 'rgba(255, 255, 255, 0.55)',
|
|
marginTop: 8,
|
|
},
|
|
});
|
|
|
|
export default CallScreen;
|