mirror of
https://github.com/vercel/commerce.git
synced 2025-05-21 17:06:58 +00:00
* Update product types * Cart types progress, add zod & initial schema validator * Update normalize.ts * Update with-schema-parser.ts * Updated types, schemas & providers * Fix providers after schema parse errors * Fix paths * More provider fixes * Fix kibocommerce & commercejs * Add customer updated types & fixes * Add checkout & customer types * Import core types only from commerce * Update tsconfig.json * Convert hooks interfaces to types * Requested changes * Change to relative paths * Move Zod dependency
41 lines
1.0 KiB
TypeScript
41 lines
1.0 KiB
TypeScript
import type { LogoutHook } from '@vercel/commerce/types/logout'
|
|
import type { MutationHook } from '@vercel/commerce/utils/types'
|
|
|
|
import { useCallback } from 'react'
|
|
import useLogout, { UseLogout } from '@vercel/commerce/auth/use-logout'
|
|
import useCustomer from '../customer/use-customer'
|
|
import { getCustomerToken, setCustomerToken } from '../utils/customer-token'
|
|
|
|
export default useLogout as UseLogout<typeof handler>
|
|
|
|
export const handler: MutationHook<LogoutHook> = {
|
|
fetchOptions: {
|
|
query: 'account',
|
|
method: 'logout',
|
|
},
|
|
async fetcher({ options, fetch }) {
|
|
await fetch({
|
|
...options,
|
|
variables: {
|
|
customerAccessToken: getCustomerToken(),
|
|
},
|
|
})
|
|
setCustomerToken(null)
|
|
return null
|
|
},
|
|
useHook:
|
|
({ fetch }) =>
|
|
() => {
|
|
const { mutate } = useCustomer()
|
|
|
|
return useCallback(
|
|
async function logout() {
|
|
const data = await fetch()
|
|
await mutate(null, false)
|
|
return data
|
|
},
|
|
[fetch, mutate]
|
|
)
|
|
},
|
|
}
|