318 lines
10 KiB
TypeScript
318 lines
10 KiB
TypeScript
import React, { useState, useEffect, useCallback } from 'react';
|
|
import { View, Text, TouchableOpacity, FlatList, StyleSheet, ActivityIndicator, Alert, Animated, Dimensions } from 'react-native';
|
|
import { Ionicons } from '@expo/vector-icons';
|
|
import { useFocusEffect } from '@react-navigation/native';
|
|
import { getEmails, getScannedEmails, getUserInfo } from '../api/qrCodeAPI';
|
|
import { fetchAuthSession } from 'aws-amplify/auth';
|
|
import { Buffer } from 'buffer';
|
|
|
|
const { width: screenWidth, height: screenHeight } = Dimensions.get('window');
|
|
|
|
const EmailScreen: React.FC = () => {
|
|
const [selectedMessage, setSelectedMessage] = useState(null);
|
|
const [emailData, setEmailData] = useState(null);
|
|
const [loading, setLoading] = useState(true);
|
|
const [rescanLoading, setRescanLoading] = useState(false);
|
|
const [error, setError] = useState(null);
|
|
const [userEmail, setUserEmail] = useState('');
|
|
const [bannerOpacity] = useState(new Animated.Value(0));
|
|
|
|
useEffect(() => {
|
|
fetchUserEmail();
|
|
}, []);
|
|
|
|
// Function to fetch user email
|
|
const fetchUserEmail = async () => {
|
|
try {
|
|
console.log('fetchUserEmail triggered');
|
|
const userInfo = await getUserInfo();
|
|
setUserEmail(userInfo.email);
|
|
} catch (error) {
|
|
console.error('Error fetching user email:', error);
|
|
setUserEmail('Error fetching email');
|
|
}
|
|
};
|
|
|
|
// Function to initiate the email fetching process
|
|
const startInboxScanning = async () => {
|
|
setRescanLoading(true);
|
|
showBanner();
|
|
|
|
try {
|
|
// Fetch the current authentication session
|
|
const { tokens } = await fetchAuthSession();
|
|
const idToken = tokens.idToken.toString();
|
|
|
|
const parts = idToken.split('.');
|
|
const payload = parts[1];
|
|
const decodedPayload = Buffer.from(payload, 'base64').toString('utf8');
|
|
const parsedPayload = JSON.parse(decodedPayload);
|
|
|
|
const googleAccessToken = parsedPayload["custom:access_token"];
|
|
const googleRefreshToken = parsedPayload["custom:refresh_token"];
|
|
|
|
if (googleAccessToken && googleRefreshToken) {
|
|
// Use the fetched tokens to initiate email fetching
|
|
await getEmails(googleAccessToken, googleRefreshToken);
|
|
setRescanLoading(false);
|
|
} else {
|
|
console.error('Google access token or refresh token not found in the payload');
|
|
setError('Google access token or refresh token missing.');
|
|
setRescanLoading(false);
|
|
}
|
|
} catch (error) {
|
|
console.error('Error initiating email fetch:', error);
|
|
setError('Error rescanning inbox.');
|
|
setRescanLoading(false);
|
|
}
|
|
};
|
|
|
|
// Function to show the banner
|
|
const showBanner = () => {
|
|
Animated.timing(bannerOpacity, {
|
|
toValue: 1,
|
|
duration: 500,
|
|
useNativeDriver: true,
|
|
}).start(() => {
|
|
setTimeout(() => {
|
|
Animated.timing(bannerOpacity, {
|
|
toValue: 0,
|
|
duration: 500,
|
|
useNativeDriver: true,
|
|
}).start();
|
|
}, 3000);
|
|
});
|
|
};
|
|
|
|
// Function to poll for scanned emails
|
|
const startPollingForScannedEmails = useCallback(() => {
|
|
const pollingInterval = setInterval(async () => {
|
|
try {
|
|
const scannedEmails = await getScannedEmails();
|
|
if (scannedEmails) {
|
|
setEmailData(scannedEmails);
|
|
setLoading(false);
|
|
}
|
|
} catch (error) {
|
|
console.error('Error fetching scanned emails:', error);
|
|
setError('Error fetching emails.');
|
|
setLoading(false);
|
|
}
|
|
}, 10000); // Poll every 10 seconds
|
|
|
|
return () => clearInterval(pollingInterval); // Cleanup the interval
|
|
}, []);
|
|
|
|
const handleSelectMessage = (message) => {
|
|
setSelectedMessage(selectedMessage === message ? null : message);
|
|
};
|
|
|
|
const refreshScannedEmails = async () => {
|
|
try {
|
|
const scannedEmails = await getScannedEmails();
|
|
setEmailData(scannedEmails);
|
|
} catch (error) {
|
|
console.error('Error refreshing scanned emails:', error);
|
|
setError('Error refreshing emails.');
|
|
}
|
|
};
|
|
|
|
useFocusEffect(
|
|
useCallback(() => {
|
|
startInboxScanning();
|
|
const stopPolling = startPollingForScannedEmails();
|
|
|
|
return () => {
|
|
stopPolling(); // Stop polling when the screen is not in focus
|
|
};
|
|
}, [startPollingForScannedEmails])
|
|
);
|
|
|
|
return (
|
|
<View style={styles.container}>
|
|
{loading && (
|
|
<View style={styles.loadingContainer}>
|
|
<ActivityIndicator size="large" color="#ff69b4" />
|
|
<Text style={{ color: '#ff69b4' }}>Fetching emails...</Text>
|
|
</View>
|
|
)}
|
|
{error && (
|
|
<View style={styles.errorContainer}>
|
|
<Text style={{ color: '#ff69b4' }}>{error}</Text>
|
|
</View>
|
|
)}
|
|
{emailData && (
|
|
<>
|
|
<View style={styles.headerContainer}>
|
|
<Text style={styles.emailHeader}>Email: {userEmail}</Text>
|
|
<TouchableOpacity onPress={refreshScannedEmails} style={styles.refreshButton}>
|
|
<Ionicons name="refresh" size={24} color="#ff69b4" />
|
|
</TouchableOpacity>
|
|
</View>
|
|
{rescanLoading && (
|
|
<View style={styles.rescanIndicator}>
|
|
<Text style={{ color: '#ff69b4' }}>Rescanning inbox...</Text>
|
|
</View>
|
|
)}
|
|
<FlatList
|
|
data={emailData.messages}
|
|
keyExtractor={(item) => item.messageId}
|
|
renderItem={({ item }) => (
|
|
<TouchableOpacity onPress={() => handleSelectMessage(item)} style={styles.messageContainer}>
|
|
<Text style={styles.subject}>{item.subject}</Text>
|
|
<Text style={styles.date}>{item.date}</Text>
|
|
{selectedMessage === item && (
|
|
<View style={styles.emailListContainer}>
|
|
{item.qrCodeByContentId && (
|
|
<View>
|
|
<Text style={styles.qrCodeHeader}>QR Codes by Content ID:</Text>
|
|
{item.qrCodeByContentId.map((qrCode, index) => (
|
|
<View key={index} style={styles.qrCodeContainer}>
|
|
{qrCode.decodedContent.map((url, i) => (
|
|
<TouchableOpacity key={i} onPress={() => Alert.alert("Testing")}>
|
|
<Text style={styles.qrCodeLink}>{url}</Text>
|
|
</TouchableOpacity>
|
|
))}
|
|
</View>
|
|
))}
|
|
</View>
|
|
)}
|
|
{item.qrCodeByURL && (
|
|
<View>
|
|
<Text style={styles.qrCodeHeader}>Decoded QR Codes:</Text>
|
|
{item.qrCodeByURL.map((qrCode, index) => (
|
|
<View key={index} style={styles.qrCodeContainer}>
|
|
{qrCode.decodedContent.map((url, i) => (
|
|
<TouchableOpacity key={i} onPress={() => Alert.alert("Testing")}>
|
|
<Text style={styles.qrCodeLink}>{url}</Text>
|
|
</TouchableOpacity>
|
|
))}
|
|
</View>
|
|
))}
|
|
</View>
|
|
)}
|
|
</View>
|
|
)}
|
|
</TouchableOpacity>
|
|
)}
|
|
/>
|
|
</>
|
|
)}
|
|
<Animated.View style={[styles.banner, { opacity: bannerOpacity }]}>
|
|
<Text style={styles.bannerText}>Scanning emails in the background. This may take a while...</Text>
|
|
</Animated.View>
|
|
</View>
|
|
);
|
|
};
|
|
|
|
const styles = StyleSheet.create({
|
|
container: {
|
|
flex: 1,
|
|
backgroundColor: '#f8f0fc',
|
|
paddingHorizontal: screenWidth * 0.025,
|
|
paddingTop: screenHeight * 0.05,
|
|
paddingBottom: screenHeight * 0.1,
|
|
},
|
|
headerContainer: {
|
|
flexDirection: 'row',
|
|
alignItems: 'center',
|
|
justifyContent: 'space-between',
|
|
marginBottom: screenHeight * 0.02,
|
|
},
|
|
emailHeader: {
|
|
fontSize: screenWidth * 0.045,
|
|
fontWeight: 'bold',
|
|
color: '#ff69b4',
|
|
},
|
|
emailListContainer: {
|
|
flex: 1,
|
|
},
|
|
refreshButton: {
|
|
padding: screenWidth * 0.025,
|
|
},
|
|
loadingContainer: {
|
|
flex: 1,
|
|
justifyContent: 'center',
|
|
alignItems: 'center',
|
|
},
|
|
loadingText: {
|
|
color: '#ff69b4',
|
|
fontSize: screenWidth * 0.04,
|
|
},
|
|
errorContainer: {
|
|
flex: 1,
|
|
justifyContent: 'center',
|
|
alignItems: 'center',
|
|
},
|
|
errorText: {
|
|
color: '#ff69b4',
|
|
fontSize: screenWidth * 0.04,
|
|
},
|
|
rescanIndicator: {
|
|
justifyContent: 'center',
|
|
alignItems: 'center',
|
|
marginVertical: screenHeight * 0.015,
|
|
},
|
|
rescanText: {
|
|
color: '#ff69b4',
|
|
fontSize: screenWidth * 0.04,
|
|
},
|
|
messageContainer: {
|
|
backgroundColor: '#fff',
|
|
padding: screenWidth * 0.025,
|
|
borderRadius: screenWidth * 0.025,
|
|
marginBottom: screenHeight * 0.015,
|
|
shadowColor: '#000',
|
|
shadowOpacity: 0.1,
|
|
shadowOffset: { width: 0, height: screenHeight * 0.002 },
|
|
shadowRadius: screenWidth * 0.025,
|
|
elevation: 2,
|
|
},
|
|
subject: {
|
|
fontSize: screenWidth * 0.04,
|
|
fontWeight: 'bold',
|
|
color: '#000',
|
|
},
|
|
date: {
|
|
fontSize: screenWidth * 0.035,
|
|
color: '#555',
|
|
},
|
|
qrCodeContainer: {
|
|
marginBottom: screenHeight * 0.015,
|
|
},
|
|
qrCodeLink: {
|
|
fontSize: screenWidth * 0.035,
|
|
color: '#0000ff',
|
|
textDecorationLine: 'underline',
|
|
marginVertical: screenHeight * 0.005,
|
|
},
|
|
qrCodeHeader: {
|
|
fontSize: screenWidth * 0.04,
|
|
fontWeight: 'bold',
|
|
color: '#ff69b4',
|
|
marginBottom: screenHeight * 0.01,
|
|
marginTop: screenHeight * 0.015,
|
|
},
|
|
banner: {
|
|
position: 'absolute',
|
|
top: screenHeight * 0.4, // Adjusts the banner to appear in the middle of the screen
|
|
left: screenWidth * 0.1, // Adjust these values to center the banner as needed
|
|
right: screenWidth * 0.1,
|
|
backgroundColor: '#ff69b4',
|
|
paddingVertical: screenHeight * 0.02, // Adjust the height of the banner
|
|
paddingHorizontal: screenWidth * 0.05,
|
|
borderRadius: screenWidth * 0.05,
|
|
alignItems: 'center',
|
|
justifyContent: 'center',
|
|
zIndex: 10, // Ensure it appears above other elements
|
|
},
|
|
bannerText: {
|
|
color: '#fff',
|
|
fontWeight: 'bold',
|
|
textAlign: 'center',
|
|
fontSize: screenWidth * 0.04,
|
|
},
|
|
});
|
|
|
|
export default EmailScreen;
|