37 lines
1.1 KiB
TypeScript
37 lines
1.1 KiB
TypeScript
import React, {useState} from "react"
|
|
import axios from "axios"
|
|
import {cleanErrorsForm, displayFormErrors} from "../utilities/form"
|
|
|
|
const useAxiosTools = (isLoading = false) => {
|
|
|
|
const [loading, setLoading] = useState(isLoading)
|
|
const [error, setError] = useState<string|null>(null)
|
|
|
|
const axiosGet = axios.get
|
|
const axiosPost = axios.post
|
|
const axiosPut = axios.put
|
|
const axiosDelete = axios.delete
|
|
|
|
const errorCatch = (error: any) => {
|
|
if (error.response && error.response.status === 422) {
|
|
displayFormErrors(error)
|
|
} else {
|
|
setError(error.response?.data.message || error.message)
|
|
}
|
|
}
|
|
|
|
const errorLabel = () => {
|
|
|
|
return error ? <div className="m-2 mx-auto rounded bg-red-600 px-2 py-1 text-center text-white">{error}</div>: null
|
|
}
|
|
|
|
const cleanErrors = () => {
|
|
cleanErrorsForm()
|
|
setError(null)
|
|
}
|
|
|
|
return {loading, setLoading, error, setError, errorCatch, errorLabel, cleanErrors, axiosGet, axiosPost, axiosPut, axiosDelete}
|
|
}
|
|
|
|
export default useAxiosTools
|