12345678910111213141516171819202122 |
-
-
-
- export const formatProductData = (product) => {
-
- if(!product) return
-
- return {
- id: product?.id || null,
- title: product?.title || "",
- createdAt: product?.createdAt,
- collections: product?.collections?.nodes || [],
- tags:product?.tags || [],
- images: product?.images?.nodes || [],
- selected: (product?.metafield?.key == "selected") ? product?.metafield?.value == "true" : false,
- minVariantPrice: product?.priceRange?.minVariantPrice || {amount:0 , currencyCode:''},
- maxVariantPrice: product?.priceRange?.maxVariantPrice || {amount:0 , currencyCode:''},
- productType: product?.productType || null,
- variants: product?.variants?.nodes || []
- }
-
- }
|