104 lines
3.3 KiB
TypeScript
104 lines
3.3 KiB
TypeScript
/**
|
|
* If you are not familiar with React Navigation, refer to the "Fundamentals" guide:
|
|
* https://reactnavigation.org/docs/getting-started
|
|
*
|
|
*/
|
|
import { FontAwesome } from '@expo/vector-icons';
|
|
import { createBottomTabNavigator } from '@react-navigation/bottom-tabs';
|
|
import { NavigationContainer, DefaultTheme, DarkTheme } from '@react-navigation/native';
|
|
import { createNativeStackNavigator } from '@react-navigation/native-stack';
|
|
import * as React from 'react';
|
|
import { ColorSchemeName, Pressable } from 'react-native';
|
|
|
|
import Colors from '../constants/Colors';
|
|
import useColorScheme from '../hooks/useColorScheme';
|
|
import NotFoundScreen from '../screens/NotFoundScreen';
|
|
import TabOneScreen from '../screens/TabOneScreen';
|
|
import TabTwoScreen from '../screens/TabTwoScreen';
|
|
import { RootStackParamList, RootTabParamList, RootTabScreenProps } from '../types';
|
|
import LinkingConfiguration from './LinkingConfiguration';
|
|
import {useState} from "react";
|
|
import AuthScreen from "../screens/AuthScreen";
|
|
|
|
export default function Navigation({ colorScheme }: { colorScheme: ColorSchemeName }) {
|
|
return (
|
|
<NavigationContainer
|
|
linking={LinkingConfiguration}
|
|
theme={colorScheme === 'dark' ? DarkTheme : DefaultTheme}>
|
|
<RootNavigator />
|
|
</NavigationContainer>
|
|
);
|
|
}
|
|
|
|
/**
|
|
* A root stack navigator is often used for displaying modals on top of all other content.
|
|
* https://reactnavigation.org/docs/modal
|
|
*/
|
|
const Stack = createNativeStackNavigator<RootStackParamList>();
|
|
|
|
function RootNavigator() {
|
|
const [authentication, setAuthentication] = useState();
|
|
const updateAuthentication = (authentication: any) => {
|
|
setAuthentication(authentication);
|
|
}
|
|
|
|
return (
|
|
|
|
<Stack.Navigator>
|
|
{ authentication == null ? (
|
|
<Stack.Screen name="Login" component={AuthScreen} authCallback={setAuthentication} options={{ headerShown: false }} />
|
|
|
|
) : (
|
|
<Stack.Navigator>
|
|
<Stack.Screen name="Root" component={BottomTabNavigator} options={{ headerShown: false }} />
|
|
</Stack.Navigator>
|
|
)}
|
|
</Stack.Navigator>
|
|
);
|
|
}
|
|
|
|
/**
|
|
* A bottom tab navigator displays tab buttons on the bottom of the display to switch screens.
|
|
* https://reactnavigation.org/docs/bottom-tab-navigator
|
|
*/
|
|
const BottomTab = createBottomTabNavigator<RootTabParamList>();
|
|
|
|
function BottomTabNavigator() {
|
|
const colorScheme = useColorScheme();
|
|
|
|
return (
|
|
<BottomTab.Navigator
|
|
initialRouteName="TabOne"
|
|
screenOptions={{
|
|
tabBarActiveTintColor: Colors[colorScheme].tint,
|
|
}}>
|
|
<BottomTab.Screen
|
|
name="TabOne"
|
|
component={TabOneScreen}
|
|
options={({ navigation }: RootTabScreenProps<'TabOne'>) => ({
|
|
title: 'Tab One',
|
|
tabBarIcon: ({ color }) => <TabBarIcon name="code" color={color} />,
|
|
})}
|
|
/>
|
|
<BottomTab.Screen
|
|
name="TabTwo"
|
|
component={TabTwoScreen}
|
|
options={{
|
|
title: 'Tab Two',
|
|
tabBarIcon: ({ color }) => <TabBarIcon name="code" color={color} />,
|
|
}}
|
|
/>
|
|
</BottomTab.Navigator>
|
|
);
|
|
}
|
|
|
|
/**
|
|
* You can explore the built-in icon families and icons on the web at https://icons.expo.fyi/
|
|
*/
|
|
function TabBarIcon(props: {
|
|
name: React.ComponentProps<typeof FontAwesome>['name'];
|
|
color: string;
|
|
}) {
|
|
return <FontAwesome size={30} style={{ marginBottom: -3 }} {...props} />;
|
|
}
|