import React, { useEffect, useState, useContext } from "react"; import { StyleSheet, View, Text } from "react-native"; import ConfirmationModal from "../components/ConfirmationModal"; import { ScrollView } from "react-native"; import assets from "../config/assets"; import { dimensions } from "../config/dimensions"; import SvgLabeledButton from "../components/SvgLabeledButton"; import { AuthContext } from "../auth/context"; import { useNetInfo } from "@react-native-community/netinfo"; function SharingDataScreen({ navigation }) { const authContext = useContext(AuthContext); const [showLog, setShowLog] = useState(false); const [showLogPluv, setShowLogPluv] = useState(false); const connection = useNetInfo().isConnected; console.log(connection) const isRegistered = authContext.user?.username != null; const pluviometer = authContext.user?.pluviometer ? true : false; // console.log(authContext.user?.pluviometer); const currentUser = authContext.user; const onConfirmPluv = () => { if (authContext.user?.pluviometer == false) { setShowLogPluv(false); navigation.navigate("Perfil"); } else if (authContext.user?.pluviometer == undefined) { setShowLogPluv(false); } }; return ( onConfirmPluv()} //{setShowLogPluv(false), navigation.navigate("Perfil")}} onDecline={() => setShowLogPluv(false)} /> authContext.setUser(false)} onDecline={() => setShowLog(false)} /> navigation.navigate("FloodSharingData", { user: currentUser }) } active={isRegistered && connection} inactiveOnPress={() => setShowLog(true)} /> navigation.navigate("RainSharingData", { user: currentUser }) } SvgImage={assets.rainLevel.RainIcon} active={isRegistered && connection} inactiveOnPress={() => setShowLog(true)} /> navigation.navigate("PluviometerSharingData", { user: currentUser, }) } SvgImage={assets.PluviometricDataIcon} active={isRegistered && pluviometer && connection} inactiveOnPress={() => { setShowLog(!isRegistered), setShowLogPluv(!pluviometer && isRegistered); }} /> navigation.navigate("RiverFloodData", { user: currentUser }) } SvgImage={assets.riverLevel.RiverIcon} active={isRegistered && connection} inactiveOnPress={() => setShowLog(true)} /> ); } const styles = StyleSheet.create({ text: { fontSize: dimensions.text.default, textAlign: "center", marginTop: 10, }, container: { paddingHorizontal: 10, flex: 1, }, }); export default SharingDataScreen;