-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathServiceRequestAPIClient.ts
102 lines (96 loc) · 2.65 KB
/
ServiceRequestAPIClient.ts
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
import baseAPIClient from "./BaseAPIClient";
import AUTHENTICATED_USER_KEY from "../constants/AuthConstants";
import { getLocalStorageObjProperty } from "../utils/LocalStorageUtils";
import { ServiceRequest } from "../types/ServiceRequestTypes";
const get = async (): Promise<ServiceRequest[]> => {
const bearerToken = `Bearer ${getLocalStorageObjProperty(
AUTHENTICATED_USER_KEY,
"accessToken",
)}`;
try {
const { data } = await baseAPIClient.get("/serviceRequests", {
headers: { Authorization: bearerToken },
});
return data;
} catch (error: any) {
return [error];
}
};
const getPlatformSignups = async (): Promise<any[]> => {
const bearerToken = `Bearer ${getLocalStorageObjProperty(
AUTHENTICATED_USER_KEY,
"accessToken",
)}`;
try {
const { data } = await baseAPIClient.get("/platformsignups", {
headers: { Authorization: bearerToken },
});
return data;
} catch (error: any) {
console.error("Error fetching platform signups:", error);
throw error;
}
};
const post = async ({
requestName,
requesterId,
location,
shiftTime,
shiftEndTime,
description,
meal,
cookingMethod,
frequency,
currentEmail,
inviteEmails,
requestType,
}: ServiceRequest): Promise<ServiceRequest | null> => {
const bearerToken = `Bearer ${getLocalStorageObjProperty(
AUTHENTICATED_USER_KEY,
"accessToken",
)}`;
try {
const { data } = await baseAPIClient.post(
"/serviceRequests/post",
{
requestName,
requesterId,
location,
shiftTime,
shiftEndTime,
description,
meal,
cookingMethod,
frequency,
currentEmail,
inviteEmails,
requestType,
},
{ headers: { Authorization: bearerToken } },
);
return data;
} catch (error) {
return null;
}
};
const getUserByEmail = async (email: string): Promise<{ firstName: string; lastName: string } | null> => {
const bearerToken = `Bearer ${getLocalStorageObjProperty(
AUTHENTICATED_USER_KEY,
"accessToken",
)}`;
try {
console.log(`/user-by-email?email=${encodeURIComponent(email)}`)
const { data } = await baseAPIClient.get(`/serviceRequests/user-by-email?email=${encodeURIComponent(String(email))}`, {
headers: { Authorization: bearerToken },
});
return data; // { firstName: string; lastName: string }
} catch (error: any) {
if (error.response?.status === 404) {
console.warn("User not found for email:", email);
return null;
}
// console.error("Error fetching user by email:", error);
throw error;
}
};
export default { get, getPlatformSignups, post, getUserByEmail };