-
Notifications
You must be signed in to change notification settings - Fork 12
/
App.js
114 lines (99 loc) · 2.76 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
import React, {useEffect} from 'react';
import 'react-native-gesture-handler';
import { NavigationContainer } from '@react-navigation/native';
import { CardStyleInterpolators, createStackNavigator } from '@react-navigation/stack';
import Home from './components/Home';
import Search from './components/Search';
import IncognitoSearch from './components/IncognitoSearch';
import Incognito from './components/Incognito';
import Bookmarks from './components/Bookmarks';
import History from './components/History';
import Help from './components/Help';
import Settings from './components/Settings';
const Stack = createStackNavigator();
import { createStore } from 'redux';
import { Provider, useSelector } from 'react-redux';
const initialState = {
appInfo: {
searchEngine: "Google",
animations: true,
animationDirection: true,
disableCookies: false,
disableJS: false
}
}
const reducer = (state = initialState, action) => {
switch(action.type) {
case "CHANGE_APPINFO":
return {appInfo: action.value}
}
return state
}
const store = createStore(reducer);
const NavigationContainerComponent = () => {
const Stack = createStackNavigator();
const appInfo = useSelector((state) => state.appInfo);
return (
<NavigationContainer>
<Stack.Navigator
screenOptions={ appInfo.animationDirection ? {
} : {
cardStyleInterpolator: CardStyleInterpolators.forHorizontalIOS
}}
initialRouteName={Home}>
<Stack.Screen
name="Home"
component={Home}
options={{ headerShown: false }}
/>
<Stack.Screen
name="Search"
component={Search}
options={{ headerShown: false }}
/>
<Stack.Screen
name="IncognitoSearch"
component={IncognitoSearch}
options={{ headerShown: false }}
/>
<Stack.Screen
name="Incognito"
component={Incognito}
options={{
headerShown: false,
animations: {
}
}}
/>
<Stack.Screen
name="Bookmarks"
component={Bookmarks}
options={{ headerShown: false }}
/>
<Stack.Screen
name="History"
component={History}
options={{ headerShown: false }}
/>
<Stack.Screen
name="Help"
component={Help}
options={{ headerShown: false }}
/>
<Stack.Screen
name="Settings"
component={Settings}
options={{ headerShown: false }}
/>
</Stack.Navigator>
</NavigationContainer>
);
}
const App = () => {
return (
<Provider store={store}>
<NavigationContainerComponent/>
</Provider>
);
}
export default App;