forked from crowetic/commerce
* Implement Shopify Provider * Update README.md * Update README.md * normalizations & missing files * Update index.ts * fixes * Update normalize.ts * fix: cart error on first load * shopify checkout redirect & api handler * Update get-checkout-id.ts * Fix: color option * Update normalize.ts * changes * Update next.config.js * start customer auth & signup * Update config.ts * Login, Sign Up, Log Out, and checkout & customer association * Automatic login after sign-up * Update handle-login.ts * changes * Revert "Merge branch 'agnostic' of https://github.com/vercel/commerce into agnostic" This reverts commit 23c8ed7c2d48d30e74ad94216f9910650fadf30c, reversing changes made to bf50965a39ef0b1b956461ebe62070809fbe1d63. * change readme * Revert "Merge branch 'master' of https://github.com/vercel/commerce into agnostic" This reverts commit bf50965a39ef0b1b956461ebe62070809fbe1d63, reversing changes made to 0dad4ddedbf0bff2d0b5800ca469fda0073889ea. * Revert "Revert "Merge branch 'agnostic' of https://github.com/vercel/commerce into agnostic"" This reverts commit c9a43f1bce0572d0eff41f3af893be8bdb00bedd. * align with upstream changes * query all products for vendors & paths, improve search * Update use-search.tsx * fix cart after upstream changes * fixes after upstream changes * Moved handler to each hook * Added initial version of useAddItem * Updated types * Update use-add-item.tsx * Moved auth & cart hooks + several fixes * Updated cart item, fixed deprecations * Update next.config.js * Aligned with upstream changes * Updates * Update next.config.js
77 lines
2.1 KiB
TypeScript
77 lines
2.1 KiB
TypeScript
import { useCallback } from 'react'
|
|
import type { MutationHook } from '@commerce/utils/types'
|
|
import { CommerceError, ValidationError } from '@commerce/utils/errors'
|
|
import useCustomer from '../customer/use-customer'
|
|
import createCustomerAccessTokenMutation from '../utils/mutations/customer-access-token-create'
|
|
import {
|
|
CustomerAccessTokenCreateInput,
|
|
CustomerUserError,
|
|
Mutation,
|
|
MutationCheckoutCreateArgs,
|
|
} from '@framework/schema'
|
|
import useLogin, { UseLogin } from '@commerce/auth/use-login'
|
|
import { setCustomerToken } from '@framework/utils'
|
|
|
|
export default useLogin as UseLogin<typeof handler>
|
|
|
|
const getErrorMessage = ({ code, message }: CustomerUserError) => {
|
|
switch (code) {
|
|
case 'UNIDENTIFIED_CUSTOMER':
|
|
message = 'Cannot find an account that matches the provided credentials'
|
|
break
|
|
}
|
|
return message
|
|
}
|
|
|
|
export const handler: MutationHook<null, {}, CustomerAccessTokenCreateInput> = {
|
|
fetchOptions: {
|
|
query: createCustomerAccessTokenMutation,
|
|
},
|
|
async fetcher({ input: { email, password }, options, fetch }) {
|
|
if (!(email && password)) {
|
|
throw new CommerceError({
|
|
message:
|
|
'A first name, last name, email and password are required to login',
|
|
})
|
|
}
|
|
|
|
const { customerAccessTokenCreate } = await fetch<
|
|
Mutation,
|
|
MutationCheckoutCreateArgs
|
|
>({
|
|
...options,
|
|
variables: {
|
|
input: { email, password },
|
|
},
|
|
})
|
|
|
|
const errors = customerAccessTokenCreate?.customerUserErrors
|
|
|
|
if (errors && errors.length) {
|
|
throw new ValidationError({
|
|
message: getErrorMessage(errors[0]),
|
|
})
|
|
}
|
|
const customerAccessToken = customerAccessTokenCreate?.customerAccessToken
|
|
const accessToken = customerAccessToken?.accessToken
|
|
|
|
if (accessToken) {
|
|
setCustomerToken(accessToken)
|
|
}
|
|
|
|
return null
|
|
},
|
|
useHook: ({ fetch }) => () => {
|
|
const { revalidate } = useCustomer()
|
|
|
|
return useCallback(
|
|
async function login(input) {
|
|
const data = await fetch({ input })
|
|
await revalidate()
|
|
return data
|
|
},
|
|
[fetch, revalidate]
|
|
)
|
|
},
|
|
}
|