mirror of
https://github.com/vercel/commerce.git
synced 2025-08-11 03:11:23 +00:00
.vscode
assets
components
config
framework
bigcommerce
commerce
shopify
swell
api
auth
use-login.tsx
use-logout.tsx
use-signup.tsx
cart
common
customer
product
utils
wishlist
.env.template
commerce.config.json
const.ts
fetcher.ts
index.tsx
next.config.js
provider.ts
schema.d.ts
schema.graphql
swell-js.d.ts
types.ts
vendure
lib
pages
public
.editorconfig
.env.template
.gitignore
.prettierignore
.prettierrc
README.md
codegen.json
commerce.config.json
global.d.ts
license.md
next-env.d.ts
next.config.js
package.json
postcss.config.js
tailwind.config.js
tsconfig.json
yarn.lock
37 lines
922 B
TypeScript
37 lines
922 B
TypeScript
import { useCallback } from 'react'
|
|
import type { MutationHook } from '@commerce/utils/types'
|
|
import useLogout, { UseLogout } from '@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<null> = {
|
|
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]
|
|
)
|
|
},
|
|
}
|