refactor: clean up API_URL definition and improve error handling in authStore

This commit is contained in:
Patryk
2025-06-08 09:21:04 +02:00
parent 0c92a4b4ee
commit 717dd32543
2 changed files with 145 additions and 129 deletions

View File

@@ -2,15 +2,16 @@ import axios from "axios";
import FormData from "form-data";
import { useAuthStore } from "@/store/authStore";
const API_URL = "https://hopp.zikor.pl/api/v1";
// const API_URL = "https://testowe.zikor.pl/api/v1";
const API_URL = "https://hopp.zikor.pl/api/v1";
export async function listNotices() {
const { token } = useAuthStore.getState();
const headers = token ? { Authorization: `Bearer ${token}` } : {};
const response = await fetch(`${API_URL}/notices/get/all`, {
headers: headers
headers: headers,
});
const data = await response.json();
if (!response.ok) {
@@ -71,25 +72,21 @@ export async function getAllImagesByNoticeId(noticeId) {
const listResponse = await axios.get(`${API_URL}/images/list/${noticeId}`);
if (listResponse.data && listResponse.data.length > 0) {
return listResponse.data.map(imageName =>
`${API_URL}/images/get/${imageName}`
return listResponse.data.map(
(imageName) => `${API_URL}/images/get/${imageName}`
);
}
return ["https://http.cat/404.jpg"];
} catch (err) {
if (err.response.status === 404) {
console.info(`Ogłoszenie o id: ${noticeId} nie posiada zdjęć.`);
// console.info(`Ogłoszenie o id: ${noticeId} nie posiada zdjęć.`);
return ["https://http.cat/404.jpg"];
}
console.warn(`Nie udało się pobrać listy zdjęć dla ogłoszenia o id: ${noticeId}`, err);
return ["https://http.cat/404.jpg"];
}
// console.log(`Brak zdjęć dla ogłoszenia o id: ${noticeId}`);
return ["https://http.cat/404.jpg"];
} catch (err) {
// console.log(`Błąd podczas pobierania listy zdjęć dla ogłoszenia o id: ${noticeId}`, err);
console.warn(
`Nie udało się pobrać listy zdjęć dla ogłoszenia o id: ${noticeId}`,
err
);
return ["https://http.cat/404.jpg"];
}
}

View File

@@ -7,7 +7,25 @@ const API_URL = "https://hopp.zikor.pl/api/v1";
export const useAuthStore = create(
persist(
(set) => ({
(set) => {
// Dodaj interceptor tylko raz
if (!axios.interceptors.response.handlers.length) {
axios.interceptors.response.use(
(response) => response,
(error) => {
if (
(error.response && error.response.status === 401) ||
error.response.status === 403
) {
set({ user_id: null, token: null, isLoading: false });
delete axios.defaults.headers.common["Authorization"];
}
return Promise.reject(error);
}
);
}
return {
user_id: null,
token: null,
isLoading: false,
@@ -113,7 +131,8 @@ export const useAuthStore = create(
return null;
}
},
}),
};
},
{
name: "auth-storage",
storage: createJSONStorage(() => AsyncStorage),