Gab 3baac92191 Vendure - Fetcher - Globally throw errors
Globally throw errors from the Vendure fetcher when we detect errors in the response body
2021-06-25 11:47:57 +02:00

59 lines
1.5 KiB
TypeScript

import { Fetcher } from '@commerce/utils/types'
import { ErrorProps, FetcherError } from '@commerce/utils/errors'
async function getText(res: Response) {
try {
return (await res.text()) || res.statusText
} catch (error) {
return res.statusText
}
}
async function fetcherError(options: {
status: number
} & ErrorProps) {
return new FetcherError(options)
}
async function getError(res: Response) {
if (res.headers.get('Content-Type')?.includes('application/json')) {
const data = await res.json()
return fetcherError({ errors: data.errors, status: res.status })
}
return fetcherError({ message: await getText(res), status: res.status })
}
export const fetcher: Fetcher = async ({
url,
method = 'POST',
variables,
query,
body: bodyObj,
}) => {
const shopApiUrl =
process.env.NEXT_PUBLIC_VENDURE_LOCAL_URL ||
process.env.NEXT_PUBLIC_VENDURE_SHOP_API_URL
if (!shopApiUrl) {
throw new Error(
'The Vendure Shop API url has not been provided. Please define NEXT_PUBLIC_VENDURE_SHOP_API_URL in .env.local'
)
}
const hasBody = Boolean(variables || query)
const body = hasBody ? JSON.stringify({ query, variables }) : undefined
const headers = hasBody ? { 'Content-Type': 'application/json' } : undefined
const res = await fetch(shopApiUrl, {
method,
body,
headers,
credentials: 'include',
})
if (res.ok) {
const { data, errors } = await res.json()
if (errors) {
throw await fetcherError({ status: res.status, errors })
}
return data
}
throw await getError(res)
}