use fetchWrapper for getEventById.js

This commit is contained in:
T'JAMPENS QUENTIN p2406187
2026-01-28 15:19:44 +01:00
parent e9c8b7cda8
commit 4f184dd7c5
3 changed files with 7 additions and 25 deletions
+1 -1
View File
@@ -9,7 +9,7 @@ const Task = ({ task }) => {
useEffect(() => {
(async () => {
const e = await getEventById(task.id);
setEvent(e);
setEvent(e.data);
}) ()
}, [])
@@ -11,8 +11,8 @@ export function EventDetailProvider({ children }) {
const updateEventInfo = async (id) => {
const e = await getEventById(id);
setEventInfo(e);
setTasks(e.tasks)
setEventInfo(e.data);
setTasks(e.data.tasks)
}
const deleteTask = async (id, eventId) => {
+4 -22
View File
@@ -1,23 +1,5 @@
import fetchWrapper from "../fetchWrapper.js";
export default async function GetEventById(id) {
try {
const res = await fetch(`${import.meta.env.VITE_API_URL}/api/events/${id}`, {
method: 'GET',
credentials: 'include',
headers: {
'Accept': 'application/json'
}
});
if (!res.ok) {
throw new Error(`Erreur serveur : ${res.status}`);
}
const data = await res.json();
return data;
} catch (err) {
console.error('Erreur :', err);
return null;
}
}
return fetchWrapper(`/api/events/${id}`, null, "GET");
}