Amber Shopify Project created using ReactJS+React-Redux with GraphQL API integration. Storefront Shopify API: https://github.com/Shopify/shopify-app-js/tree/main/packages/api-clients/storefront-api-client#readme
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

helpers.js 1.0KB

12345678910111213141516171819202122
  1. // Cause I want to have a properly standardize product data cause I hate those "nodes" thinggy
  2. // and to prevent render error in case some data doesn't exist, I want a default value
  3. export const formatProductData = (product) => {
  4. if(!product) return
  5. return {
  6. id: product?.id || null,
  7. title: product?.title || "",
  8. createdAt: product?.createdAt,
  9. collections: product?.collections?.nodes || [],
  10. tags:product?.tags || [],
  11. images: product?.images?.nodes || [],
  12. selected: (product?.metafield?.key == "selected") ? product?.metafield?.value == "true" : false, // cause I want to have a true false value, somehow BE return text value "true", thus == used to convert it to proper boolean value
  13. minVariantPrice: product?.priceRange?.minVariantPrice || {amount:0 , currencyCode:''},
  14. maxVariantPrice: product?.priceRange?.maxVariantPrice || {amount:0 , currencyCode:''},
  15. productType: product?.productType || null,
  16. variants: product?.variants?.nodes || []
  17. }
  18. }