-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapi.js
96 lines (73 loc) · 2.11 KB
/
api.js
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
const FIREBASE_DOMAIN = 'https://react-router-26fd2-default-rtdb.firebaseio.com';
export async function getAllQuotes() {
const response = await fetch(`${FIREBASE_DOMAIN}/quotes.json`);
const data = await response.json();
if (!response.ok) {
throw new Error(data.message || 'Could not fetch quotes.');
}
const transformedQuotes = [];
for (const key in data) {
const quoteObj = {
id: key,
...data[key],
};
transformedQuotes.push(quoteObj);
}
return transformedQuotes;
}
export async function getSingleQuote(quoteId) {
const response = await fetch(`${FIREBASE_DOMAIN}/quotes/${quoteId}.json`);
const data = await response.json();
if (!response.ok) {
throw new Error(data.message || 'Could not fetch quote.');
}
const loadedQuote = {
id: quoteId,
...data,
};
return loadedQuote;
}
export async function addQuote(quoteData) {
const response = await fetch(`${FIREBASE_DOMAIN}/quotes.json`, {
method: 'POST',
body: JSON.stringify(quoteData),
headers: {
'Content-Type': 'application/json',
},
});
const data = await response.json();
if (!response.ok) {
throw new Error(data.message || 'Could not create quote.');
}
return null;
}
export async function addComment(requestData) {
const response = await fetch(`${FIREBASE_DOMAIN}/comments/${requestData.quoteId}.json`, {
method: 'POST',
body: JSON.stringify(requestData.commentData),
headers: {
'Content-Type': 'application/json',
},
});
const data = await response.json();
if (!response.ok) {
throw new Error(data.message || 'Could not add comment.');
}
return { commentId: data.name };
}
export async function getAllComments(quoteId) {
const response = await fetch(`${FIREBASE_DOMAIN}/comments/${quoteId}.json`);
const data = await response.json();
if (!response.ok) {
throw new Error(data.message || 'Could not get comments.');
}
const transformedComments = [];
for (const key in data) {
const commentObj = {
id: key,
...data[key],
};
transformedComments.push(commentObj);
}
return transformedComments;
}