123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151 |
- import { createStorefrontApiClient } from '@shopify/storefront-api-client';
- import { REACT_APP_ACCESS_TOKEN, REACT_APP_SHOP_NAME } from '../utils/httpCommon'
- import { formatProductData } from '../utils/helpers'
-
- const client = createStorefrontApiClient({
- storeDomain: `https://${REACT_APP_SHOP_NAME}/api/2024-10/graphql.json`,
- apiVersion: '2024-10',
- publicAccessToken: REACT_APP_ACCESS_TOKEN,
- });
-
- const getProducts = async (maxResults = 2) => {
-
- let hasNextCursor = true
- let products = [];
- let cursor = ``
-
- while (hasNextCursor) {
-
- const query = `{
- products(first: ${2}, ${cursor}, sortKey: CREATED_AT) {
- nodes {
- id
- title
- createdAt
- productType
- tags
- priceRange {
- minVariantPrice {
- amount
- currencyCode
- }
- maxVariantPrice {
- amount
- currencyCode
- }
- }
- images(first: 4) {
- nodes {
- url
- }
- }
- collections(first: 10) {
- nodes {
- title
- image {
- url
- }
- }
- }
- variants(first: 200) {
- nodes {
- id
- title
- price {
- amount
- currencyCode
- }
- }
- }
- metafield(key: "selected", namespace: "custom") {
- key
- value
- }
- }
- pageInfo {
- hasNextPage
- hasPreviousPage
- endCursor
- startCursor
- }
- }
- }`
-
- const { data, errors, extensions } = await client.request(query, {
- variables: {},
- });
-
- let { pageInfo, nodes } = data?.products
-
- products = [...products, ...nodes]
-
- if(pageInfo?.hasNextPage) {
- cursor = `after:"${pageInfo?.endCursor}"`
- }else{
- cursor = ``
- hasNextCursor = false
- }
-
- }
-
- products = products.map((product) => formatProductData(product))
-
- return products
-
- }
-
- const getProduct = async (id = "") => {
-
- const query = `{
- product(id: "gid://shopify/Product/${id}") {
- id
- title
- productType
- priceRange {
- minVariantPrice {
- amount
- currencyCode
- }
- maxVariantPrice {
- amount
- currencyCode
- }
- }
- images(first: 4) {
- nodes {
- url
- }
- }
- collections(first: 55) {
- nodes {
- title
- }
- }
- variants(first: 200) {
- nodes {
- id
- title
- price {
- amount
- currencyCode
- }
- }
- }
- }
- }`
-
- const { data, errors, extensions } = await client.request(query, {
- variables: {
- },
- });
-
- return formatProductData(data.product)
-
- }
-
- const ProductService = {
- getProducts,
- getProduct
- }
-
- export default ProductService
|