BikeApp_demoss/App.tsx
2024-11-25 15:01:49 +08:00

206 lines
5.1 KiB
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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<string | null>(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 (
<View style={styles.contentContainer}>
<Text style={styles.errorText}>: {error}</Text>
<TouchableOpacity
style={styles.retryButton}
onPress={initializeTUTK}
>
<Text style={styles.retryText}></Text>
</TouchableOpacity>
</View>
);
}
switch (currentScreen) {
case 'video':
return <VideoPlayerScreen />;
default:
return (
<View style={styles.contentContainer}>
<Text style={styles.statusText}>
TUTK状态: {isInitialized ? '已初始化' : '初始化中...'}
</Text>
<Text style={styles.statusText}>
: {isConnected ? '已连接' : '未连接'}
</Text>
{isInitialized && !isConnected && (
<TouchableOpacity
style={styles.connectButton}
onPress={connectToDevice}
>
<Text style={styles.connectText}></Text>
</TouchableOpacity>
)}
</View>
);
}
};
return (
<SafeAreaView style={styles.container}>
<View style={styles.content}>
{renderContent()}
</View>
<View style={styles.bottomNav}>
<TouchableOpacity
style={[
styles.navButton,
currentScreen === 'home' && styles.activeNavButton
]}
onPress={() => setCurrentScreen('home')}
>
<Text style={styles.navText}></Text>
</TouchableOpacity>
<TouchableOpacity
style={[
styles.navButton,
currentScreen === 'video' && styles.activeNavButton
]}
onPress={() => setCurrentScreen('video')}
>
<Text style={styles.navText}></Text>
</TouchableOpacity>
</View>
</SafeAreaView>
);
};
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;