mirror of
https://github.com/vercel/commerce.git
synced 2025-03-27 07:45:53 +00:00
70 lines
1.7 KiB
TypeScript
70 lines
1.7 KiB
TypeScript
import { useCallback } from 'react'
|
|
import { 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 {
|
|
RegisterCustomerInput,
|
|
SignupMutation,
|
|
SignupMutationVariables,
|
|
} from '../schema'
|
|
import { signupMutation } from '../utils/mutations/sign-up-mutation'
|
|
import { SignupHook } from '../types/signup'
|
|
|
|
export default useSignup as UseSignup<typeof handler>
|
|
|
|
export type SignupInput = {
|
|
email: string
|
|
firstName: string
|
|
lastName: string
|
|
password: string
|
|
}
|
|
|
|
export const handler: MutationHook<SignupHook> = {
|
|
fetchOptions: {
|
|
query: signupMutation,
|
|
},
|
|
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 variables: SignupMutationVariables = {
|
|
input: {
|
|
firstName,
|
|
lastName,
|
|
emailAddress: email,
|
|
password,
|
|
},
|
|
}
|
|
const { registerCustomerAccount } = await fetch<SignupMutation>({
|
|
...options,
|
|
variables,
|
|
})
|
|
|
|
if (registerCustomerAccount.__typename !== 'Success') {
|
|
throw new ValidationError(registerCustomerAccount)
|
|
}
|
|
|
|
return null
|
|
},
|
|
useHook: ({ fetch }) => () => {
|
|
const { revalidate } = useCustomer()
|
|
|
|
return useCallback(
|
|
async function signup(input) {
|
|
const data = await fetch({ input })
|
|
await revalidate()
|
|
return data
|
|
},
|
|
[fetch, revalidate]
|
|
)
|
|
},
|
|
}
|