mirror of
https://github.com/vercel/commerce.git
synced 2025-03-28 00:05:53 +00:00
22 lines
534 B
TypeScript
22 lines
534 B
TypeScript
import Cookies, { CookieAttributes } from 'js-cookie'
|
|
import { SHOPIFY_COOKIE_EXPIRE, SHOPIFY_CUSTOMER_TOKEN_COOKIE } from '../const'
|
|
|
|
export const getCustomerToken = () => Cookies.get(SHOPIFY_CUSTOMER_TOKEN_COOKIE)
|
|
|
|
export const setCustomerToken = (
|
|
token: string | null,
|
|
options?: CookieAttributes
|
|
) => {
|
|
if (!token) {
|
|
Cookies.remove(SHOPIFY_CUSTOMER_TOKEN_COOKIE)
|
|
} else {
|
|
Cookies.set(
|
|
SHOPIFY_CUSTOMER_TOKEN_COOKIE,
|
|
token,
|
|
options ?? {
|
|
expires: SHOPIFY_COOKIE_EXPIRE,
|
|
}
|
|
)
|
|
}
|
|
}
|