GunaTrika b5051f50e4 Login & Token
- Changed the loging fetch
 - Store the token and user id in cookie
 - Ue the cookie to make user calls like get user
2021-09-28 10:32:22 +05:30

48 lines
1.3 KiB
TypeScript

import { useCallback } from 'react'
import type { MutationHook } from '@commerce/utils/types'
import { CommerceError } from '@commerce/utils/errors'
import useLogin, { UseLogin } from '@commerce/auth/use-login'
import useCustomer from '../customer/use-customer'
import Cookies from 'js-cookie'
export default useLogin as UseLogin<typeof handler>
export const handler: MutationHook<any> = {
fetchOptions: {
url: 'Customers',
method: 'TokenViaPassword',
},
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 {data:token} = await fetch({
...options,
variables:{
params: [email, password]
}
});
let expireTime = Math.round(token.expires/(1000*24*60*60));
Cookies.set("user_token",
JSON.stringify(token),
{ expires: expireTime });
return token || null;
},
useHook: ({ fetch }) => () => {
const { revalidate } = useCustomer()
return useCallback(
async function login(input) {
const data = await fetch({ input })
await revalidate()
return data
},
[fetch, revalidate]
)
},
}