aboutsummaryrefslogtreecommitdiff
path: root/src/routes/tabs/NavigationBar.tsx
blob: 67f842e0019bc5e118710ad49083f043afbf9111 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
import {createBottomTabNavigator} from '@react-navigation/bottom-tabs';
import React, {Fragment} from 'react';
import {NavigationIcon} from '../../components';
import Profile from '../profile/Profile';

const Tabs = createBottomTabNavigator();

const NavigationBar: React.FC = () => {
  return (
    <Tabs.Navigator
      screenOptions={({route}) => ({
        tabBarIcon: ({focused}) => {
          switch (route.name) {
            case 'Home':
              return <NavigationIcon tab="Home" disabled={!focused} />;
            case 'Search':
              return <NavigationIcon tab="Search" disabled={!focused} />;
            case 'Upload':
              return <NavigationIcon tab="Upload" disabled={!focused} />;
            case 'Notifications':
              return <NavigationIcon tab="Notifications" disabled={!focused} />;
            case 'Profile':
              return <NavigationIcon tab="Profile" disabled={!focused} />;
            default:
              return <Fragment />;
          }
        },
      })}
      initialRouteName="Profile"
      tabBarOptions={{
        showLabel: false,
        style: {
          backgroundColor: 'transparent',
          position: 'absolute',
          borderTopWidth: 0,
          left: 0,
          right: 0,
          bottom: '1%',
        },
      }}>
      {/* Removed for Alpha for now */}
      {/* <Tabs.Screen name="Home" component={Home} />
      <Tabs.Screen name="Notifications" component={Notifications} />
      <Tabs.Screen name="Upload" component={Upload} /> */}
      <Tabs.Screen
        name="Search"
        component={Profile}
        initialParams={{isProfileView: true}}
      />
      <Tabs.Screen
        name="Profile"
        component={Profile}
        initialParams={{isProfileView: false}}
      />
    </Tabs.Navigator>
  );
};

export default NavigationBar;