Integrasi API: Admin forum
Add:
app/(application)/admin/forum/[id]/list-comment.tsx
components/_Icon/IconOpenTo.tsx
service/api-admin/api-admin-forum.ts
Fix:
app/(application)/admin/collaboration/index.tsx
app/(application)/admin/forum/[id]/index.tsx
app/(application)/admin/forum/[id]/list-report-comment.tsx
app/(application)/admin/forum/index.tsx
app/(application)/admin/forum/posting.tsx
### Issue: Report komentar masih belum berfungsi
This commit is contained in:
43
service/api-admin/api-admin-forum.ts
Normal file
43
service/api-admin/api-admin-forum.ts
Normal file
@@ -0,0 +1,43 @@
|
||||
import { apiConfig } from "../api-config";
|
||||
|
||||
export async function apiAdminForum({
|
||||
category,
|
||||
search,
|
||||
}: {
|
||||
category: "dashboard" | "posting" | "report_posting" | "report_comment";
|
||||
search?: string;
|
||||
}) {
|
||||
try {
|
||||
const response = await apiConfig.get(
|
||||
`/mobile/admin/forum?category=${category}&search=${search}`
|
||||
);
|
||||
return response.data;
|
||||
} catch (error) {
|
||||
throw error;
|
||||
}
|
||||
}
|
||||
|
||||
export async function apiAdminForumPostingById({ id }: { id: string }) {
|
||||
try {
|
||||
const response = await apiConfig.get(`/mobile/admin/forum/${id}`);
|
||||
return response.data;
|
||||
} catch (error) {
|
||||
throw error;
|
||||
}
|
||||
}
|
||||
export async function apiAdminForumCommentById({
|
||||
id,
|
||||
category,
|
||||
}: {
|
||||
id: string;
|
||||
category: "get-all" | "get-one";
|
||||
}) {
|
||||
try {
|
||||
const response = await apiConfig.get(
|
||||
`/mobile/admin/forum/${id}/comment?category=${category}`
|
||||
);
|
||||
return response.data;
|
||||
} catch (error) {
|
||||
throw error;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user