mirror of
https://github.com/tapframe/NuvioStreaming.git
synced 2026-03-11 17:45:38 +00:00
240 lines
No EOL
8.2 KiB
TypeScript
240 lines
No EOL
8.2 KiB
TypeScript
import React from 'react';
|
|
import { View, Text, TouchableOpacity, ScrollView, Dimensions } from 'react-native';
|
|
import { MaterialIcons } from '@expo/vector-icons';
|
|
import Animated, {
|
|
FadeIn,
|
|
FadeOut,
|
|
SlideInRight,
|
|
SlideOutRight,
|
|
} from 'react-native-reanimated';
|
|
import { getTrackDisplayName, DEBUG_MODE } from '../utils/playerUtils';
|
|
import { logger } from '../../../utils/logger';
|
|
import { SelectedTrack, SelectedTrackType } from 'react-native-video';
|
|
|
|
interface AudioTrackModalProps {
|
|
showAudioModal: boolean;
|
|
setShowAudioModal: (show: boolean) => void;
|
|
vlcAudioTracks: Array<{id: number, name: string, language?: string}>;
|
|
selectedAudioTrack: SelectedTrack | null;
|
|
selectAudioTrack: (trackSelection: SelectedTrack) => void;
|
|
}
|
|
|
|
const { width } = Dimensions.get('window');
|
|
const MENU_WIDTH = Math.min(width * 0.85, 400);
|
|
|
|
export const AudioTrackModal: React.FC<AudioTrackModalProps> = ({
|
|
showAudioModal,
|
|
setShowAudioModal,
|
|
vlcAudioTracks,
|
|
selectedAudioTrack,
|
|
selectAudioTrack,
|
|
}) => {
|
|
const handleClose = () => {
|
|
setShowAudioModal(false);
|
|
};
|
|
|
|
// Debug logging when modal opens
|
|
React.useEffect(() => {
|
|
if (showAudioModal && DEBUG_MODE) {
|
|
logger.log(`[AudioTrackModal] Modal opened with selectedAudioTrack:`, selectedAudioTrack);
|
|
logger.log(`[AudioTrackModal] Available tracks:`, vlcAudioTracks);
|
|
if (selectedAudioTrack?.type === 'index' && selectedAudioTrack.value !== undefined) {
|
|
const selectedTrack = vlcAudioTracks.find(track => track.id === selectedAudioTrack.value);
|
|
if (selectedTrack) {
|
|
logger.log(`[AudioTrackModal] Selected track found: ${selectedTrack.name} (${selectedTrack.language})`);
|
|
} else {
|
|
logger.warn(`[AudioTrackModal] Selected track ${selectedAudioTrack.value} not found in available tracks`);
|
|
}
|
|
} else if (selectedAudioTrack?.type === 'system') {
|
|
logger.log(`[AudioTrackModal] Using system auto-selection`);
|
|
}
|
|
}
|
|
}, [showAudioModal, selectedAudioTrack, vlcAudioTracks]);
|
|
|
|
if (!showAudioModal) return null;
|
|
|
|
return (
|
|
<>
|
|
{/* Backdrop */}
|
|
<Animated.View
|
|
entering={FadeIn.duration(200)}
|
|
exiting={FadeOut.duration(150)}
|
|
style={{
|
|
position: 'absolute',
|
|
top: 0,
|
|
left: 0,
|
|
right: 0,
|
|
bottom: 0,
|
|
backgroundColor: 'rgba(0, 0, 0, 0.5)',
|
|
zIndex: 9998,
|
|
}}
|
|
>
|
|
<TouchableOpacity
|
|
style={{ flex: 1 }}
|
|
onPress={handleClose}
|
|
activeOpacity={1}
|
|
/>
|
|
</Animated.View>
|
|
|
|
{/* Side Menu */}
|
|
<Animated.View
|
|
entering={SlideInRight.duration(300)}
|
|
exiting={SlideOutRight.duration(250)}
|
|
style={{
|
|
position: 'absolute',
|
|
top: 0,
|
|
right: 0,
|
|
bottom: 0,
|
|
width: MENU_WIDTH,
|
|
backgroundColor: '#1A1A1A',
|
|
zIndex: 9999,
|
|
elevation: 20,
|
|
shadowColor: '#000',
|
|
shadowOffset: { width: -5, height: 0 },
|
|
shadowOpacity: 0.3,
|
|
shadowRadius: 10,
|
|
borderTopLeftRadius: 20,
|
|
borderBottomLeftRadius: 20,
|
|
}}
|
|
>
|
|
{/* Header */}
|
|
<View style={{
|
|
flexDirection: 'row',
|
|
alignItems: 'center',
|
|
justifyContent: 'space-between',
|
|
paddingHorizontal: 20,
|
|
paddingTop: 60,
|
|
paddingBottom: 20,
|
|
borderBottomWidth: 1,
|
|
borderBottomColor: 'rgba(255, 255, 255, 0.08)',
|
|
}}>
|
|
<Text style={{
|
|
color: '#FFFFFF',
|
|
fontSize: 22,
|
|
fontWeight: '700',
|
|
}}>
|
|
Audio Tracks
|
|
</Text>
|
|
<TouchableOpacity
|
|
style={{
|
|
width: 36,
|
|
height: 36,
|
|
borderRadius: 18,
|
|
backgroundColor: 'rgba(255, 255, 255, 0.1)',
|
|
justifyContent: 'center',
|
|
alignItems: 'center',
|
|
}}
|
|
onPress={handleClose}
|
|
activeOpacity={0.7}
|
|
>
|
|
<MaterialIcons name="close" size={20} color="#FFFFFF" />
|
|
</TouchableOpacity>
|
|
</View>
|
|
|
|
<ScrollView
|
|
style={{ flex: 1 }}
|
|
contentContainerStyle={{ padding: 20, paddingBottom: 40 }}
|
|
showsVerticalScrollIndicator={false}
|
|
>
|
|
{/* Audio Tracks */}
|
|
<View>
|
|
<Text style={{
|
|
color: 'rgba(255, 255, 255, 0.7)',
|
|
fontSize: 14,
|
|
fontWeight: '600',
|
|
marginBottom: 15,
|
|
textTransform: 'uppercase',
|
|
letterSpacing: 0.5,
|
|
}}>
|
|
Available Tracks ({vlcAudioTracks.length})
|
|
</Text>
|
|
|
|
<View style={{ gap: 8 }}>
|
|
{vlcAudioTracks.map((track) => {
|
|
// Determine if track is selected
|
|
let isSelected = false;
|
|
if (selectedAudioTrack?.type === 'index' && selectedAudioTrack.value === track.id) {
|
|
isSelected = true;
|
|
} else if (selectedAudioTrack?.type === 'system' && track.id === vlcAudioTracks[0]?.id) {
|
|
// Show first track as selected when using system selection
|
|
isSelected = true;
|
|
}
|
|
|
|
// All tracks are now available for selection
|
|
|
|
return (
|
|
<TouchableOpacity
|
|
key={track.id}
|
|
style={{
|
|
backgroundColor: isSelected ? 'rgba(34, 197, 94, 0.15)' : 'rgba(255, 255, 255, 0.05)',
|
|
borderRadius: 16,
|
|
padding: 16,
|
|
borderWidth: 1,
|
|
borderColor: isSelected ? 'rgba(34, 197, 94, 0.3)' : 'rgba(255, 255, 255, 0.1)',
|
|
}}
|
|
onPress={() => {
|
|
if (DEBUG_MODE) {
|
|
logger.log(`[AudioTrackModal] Selecting track: ${track.id} (${track.name})`);
|
|
}
|
|
selectAudioTrack({ type: SelectedTrackType.INDEX, value: track.id });
|
|
// Close modal after selection
|
|
setTimeout(() => {
|
|
setShowAudioModal(false);
|
|
}, 200);
|
|
}}
|
|
activeOpacity={0.7}
|
|
>
|
|
<View style={{ flexDirection: 'row', alignItems: 'center', justifyContent: 'space-between' }}>
|
|
<View style={{ flex: 1 }}>
|
|
<View style={{ flexDirection: 'row', alignItems: 'center', marginBottom: 4 }}>
|
|
<Text style={{
|
|
color: '#FFFFFF',
|
|
fontSize: 15,
|
|
fontWeight: '500',
|
|
flex: 1,
|
|
}}>
|
|
{getTrackDisplayName(track)}
|
|
</Text>
|
|
</View>
|
|
{track.language && (
|
|
<Text style={{
|
|
color: 'rgba(255, 255, 255, 0.6)',
|
|
fontSize: 13,
|
|
}}>
|
|
{track.language.toUpperCase()}
|
|
</Text>
|
|
)}
|
|
</View>
|
|
{isSelected && (
|
|
<MaterialIcons name="check" size={20} color="#22C55E" />
|
|
)}
|
|
</View>
|
|
</TouchableOpacity>
|
|
);
|
|
})}
|
|
</View>
|
|
|
|
{vlcAudioTracks.length === 0 && (
|
|
<View style={{
|
|
backgroundColor: 'rgba(255, 255, 255, 0.05)',
|
|
borderRadius: 16,
|
|
padding: 20,
|
|
alignItems: 'center',
|
|
}}>
|
|
<MaterialIcons name="volume-off" size={48} color="rgba(255,255,255,0.3)" />
|
|
<Text style={{
|
|
color: 'rgba(255, 255, 255, 0.6)',
|
|
fontSize: 16,
|
|
marginTop: 16,
|
|
textAlign: 'center',
|
|
}}>
|
|
No audio tracks available
|
|
</Text>
|
|
</View>
|
|
)}
|
|
</View>
|
|
</ScrollView>
|
|
</Animated.View>
|
|
</>
|
|
);
|
|
};
|