-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapiFunctions.js
84 lines (74 loc) · 2 KB
/
apiFunctions.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
import axios from "axios";
export function getArticles(pageNumber, topic, author, sort_by, order) {
return axios
.get("https://news-app-backend.onrender.com/api/articles", {
params: {
p: pageNumber - 1,
topic,
author,
sort_by,
order,
},
})
.then(({ data }) => data);
}
export function getArticle(articleid) {
return axios
.get(`https://news-app-backend.onrender.com/api/articles/${articleid}`)
.then(({ data: { article } }) => article);
}
export function getComments(articleid, pageNumber) {
return axios
.get(
`https://news-app-backend.onrender.com/api/articles/${articleid}/comments`,
{
params: { p: pageNumber - 1 },
}
)
.then(({ data: { comments } }) => comments);
}
export function getAuthorAvatar(author) {
return axios
.get(`https://news-app-backend.onrender.com/api/users/${author}`)
.then(({ data: { user } }) => [author, user.avatar_url]);
}
export function updateVoteForArticle(articleid, inc) {
return axios.patch(
`https://news-app-backend.onrender.com/api/articles/${articleid}`,
{ inc_votes: inc }
);
}
export function updateVoteForArticleComment(commentid, inc) {
return axios.patch(
`https://news-app-backend.onrender.com/api/comments/${commentid}`,
{ inc_votes: inc }
);
}
export function getUsers() {
return axios
.get("https://news-app-backend.onrender.com/api/users")
.then(({ data: { users } }) => users);
}
export function postNewCommentForArticle(articleid, comment) {
const newComment = {
author: comment.author,
body: comment.body,
votes: comment.votes,
};
return axios
.post(
`https://news-app-backend.onrender.com/api/articles/${articleid}/comments`,
newComment
)
.then(({ data: { comment } }) => comment);
}
export function getTopicList() {
return axios
.get(`https://news-app-backend.onrender.com/api/topics`)
.then(({ data: { topics } }) => topics);
}
export function deleteCommentWithId(commentid) {
return axios.delete(
`https://news-app-backend.onrender.com/api/comments/${commentid}`
);
}