aboutsummaryrefslogtreecommitdiff
path: root/src/routes/main/MainStackScreen.tsx
blob: 04f73985d911f497e296e4b8d260db42e1dd86e7 (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
import AsyncStorage from '@react-native-community/async-storage';
import {RouteProp} from '@react-navigation/native';
import {StackNavigationOptions} from '@react-navigation/stack';
import React, {useEffect, useState} from 'react';
import {StyleSheet, Text} from 'react-native';
import {normalize} from 'react-native-elements';
import BackIcon from '../../assets/icons/back-arrow.svg';
import {
  AnimatedTutorial,
  CaptionScreen,
  CategorySelection,
  CreateCustomCategory,
  EditProfile,
  FriendsListScreen,
  IndividualMoment,
  MomentCommentsScreen,
  MomentUploadPromptScreen,
  NotificationsScreen,
  ProfileScreen,
  RequestContactsAccess,
  SearchScreen,
  SocialMediaTaggs,
  SuggestedPeopleScreen,
  SuggestedPeopleUploadPictureScreen,
} from '../../screens';
import {ScreenType} from '../../types';
import {AvatarHeaderHeight, SCREEN_WIDTH} from '../../utils';
import {MainStack, MainStackParams} from './MainStackNavigator';

/**
 * 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 isProfileTab = screenType === ScreenType.Profile;
  const isSearchTab = screenType === ScreenType.Search;
  const isNotificationsTab = screenType === ScreenType.Notifications;
  const isSuggestedPeopleTab = screenType === ScreenType.SuggestedPeople;
  const [respondedToAccessContacts, setRespondedToAccessContacts] = useState(
    'true',
  );

  const loadResponseToAccessContacts = () => {
    AsyncStorage.getItem('respondedToAccessContacts')
      .then((value) => {
        setRespondedToAccessContacts(value ? value : 'false');
      })
      .catch((error) => {
        console.log('Something went wrong', error);
        setRespondedToAccessContacts('true');
      });
  };

  loadResponseToAccessContacts();

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

  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],
        }),
      },
    }),
  };

  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', ''),
        }}
      />
      {isSearchTab &&
        (respondedToAccessContacts && respondedToAccessContacts === 'true' ? (
          <MainStack.Screen
            name="Search"
            component={SearchScreen}
            initialParams={{screenType}}
          />
        ) : (
          <MainStack.Screen
            name="Search"
            component={RequestContactsAccess}
            initialParams={{screenType}}
          />
        ))}
      {isNotificationsTab && (
        <MainStack.Screen
          name="Notifications"
          component={NotificationsScreen}
          initialParams={{screenType}}
        />
      )}
      {isSuggestedPeopleTab && (
        <MainStack.Screen
          name="SuggestedPeople"
          component={SuggestedPeopleScreen}
          initialParams={{screenType}}
        />
      )}
      <MainStack.Screen
        name="AnimatedTutorial"
        component={AnimatedTutorial}
        options={{
          ...tutorialModalStyle,
        }}
        initialParams={{screenType}}
      />
      <MainStack.Screen
        name="CaptionScreen"
        component={CaptionScreen}
        options={{
          ...modalStyle,
          gestureEnabled: false,
        }}
      />
      <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,
        }}
      />
      <MainStack.Screen
        name="MomentCommentsScreen"
        component={MomentCommentsScreen}
        initialParams={{screenType}}
        options={{
          ...headerBarOptions('black', 'Comments'),
        }}
      />
      <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="EditProfile"
        component={EditProfile}
        options={{
          ...headerBarOptions('white', 'Edit Profile'),
        }}
      />
      <MainStack.Screen
        name="UpdateSPPicture"
        component={SuggestedPeopleUploadPictureScreen}
        initialParams={{goTo: 'Profile'}}
        options={{
          ...headerBarOptions('white', ''),
        }}
      />
    </MainStack.Navigator>
  );
};

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}
    />
  ),
  headerTitle: () => (
    <Text style={[styles.headerTitle, {color: color}]}>{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,
  },
  headerTitle: {
    fontSize: normalize(16),
    letterSpacing: normalize(1.3),
    fontWeight: '700',
  },
  whiteHeaderTitle: {
    fontSize: normalize(16),
    letterSpacing: normalize(1.3),
    fontWeight: '700',
    color: 'white',
  },
  blackHeaderTitle: {
    fontSize: normalize(16),
    letterSpacing: normalize(1.3),
    fontWeight: '700',
    color: 'black',
  },
});

export default MainStackScreen;