commerce/packages/swell/customer/use-customer.tsx
2022-01-14 23:33:01 -05:00

32 lines
772 B
TypeScript

import useCustomer, {
UseCustomer,
} from '@vercel/commerce/customer/use-customer'
import { SWRHook } from '@vercel/commerce/utils/types'
import { normalizeCustomer } from '../utils/normalize'
import type { CustomerHook } from '../types/customer'
export default useCustomer as UseCustomer<typeof handler>
export const handler: SWRHook<CustomerHook> = {
fetchOptions: {
query: 'account',
method: 'get',
},
async fetcher({ options, fetch }) {
const data = await fetch<any | null>({
...options,
})
return data ? normalizeCustomer(data) : null
},
useHook:
({ useData }) =>
(input) => {
return useData({
swrOptions: {
revalidateOnFocus: false,
...input?.swrOptions,
},
})
},
}