forked from crowetic/commerce
* Fetch only first 250 best selling products * Update get-all-product-paths.ts * Update use-customer.tsx
32 lines
860 B
TypeScript
32 lines
860 B
TypeScript
import useCustomer, { UseCustomer } from '@commerce/customer/use-customer'
|
|
import { Customer } from '@commerce/types'
|
|
import { SWRHook } from '@commerce/utils/types'
|
|
import { getCustomerQuery, getCustomerToken } from '../utils'
|
|
|
|
export default useCustomer as UseCustomer<typeof handler>
|
|
|
|
export const handler: SWRHook<Customer | null> = {
|
|
fetchOptions: {
|
|
query: getCustomerQuery,
|
|
},
|
|
async fetcher({ options, fetch }) {
|
|
const customerAccessToken = getCustomerToken()
|
|
if (customerAccessToken) {
|
|
const data = await fetch({
|
|
...options,
|
|
variables: { customerAccessToken: getCustomerToken() },
|
|
})
|
|
return data.customer
|
|
}
|
|
return null
|
|
},
|
|
useHook: ({ useData }) => (input) => {
|
|
return useData({
|
|
swrOptions: {
|
|
revalidateOnFocus: false,
|
|
...input?.swrOptions,
|
|
},
|
|
})
|
|
},
|
|
}
|