Deskripsi: - mengaplikasikan sistem arsip pada diskusi umum - mengaplikasikan filter pada diskusi umum dg role supadmin - mengaplikasikan hanya view pada role user dan co admin jika tidak termasuk anggota - mengaplikasikan fitur mengaktifkan diskusi divisi pada arsip diskusi No Issues
76 lines
2.3 KiB
TypeScript
76 lines
2.3 KiB
TypeScript
import { ICreateComent, IEditDiscussion, IFormDiscussion, IStatusDiscussion } from "./type_discussion";
|
|
|
|
export const funGetAllDiscussion = async (path?: string) => {
|
|
const response = await fetch(`/api/discussion${(path) ? path : ''}`, { next: { tags: ['discussion'] } });
|
|
return await response.json().catch(() => null);
|
|
}
|
|
|
|
export const funCreateDiscussion = async (data: IFormDiscussion) => {
|
|
if (data.desc == "")
|
|
return { success: false, message: 'Diskusi tidak boleh kosong' }
|
|
|
|
const response = await fetch("/api/discussion", {
|
|
method: "POST",
|
|
headers: {
|
|
"Content-Type": "application/json",
|
|
},
|
|
body: JSON.stringify(data),
|
|
});
|
|
return await response.json().catch(() => null);
|
|
}
|
|
|
|
|
|
export const funGetDiscussionById = async (path: string) => {
|
|
const response = await fetch(`/api/discussion/${path}`);
|
|
return await response.json().catch(() => null);
|
|
}
|
|
|
|
export const funEditStatusDiscussion = async (path: string, data: IStatusDiscussion) => {
|
|
const response = await fetch(`/api/discussion/${path}`, {
|
|
method: "DELETE",
|
|
headers: {
|
|
"Content-Type": "application/json",
|
|
},
|
|
body: JSON.stringify(data),
|
|
});
|
|
return await response.json().catch(() => null);
|
|
}
|
|
|
|
export const funDeleteDiscussion = async (path: string, data: { active: boolean }) => {
|
|
const response = await fetch(`/api/discussion/${path}`, {
|
|
method: "PUT",
|
|
headers: {
|
|
"Content-Type": "application/json",
|
|
},
|
|
body: JSON.stringify(data),
|
|
});
|
|
return await response.json().catch(() => null);
|
|
}
|
|
|
|
export const funEditDiscussion = async (path: string, data: IEditDiscussion) => {
|
|
if (data.desc == "")
|
|
return { success: false, message: 'Diskusi tidak boleh kosong' }
|
|
|
|
const response = await fetch(`/api/discussion/${path}`, {
|
|
method: "POST",
|
|
headers: {
|
|
"Content-Type": "application/json",
|
|
},
|
|
body: JSON.stringify(data),
|
|
});
|
|
return await response.json().catch(() => null);
|
|
}
|
|
|
|
export const funCreateComent = async (path: string, data: ICreateComent) => {
|
|
|
|
const response = await fetch(`/api/discussion/${path}/comment`, {
|
|
method: "POST",
|
|
headers: {
|
|
"Content-Type": "application/json",
|
|
},
|
|
body: JSON.stringify(data),
|
|
});
|
|
return await response.json().catch(() => null);
|
|
}
|
|
|