mirror of
https://github.com/vercel/commerce.git
synced 2025-07-22 12:24:18 +00:00
50 lines
1.3 KiB
TypeScript
50 lines
1.3 KiB
TypeScript
import { MutationHook } from '@commerce/utils/types'
|
|
import useLogin, { UseLogin } from '@commerce/auth/use-login'
|
|
import { CommerceError, ValidationError } from '@commerce/utils/errors'
|
|
import { useCustomer } from '../customer'
|
|
import { useCallback } from 'react'
|
|
|
|
export default useLogin as UseLogin<typeof handler>
|
|
|
|
export const handler: MutationHook<any> = {
|
|
fetchOptions: {
|
|
query: 'auth',
|
|
method: 'authenticate',
|
|
},
|
|
async fetcher({ input: { email, password }, options, fetch }) {
|
|
if (!(email && password)) {
|
|
throw new CommerceError({
|
|
message: 'An email and password are required to login',
|
|
})
|
|
}
|
|
|
|
await fetch({
|
|
...options,
|
|
variables: { email: email, password: password },
|
|
}).catch((_e) => {
|
|
throw new CommerceError({
|
|
errors: [
|
|
new ValidationError({
|
|
message:
|
|
'A user with that email and password combination does not exist',
|
|
}),
|
|
],
|
|
})
|
|
})
|
|
},
|
|
useHook:
|
|
({ fetch }) =>
|
|
() => {
|
|
const { revalidate } = useCustomer()
|
|
|
|
return useCallback(
|
|
async function login(input) {
|
|
const data = await fetch({ input })
|
|
await revalidate()
|
|
return data
|
|
},
|
|
[fetch, revalidate]
|
|
)
|
|
},
|
|
}
|