Fixed UI bugs for PHONE/SMS/TEXT on EmailScreen and History Screen

This commit is contained in:
2024-08-15 02:39:49 +08:00
parent dcd3399689
commit ecf174e1d6
3 changed files with 103 additions and 70 deletions

View File

@@ -459,7 +459,7 @@ const ScannedDataBox: React.FC<ScannedDataBoxProps> = ({ qrCodeId, clearScanData
{type === 'PHONE' && ( {type === 'PHONE Nume' && (
<TouchableOpacity style={styles.iconButton} onPress={() => Linking.openURL(contents)}> <TouchableOpacity style={styles.iconButton} onPress={() => Linking.openURL(contents)}>
<View style={styles.dividerHorizontal} /> <View style={styles.dividerHorizontal} />
<Ionicons name="call-outline" size={screenWidth * 0.045} color="#2196F3" /> <Ionicons name="call-outline" size={screenWidth * 0.045} color="#2196F3" />

View File

@@ -24,10 +24,10 @@ const EmailScreen: React.FC = () => {
const [messageToDelete, setMessageToDelete] = useState(null); const [messageToDelete, setMessageToDelete] = useState(null);
// Start scanning inbox only once when the component mounts // Start scanning inbox only once when the component mounts
useEffect(() => { useEffect(() => {
startInboxScanning(); startInboxScanning();
fetchUserEmail(); fetchUserEmail();
}, []); }, []);
// Function to fetch user email // Function to fetch user email
const fetchUserEmail = async () => { const fetchUserEmail = async () => {
@@ -174,7 +174,6 @@ useEffect(() => {
); );
const handleUrlClick = (id) => { const handleUrlClick = (id) => {
console.log('handleURLClik ID :',)
setSelectedQrCodeId(id); setSelectedQrCodeId(id);
setIsModalVisible(true); setIsModalVisible(true);
}; };
@@ -279,12 +278,14 @@ useEffect(() => {
> >
{/* The greyspace outside, made clickable to close the modal */} {/* The greyspace outside, made clickable to close the modal */}
<TouchableOpacity <TouchableOpacity
style={styles.modalContainer} style={styles.modalOverlay}
activeOpacity={1} activeOpacity={1}
onPressOut={() => setIsModalVisible(false)} onPressOut={() => setIsModalVisible(false)}
> >
{/* Ensure ScannedDataBox does not render another modal */} {/* Ensure ScannedDataBox does not render another modal */}
<View style={styles.modalContainer}>
<ScannedDataBox qrCodeId={selectedQrCodeId} clearScanData={() => setIsModalVisible(false)} /> <ScannedDataBox qrCodeId={selectedQrCodeId} clearScanData={() => setIsModalVisible(false)} />
</View>
</TouchableOpacity> </TouchableOpacity>
</Modal> </Modal>
@@ -295,6 +296,7 @@ useEffect(() => {
animationType="fade" animationType="fade"
onRequestClose={() => setIsDeleteModalVisible(false)} onRequestClose={() => setIsDeleteModalVisible(false)}
> >
<View style={styles.modalOverlay}>
<View style={styles.modalContainer}> <View style={styles.modalContainer}>
<View style={styles.modalContent}> <View style={styles.modalContent}>
<Text style={styles.modalTitle}>Are you sure?</Text> <Text style={styles.modalTitle}>Are you sure?</Text>
@@ -315,6 +317,7 @@ useEffect(() => {
</View> </View>
</View> </View>
</View> </View>
</View>
</Modal> </Modal>
</View> </View>
); );
@@ -416,38 +419,38 @@ const styles = StyleSheet.create({
}, },
banner: { banner: {
position: 'absolute', position: 'absolute',
top: screenHeight * 0.45, // Adjusts the banner to appear in the middle of the screen top: screenHeight * 0.45,
left: screenWidth * 0.1, // Adjust these values to center the banner as needed left: screenWidth * 0.1,
right: screenWidth * 0.1, right: screenWidth * 0.1,
backgroundColor: '#ff69b4', backgroundColor: '#ff69b4',
paddingVertical: screenHeight * 0.02, // Adjust the height of the banner paddingVertical: screenHeight * 0.02,
paddingHorizontal: screenWidth * 0.05, paddingHorizontal: screenWidth * 0.05,
borderRadius: screenWidth * 0.05, borderRadius: screenWidth * 0.05,
alignItems: 'center', alignItems: 'center',
justifyContent: 'center', justifyContent: 'center',
zIndex: 10, // Ensure it appears above other elements zIndex: 10,
}, },
errorBanner: { errorBanner: {
position: 'absolute', position: 'absolute',
top: screenHeight * 0.4, // Adjusts the banner to appear in the middle of the screen top: screenHeight * 0.4,
left: screenWidth * 0.1, // Adjust these values to center the banner as needed left: screenWidth * 0.1,
right: screenWidth * 0.1, right: screenWidth * 0.1,
backgroundColor: '#ff69b4', backgroundColor: '#ff69b4',
paddingVertical: screenHeight * 0.02, // Adjust the height of the banner paddingVertical: screenHeight * 0.02,
paddingHorizontal: screenWidth * 0.05, paddingHorizontal: screenWidth * 0.05,
borderRadius: screenWidth * 0.05, borderRadius: screenWidth * 0.05,
alignItems: 'center', alignItems: 'center',
justifyContent: 'center', justifyContent: 'center',
zIndex: 10, // Ensure it appears above other elements zIndex: 10,
}, }, bannerText: {
bannerText: {
color: '#fff', color: '#fff',
fontWeight: 'bold', fontWeight: 'bold',
textAlign: 'center', textAlign: 'center',
fontSize: screenWidth * 0.04, fontSize: screenWidth * 0.04,
}, },
innerModalContainer: { innerModalContainer: {
backgroundColor: '#ffe6f0', // pink box color backgroundColor: '#ffe6f0',
padding: screenWidth * 0.05, padding: screenWidth * 0.05,
borderRadius: screenWidth * 0.03, borderRadius: screenWidth * 0.03,
alignItems: 'center', alignItems: 'center',
@@ -456,7 +459,7 @@ const styles = StyleSheet.create({
position: 'absolute', position: 'absolute',
top: screenWidth * 0.02, top: screenWidth * 0.02,
right: screenWidth * 0.02, right: screenWidth * 0.02,
zIndex: 1, // Ensure it is above other content zIndex: 1,
}, },
deleteButtonContainer: { deleteButtonContainer: {
flexDirection: 'row', flexDirection: 'row',
@@ -469,12 +472,18 @@ const styles = StyleSheet.create({
color: '#ff69b4', color: '#ff69b4',
fontSize: screenWidth * 0.035, fontSize: screenWidth * 0.035,
}, },
modalContainer: { modalOverlay: {
flex: 1, flex: 1,
justifyContent: 'center', justifyContent: 'center',
alignItems: 'center',
backgroundColor: 'rgba(0, 0, 0, 0.5)', backgroundColor: 'rgba(0, 0, 0, 0.5)',
}, },
modalContainer: {
marginHorizontal: '5%',
borderRadius: screenWidth * 0.025,
backgroundColor: 'white',
padding: screenWidth * 0.025,
elevation: 5,
},
modalContent: { modalContent: {
width: '80%', width: '80%',
backgroundColor: 'white', backgroundColor: 'white',

View File

@@ -16,8 +16,10 @@ const HistoryScreen: React.FC = () => {
const histories = useSelector((state: RootState) => state.qrCodes.histories); const histories = useSelector((state: RootState) => state.qrCodes.histories);
const { userAttributes } = useFetchUserAttributes(); const { userAttributes } = useFetchUserAttributes();
const [showBookmarks, setShowBookmarks] = useState<boolean>(false); const [showBookmarks, setShowBookmarks] = useState<boolean>(false);
const [qrCodeToDelete, setQrCodeToDelete] = useState<string | null>(null); const [qrCodeToDelete, setQrCodeToDelete] = useState<string | null>(null);
const [isModalVisible, setIsModalVisible] = useState<boolean>(false); const [isDeleteModalVisible, setIsDeleteModalVisible] = useState<boolean>(false);
const [isScannedDataModalVisible, setIsScannedDataModalVisible] = useState<boolean>(false);
const [historiesLoading, setHistoriesLoading] = useState(false); const [historiesLoading, setHistoriesLoading] = useState(false);
const [historiesError, setHistoriesError] = useState<string | null>(null); const [historiesError, setHistoriesError] = useState<string | null>(null);
const [selectedQrCodeId, setSelectedQrCodeId] = useState<string | null>(null); const [selectedQrCodeId, setSelectedQrCodeId] = useState<string | null>(null);
@@ -42,30 +44,34 @@ const HistoryScreen: React.FC = () => {
} }
}, [userAttributes?.sub, fetchHistories]); }, [userAttributes?.sub, fetchHistories]);
const handleDelete = useCallback((qrCodeId: string) => { const handleDeleteQrCode = useCallback((qrCodeId: string) => {
if (userAttributes?.sub) { if (userAttributes?.sub) {
dispatch(deleteQRCode({ userId: userAttributes.sub, qrCodeId })); dispatch(deleteQRCode({ userId: userAttributes.sub, qrCodeId }));
setIsModalVisible(false); setIsDeleteModalVisible(false);
} }
}, [dispatch, userAttributes]); }, [dispatch, userAttributes]);
const filteredQrCodes = showBookmarks ? histories.filter(qr => qr.bookmarked) : histories; const handleSelectQrCodeForView = (item: QRCodeType) => {
const handleItemPress = (item: QRCodeType) => {
setSelectedQrCodeId(item.data.id || null); setSelectedQrCodeId(item.data.id || null);
setIsScannedDataModalVisible(true);
}; };
const clearSelectedData = () => { const clearSelectedQrCodeData = () => {
setSelectedQrCodeId(null); setSelectedQrCodeId(null);
setIsScannedDataModalVisible(false);
}; };
const filteredQrCodes = showBookmarks
? histories.filter((qr) => qr.bookmarked)
: histories;
return ( return (
<View style={styles.container}> <View style={styles.container}>
<View style={styles.headerContainer}> <View style={styles.headerContainer}>
<TouchableOpacity onPress={() => { setShowBookmarks(false); clearSelectedData(); }}> <TouchableOpacity onPress={() => { setShowBookmarks(false); clearSelectedQrCodeData(); }}>
<Text style={!showBookmarks ? styles.headerTextActive : styles.headerTextInactive}>History</Text> <Text style={!showBookmarks ? styles.headerTextActive : styles.headerTextInactive}>History</Text>
</TouchableOpacity> </TouchableOpacity>
<TouchableOpacity onPress={() => { setShowBookmarks(true); clearSelectedData(); }}> <TouchableOpacity onPress={() => { setShowBookmarks(true); clearSelectedQrCodeData(); }}>
<Text style={showBookmarks ? styles.headerTextActive : styles.headerTextInactive}>Bookmarks</Text> <Text style={showBookmarks ? styles.headerTextActive : styles.headerTextInactive}>Bookmarks</Text>
</TouchableOpacity> </TouchableOpacity>
</View> </View>
@@ -78,18 +84,12 @@ const HistoryScreen: React.FC = () => {
</Text> </Text>
)} )}
{selectedQrCodeId && (
<View style={styles.scannedDataBoxContainer}>
<ScannedDataBox qrCodeId={selectedQrCodeId} clearScanData={clearSelectedData} />
</View>
)}
<FlatList <FlatList
data={filteredQrCodes} data={filteredQrCodes}
renderItem={({ item }) => ( renderItem={({ item }) => (
<View style={styles.itemContainer}> <View style={styles.itemContainer}>
<View style={styles.itemLeft}> <View style={styles.itemLeft}>
<TouchableOpacity onPress={() => handleItemPress(item)} style={styles.itemContent}> <TouchableOpacity onPress={() => handleSelectQrCodeForView(item)} style={styles.itemContent}>
<Image source={require('../assets/ScanIcon3.png')} style={styles.scanIcon} /> <Image source={require('../assets/ScanIcon3.png')} style={styles.scanIcon} />
<View style={styles.textContainer}> <View style={styles.textContainer}>
<Text style={styles.dataText} numberOfLines={1} ellipsizeMode="tail">{item.data.contents}</Text> <Text style={styles.dataText} numberOfLines={1} ellipsizeMode="tail">{item.data.contents}</Text>
@@ -105,9 +105,9 @@ const HistoryScreen: React.FC = () => {
</TouchableOpacity> </TouchableOpacity>
<TouchableOpacity onPress={() => { <TouchableOpacity onPress={() => {
setQrCodeToDelete(item.data.id); setQrCodeToDelete(item.data.id);
setIsModalVisible(true); setIsDeleteModalVisible(true);
}}> }}>
<Ionicons name="close-circle-outline" size={screenWidth * 0.06} color="#ff69b4" /> <Ionicons name="trash-outline" size={screenWidth * 0.06} color="#ff69b4" />
</TouchableOpacity> </TouchableOpacity>
</View> </View>
</View> </View>
@@ -116,21 +116,38 @@ const HistoryScreen: React.FC = () => {
contentContainerStyle={styles.flatListContent} contentContainerStyle={styles.flatListContent}
/> />
{/* Modal for ScannedDataBox */}
<Modal
visible={isScannedDataModalVisible}
transparent={true}
animationType="fade"
onRequestClose={clearSelectedQrCodeData}
>
<View style={styles.modalOverlay}>
<TouchableOpacity style={styles.modalOverlayTouchable} onPress={clearSelectedQrCodeData} activeOpacity={1}>
<View style={styles.modalContainer}>
<ScannedDataBox qrCodeId={selectedQrCodeId} clearScanData={clearSelectedQrCodeData} />
</View>
</TouchableOpacity>
</View>
</Modal>
{/* Modal to confirm deletion */}
<Modal <Modal
transparent={true} transparent={true}
visible={isModalVisible} visible={isDeleteModalVisible}
animationType="fade" animationType="fade"
onRequestClose={() => setIsModalVisible(false)} onRequestClose={() => setIsDeleteModalVisible(false)}
> >
<View style={styles.modalOverlay}>
<View style={styles.modalContainer}> <View style={styles.modalContainer}>
<View style={styles.modalContent}>
<Text style={styles.modalTitle}>Are you sure?</Text> <Text style={styles.modalTitle}>Are you sure?</Text>
<Text style={styles.modalText}>If bookmarked, this will be removed from both History and Bookmarks.</Text> <Text style={styles.modalText}>If bookmarked, this will be removed from both History and Bookmarks.</Text>
<View style={styles.modalButtons}> <View style={styles.modalButtons}>
<TouchableOpacity style={styles.modalButton} onPress={() => handleDelete(qrCodeToDelete!)}> <TouchableOpacity style={styles.modalButton} onPress={() => handleDeleteQrCode(qrCodeToDelete!)}>
<Text style={styles.modalButtonText}>Yes, Delete</Text> <Text style={styles.modalButtonText}>Yes, Delete</Text>
</TouchableOpacity> </TouchableOpacity>
<TouchableOpacity style={styles.modalButton} onPress={() => setIsModalVisible(false)}> <TouchableOpacity style={styles.modalButton} onPress={() => setIsDeleteModalVisible(false)}>
<Text style={[styles.modalButtonText, { color: '#ff69b4' }]}>No, Keep It</Text> <Text style={[styles.modalButtonText, { color: '#ff69b4' }]}>No, Keep It</Text>
</TouchableOpacity> </TouchableOpacity>
</View> </View>
@@ -146,7 +163,7 @@ const styles = StyleSheet.create({
flex: 1, flex: 1,
backgroundColor: '#f8f0fc', backgroundColor: '#f8f0fc',
padding: 20, padding: 20,
paddingTop: screenHeight * 0.05, // Add padding from the top paddingTop: screenHeight * 0.05,
}, },
headerContainer: { headerContainer: {
flexDirection: 'row', flexDirection: 'row',
@@ -212,15 +229,22 @@ const styles = StyleSheet.create({
color: '#ff69b4', color: '#ff69b4',
marginVertical: screenHeight * 0.02, marginVertical: screenHeight * 0.02,
}, },
scannedDataBoxContainer: { modalOverlay: {
marginBottom: screenHeight * 0.02,
},
modalContainer: {
flex: 1, flex: 1,
justifyContent: 'center', justifyContent: 'center',
alignItems: 'center',
backgroundColor: 'rgba(0, 0, 0, 0.5)', backgroundColor: 'rgba(0, 0, 0, 0.5)',
}, },
modalOverlayTouchable: {
flex: 1,
justifyContent: 'center',
},
modalContainer: {
marginHorizontal: '5%',
borderRadius: screenWidth * 0.025,
backgroundColor: 'white',
padding: screenWidth * 0.025,
elevation: 5,
},
modalContent: { modalContent: {
width: '80%', width: '80%',
backgroundColor: 'white', backgroundColor: 'white',