-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.js
123 lines (108 loc) · 2.86 KB
/
App.js
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
import React, { PureComponent } from 'react';
import {
createAppContainer,
createBottomTabNavigator,
createStackNavigator,
} from 'react-navigation';
import { PersistGate } from 'redux-persist/integration/react'
import { Provider } from 'react-redux';
import TabBarIcon from './components/TabBarIcon';
import NewsList from './screens/NewsList';
import CheckoutScreen from './screens/CheckoutScreen';
import NewsDetails from './screens/NewsDetails';
import ProductList from './screens/ProductList';
import ProductDetails from './screens/ProductDetails';
import ShoppingCart from './screens/ShoppingCart';
import { configureStore } from './redux';
const NewsStack = createStackNavigator({
NewsList: {
screen: NewsList,
navigationOptions: {
header: null,
},
},
NewsDetails: NewsDetails,
});
NewsStack.navigationOptions = ({ navigation }) => {
if (navigation.state.index != 0) return { tabBarVisible: false }
return {};
}
const ProductStack = createStackNavigator({
ProductList: {
screen: ProductList,
navigationOptions: {
header: null,
},
},
ProductDetails: ProductDetails,
});
ProductStack.navigationOptions = ({ navigation }) => {
if (navigation.state.index != 0) return { tabBarVisible: false }
return {};
}
const ShoppingCartStack = createStackNavigator({
ShoppingCart: {
screen: ShoppingCart,
navigationOptions: {
header: null,
},
ProductDetails: ProductDetails,
},
CheckoutScreen: {
screen: CheckoutScreen,
navigationOptions: {
title: 'Izradba Narudžbe',
}
}
})
ShoppingCartStack.navigationOptions = ({ navigation }) => {
if (navigation.state.index != 0) return { tabBarVisible: false }
return {};
}
const AppNavigator = createBottomTabNavigator(
{
//News: NewsStack, // will be reintroduced once FB Graph API is configured
Products: ProductStack,
ShoppingCart: ShoppingCartStack,
},
{
defaultNavigationOptions: ({ navigation }) => ({
tabBarIcon: ({tintColor}) => {
const { routeName } = navigation.state;
return (
<TabBarIcon
tintColor={tintColor}
iconName={routeName}
/>
)
},
}),
initialRouteName: 'Products',
tabBarOptions: {
activeTintColor: '#EFEFEF',
inactiveTintColor: '#080706',
activeBackgroundColor: '#080706',
inactiveBackgroundColor: '#EFEFEF',
showLabel: false,
tabStyle: {
justifyContent: 'center',
},
labelStyle: {
fontSize: 22,
}
},
}
);
const AppContainer = createAppContainer(AppNavigator);
const { persistor, store } = configureStore();
export default class App extends React.PureComponent {
render() {
return (
<Provider store={store}>
<PersistGate loading={null} persistor={persistor}>
<AppContainer />
</PersistGate>
</Provider>
)
}
}