This commit is contained in:
tuanOts
2025-05-25 17:15:22 +07:00
parent 6b6e2bbc8a
commit 9687351177
11 changed files with 1099 additions and 38 deletions
+102
View File
@@ -0,0 +1,102 @@
import React, { useState } from 'react';
const ApiTest = () => {
const [loading, setLoading] = useState(false);
const [result, setResult] = useState(null);
const [error, setError] = useState(null);
const testApiConnection = async () => {
setLoading(true);
setError(null);
setResult(null);
try {
console.log('Testing API connection to:', process.env.REACT_APP_API_BASE_URL);
// Test with fetch first to get more detailed error info
const response = await fetch(`${process.env.REACT_APP_API_BASE_URL}Products`, {
method: 'GET',
headers: {
'Content-Type': 'application/json',
},
});
console.log('Response status:', response.status);
console.log('Response headers:', response.headers);
if (!response.ok) {
throw new Error(`HTTP ${response.status}: ${response.statusText}`);
}
const data = await response.json();
setResult(data);
console.log('API Response:', data);
} catch (err) {
console.error('API Error Details:', {
message: err.message,
name: err.name,
stack: err.stack,
cause: err.cause
});
let errorMessage = err.message || 'Failed to connect to API';
if (err.name === 'TypeError' && err.message.includes('Failed to fetch')) {
errorMessage = 'CORS Error: API server may not allow requests from this domain, or server is unreachable';
}
setError(errorMessage);
} finally {
setLoading(false);
}
};
return (
<div className="container mt-4">
<div className="card">
<div className="card-header">
<h5>API Connection Test</h5>
</div>
<div className="card-body">
<p><strong>API Base URL:</strong> {process.env.REACT_APP_API_BASE_URL}</p>
<button
className="btn btn-primary"
onClick={testApiConnection}
disabled={loading}
>
{loading ? 'Testing...' : 'Test API Connection'}
</button>
{loading && (
<div className="mt-3">
<div className="spinner-border text-primary" role="status">
<span className="visually-hidden">Loading...</span>
</div>
</div>
)}
{error && (
<div className="alert alert-danger mt-3">
<strong>Error:</strong> {error}
</div>
)}
{result && (
<div className="alert alert-success mt-3">
<strong>Success!</strong> API connection working.
<details className="mt-2">
<summary>Response Data</summary>
<pre className="mt-2" style={{ fontSize: '12px', maxHeight: '300px', overflow: 'auto' }}>
{JSON.stringify(result, null, 2)}
</pre>
</details>
</div>
)}
</div>
</div>
</div>
);
};
export default ApiTest;