aboutsummaryrefslogtreecommitdiff
path: root/src/store/actions/user.ts
blob: da11f40388aa03cea556e454e4463e130c344fc8 (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
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
import AsyncStorage from '@react-native-community/async-storage';
import {Action, ThunkAction} from '@reduxjs/toolkit';
import {StreamChat} from 'stream-chat';
import {
  getProfilePic,
  handlePresignedURL,
  handleVideoUpload,
  loadProfileInfo,
  postMoment,
  postMomentTags,
  removeBadgesService,
  sendSuggestedPeopleLinked,
} from '../../services';
import {
  MomentUploadProgressBarType,
  MomentUploadStatusType,
  UniversityBadge,
  UserType,
} from '../../types/types';
import {getTokenOrLogout} from '../../utils';
import {
  clearHeaderAndProfileImages,
  profileBadgeRemoved,
  profileBadgesUpdated,
  profileCompletionStageUpdated,
  setIsOnboardedUser,
  setMomentUploadProgressBar,
  setNewNotificationReceived,
  setNewVersionAvailable,
  setReplyPosted,
  setSuggestedPeopleImage,
  setSuggestedPeopleLinked,
  socialEdited,
  userDetailsFetched,
  userLoggedIn,
} from '../reducers';
import {RootState} from '../rootReducer';
import {CommentThreadType} from './../../types/types';

/**
 * Entry point to our store.
 * Thunk allows us to make async API calls and hence is responsible to fetch data from server.
 */

/**
 * Lets understand Thunk.
 * https://bloggie.io/@_ChristineOo/understanding-typings-of-redux-thunk-action
 * https://github.com/reduxjs/redux-thunk
 */

export const loadUserData =
  (
    user: UserType,
  ): ThunkAction<Promise<void>, RootState, unknown, Action<string>> =>
  async (dispatch) => {
    try {
      await dispatch({type: userLoggedIn.type, payload: user});
      const token = await getTokenOrLogout(dispatch);
      const [profile, avatar, cover] = await Promise.all([
        loadProfileInfo(token, user.userId),
        getProfilePic(token, user.userId, 'profile'),
        getProfilePic(token, user.userId, 'header'),
      ]);
      dispatch({
        type: userDetailsFetched.type,
        payload: {profile, cover, avatar},
      });
    } catch (error) {
      console.log(error);
    }
  };

export const resetHeaderAndProfileImage =
  (): ThunkAction<Promise<void>, RootState, unknown, Action<string>> =>
  async (dispatch) => {
    await dispatch({
      type: clearHeaderAndProfileImages.type,
      payload: {},
    });
  };

/**
 * To update editable socials
 * @param social social to be updated
 * @param value username of social to be updated
 */
export const updateSocial =
  (
    social: string,
    value: string,
  ): ThunkAction<Promise<void>, RootState, unknown, Action<string>> =>
  async (dispatch) => {
    try {
      dispatch({
        type: socialEdited.type,
        payload: {social, value},
      });
    } catch (error) {
      console.log(error);
    }
  };

/**
 * To update new user badges
 * @param badges current selection of badges
 */
export const updateUserBadges =
  (
    badges: UniversityBadge[],
  ): ThunkAction<Promise<void>, RootState, unknown, Action<string>> =>
  async (dispatch) => {
    try {
      dispatch({
        type: profileBadgesUpdated.type,
        payload: {badges},
      });
    } catch (error) {
      console.log(error);
    }
  };

/**
 * Removes a single badge from logged-in user by badge name.
 * @param badgeName name of badge to be removed
 * @param loggedInUserId userId of loggedInUser
 */
export const removeUserBadge =
  (
    badgeName: string,
    loggedInUserId: string,
  ): ThunkAction<Promise<void>, RootState, unknown, Action<string>> =>
  async (dispatch) => {
    try {
      const success = await removeBadgesService([badgeName], loggedInUserId);
      if (success) {
        dispatch({type: profileBadgeRemoved.type, payload: {badge: badgeName}});
      }
    } catch (error) {
      console.log(error);
    }
  };

export const updateProfileCompletionStage =
  (
    stage: number,
  ): ThunkAction<Promise<void>, RootState, unknown, Action<string>> =>
  async (dispatch) => {
    try {
      dispatch({
        type: profileCompletionStageUpdated.type,
        payload: {stage},
      });
    } catch (error) {
      console.log(error);
    }
  };

export const updateIsOnboardedUser =
  (
    isOnboardedUser: boolean,
  ): ThunkAction<Promise<void>, RootState, unknown, Action<string>> =>
  async (dispatch) => {
    try {
      dispatch({
        type: setIsOnboardedUser.type,
        payload: {isOnboardedUser},
      });
    } catch (error) {
      console.log(error);
    }
  };

export const updateNewVersionAvailable =
  (
    newVersionAvailable: boolean,
  ): ThunkAction<Promise<void>, RootState, unknown, Action<string>> =>
  async (dispatch) => {
    try {
      dispatch({
        type: setNewVersionAvailable.type,
        payload: {newVersionAvailable},
      });
    } catch (error) {
      console.log(error);
    }
  };

export const updateNewNotificationReceived =
  (
    newNotificationReceived: boolean,
  ): ThunkAction<Promise<void>, RootState, unknown, Action<string>> =>
  async (dispatch) => {
    try {
      dispatch({
        type: setNewNotificationReceived.type,
        payload: {newNotificationReceived},
      });
    } catch (error) {
      console.log(error);
    }
  };

export const updateReplyPosted =
  (
    replyPosted: CommentThreadType | undefined,
  ): ThunkAction<Promise<void>, RootState, unknown, Action<string>> =>
  async (dispatch) => {
    try {
      dispatch({
        type: setReplyPosted.type,
        payload: {replyPosted},
      });
    } catch (error) {
      console.log(error);
    }
  };

export const logout =
  (
    client?: StreamChat,
  ): ThunkAction<Promise<void>, RootState, unknown, Action<string>> =>
  async (dispatch) => {
    try {
      // do our best effort here to gracefully disconnect the user
      if (client) {
        client.disconnectUser();
      }
      await AsyncStorage.clear();
      dispatch({type: userLoggedIn.type, payload: {userId: '', username: ''}});
    } catch (error) {
      console.log(error);
    }
  };

export const uploadedSuggestedPeoplePhoto =
  (
    imageUri: string,
  ): ThunkAction<Promise<void>, RootState, unknown, Action<string>> =>
  async (dispatch) => {
    try {
      await dispatch({
        type: setSuggestedPeopleImage.type,
        payload: {suggestedPeopleImage: imageUri},
      });
    } catch (error) {
      console.log(error);
    }
  };

export const suggestedPeopleBadgesFinished =
  (): ThunkAction<Promise<void>, RootState, unknown, Action<string>> =>
  async (dispatch) => {
    try {
      dispatch({
        type: setSuggestedPeopleLinked.type,
        payload: {suggested_people_linked: 1},
      });
    } catch (error) {
      console.log(error);
    }
  };

export const suggestedPeopleAnimatedTutorialFinished =
  (
    userId: string,
  ): ThunkAction<
    Promise<boolean | undefined>,
    RootState,
    unknown,
    Action<string>
  > =>
  async (dispatch) => {
    try {
      // update store first, assume request is successful
      dispatch({
        type: setSuggestedPeopleLinked.type,
        payload: {suggested_people_linked: 2},
      });
      // need to tell the server that the stage is now 2
      return await sendSuggestedPeopleLinked(userId, 2);
    } catch (error) {
      console.log(
        'Error while updating suggested people linked state: ',
        error,
      );
    }
  };

export const handleImageMomentUpload =
  (
    imageUri: string,
    caption: string,
    momentCategory: string,
    formattedTags: {
      x: number;
      y: number;
      z: number;
      user_id: string;
    }[],
  ): ThunkAction<Promise<void>, RootState, unknown, Action<string>> =>
  async (dispatch) => {
    try {
      const handleError = (reason: string) => {
        console.error('Moment image upload failed,', reason);
        dispatch({
          type: setMomentUploadProgressBar.type,
          payload: {
            momentUploadProgressBar: {
              ...momentUploadProgressBar,
              status: MomentUploadStatusType.Error,
            },
          },
        });
      };
      let momentUploadProgressBar: MomentUploadProgressBarType = {
        status: MomentUploadStatusType.UploadingToS3,
        momentId: '',
        originalVideoDuration: 1, // assume upload time for an image is same as a 1s video
        momentInfo: {
          type: 'image',
          uri: imageUri,
          caption,
          category: momentCategory,
          tags: formattedTags,
        },
      };
      // set progress bar as loading
      dispatch({
        type: setMomentUploadProgressBar.type,
        payload: {momentUploadProgressBar},
      });
      // upload image moment
      const momentPostResponse = await postMoment(
        imageUri,
        caption,
        momentCategory,
      );
      if (!momentPostResponse) {
        handleError('Moment post failed');
        return;
      }
      const profileCompletionStage =
        momentPostResponse.profile_completion_stage;
      const momentId = momentPostResponse.moment_id;
      if (!momentId) {
        handleError('Unable to parse moment id from moment post response');
        return;
      }
      // upload moment tags
      const momentTagResponse = await postMomentTags(momentId, formattedTags);
      if (!momentTagResponse) {
        handleError('Moment tag post failed');
        return;
      }
      if (profileCompletionStage) {
        dispatch(updateProfileCompletionStage(profileCompletionStage));
      } else {
        console.error(
          'failed to parse profile complete stage from moment post response',
        );
      }
      // mark progress bar state as done
      dispatch({
        type: setMomentUploadProgressBar.type,
        payload: {
          momentUploadProgressBar: {
            ...momentUploadProgressBar,
            status: MomentUploadStatusType.Done,
          },
        },
      });
    } catch (error) {
      console.log(error);
    }
  };

/**
 *  state is now UploadingToS3:
 *    - get presigned url (backend creates the moment object)
 *    - upload moment tags
 *    - upload video to s3
 *  state is now WaitingForDoneProcessing
 */
export const handleVideoMomentUpload =
  (
    videoUri: string,
    videoLength: number,
    caption: string,
    momentCategory: string,
    formattedTags: {
      x: number;
      y: number;
      z: number;
      user_id: string;
    }[],
  ): ThunkAction<Promise<void>, RootState, unknown, Action<string>> =>
  async (dispatch) => {
    try {
      const handleError = (reason: string) => {
        console.error('Moment video upload failed,', reason);
        dispatch({
          type: setMomentUploadProgressBar.type,
          payload: {
            momentUploadProgressBar: {
              ...momentUploadProgressBar,
              status: MomentUploadStatusType.Error,
            },
          },
        });
      };
      let momentUploadProgressBar: MomentUploadProgressBarType = {
        status: MomentUploadStatusType.UploadingToS3,
        momentId: '',
        originalVideoDuration: videoLength,
        momentInfo: {
          type: 'video',
          uri: videoUri,
          caption,
          category: momentCategory,
          tags: formattedTags,
        },
      };
      // set progress bar as loading
      dispatch({
        type: setMomentUploadProgressBar.type,
        payload: {momentUploadProgressBar},
      });
      // get a presigned url for the video
      const presignedURLResponse = await handlePresignedURL(
        caption,
        momentCategory,
      );
      if (!presignedURLResponse) {
        handleError('Presigned URL failed');
        return;
      }
      const momentId = presignedURLResponse.moment_id;
      const fileHash = presignedURLResponse.response_url.fields.key;
      // upload moment tags, now that we have a moment id
      const momentTagResponse = await postMomentTags(momentId, formattedTags);
      if (!momentTagResponse) {
        handleError('Upload moment tags failed');
        return;
      }
      if (!fileHash) {
        handleError('Unable to parse file hash from presigned response');
        return;
      }
      // upload video to s3
      const videoUploadResponse = await handleVideoUpload(
        videoUri,
        presignedURLResponse,
      );
      if (!videoUploadResponse) {
        handleError('Video upload failed');
        return;
      }
      dispatch({
        type: setMomentUploadProgressBar.type,
        payload: {
          momentUploadProgressBar: {
            ...momentUploadProgressBar,
            status: MomentUploadStatusType.WaitingForDoneProcessing,
            momentId,
          },
        },
      });
    } catch (error) {
      console.log(error);
    }
  };