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.

CartService.js 4.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225
  1. import { createStorefrontApiClient } from '@shopify/storefront-api-client';
  2. import { REACT_APP_ACCESS_TOKEN, REACT_APP_SHOP_NAME } from '../utils/httpCommon';
  3. const client = createStorefrontApiClient({
  4. storeDomain: `https://${REACT_APP_SHOP_NAME}/api/2024-10/graphql.json`,
  5. apiVersion: '2024-10',
  6. publicAccessToken: REACT_APP_ACCESS_TOKEN,
  7. });
  8. // Create a cart
  9. const createCart = async () => {
  10. const query = `
  11. mutation CreateCart {
  12. cartCreate {
  13. cart {
  14. id
  15. createdAt
  16. updatedAt
  17. }
  18. }
  19. }
  20. `;
  21. const { data } = await client.request(query);
  22. return data.cartCreate.cart;
  23. };
  24. // Add a line item to the cart
  25. const addItemToCart = async (cartId, lines) => {
  26. const query = `
  27. mutation($cartId: ID!, $lines: [CartLineInput!]!) {
  28. cartLinesAdd(cartId: $cartId, lines: $lines) {
  29. cart {
  30. id
  31. createdAt
  32. updatedAt
  33. cost {
  34. totalAmount {
  35. amount
  36. currencyCode
  37. }
  38. subtotalAmount {
  39. amount
  40. currencyCode
  41. }
  42. totalTaxAmount {
  43. amount
  44. currencyCode
  45. }
  46. }
  47. lines(first: 10) {
  48. nodes {
  49. id
  50. merchandise {
  51. ... on ProductVariant {
  52. id
  53. title
  54. selectedOptions {
  55. name
  56. value
  57. }
  58. image {
  59. src
  60. }
  61. product {
  62. title
  63. collections(first: 5) {
  64. nodes {
  65. title
  66. }
  67. }
  68. }
  69. }
  70. }
  71. quantity
  72. cost {
  73. totalAmount {
  74. amount
  75. currencyCode
  76. }
  77. }
  78. }
  79. }
  80. }
  81. }
  82. }
  83. `;
  84. const variables = { cartId, lines };
  85. const {data, errors, extensions} = await client.request(query,{
  86. variables: {
  87. cartId,
  88. lines
  89. }
  90. });
  91. return data.cartLinesAdd.cart;
  92. };
  93. // Get cart details
  94. const getCart = async (cartId) => {
  95. const query = `
  96. {
  97. cart(id: "${cartId}") {
  98. id
  99. createdAt
  100. updatedAt
  101. cost {
  102. totalAmount {
  103. amount
  104. currencyCode
  105. }
  106. subtotalAmount {
  107. amount
  108. currencyCode
  109. }
  110. totalTaxAmount {
  111. amount
  112. currencyCode
  113. }
  114. }
  115. lines(first: 10) {
  116. nodes {
  117. id
  118. merchandise {
  119. ... on ProductVariant {
  120. id
  121. title
  122. selectedOptions {
  123. name
  124. value
  125. }
  126. image {
  127. src
  128. }
  129. product {
  130. title
  131. collections(first: 5) {
  132. nodes {
  133. title
  134. }
  135. }
  136. }
  137. }
  138. }
  139. quantity
  140. cost {
  141. totalAmount {
  142. amount
  143. currencyCode
  144. }
  145. }
  146. }
  147. }
  148. }
  149. }
  150. `;
  151. const { data } = await client.request(query);
  152. return data.cart;
  153. };
  154. // Update a line item's quantity
  155. const updateItemQuantity = async (cartId, lineId, quantity) => {
  156. const query = `
  157. mutation UpdateItemQuantity($cartId: ID!, $lines: [CartLineUpdateInput!]!) {
  158. cartLinesUpdate(cartId: $cartId, lines: $lines) {
  159. cart {
  160. id
  161. lines(first: 10) {
  162. edges {
  163. node {
  164. id
  165. quantity
  166. merchandise {
  167. ... on ProductVariant {
  168. id
  169. }
  170. }
  171. }
  172. }
  173. }
  174. }
  175. userErrors {
  176. field
  177. message
  178. }
  179. }
  180. }
  181. `;
  182. const variables = {
  183. cartId,
  184. lines: [{ id: lineId, quantity }],
  185. };
  186. const { data } = await client.request(query, variables);
  187. return data.cartLinesUpdate.cart;
  188. };
  189. // Generate checkout URL
  190. const getCheckoutUrl = async (cartId) => {
  191. const query = `
  192. query CheckoutURL($cartId: ID!) {
  193. cart(id: $cartId) {
  194. checkoutUrl
  195. }
  196. }
  197. `;
  198. const variables = { cartId };
  199. const { data } = await client.request(query, variables);
  200. return data.cart.checkoutUrl;
  201. };
  202. // Export services
  203. const CartService = {
  204. createCart,
  205. addItemToCart,
  206. getCart,
  207. updateItemQuantity,
  208. getCheckoutUrl,
  209. };
  210. export default CartService;