import * as React from 'react'; import { useEffect, useState } from 'react'; import { View, StyleSheet, NativeModules, Text, TouchableOpacity, SafeAreaView, Alert } from 'react-native'; import VideoPlayerScreen from './src/views/VideoPlayerScreen'; const { TUTKModule } = NativeModules; const App = () => { const [isInitialized, setIsInitialized] = useState(false); const [isConnected, setIsConnected] = useState(false); const [error, setError] = useState(null); const [currentScreen, setCurrentScreen] = useState('home'); useEffect(() => { initializeTUTK(); return () => { // 组件卸载时清理 cleanupTUTK(); }; }, []); const initializeTUTK = async () => { try { const result = await TUTKModule.initIOTC(); console.log('TUTK初始化结果:', result); setIsInitialized(true); // 初始化成功后自动连接设备 connectToDevice(); } catch (err) { const errorMessage = err instanceof Error ? err.message : '初始化失败'; console.error('TUTK初始化错误:', errorMessage); setError(errorMessage); } }; const cleanupTUTK = async () => { try { const result = await TUTKModule.deinitIOTC(); console.log('TUTK清理结果:', result); setIsInitialized(false); setIsConnected(false); } catch (err) { console.error('TUTK清理错误:', err); } }; const connectToDevice = async () => { try { const deviceUid = "EXPUAT34KFLWSH6GUHD1"; const account = "admin"; // 替换为实际账号 const password = "testpwd"; // 替换为实际密码 const result = await TUTKModule.connectToDevice(deviceUid, account, password); console.log('设备连接成功:', result); setIsConnected(true); Alert.alert('连接成功', `设备连接成功,通道ID: ${result}`); } catch (err) { console.error('设备连接失败:', err); setError(err instanceof Error ? err.message : '连接设备失败'); Alert.alert('连接失败', err instanceof Error ? err.message : '连接设备失败'); } }; const renderContent = () => { if (error) { return ( 错误: {error} 重试 ); } switch (currentScreen) { case 'video': return ; default: return ( TUTK状态: {isInitialized ? '已初始化' : '初始化中...'} 设备连接: {isConnected ? '已连接' : '未连接'} {isInitialized && !isConnected && ( 连接设备 )} ); } }; return ( {renderContent()} setCurrentScreen('home')} > 主页 setCurrentScreen('video')} > 视频 ); }; const styles = StyleSheet.create({ container: { flex: 1, backgroundColor: '#fff', }, content: { flex: 1, }, contentContainer: { flex: 1, justifyContent: 'center', alignItems: 'center', padding: 20, }, statusText: { fontSize: 16, color: '#333', marginBottom: 10, }, errorText: { color: 'red', textAlign: 'center', marginBottom: 20, }, retryButton: { backgroundColor: '#007AFF', padding: 10, borderRadius: 5, }, retryText: { color: '#fff', fontSize: 16, }, connectButton: { backgroundColor: '#4CAF50', padding: 15, borderRadius: 5, marginTop: 20, }, connectText: { color: '#fff', fontSize: 16, }, bottomNav: { flexDirection: 'row', borderTopWidth: 1, borderTopColor: '#eee', backgroundColor: '#fff', }, navButton: { flex: 1, padding: 15, alignItems: 'center', }, activeNavButton: { backgroundColor: '#f0f0f0', }, navText: { color: '#333', fontSize: 16, }, }); export default App;