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.

ProductService.js 2.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. import { createStorefrontApiClient } from '@shopify/storefront-api-client';
  2. import { REACT_APP_ACCESS_TOKEN, REACT_APP_SHOP_NAME } from '../utils/httpCommon'
  3. import { formatProductData } from '../utils/helpers'
  4. const client = createStorefrontApiClient({
  5. storeDomain: `https://${REACT_APP_SHOP_NAME}/api/2024-10/graphql.json`,
  6. apiVersion: '2024-10',
  7. publicAccessToken: REACT_APP_ACCESS_TOKEN,
  8. });
  9. const getProducts = async (maxResults = 2) => {
  10. let hasNextCursor = true
  11. let products = [];
  12. let cursor = ``
  13. while (hasNextCursor) {
  14. const query = `{
  15. products(first: ${2}, ${cursor}, sortKey: CREATED_AT) {
  16. nodes {
  17. id
  18. title
  19. createdAt
  20. productType
  21. tags
  22. priceRange {
  23. minVariantPrice {
  24. amount
  25. currencyCode
  26. }
  27. maxVariantPrice {
  28. amount
  29. currencyCode
  30. }
  31. }
  32. images(first: 4) {
  33. nodes {
  34. url
  35. }
  36. }
  37. collections(first: 10) {
  38. nodes {
  39. title
  40. image {
  41. url
  42. }
  43. }
  44. }
  45. variants(first: 200) {
  46. nodes {
  47. id
  48. title
  49. price {
  50. amount
  51. currencyCode
  52. }
  53. }
  54. }
  55. metafield(key: "selected", namespace: "custom") {
  56. key
  57. value
  58. }
  59. }
  60. pageInfo {
  61. hasNextPage
  62. hasPreviousPage
  63. endCursor
  64. startCursor
  65. }
  66. }
  67. }`
  68. const { data, errors, extensions } = await client.request(query, {
  69. variables: {},
  70. });
  71. let { pageInfo, nodes } = data?.products
  72. products = [...products, ...nodes]
  73. if(pageInfo?.hasNextPage) {
  74. cursor = `after:"${pageInfo?.endCursor}"`
  75. }else{
  76. cursor = ``
  77. hasNextCursor = false
  78. }
  79. }
  80. products = products.map((product) => formatProductData(product))
  81. return products
  82. }
  83. const getProduct = async (id = "") => {
  84. const query = `{
  85. product(id: "gid://shopify/Product/${id}") {
  86. id
  87. title
  88. productType
  89. priceRange {
  90. minVariantPrice {
  91. amount
  92. currencyCode
  93. }
  94. maxVariantPrice {
  95. amount
  96. currencyCode
  97. }
  98. }
  99. images(first: 4) {
  100. nodes {
  101. url
  102. }
  103. }
  104. collections(first: 55) {
  105. nodes {
  106. title
  107. }
  108. }
  109. variants(first: 200) {
  110. nodes {
  111. id
  112. title
  113. price {
  114. amount
  115. currencyCode
  116. }
  117. }
  118. }
  119. }
  120. }`
  121. const { data, errors, extensions } = await client.request(query, {
  122. variables: {
  123. },
  124. });
  125. return formatProductData(data.product)
  126. }
  127. const ProductService = {
  128. getProducts,
  129. getProduct
  130. }
  131. export default ProductService