use-signup

This commit is contained in:
Luis Alvarez 2020-10-20 13:49:37 -05:00
parent ef81a968af
commit e2b26715b9
3 changed files with 58 additions and 3 deletions

View File

@ -0,0 +1,52 @@
import { useCallback } from 'react'
import { HookFetcher } from '@lib/commerce/utils/types'
import useCommerceSignup from '@lib/commerce/use-signup'
import type { CreateCustomerBody } from './api/customers'
const defaultOpts = {
url: '/api/bigcommerce/customers',
method: 'POST',
}
export type SignupInput = CreateCustomerBody
export const fetcher: HookFetcher<undefined, CreateCustomerBody> = (
options,
{ firstName, lastName, email, password },
fetch
) => {
if (!(firstName && lastName && email && password)) {
throw new Error(
'A first name, last name, email and password are required to signup'
)
}
return fetch({
url: options?.url ?? defaultOpts.url,
method: options?.method ?? defaultOpts.method,
body: { firstName, lastName, email, password },
})
}
export function extendHook(customFetcher: typeof fetcher) {
const useSignup = () => {
const fn = useCommerceSignup<undefined, SignupInput>(
defaultOpts,
customFetcher
)
return useCallback(
async function signup(input: SignupInput) {
const data = await fn(input)
return data
},
[fn]
)
}
useSignup.extend = extendHook
return useSignup
}
export default extendHook(fetcher)

View File

@ -0,0 +1,5 @@
import useAction from './utils/use-action'
const useSignup = useAction
export default useSignup

View File

@ -9,9 +9,7 @@ export default function useAction<T, Input>(
const { fetcherRef } = useCommerce()
return useCallback(
function addItem(input: Input) {
return fetcher(options, input, fetcherRef.current)
},
(input: Input) => fetcher(options, input, fetcherRef.current),
[fetcher]
)
}