use fetchWrapper for getAllEvents.js

This commit is contained in:
T'JAMPENS QUENTIN p2406187
2026-01-28 14:47:41 +01:00
parent b5786d288d
commit e9c8b7cda8
2 changed files with 6 additions and 24 deletions
+2 -2
View File
@@ -10,8 +10,8 @@ export function EventProvider({ children }) {
const [events, setEvents] = useState([]);
const updateEvent = async () => {
const data = await getAllEvents();
setEvents(data.data);
const result = await getAllEvents();
setEvents(result.data.data);
}
const addEvent = async (name, description, start, end) => {
+4 -22
View File
@@ -1,23 +1,5 @@
import fetchWrapper from "../fetchWrapper.js";
export default async function getAllEvents() {
try {
const res = await fetch(`${import.meta.env.VITE_API_URL}/api/events/`, {
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/", null, "GET");
}