Merge pull request #14 from rkheftan/feat/axios
feat: add axtios instanse and useApi hook
This commit is contained in:
@@ -1,6 +1,5 @@
|
|||||||
<!doctype html>
|
<!doctype html>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
|
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8" />
|
<meta charset="UTF-8" />
|
||||||
<!-- <link rel="icon" type="image/svg+xml" href="/vite.svg" /> -->
|
<!-- <link rel="icon" type="image/svg+xml" href="/vite.svg" /> -->
|
||||||
@@ -28,5 +27,4 @@
|
|||||||
<div id="root"></div>
|
<div id="root"></div>
|
||||||
<script type="module" src="/src/main.tsx"></script>
|
<script type="module" src="/src/main.tsx"></script>
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
||||||
24
src/hooks/useApi.ts
Normal file
24
src/hooks/useApi.ts
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
import { useState } from 'react';
|
||||||
|
|
||||||
|
type ApiFunction<T, P> = (params?: P) => Promise<{ data: T }>;
|
||||||
|
|
||||||
|
export function useApi<T, P>(apiFunction: ApiFunction<T, P>) {
|
||||||
|
const [data, setData] = useState<T | null>(null);
|
||||||
|
const [loading, setLoading] = useState(false);
|
||||||
|
const [error, setError] = useState<unknown>(null);
|
||||||
|
|
||||||
|
const execute = async (params?: P) => {
|
||||||
|
setLoading(true);
|
||||||
|
setError(null);
|
||||||
|
try {
|
||||||
|
const response = await apiFunction(params);
|
||||||
|
setData(response.data);
|
||||||
|
} catch (err) {
|
||||||
|
setError(err);
|
||||||
|
} finally {
|
||||||
|
setLoading(false);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
return { data, loading, error, execute };
|
||||||
|
}
|
||||||
56
src/lib/apiClient.ts
Normal file
56
src/lib/apiClient.ts
Normal file
@@ -0,0 +1,56 @@
|
|||||||
|
import axios from 'axios';
|
||||||
|
|
||||||
|
// Function to get the token from local storage or state management
|
||||||
|
const getToken = () => localStorage.getItem('authToken');
|
||||||
|
|
||||||
|
const apiClient = axios.create({
|
||||||
|
// Define the base URL for all API requests
|
||||||
|
baseURL: 'https://accounts.business-harmony.com/swagger/index.html',
|
||||||
|
|
||||||
|
// Set a timeout for requests (e.g., 10 seconds)
|
||||||
|
timeout: 10000,
|
||||||
|
|
||||||
|
// Set default headers
|
||||||
|
headers: {
|
||||||
|
'Content-Type': 'application/json',
|
||||||
|
Accept: 'application/json',
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
// --- Request Interceptor ---
|
||||||
|
// This runs BEFORE each request is sent
|
||||||
|
apiClient.interceptors.request.use(
|
||||||
|
(config) => {
|
||||||
|
const token = getToken();
|
||||||
|
if (token) {
|
||||||
|
// Add the authorization token to the headers
|
||||||
|
config.headers.Authorization = `Bearer ${token}`;
|
||||||
|
}
|
||||||
|
return config;
|
||||||
|
},
|
||||||
|
(error) => {
|
||||||
|
// Handle request errors
|
||||||
|
return Promise.reject(error);
|
||||||
|
},
|
||||||
|
);
|
||||||
|
|
||||||
|
// --- Response Interceptor ---
|
||||||
|
// This runs AFTER a response is received
|
||||||
|
// TODO: set global post api logic
|
||||||
|
// apiClient.interceptors.response.use(
|
||||||
|
// (response) => {
|
||||||
|
// // Any status code within the 2xx range will trigger this function
|
||||||
|
// return response;
|
||||||
|
// },
|
||||||
|
// (error) => {
|
||||||
|
// // Handle common errors globally
|
||||||
|
// if (error.response?.status === 401) {
|
||||||
|
// // e.g., redirect to login page if unauthorized
|
||||||
|
// console.error("Unauthorized! Redirecting to login...");
|
||||||
|
// // window.location.href = '/login';
|
||||||
|
// }
|
||||||
|
// return Promise.reject(error);
|
||||||
|
// }
|
||||||
|
// );
|
||||||
|
|
||||||
|
export default apiClient;
|
||||||
2
vite.config.d.ts
vendored
2
vite.config.d.ts
vendored
@@ -1,2 +1,2 @@
|
|||||||
declare const _default: import("vite").UserConfig;
|
declare const _default: import('vite').UserConfig;
|
||||||
export default _default;
|
export default _default;
|
||||||
|
|||||||
Reference in New Issue
Block a user