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
|
import {Action, ThunkAction} from '@reduxjs/toolkit';
import {
acceptFriendRequestService,
addFriendService,
deleteFriendshipService,
friendOrUnfriendUser,
loadFriends,
} from '../../services';
import {
FriendshipStatusType,
ProfilePreviewType,
ScreenType,
UserType,
} from '../../types/types';
import {getTokenOrLogout, userXInStore} from '../../utils';
import {
updateFriends,
userFriendsFetched,
userXFriendshipEdited,
} from '../reducers';
import {RootState} from '../rootReducer';
export const loadFriendsData =
(
userId: string,
): ThunkAction<Promise<void>, RootState, unknown, Action<string>> =>
async (dispatch) => {
try {
const token = await getTokenOrLogout(dispatch);
const friends = await loadFriends(userId, token);
dispatch({
type: userFriendsFetched.type,
payload: {friends},
});
} catch (error) {
console.log(error);
}
};
export const friendUnfriendUser =
(
user: UserType, //logged in user
friend: ProfilePreviewType, // userX's profile preview
friendship_status: FriendshipStatusType, // friendshp status with userx
screenType: ScreenType, //screentype from content
): ThunkAction<Promise<void>, RootState, unknown, Action<string>> =>
async (dispatch) => {
try {
const token = await getTokenOrLogout(dispatch);
// Calls method to send post or delete request
const success = await friendOrUnfriendUser(
friend.id,
token,
friendship_status,
);
if (success) {
let data = 'no_record';
switch (friendship_status) {
case 'no_record': // send request: update to requested
data = 'requested';
break;
case 'requested': // cancel request: update to no relationship
break;
case 'friends': // unfriend: update to no relationship
dispatch({
type: updateFriends.type,
payload: {
data: friend,
isFriend: true,
},
});
data = 'no_record';
break;
}
dispatch({
type: userXFriendshipEdited.type,
payload: {
userId: friend.id,
screenType,
data,
},
});
}
} catch (error) {
console.log(error);
}
};
export const addFriend =
(
friend: ProfilePreviewType, // userX's profile preview
screenType: ScreenType, //screentype from content
state: RootState,
): ThunkAction<
Promise<boolean | undefined>,
RootState,
unknown,
Action<string>
> =>
async (dispatch) => {
try {
const token = await getTokenOrLogout(dispatch);
const success = await addFriendService(friend.id, token);
if (success) {
if (userXInStore(state, screenType, friend.id)) {
dispatch({
type: userXFriendshipEdited.type,
payload: {
userId: friend.id,
screen: screenType,
data: 'requested',
},
});
}
return true;
}
} catch (error) {
console.log(error);
}
};
export const unfriendUser =
(
friend: ProfilePreviewType, // userX's profile preview
screenType: ScreenType, //screentype from content
): ThunkAction<Promise<void>, RootState, unknown, Action<string>> =>
async (dispatch) => {
try {
const token = await getTokenOrLogout(dispatch);
// Calls method to send post or delete request
const reason = 'unfriended';
const success = await deleteFriendshipService(friend.id, reason, token);
if (success) {
let data = 'no_record';
await dispatch({
type: updateFriends.type,
payload: {
data: friend,
isFriend: true,
},
});
await dispatch({
type: userXFriendshipEdited.type,
payload: {
userId: friend.id,
screenType,
data,
},
});
}
} catch (error) {
console.log(error);
}
};
export const acceptFriendRequest =
(
requester: ProfilePreviewType,
): ThunkAction<Promise<void>, RootState, unknown, Action<string>> =>
async (dispatch) => {
try {
const token = await getTokenOrLogout(dispatch);
const success = await acceptFriendRequestService(requester.id, token);
if (success) {
dispatch({
type: updateFriends.type,
payload: {
data: requester,
isFriend: false,
},
});
}
} catch (error) {
console.log(error);
}
};
export const declineFriendRequest =
(
user_id: string,
): ThunkAction<Promise<void>, RootState, unknown, Action<string>> =>
async (dispatch) => {
try {
const token = await getTokenOrLogout(dispatch);
const reason = 'declined';
const success = await deleteFriendshipService(user_id, reason, token);
if (success) {
// Get profile of requester
console.log('declined request: ', success);
} else {
console.log('Unsuccessful call');
}
} catch (error) {
console.log(error);
}
};
export const cancelFriendRequest =
(
user_id: string,
): ThunkAction<Promise<void>, RootState, unknown, Action<string>> =>
async (dispatch) => {
try {
console.log('cancelFriendRequest!');
const token = await getTokenOrLogout(dispatch);
const reason = 'cancelled';
const success = await deleteFriendshipService(user_id, reason, token);
if (success) {
// Get profile of requester
console.log('cancelled request: ', success);
} else {
console.log('Unsuccessful call');
}
} catch (error) {
console.log(error);
}
};
|