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
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

ProductSuggestion.jsx 4.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. import { useState, useEffect } from 'react';
  2. import { Box, Typography, Button } from '@mui/material';
  3. import { useSelector } from 'react-redux';
  4. import Grid from '@mui/material/Grid2';
  5. import { useNavigate } from "react-router-dom";
  6. const ProductSuggestion = () => {
  7. const [suggestProducts, setSuggestProducts] = useState([]);
  8. const products = useSelector((state) => state.products.products.data);
  9. const navigate = useNavigate();
  10. useEffect(() => {
  11. if (products.length > 0) {
  12. const getRandomProducts = (arr, num) => {
  13. const shuffled = [...arr].sort(() => 0.5 - Math.random());
  14. return shuffled.slice(0, num);
  15. };
  16. const randomProducts = getRandomProducts(products, 4); // Select 4 random elements
  17. setSuggestProducts(randomProducts);
  18. }
  19. }, [products]);
  20. const renderProduct = (
  21. handle,
  22. img_url,
  23. title,
  24. collection_name,
  25. minPrice,
  26. minPriceCurrency,
  27. maxPrice,
  28. maxPriceCurrency,
  29. extra_desc,
  30. selected = false
  31. ) => {
  32. return (
  33. <Grid
  34. className="animate__animated animate__fadeIn"
  35. item
  36. size={{ xs: 6, sm: 6, md: 3 }}
  37. >
  38. <Box
  39. sx={{
  40. overflow: "hidden",
  41. position: "relative",
  42. cursor: "pointer",
  43. }}
  44. onClick={() => {
  45. navigate(`/products/${handle}`)
  46. }}
  47. >
  48. <img
  49. src={img_url}
  50. alt={title}
  51. style={{
  52. width: "100%",
  53. aspectRatio: "3 / 4",
  54. objectFit: "cover",
  55. objectPosition: "top center",
  56. }}
  57. />
  58. {selected && (
  59. <Button
  60. sx={{
  61. position: "absolute",
  62. top: {
  63. xs: 0,
  64. sm: 0,
  65. md: 10,
  66. lg: 20,
  67. },
  68. left: {
  69. xs: 0,
  70. sm: 0,
  71. md: 10,
  72. lg: 20,
  73. },
  74. boxShadow: 0,
  75. fontSize: 10,
  76. }}
  77. variant="contained"
  78. >
  79. NEW
  80. </Button>
  81. )}
  82. <Box sx={{ pb: 3, pt: 1, width: "90%" }}>
  83. <Typography
  84. variant="body2"
  85. sx={{
  86. fontWeight: "100",
  87. fontSize: {
  88. xs: "0.65rem",
  89. sm: "0.65rem",
  90. md: "0.75rem",
  91. },
  92. }}
  93. >
  94. {collection_name}
  95. </Typography>
  96. <Typography
  97. variant="body2"
  98. sx={{
  99. fontWeight: "400",
  100. fontSize: {
  101. xs: "0.73rem",
  102. sm: "0.73rem",
  103. md: "0.875rem",
  104. },
  105. }}
  106. >
  107. {title}
  108. </Typography>
  109. <Typography
  110. variant="body2"
  111. sx={{
  112. fontWeight: "100",
  113. fontSize: {
  114. xs: "0.73rem",
  115. sm: "0.73rem",
  116. md: "0.875rem",
  117. },
  118. }}
  119. >
  120. {`${minPriceCurrency} ${parseFloat(minPrice).toFixed(2)}`}
  121. </Typography>
  122. </Box>
  123. </Box>
  124. </Grid>
  125. );
  126. };
  127. return (
  128. <Box sx={{ mb: 5 }}>
  129. <Grid container spacing={1} columns={12}>
  130. {suggestProducts.map((product, index) => {
  131. let {
  132. handle,
  133. title,
  134. images,
  135. collections,
  136. minVariantPrice,
  137. maxVariantPrice,
  138. productType,
  139. variants,
  140. selected,
  141. } = product;
  142. let minPrice = minVariantPrice.amount;
  143. let minPriceCurrency = minVariantPrice.currencyCode;
  144. let maxPrice = maxVariantPrice.amount;
  145. let maxPriceCurrency = maxVariantPrice.currencyCode;
  146. let img_url = images[0]?.url;
  147. let collection_name = collections[0]?.title;
  148. return renderProduct(
  149. handle,
  150. img_url,
  151. title,
  152. collection_name,
  153. minPrice,
  154. minPriceCurrency,
  155. maxPrice,
  156. maxPriceCurrency,
  157. "",
  158. selected
  159. );
  160. })}
  161. </Grid>
  162. </Box>
  163. );
  164. };
  165. export default ProductSuggestion;