-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.tsx
162 lines (151 loc) · 4.56 KB
/
App.tsx
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
import React from 'react';
import { NavigationContainer } from '@react-navigation/native';
import {
createStackNavigator,
StackNavigationOptions,
} from '@react-navigation/stack';
import { createBottomTabNavigator } from '@react-navigation/bottom-tabs';
import {
SearchScreen,
FavoritesScreen,
AboutScreen,
ComicDetailsScreen,
} from 'views';
import { Colors, Typography } from 'styles';
import { Icon } from 'components';
import { AuthModal } from 'containers';
import { eIcons } from 'models';
import Amplify from 'aws-amplify';
import config from './aws-exports';
Amplify.configure({
...config,
Analytics: {
disabled: true,
},
});
const NavOptions: StackNavigationOptions = {
headerStyle: {
backgroundColor: Colors.calvinRed,
borderBottomWidth: 0,
shadowOffset: { height: 0, width: 0 },
},
headerTintColor: Colors.white,
headerTitleStyle: {
fontSize: Typography.fontSizeXL,
fontWeight: Typography.fontWeightBold,
fontFamily: 'Calvin and Hobbes',
},
};
const HomeStack = createStackNavigator();
const SearchStack = createStackNavigator();
const FavoritesStack = createStackNavigator();
const AboutStack = createStackNavigator();
function HomeStackScreen() {
return (
<HomeStack.Navigator screenOptions={NavOptions}>
<HomeStack.Screen
name="Home"
component={ComicDetailsScreen}
options={{
headerBackTitleStyle: { fontFamily: 'Calvin and Hobbes' },
headerRight: () => <AuthModal />,
title: 'calvin and hobbes',
}}
initialParams={{
stripData: [],
initialIndex: 0,
favoritesArray: [],
jumpToLastRead: true
}}
/>
</HomeStack.Navigator>
);
}
function SearchStackScreen() {
return (
<SearchStack.Navigator screenOptions={NavOptions}>
<SearchStack.Screen
name="Search"
component={SearchScreen}
options={{ headerRight: () => <AuthModal /> }}
/>
<SearchStack.Screen
name="ComicDetails"
component={ComicDetailsScreen}
options={{
headerBackTitleStyle: { fontFamily: 'Calvin and Hobbes' },
headerRight: () => <AuthModal />,
title: 'calvin and hobbes',
}}
/>
</SearchStack.Navigator>
);
}
function FavoritesStackScreen() {
return (
<FavoritesStack.Navigator screenOptions={NavOptions}>
<FavoritesStack.Screen
name="Favorites"
component={FavoritesScreen}
options={{ headerRight: () => <AuthModal /> }}
/>
<FavoritesStack.Screen
name="ComicDetails"
component={ComicDetailsScreen}
options={{
headerBackTitleStyle: { fontFamily: 'Calvin and Hobbes' },
headerRight: () => <AuthModal />,
title: 'calvin and hobbes',
}}
/>
</FavoritesStack.Navigator>
);
}
function AboutStackScreen() {
return (
<AboutStack.Navigator screenOptions={NavOptions}>
<AboutStack.Screen
name="About"
component={AboutScreen}
options={{ headerRight: () => <AuthModal /> }}
/>
</AboutStack.Navigator>
);
}
const Tab = createBottomTabNavigator();
const App = () => {
return (
<NavigationContainer>
<Tab.Navigator
tabBarOptions={{
activeTintColor: Colors.calvinRed,
inactiveTintColor: Colors.textDefault,
labelStyle: { fontSize: Typography.fontSizeXXS },
}}
screenOptions={({ route }) => ({
tabBarIcon: ({ focused, color, size }) => {
let iconName: eIcons = eIcons.home;
if (route.name === 'Home') {
iconName = focused ? eIcons.homeFocused : eIcons.home;
} else if (route.name === 'Search') {
iconName = focused ? eIcons.searchFocused : eIcons.search;
} else if (route.name === 'Favorites') {
iconName = focused ? eIcons.favoritesFocused : eIcons.favorites;
} else if (route.name === 'About') {
iconName = focused ? eIcons.aboutFocused : eIcons.about;
}
// You can return any component that you like here!
return (
<Icon icon={iconName} iconSize={size} color={Colors.calvinRed} />
);
},
})}>
<Tab.Screen name="Home" component={HomeStackScreen} />
<Tab.Screen name="Search" component={SearchStackScreen} />
<Tab.Screen name="Favorites" component={FavoritesStackScreen} />
<Tab.Screen name="About" component={AboutStackScreen} />
</Tab.Navigator>
</NavigationContainer>
);
};
export default App;