mirror of
https://github.com/vercel/commerce.git
synced 2025-06-18 21:21:21 +00:00
79 lines
1.8 KiB
TypeScript
79 lines
1.8 KiB
TypeScript
import { useCallback } from 'react'
|
|
import type { MutationHook } from '@commerce/utils/types'
|
|
import { CommerceError, ValidationError } from '@commerce/utils/errors'
|
|
import useSignup, { UseSignup } from '@commerce/auth/use-signup'
|
|
import useCustomer from '../customer/use-customer'
|
|
import {
|
|
CustomerCreateInput,
|
|
Mutation,
|
|
MutationCustomerCreateArgs,
|
|
} from '../schema'
|
|
|
|
import { customerCreateMutation } from '../utils/mutations'
|
|
import { handleAutomaticLogin, handleAccountActivation } from '../utils'
|
|
|
|
export default useSignup as UseSignup<typeof handler>
|
|
|
|
export const handler: MutationHook<
|
|
null,
|
|
{},
|
|
CustomerCreateInput,
|
|
CustomerCreateInput
|
|
> = {
|
|
fetchOptions: {
|
|
query: customerCreateMutation,
|
|
},
|
|
async fetcher({
|
|
input: { firstName, lastName, email, password },
|
|
options,
|
|
fetch,
|
|
}) {
|
|
if (!(firstName && lastName && email && password)) {
|
|
throw new CommerceError({
|
|
message:
|
|
'A first name, last name, email and password are required to signup',
|
|
})
|
|
}
|
|
|
|
const { customerCreate } = await fetch<
|
|
Mutation,
|
|
MutationCustomerCreateArgs
|
|
>({
|
|
...options,
|
|
variables: {
|
|
input: {
|
|
firstName,
|
|
lastName,
|
|
email,
|
|
password,
|
|
},
|
|
},
|
|
})
|
|
|
|
const errors = customerCreate?.customerUserErrors
|
|
|
|
if (errors && errors.length) {
|
|
const [error] = errors
|
|
throw new ValidationError({
|
|
message: error.message,
|
|
})
|
|
}
|
|
|
|
await handleAutomaticLogin(fetch, { email, password })
|
|
|
|
return null
|
|
},
|
|
useHook: ({ fetch }) => () => {
|
|
const { revalidate } = useCustomer()
|
|
|
|
return useCallback(
|
|
async function signup(input) {
|
|
const data = await fetch({ input })
|
|
await revalidate()
|
|
return data
|
|
},
|
|
[fetch, revalidate]
|
|
)
|
|
},
|
|
}
|