import React, { useState, useEffect, useCallback } from 'react'; import { View, Text, StyleSheet, ActivityIndicator, TouchableOpacity, Modal, TouchableWithoutFeedback } from 'react-native'; import { Camera, CameraView, scanFromURLAsync } from 'expo-camera'; import { Ionicons } from '@expo/vector-icons'; import { useFocusEffect, useNavigation } from '@react-navigation/native'; import * as ImagePicker from 'expo-image-picker'; import ScannedDataBox from '../components/ScannedDataBox'; import { useDispatch } from 'react-redux'; import { AppDispatch } from '../store'; import { addQRCode } from '../reducers/qrCodesReducer'; import { scanQRCode, getUserInfo } from '../api/qrCodeAPI'; import SettingsScreen from './SettingsScreen'; const QRScannerScreen: React.FC<{ clearScanData: () => void }> = ({ clearScanData }) => { const navigation = useNavigation(); // Navigation hook const dispatch = useDispatch(); // Use dispatch for Redux actions // State variables const [showSplash, setShowSplash] = useState(true); // State for splash screen visibility const [hasPermission, setHasPermission] = useState(null); const [scanned, setScanned] = useState(false); const [qrCodeId, setQRCodeId] = useState(null); // State for QR code ID const [enableTorch, setEnableTorch] = useState(false); // State for torch const [cameraVisible, setCameraVisible] = useState(true); // State to control camera visibility const [isScannedDataBoxVisible, setIsScannedDataBoxVisible] = useState(false); // State for ScannedDataBox modal visibility const [isSettingsModalVisible, setIsSettingsModalVisible] = useState(false); // State for modal visibility // Request Camera Permission and initialize the app useEffect(() => { const initializeApp = async () => { const { status } = await Camera.requestCameraPermissionsAsync(); setHasPermission(status === 'granted'); setShowSplash(false); console.log("Camera permissions initialized"); // Fetch and log user information fetchUserInformation(); }; initializeApp(); }, []); // Focus effect to enable camera and clear data on focus useFocusEffect( useCallback(() => { setCameraVisible(true); clearScanDataInternal(); console.log("Screen focused, scan data cleared and camera enabled"); return () => { setCameraVisible(false); console.log("Screen unfocused, camera disabled"); }; }, [navigation]) ); // Clear Scan Data const clearScanDataInternal = () => { setScanned(false); setQRCodeId(null); console.log("Scan data cleared"); }; // Handle scanning of payload (QR code data) and get the QR-ID const handlePayload = async (payload: string) => { setScanned(true); console.info("Decoded QR Code, Payload is: ", payload); try { const response = await scanQRCode(payload); const qrCodeId = response.qrcode.data.id; // Store the QR code ID for later use setQRCodeId(qrCodeId); setIsScannedDataBoxVisible(true); // Show ScannedDataBox modal // Optionally, show a message or perform another action console.log("QR code scanned successfully, ID:", qrCodeId); } catch (error) { console.error("Error scanning QR code:", error); } }; // Fetch and log user information const fetchUserInformation = async () => { try { const userInfo = await getUserInfo(); console.log('User Info:', userInfo); } catch (error) { console.error('Error fetching user information:', error); } }; // Toggle torch (flashlight) on/off const toggleTorch = () => { setEnableTorch((prev) => !prev); console.log("Torch toggled:", enableTorch ? "off" : "on"); }; // Read QR from image const readQRFromImage = async () => { clearScanDataInternal(); console.log("Reading QR code from image"); const result = await ImagePicker.launchImageLibraryAsync({ mediaTypes: ImagePicker.MediaTypeOptions.Images, allowsEditing: false, // Don't ask user to crop images quality: 1, }); if (result && result.assets && result.assets.length > 0 && result.assets[0].uri) { // Ensure the uri is not empty try { const scannedResult = await scanFromURLAsync(result.assets[0].uri); if (scannedResult && scannedResult[0] && scannedResult[0].data) { handlePayload(scannedResult[0].data); console.log('QR code data from image:', scannedResult[0].data); } else { console.log("No QR code found in the selected image"); } } catch (error) { console.error('Error scanning QR code from image:', error); } } }; // Conditional rendering based on state if (showSplash) { return ( ); } if (hasPermission === null) { return Requesting for camera permission; } if (hasPermission === false) { return No access to camera; } return ( SafeQR Welcome to SafeQR code Scanner {cameraVisible && ( handlePayload(data)} barcodeScannerSettings={{ barcodeTypes: ['qr', 'pdf417'] }} style={styles.camera} enableTorch={enableTorch} /> )} {/* Scanned Data Box */} {isScannedDataBoxVisible && ( setIsScannedDataBoxVisible(false)} /> )} {/* Settings Icon */} setIsSettingsModalVisible(true)} style={styles.settingsButton}> {/* Settings Modal */} setIsSettingsModalVisible(false)} style={styles.settingsModal} > setIsSettingsModalVisible(false)} style={styles.closeButton}> Close ); }; const styles = StyleSheet.create({ container: { flex: 1, backgroundColor: '#f8f0fc', padding: 20, }, headerText: { fontSize: 24, fontWeight: 'bold', color: '#ff69b4', textAlign: 'center', marginBottom: 20, }, splashContainer: { flex: 1, justifyContent: 'center', alignItems: 'center', backgroundColor: '#f8f0fc', height: '100%', width: '100%', }, cameraContainer: { height: '60%', alignItems: 'center', justifyContent: 'center', borderRadius: 10, overflow: 'hidden', }, camera: { width: '100%', height: '100%', }, flashButton: { position: 'absolute', bottom: 20, left: 100, width: 50, height: 50, justifyContent: 'center', alignItems: 'center', backgroundColor: '#000', borderRadius: 25, }, galleryButton: { position: 'absolute', bottom: 20, right: 100, width: 50, height: 50, justifyContent: 'center', alignItems: 'center', backgroundColor: '#000', borderRadius: 25, }, scannedDataBoxPopup: { position: 'absolute', top: '10%', left: '5%', right: '5%', zIndex: 2, backgroundColor: 'white', // Optional: Set a background color if needed borderRadius: 10, // Optional: Add rounded corners padding: 10, // Optional: Add padding around the content elevation: 5, // Optional: Add elevation for shadow effect }, welcomeText: { textAlign: 'center', fontSize: 20, marginVertical: 10, color: 'black', }, settingsButton: { position: 'absolute', top: 40, right: 20, zIndex: 2, }, settingsModal: { backgroundColor: 'rgba(0, 0, 0, 0.5)', // Semi-transparent background }, settingsModalContainer: { flex: 2, justifyContent: 'center', // Center the modal vertically backgroundColor: 'rgba(0, 0, 0, 0.5)', }, settingsModalContent: { width: '100%', height: '80%', // Increase the height to make the modal taller backgroundColor: 'white', padding: 20, borderTopLeftRadius: 10, borderTopRightRadius: 10, alignItems: 'center', }, closeButton: { marginTop: 10, padding: 10, backgroundColor: '#ff69b4', borderRadius: 5, }, closeButtonText: { color: 'white', fontWeight: 'bold', } }); export default QRScannerScreen;