forked from microsoft/github-copilot-vibe-coding-workshop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapi.js
More file actions
117 lines (97 loc) · 2.56 KB
/
Copy pathapi.js
File metadata and controls
117 lines (97 loc) · 2.56 KB
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
import { API_BASE_URL } from '../config/api';
class ApiService {
constructor() {
this.baseURL = API_BASE_URL;
this.isAvailable = true;
}
async request(endpoint, options = {}) {
try {
const response = await fetch(`${this.baseURL}${endpoint}`, {
...options,
headers: {
'Content-Type': 'application/json',
...options.headers,
},
});
this.isAvailable = true;
if (!response.ok) {
const error = await response.json();
throw new Error(error.message || 'Request failed');
}
if (response.status === 204) {
return null;
}
return await response.json();
} catch (error) {
if (error.name === 'TypeError' || error.message.includes('fetch')) {
this.isAvailable = false;
}
throw error;
}
}
// Posts endpoints
async getPosts() {
return this.request('/api/posts');
}
async createPost(data) {
return this.request('/api/posts', {
method: 'POST',
body: JSON.stringify(data),
});
}
async getPostById(postId) {
return this.request(`/api/posts/${postId}`);
}
async updatePost(postId, data) {
return this.request(`/api/posts/${postId}`, {
method: 'PATCH',
body: JSON.stringify(data),
});
}
async deletePost(postId) {
return this.request(`/api/posts/${postId}`, {
method: 'DELETE',
});
}
// Comments endpoints
async getCommentsByPostId(postId) {
return this.request(`/api/posts/${postId}/comments`);
}
async createComment(postId, data) {
return this.request(`/api/posts/${postId}/comments`, {
method: 'POST',
body: JSON.stringify(data),
});
}
async getCommentById(postId, commentId) {
return this.request(`/api/posts/${postId}/comments/${commentId}`);
}
async updateComment(postId, commentId, data) {
return this.request(`/api/posts/${postId}/comments/${commentId}`, {
method: 'PATCH',
body: JSON.stringify(data),
});
}
async deleteComment(postId, commentId) {
return this.request(`/api/posts/${postId}/comments/${commentId}`, {
method: 'DELETE',
});
}
// Likes endpoints
async likePost(postId, data) {
return this.request(`/api/posts/${postId}/likes`, {
method: 'POST',
body: JSON.stringify(data),
});
}
async unlikePost(postId, data) {
return this.request(`/api/posts/${postId}/likes`, {
method: 'DELETE',
body: JSON.stringify(data),
});
}
getAvailability() {
return this.isAvailable;
}
}
export const apiService = new ApiService();