add reserve unreserve endpoints

This commit is contained in:
tylen
2025-11-02 14:55:49 +02:00
parent cf9b0d53c1
commit d1eeea0800
7 changed files with 228 additions and 60 deletions

View File

@@ -2,31 +2,31 @@ import { useState, useEffect } from 'react';
import type { Hosting } from '../types';
import { API_URL } from '../constants/constants';
const mockData: Hosting = {
1: {
reservedBy: "",
name: "Матрац 160см",
capacity: 2
},
2: {
reservedBy: "Vasya",
name: "Кровать 120см",
capacity: 2
},
3: {
reservedBy: "",
name: "Матрац 90см",
capacity: 1
},
4: {
reservedBy: "",
name: "Диван",
capacity: 1
},
};
// const mockData: Hosting = {
// 1: {
// reservedBy: "",
// name: "Матрац 160см",
// capacity: 2
// },
// 2: {
// reservedBy: "",
// name: "Кровать 120см",
// capacity: 2
// },
// 3: {
// reservedBy: "",
// name: "Матрац 90см",
// capacity: 1
// },
// 4: {
// reservedBy: "",
// name: "Диван",
// capacity: 1
// },
// };
const useFetchHosting = () => {
const [data, setData] = useState(mockData);
const [data, setData] = useState<Hosting|null>(null);
const [error, setError] = useState<string | null>(null);
const [loading, setLoading] = useState(false);
@@ -69,12 +69,36 @@ const useFetchHosting = () => {
}
};
const unreserveHosting = async (token: string, id: number) => {
setLoading(true);
setError(null);
try {
const response = await fetch(`${API_URL}/hosting/${id}/unreserve`, {
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify({ token })
});
if (!response.ok) { // Check for non-200 responses
const errorText = await response.text(); // Capture the response text for further insights
throw new Error(`Error ${response.status}: ${errorText}`);
}
// Optional: Fetch the updated data after reservation
await fetchData();
} finally {
setLoading(false);
}
};
useEffect(() => {
//fetchData(); // Initial fetch on mount
fetchData(); // Initial fetch on mount
}, []);
return { data, error, loading, refetch: fetchData, update: updateData };
return { data, error, loading, refetch: fetchData, update: updateData, unreserveHosting};
};
export default useFetchHosting;