mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-14 01:53:55 +00:00
32 lines
797 B
TypeScript
32 lines
797 B
TypeScript
import type { UseFetchOptions } from 'nuxt/app'
|
|
import { defu } from 'defu'
|
|
|
|
export function useCustomFetch<T> (url: string, options: UseFetchOptions<T> = {}) {
|
|
const userAuth = useCookie('token')
|
|
const config = useRuntimeConfig()
|
|
|
|
const defaults: UseFetchOptions<T> = {
|
|
baseURL: config.baseUrl ?? 'https://api.nuxtjs.dev',
|
|
// cache request
|
|
key: url,
|
|
|
|
// set user token if connected
|
|
headers: userAuth.value
|
|
? { Authorization: `Bearer ${userAuth.value}` }
|
|
: {},
|
|
|
|
onResponse (__ctx) {
|
|
// return new myBusinessResponse(response._data)
|
|
},
|
|
|
|
onResponseError (__ctx) {
|
|
// return new myBusinessError(error)
|
|
}
|
|
}
|
|
|
|
// for nice deep defaults, please use unjs/defu
|
|
const params = defu(defaults, options)
|
|
|
|
return useFetch(url, params)
|
|
}
|