mirror of
https://github.com/vercel/commerce.git
synced 2025-04-25 04:17:51 +00:00
* 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
134 lines
2.9 KiB
TypeScript
134 lines
2.9 KiB
TypeScript
import {
|
|
Product as ShopifyProduct,
|
|
Checkout,
|
|
CheckoutLineItemEdge,
|
|
SelectedOption,
|
|
ImageConnection,
|
|
ProductVariantConnection,
|
|
ProductOption,
|
|
MoneyV2,
|
|
} from '@framework/schema'
|
|
|
|
import type { Cart, LineItem } from '../types'
|
|
|
|
const money = ({ amount, currencyCode }: MoneyV2) => {
|
|
return {
|
|
value: +amount,
|
|
currencyCode,
|
|
}
|
|
}
|
|
|
|
const normalizeProductOption = ({
|
|
name: displayName,
|
|
values,
|
|
...rest
|
|
}: ProductOption) => {
|
|
return {
|
|
__typename: 'MultipleChoiceOption',
|
|
displayName,
|
|
values: values.map((value) => ({
|
|
label: value,
|
|
hexColors: displayName === 'Color' ? [value] : null,
|
|
})),
|
|
...rest,
|
|
}
|
|
}
|
|
|
|
const normalizeProductImages = ({ edges }: ImageConnection) =>
|
|
edges?.map(({ node: { originalSrc: url, ...rest } }) => ({
|
|
url,
|
|
...rest,
|
|
}))
|
|
|
|
const normalizeProductVariants = ({ edges }: ProductVariantConnection) => {
|
|
return edges?.map(({ node: { id, selectedOptions } }) => ({
|
|
id,
|
|
options: selectedOptions.map(({ name, value }: SelectedOption) =>
|
|
normalizeProductOption({
|
|
id,
|
|
name,
|
|
values: [value],
|
|
})
|
|
),
|
|
}))
|
|
}
|
|
|
|
export function normalizeProduct(productNode: ShopifyProduct): any {
|
|
const {
|
|
id,
|
|
title: name,
|
|
vendor,
|
|
images,
|
|
variants,
|
|
description,
|
|
handle,
|
|
priceRange,
|
|
options,
|
|
...rest
|
|
} = productNode
|
|
|
|
const product = {
|
|
id,
|
|
name,
|
|
vendor,
|
|
description,
|
|
path: `/${handle}`,
|
|
slug: handle?.replace(/^\/+|\/+$/g, ''),
|
|
price: money(priceRange?.minVariantPrice),
|
|
images: normalizeProductImages(images),
|
|
variants: variants ? normalizeProductVariants(variants) : [],
|
|
options: options ? options.map((o) => normalizeProductOption(o)) : [],
|
|
...rest,
|
|
}
|
|
|
|
return product
|
|
}
|
|
|
|
export function normalizeCart(checkout: Checkout): Cart {
|
|
return {
|
|
id: checkout.id,
|
|
customerId: '',
|
|
email: '',
|
|
createdAt: checkout.createdAt,
|
|
currency: {
|
|
code: checkout.totalPriceV2?.currencyCode,
|
|
},
|
|
taxesIncluded: checkout.taxesIncluded,
|
|
lineItems: checkout.lineItems?.edges.map(normalizeLineItem),
|
|
lineItemsSubtotalPrice: checkout.subtotalPriceV2?.amount,
|
|
subtotalPrice: checkout.subtotalPriceV2?.amount,
|
|
totalPrice: checkout.totalPriceV2?.amount,
|
|
discounts: [],
|
|
}
|
|
}
|
|
|
|
function normalizeLineItem({
|
|
node: { id, title, variant, quantity },
|
|
}: CheckoutLineItemEdge): LineItem {
|
|
return {
|
|
id,
|
|
variantId: String(variant?.id),
|
|
productId: String(variant?.id),
|
|
name: `${title}`,
|
|
quantity,
|
|
variant: {
|
|
id: String(variant?.id),
|
|
sku: variant?.sku ?? '',
|
|
name: variant?.title!,
|
|
image: {
|
|
url: variant?.image?.originalSrc,
|
|
},
|
|
requiresShipping: variant?.requiresShipping ?? false,
|
|
price: variant?.priceV2?.amount,
|
|
listPrice: variant?.compareAtPriceV2?.amount,
|
|
},
|
|
path: '',
|
|
discounts: [],
|
|
options: [
|
|
{
|
|
value: variant?.title,
|
|
},
|
|
],
|
|
}
|
|
}
|