forked from cemaden-educacao/WPD-MobileApp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
66 lines
2.2 KiB
66 lines
2.2 KiB
import React, { useState, useEffect} from "react";
|
|
import { NavigationContainer } from "@react-navigation/native";
|
|
|
|
import navigationTheme from "./app/navigation/navigationTheme";
|
|
import "./app/config/globals.js";
|
|
import { AppLoading } from "expo";
|
|
|
|
import FlashMessage from "react-native-flash-message";
|
|
import AppNavigator from "./app/navigation/AppNavigator";
|
|
import EventLocationProvider from "./app/context/EventLocationContext";
|
|
import CurrentLocationProvider from "./app/context/CurrentLocationContext";
|
|
import AuthNavigator from "./app/navigation/AuthNavigator";
|
|
import { AuthContext } from "./app/auth/context";
|
|
import authStorage from "./app/auth/storage";
|
|
import MapDataProvider from "./app/context/MapDataContext";
|
|
import { getLocation } from "./app/hooks/useLocation";
|
|
import { useFiltering } from "./app/hooks/useFiltering";
|
|
import NoInternetConnectionScreen from "./app/screens/NoInternetConnectionScreen";
|
|
import NetInfo, { useNetInfo } from "@react-native-community/netinfo";
|
|
|
|
export default function App() {
|
|
const [user, setUser] = useState();
|
|
const [isReady, setIsReady] = useState();
|
|
|
|
const netInfo = useNetInfo();
|
|
|
|
useEffect(() => {
|
|
user && authStorage.setUser(user)
|
|
}, [user])
|
|
|
|
|
|
const restoreUser = async () => {
|
|
const storageUser = await authStorage.getUser();
|
|
if (storageUser) setUser(storageUser);
|
|
|
|
global.location = { lat: -9.969802, long: -67.816956 }; // await getLocation();
|
|
};
|
|
|
|
if (!isReady && netInfo.isInternetReachable) {
|
|
return (
|
|
<AppLoading startAsync={restoreUser} onFinish={() => setIsReady(true)} />
|
|
);
|
|
} else if (netInfo.isInternetReachable) {
|
|
global.formsSockets = useFiltering(global.location);
|
|
|
|
return (
|
|
<AuthContext.Provider
|
|
value={{
|
|
user,
|
|
setUser,
|
|
}}
|
|
>
|
|
<CurrentLocationProvider>
|
|
<EventLocationProvider>
|
|
<MapDataProvider>
|
|
<NavigationContainer theme={navigationTheme}>
|
|
{user ? <AppNavigator /> : <AuthNavigator />}
|
|
<FlashMessage position="top" />
|
|
</NavigationContainer>
|
|
</MapDataProvider>
|
|
</EventLocationProvider>
|
|
</CurrentLocationProvider>
|
|
</AuthContext.Provider>
|
|
);
|
|
} else return <NoInternetConnectionScreen />;
|
|
}
|