aboutsummaryrefslogtreecommitdiff
path: root/src/routes/main/MainStackScreen.tsx
blob: 15300c0d97757931df5774a723d2c632f63c8b9c (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
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
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
import {RouteProp} from '@react-navigation/native';
import {StackNavigationOptions} from '@react-navigation/stack';
import React from 'react';
import {StyleSheet, Text} from 'react-native';
import {normalize} from 'react-native-elements';
import BackIcon from '../../assets/icons/back-arrow.svg';
import {
  AccountType,
  AnimatedTutorial,
  BadgeSelection,
  CaptionScreen,
  CategorySelection,
  ChatListScreen,
  ChatScreen,
  CommentReactionScreen,
  CreateCustomCategory,
  DiscoverUsers,
  EditProfile,
  FriendsListScreen,
  IndividualMoment,
  InviteFriendsScreen,
  MomentCommentsScreen,
  MomentUploadPromptScreen,
  NewChatModal,
  NotificationsScreen,
  PrivacyScreen,
  ProfileScreen,
  RequestContactsAccess,
  SettingsScreen,
  SocialMediaTaggs,
  SuggestedPeopleScreen,
  SuggestedPeopleUploadPictureScreen,
  SuggestedPeopleWelcomeScreen,
  TagSelectionScreen,
  TagFriendsScreen,
  CameraScreen,
} from '../../screens';
import MutualBadgeHolders from '../../screens/suggestedPeople/MutualBadgeHolders';
import {ScreenType} from '../../types';
import {AvatarHeaderHeight, ChatHeaderHeight, SCREEN_WIDTH} from '../../utils';
import {MainStack, MainStackParams} from './MainStackNavigator';
import {ZoomInCropper} from '../../components/comments/ZoomInCropper';
import ChoosingCategoryScreen from '../../screens/profile/ChoosingCategoryScreen';

/**
 * Profile : To display the logged in user's profile when the userXId passed in to it is (undefined | null | empty string) else displays profile of the user being visited.
 * Search : To display the search screen. Search for a user on this screen, click on a result tile and navigate to the same.
 * When you click on the search icon after looking at a user's profile, the stack gets reset and you come back to the top of the stack (First screen : Search in this case)
 * SocialMediaTaggs : To display user data for any social media account set up by the user.
 * IndividualMoment : To display individual images uploaded by the user (Navigate to comments from this screen, click on a commenter's profile pic / username, look at a user's profile. Click on the profile icon again to come back to your own profile).
 * MomentCommentsScreen : Displays comments posted by users on an image uploaded by the user.
 * EditProfile : To edit logged in user's information.
 */

type MainStackRouteProps = RouteProp<MainStackParams, 'Profile'>;

interface MainStackProps {
  route: MainStackRouteProps;
}
const MainStackScreen: React.FC<MainStackProps> = ({route}) => {
  const {screenType} = route.params;

  const isNotificationsTab = screenType === ScreenType.Notifications;
  const isSuggestedPeopleTab = screenType === ScreenType.SuggestedPeople;
  const isUploadTab = screenType === ScreenType.Upload;

  const initialRouteName = (() => {
    switch (screenType) {
      case ScreenType.Profile:
        return 'Profile';
      case ScreenType.Notifications:
        return 'Notifications';
      case ScreenType.SuggestedPeople:
        return 'SuggestedPeople';
      case ScreenType.Chat:
        return 'ChatList';
      case ScreenType.Upload:
        return 'Upload';
    }
  })();

  const tutorialModalStyle: StackNavigationOptions = {
    cardStyle: {backgroundColor: 'rgba(0, 0, 0, 0.5)'},
    gestureDirection: 'vertical',
    cardOverlayEnabled: true,
    cardStyleInterpolator: ({current: {progress}}) => ({
      cardStyle: {
        opacity: progress.interpolate({
          inputRange: [0, 0.5, 0.9, 1],
          outputRange: [0, 0.25, 0.7, 1],
        }),
      },
    }),
  };

  const newChatModalStyle: StackNavigationOptions = {
    cardStyle: {backgroundColor: 'rgba(0, 0, 0, 0.5)'},
    cardOverlayEnabled: true,
    animationEnabled: false,
  };

  const mainStackScreen = () => {
    return (
      <MainStack.Navigator
        screenOptions={{
          headerShown: false,
          gestureResponseDistance: {horizontal: SCREEN_WIDTH * 0.6},
        }}
        mode="card"
        initialRouteName={initialRouteName}>
        <MainStack.Screen
          name="Profile"
          component={ProfileScreen}
          initialParams={{screenType}}
          options={{
            ...headerBarOptions('white', ''),
          }}
        />
        {isSuggestedPeopleTab && (
          <MainStack.Screen
            name="SuggestedPeople"
            component={SuggestedPeopleScreen}
            initialParams={{screenType}}
          />
        )}
        {isNotificationsTab && (
          <MainStack.Screen
            name="Notifications"
            component={NotificationsScreen}
            initialParams={{screenType}}
          />
        )}
        {isUploadTab && (
          <MainStack.Screen
            name="Upload"
            component={CameraScreen}
            initialParams={{screenType}}
          />
        )}
        <MainStack.Screen
          name="DiscoverUsers"
          component={DiscoverUsers}
          options={{
            ...headerBarOptions('white', 'Discover Users'),
          }}
        />
        <MainStack.Screen
          name="SettingsScreen"
          component={SettingsScreen}
          options={{
            ...headerBarOptions('white', 'Settings and Privacy'),
          }}
        />
        <MainStack.Screen
          name="PrivacyScreen"
          component={PrivacyScreen}
          options={{
            ...headerBarOptions('white', 'Privacy'),
          }}
        />
        <MainStack.Screen
          name="AccountTypeScreen"
          component={AccountType}
          options={{
            ...headerBarOptions('white', 'Account Type'),
          }}
        />
        <MainStack.Screen
          name="AnimatedTutorial"
          component={AnimatedTutorial}
          options={{
            ...tutorialModalStyle,
          }}
          initialParams={{screenType}}
        />
        <MainStack.Screen
          name="CaptionScreen"
          component={CaptionScreen}
          options={{
            ...modalStyle,
            gestureEnabled: false,
          }}
        />
        <MainStack.Screen
          name="ChoosingCategoryScreen"
          component={ChoosingCategoryScreen}
          options={{
            ...headerBarOptions('white', 'Categories'),
          }}
        />
        <MainStack.Screen
          name="SocialMediaTaggs"
          component={SocialMediaTaggs}
          initialParams={{screenType}}
          options={{
            ...headerBarOptions('white', ''),
            headerStyle: {height: AvatarHeaderHeight},
          }}
        />
        <MainStack.Screen
          name="CategorySelection"
          component={CategorySelection}
          options={{
            ...headerBarOptions('white', ''),
          }}
        />
        <MainStack.Screen
          name="CreateCustomCategory"
          component={CreateCustomCategory}
          options={{
            ...headerBarOptions('white', ''),
          }}
        />
        <MainStack.Screen
          name="IndividualMoment"
          component={IndividualMoment}
          initialParams={{screenType}}
          options={{
            ...modalStyle,
            gestureEnabled: false,
            ...headerBarOptions('white', ''),
          }}
        />
        <MainStack.Screen
          name="MomentCommentsScreen"
          component={MomentCommentsScreen}
          initialParams={{screenType}}
          options={{
            ...headerBarOptions('black', 'Comments'),
          }}
        />
        <MainStack.Screen
          name="CommentReactionScreen"
          component={CommentReactionScreen}
          options={{
            ...headerBarOptions('black', 'Likes'),
          }}
        />
        <MainStack.Screen
          name="MomentUploadPrompt"
          component={MomentUploadPromptScreen}
          initialParams={{screenType}}
          options={{
            ...modalStyle,
          }}
        />
        <MainStack.Screen
          name="FriendsListScreen"
          component={FriendsListScreen}
          initialParams={{screenType}}
          options={{
            ...headerBarOptions('black', 'Friends'),
          }}
        />
        <MainStack.Screen
          name="InviteFriendsScreen"
          component={InviteFriendsScreen}
          options={{
            ...headerBarOptions('black', 'Invites'),
          }}
        />
        <MainStack.Screen
          name="RequestContactsAccess"
          component={RequestContactsAccess}
          initialParams={{screenType}}
          options={{
            ...modalStyle,
            gestureEnabled: false,
          }}
        />
        <MainStack.Screen
          name="EditProfile"
          component={EditProfile}
          options={{
            ...headerBarOptions('white', 'Edit Profile'),
          }}
        />
        <MainStack.Screen
          name="UpdateSPPicture"
          component={SuggestedPeopleUploadPictureScreen}
          initialParams={{editing: true}}
          options={{
            ...headerBarOptions('white', ''),
          }}
        />
        <MainStack.Screen
          name="BadgeSelection"
          component={BadgeSelection}
          initialParams={{editing: true}}
          options={{
            ...headerBarOptions('white', ''),
          }}
        />
        <MainStack.Screen
          name="MutualBadgeHolders"
          component={MutualBadgeHolders}
          options={{...modalStyle}}
        />
        <MainStack.Screen
          name="SPWelcomeScreen"
          component={SuggestedPeopleWelcomeScreen}
          options={{
            ...headerBarOptions('white', ''),
          }}
        />
        <MainStack.Screen
          name="ChatList"
          component={ChatListScreen}
          options={{headerTitle: 'Chats'}}
        />
        <MainStack.Screen
          name="Chat"
          component={ChatScreen}
          options={{
            ...headerBarOptions('black', ''),
            headerStyle: {height: ChatHeaderHeight},
          }}
        />
        <MainStack.Screen
          name="NewChatModal"
          component={NewChatModal}
          options={{headerShown: false, ...newChatModalStyle}}
        />
        <MainStack.Screen
          name="TagSelectionScreen"
          component={TagSelectionScreen}
          options={{
            ...headerBarOptions('black', ''),
          }}
        />
        <MainStack.Screen
          name="TagFriendsScreen"
          component={TagFriendsScreen}
          options={{
            gestureEnabled: false,
          }}
        />
        <MainStack.Screen
          name="ZoomInCropper"
          component={ZoomInCropper}
          options={{
            ...modalStyle,
            gestureEnabled: false,
          }}
        />
        <MainStack.Screen
          name="CameraScreen"
          component={CameraScreen}
          options={{
            ...modalStyle,
            gestureEnabled: false,
          }}
        />
      </MainStack.Navigator>
    );
  };

  return mainStackScreen();
};

export const headerBarOptions: (
  color: 'white' | 'black',
  title: string,
) => StackNavigationOptions = (color, title) => ({
  headerShown: true,
  headerTransparent: true,
  headerBackTitleVisible: false,
  headerBackImage: () => (
    <BackIcon
      height={normalize(18)}
      width={normalize(18)}
      color={color}
      style={[
        styles.backButton,
        color === 'white' ? styles.backButtonShadow : {},
      ]}
    />
  ),
  headerTitle: () => (
    <Text
      style={[
        styles.headerTitle,
        {color: color},
        {fontSize: title.length > 18 ? normalize(14) : normalize(16)},
      ]}>
      {title}
    </Text>
  ),
});

export const modalStyle: StackNavigationOptions = {
  cardStyle: {backgroundColor: 'rgba(80,80,80,0.6)'},
  gestureDirection: 'vertical',
  cardOverlayEnabled: true,
  cardStyleInterpolator: ({current: {progress}}) => ({
    cardStyle: {
      opacity: progress.interpolate({
        inputRange: [0, 0.5, 0.9, 1],
        outputRange: [0, 0.25, 0.7, 1],
      }),
    },
  }),
};

const styles = StyleSheet.create({
  backButton: {
    marginLeft: 30,
  },
  backButtonShadow: {
    shadowColor: 'black',
    shadowRadius: 3,
    shadowOpacity: 0.7,
    shadowOffset: {width: 0, height: 0},
  },
  headerTitle: {
    letterSpacing: normalize(1.3),
    fontWeight: '700',
  },
});

export default MainStackScreen;