mirror of
https://github.com/vercel/commerce.git
synced 2025-03-16 07:22:32 +00:00
59 lines
1.5 KiB
TypeScript
59 lines
1.5 KiB
TypeScript
import { ReactNode } from 'react'
|
|
import {
|
|
CommerceConfig,
|
|
CommerceProvider as CoreCommerceProvider,
|
|
useCommerce as useCoreCommerce,
|
|
} from 'lib/commerce'
|
|
|
|
async function getText(res: Response) {
|
|
try {
|
|
return (await res.text()) || res.statusText
|
|
} catch (error) {
|
|
return res.statusText
|
|
}
|
|
}
|
|
|
|
async function getError(res: Response) {
|
|
if (res.headers.get('Content-Type')?.includes('application/json')) {
|
|
const data = await res.json()
|
|
return data.errors[0]
|
|
}
|
|
return { message: await getText(res) }
|
|
}
|
|
|
|
export const bigcommerceConfig: CommerceConfig = {
|
|
locale: 'en-us',
|
|
async fetcher({ url, method = 'GET', variables, body: bodyObj }) {
|
|
const hasBody = Boolean(variables || bodyObj)
|
|
const body = hasBody
|
|
? JSON.stringify(variables ? { variables } : bodyObj)
|
|
: undefined
|
|
const headers = hasBody ? { 'Content-Type': 'application/json' } : undefined
|
|
const res = await fetch(url!, { method, body, headers })
|
|
|
|
if (res.ok) {
|
|
const { data } = await res.json()
|
|
console.log('DATA', data)
|
|
return data
|
|
}
|
|
|
|
throw await getError(res)
|
|
},
|
|
}
|
|
|
|
export type BigcommerceConfig = Partial<CommerceConfig>
|
|
|
|
export type BigcommerceProps = {
|
|
children?: ReactNode
|
|
} & BigcommerceConfig
|
|
|
|
export function CommerceProvider({ children, ...config }: BigcommerceProps) {
|
|
return (
|
|
<CoreCommerceProvider config={{ ...bigcommerceConfig, ...config }}>
|
|
{children}
|
|
</CoreCommerceProvider>
|
|
)
|
|
}
|
|
|
|
export const useCommerce = () => useCoreCommerce()
|