-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathApp.js
223 lines (201 loc) · 6.3 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
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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
/**
* https://github.com/facebook/react-native
*
* @format
* @flow strict-local
*/
import { useAtom } from 'jotai'
import React, { useEffect } from 'react'
// import { StyleSheet, View } from 'react-native'
import 'react-native-get-random-values'
import { useWindowDimensions } from 'react-native'
import { FontAwesome, FontAwesome5, MaterialIcons } from '@expo/vector-icons'
import { NavigationContainer } from '@react-navigation/native'
import { createDrawerNavigator } from '@react-navigation/drawer'
import { ThemeProvider, createTheme } from '@rneui/themed'
import Toast from 'react-native-toast-message'
import { createStackNavigator } from '@react-navigation/stack'
import * as ScreenOrientation from 'expo-screen-orientation'
import * as CONST from './src/consts'
import * as STATE from './src/state'
import PinchableView from './src/components/Photo/PinchableView'
import FeedbackScreen from './src/screens/Feedback'
import ModalInputText from './src/screens/ModalInputText'
import PhotosDetails from './src/screens/PhotosDetails'
import PhotosDetailsShared from './src/screens/PhotosDetailsShared'
import PhotosList from './src/screens/PhotosList'
import IdentityScreen from './src/screens/Secret'
import Chat from './src/screens/Chat'
import FriendsList from './src/screens/FriendsList'
import ConfirmFriendship from './src/screens/FriendsList/ConfirmFriendship'
import 'react-native-gesture-handler'
import * as SecretReducer from './src/screens/Secret/reducer'
// import StackNavigator from './src/nav/stackNavigator.js'
const Drawer = createDrawerNavigator()
const Stack = createStackNavigator()
const App = () => {
const theme = createTheme({})
const { width, height } = useWindowDimensions()
const [uuis, setUuid] = useAtom(STATE.uuid)
const [nickName, setNickName] = useAtom(STATE.nickName)
const init = async () => {
setUuid(await SecretReducer.getUUID())
setNickName(await SecretReducer.getStoredNickName())
ScreenOrientation.lockAsync(ScreenOrientation.OrientationLock.PORTRAIT_UP)
}
useEffect(() => {
init()
}, [])
function MyStack() {
return (
<Stack.Navigator
// headerMode="none"
// initialRouteName="PhotosList"
screenOptions={{ gestureEnabled: true, headerShown: true }}
>
<Stack.Screen
name="PhotosList"
component={PhotosList}
options={{
headerTintColor: CONST.MAIN_COLOR,
headerTitle: '',
headerLeft: '',
headerRight: '',
}}
/>
<Stack.Screen
name="PhotosDetails"
component={PhotosDetails}
options={{
headerTintColor: CONST.MAIN_COLOR,
gestureEnabled: false,
}}
screenOptions={{ headerShown: false }}
/>
<Stack.Screen
name="PinchableView"
component={PinchableView}
options={{
headerTintColor: CONST.MAIN_COLOR,
gestureEnabled: false,
}}
screenOptions={{ headerShown: false }}
/>
<Stack.Screen
name="PhotosDetailsShared"
component={PhotosDetailsShared}
options={{ headerTintColor: CONST.MAIN_COLOR }}
/>
<Stack.Screen
name="ModalInputTextScreen"
component={ModalInputText}
options={{ headerTintColor: CONST.MAIN_COLOR }}
/>
<Stack.Screen
name="Chat"
component={Chat}
options={{ headerTintColor: CONST.MAIN_COLOR }}
/>
<Stack.Screen
name="FriendsList"
component={FriendsList}
options={{ headerTintColor: CONST.MAIN_COLOR }}
/>
<Stack.Screen
name="ConfirmFriendship"
component={ConfirmFriendship}
options={{ headerTintColor: CONST.MAIN_COLOR }}
/>
</Stack.Navigator>
)
}
return (
<ThemeProvider theme={theme}>
<NavigationContainer>
<Drawer.Navigator
screenOptions={{ gestureEnabled: true, headerShown: false }}
>
<Drawer.Screen
name="Home"
// component={MyStack}
options={{
drawerIcon: (config) => (
<FontAwesome
name="chevron-left"
size={30}
style={{
marginLeft: 10,
color: CONST.MAIN_COLOR,
width: 60,
}}
/>
),
drawerLabel: '',
}}
>
{(props) => MyStack()}
</Drawer.Screen>
<Drawer.Screen
name="SecretScreen"
component={IdentityScreen}
options={{
drawerIcon: (config) => (
<FontAwesome
name="user-secret"
size={30}
style={{
marginLeft: 10,
color: CONST.MAIN_COLOR,
width: 60,
}}
/>
),
drawerLabel: 'secret',
headerShown: true,
}}
/>
<Drawer.Screen
name="FriendsList"
component={FriendsList}
options={{
drawerIcon: (config) => (
<FontAwesome5
name="user-friends"
size={30}
style={{
marginLeft: 10,
color: CONST.MAIN_COLOR,
width: 60,
}}
/>
),
drawerLabel: 'friends',
headerShown: true,
}}
/>
<Drawer.Screen
name="Feedback"
component={FeedbackScreen}
options={{
drawerIcon: (config) => (
<MaterialIcons
name="feedback"
size={30}
style={{
marginLeft: 10,
color: CONST.MAIN_COLOR,
width: 60,
}}
/>
),
drawerLabel: 'feedback',
headerShown: true,
}}
/>
</Drawer.Navigator>
</NavigationContainer>
<Toast ref={(ref) => Toast.setRef(ref)} />
</ThemeProvider>
)
}
export default App