Added http errors handing to all fettch requests

This commit is contained in:
Dmitriy Shishkov 2023-07-13 17:50:20 +03:00
parent d041df0bbd
commit 6a0c4c9dac
Signed by: dm1sh
GPG Key ID: 027994B0AA357688
6 changed files with 33 additions and 13 deletions

View File

@ -2,6 +2,7 @@ import { useEffect, useRef, useState } from "react"
import { API_URL } from "../../config" import { API_URL } from "../../config"
import { isLiteralUnion } from "../../utils/types" import { isLiteralUnion } from "../../utils/types"
import { handleHTTPErrors } from "../../utils"
const addErrors = ["Не удалось опубликовать объявление", 'Неверный ответ от сервера', 'Неизвестная ошибка'] as const const addErrors = ["Не удалось опубликовать объявление", 'Неверный ответ от сервера', 'Неизвестная ошибка'] as const
type AddError = typeof addErrors[number] type AddError = typeof addErrors[number]
@ -45,6 +46,8 @@ const useAddAnnouncement = () => {
signal: abortController.signal signal: abortController.signal
}) })
handleHTTPErrors(res)
const data: unknown = await res.json() const data: unknown = await res.json()
if (!isAddResponse(data)) throw new Error('Неверный ответ от сервера') if (!isAddResponse(data)) throw new Error('Неверный ответ от сервера')

View File

@ -1,6 +1,7 @@
import { useState } from "react" import { useState } from "react"
import { API_URL } from "../../config" import { API_URL } from "../../config"
import { isConst, isObject } from "../../utils/types" import { isConst, isObject } from "../../utils/types"
import { handleHTTPErrors } from "../../utils"
interface AuthData { interface AuthData {
email: string, email: string,
@ -57,6 +58,9 @@ function useAuth() {
'Content-Type': 'application/json' 'Content-Type': 'application/json'
} }
}) })
handleHTTPErrors(res)
const signupData: unknown = await res.json() const signupData: unknown = await res.json()
if (!isSignUpResponse(signupData)) { if (!isSignUpResponse(signupData)) {

View File

@ -4,6 +4,7 @@ import { useNavigate } from "react-router-dom"
import { getToken } from "../../utils/auth" import { getToken } from "../../utils/auth"
import { API_URL } from "../../config" import { API_URL } from "../../config"
import { isObject } from "../../utils/types" import { isObject } from "../../utils/types"
import { handleHTTPErrors } from "../../utils"
type BookResponse = { type BookResponse = {
Success: boolean Success: boolean
@ -39,6 +40,8 @@ function useBook(id: number) {
} }
}) })
handleHTTPErrors(res)
const data: unknown = await res.json() const data: unknown = await res.json()
if (!isBookResponse(data)) { if (!isBookResponse(data)) {

View File

@ -1,5 +1,6 @@
import { useEffect, useRef, useState } from "react" import { useEffect, useRef, useState } from "react"
import { isAborted } from '../../utils'
import { handleHTTPErrors, isAborted } from '../../utils'
const useFetch = <T>(url: string, params: RequestInit | undefined, initialData: T, dataGuard: (obj: unknown) => obj is T) => { const useFetch = <T>(url: string, params: RequestInit | undefined, initialData: T, dataGuard: (obj: unknown) => obj is T) => {
const [data, setData] = useState(initialData) const [data, setData] = useState(initialData)
@ -18,17 +19,7 @@ const useFetch = <T>(url: string, params: RequestInit | undefined, initialData:
fetch(url, { ...params, signal: abortControllerRef.current.signal }) fetch(url, { ...params, signal: abortControllerRef.current.signal })
.then(res => { .then(res => {
if (!res.ok) { handleHTTPErrors(res)
switch (res.status) {
case 401:
throw new Error("Ошибка авторизации")
case 404:
throw new Error("Объект не найден")
default: {
throw new Error("Ошибка ответа от сервера")
}
}
}
return res.json() return res.json()
}) })

View File

@ -9,6 +9,7 @@ import { useAddAnnouncement, useTrashboxes } from "../hooks/api"
import { categoryNames } from "../assets/category" import { categoryNames } from "../assets/category"
import { stations, lines, lineNames } from "../assets/metro" import { stations, lines, lineNames } from "../assets/metro"
import { isObject } from "../utils/types" import { isObject } from "../utils/types"
import { handleHTTPErrors } from "../utils"
function AddPage() { function AddPage() {
const [addressPosition, setAddressPosition] = useState(latLng(59.972, 30.3227)) const [addressPosition, setAddressPosition] = useState(latLng(59.972, 30.3227))
@ -22,6 +23,8 @@ function AddPage() {
try { try {
const res = await fetch(location.protocol + "//nominatim.openstreetmap.org/search?format=json&q=" + address) const res = await fetch(location.protocol + "//nominatim.openstreetmap.org/search?format=json&q=" + address)
handleHTTPErrors(res)
const fetchData: unknown = await res.json() const fetchData: unknown = await res.json()
console.log("f", fetchData) console.log("f", fetchData)
@ -37,6 +40,8 @@ function AddPage() {
try { try {
const res = await fetch(`${location.protocol}//nominatim.openstreetmap.org/reverse?format=json&accept-language=ru&lat=${addressPosition.lat}&lon=${addressPosition.lng}`) const res = await fetch(`${location.protocol}//nominatim.openstreetmap.org/reverse?format=json&accept-language=ru&lat=${addressPosition.lat}&lon=${addressPosition.lng}`)
handleHTTPErrors(res)
const fetchData: unknown = await res.json() const fetchData: unknown = await res.json()
if (!isObject<{ display_name: string }>(fetchData, { "display_name": "string" })) { if (!isObject<{ display_name: string }>(fetchData, { "display_name": "string" })) {

View File

@ -1,3 +1,17 @@
const isAborted = (err: Error) => err.name === 'AbortError' const isAborted = (err: Error) => err.name === 'AbortError'
export { isAborted } const handleHTTPErrors = (res: Response) => {
if (!res.ok) {
switch (res.status) {
case 401:
throw new Error("Ошибка авторизации")
case 404:
throw new Error("Объект не найден")
default: {
throw new Error("Ошибка ответа от сервера")
}
}
}
}
export { isAborted, handleHTTPErrors }