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.

ProductSelected.jsx 4.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  1. import { useEffect, useState, useRef } from 'react';
  2. import { Box, Typography, Button, useMediaQuery } from '@mui/material';
  3. import Grid from '@mui/material/Grid2';
  4. import { useSelector, useDispatch } from 'react-redux';
  5. import { fetchProducts } from '../../redux/slices/productSlice';
  6. import { Swiper, SwiperSlide } from 'swiper/react';
  7. import { Scrollbar, A11y } from 'swiper/modules';
  8. import ChevronLeftIcon from '@mui/icons-material/ChevronLeft';
  9. import KeyboardArrowRightIcon from '@mui/icons-material/KeyboardArrowRight';
  10. const ProductSelected = () => {
  11. const swiperRef = useRef(null); // Create a ref for the Swiper instance
  12. const products = useSelector((state) => state.products.products.data)
  13. const [filterProducts, setFilterProducts] = useState([])
  14. useEffect(() => {
  15. if (products.length > 0) {
  16. let selectedProducts = products.filter(({ selected }) => selected) || []
  17. //sort
  18. selectedProducts = selectedProducts.sort((a, b) => new Date(b.createdAt) - new Date(a.createdAt));
  19. setFilterProducts(selectedProducts)
  20. }
  21. }, [products])
  22. const swipeToLeft = () => {
  23. if (swiperRef.current) {
  24. swiperRef.current.slidePrev(); // Move to the previous slide
  25. }
  26. };
  27. const swipeToRight = () => {
  28. if (swiperRef.current) {
  29. swiperRef.current.slideNext(); // Move to the previous slide
  30. }
  31. };
  32. const renderProduct = (handle, img_url, title, collection_name, minPrice, minPriceCurrency, maxPrice, maxPriceCurrency, extra_desc) => {
  33. return (
  34. <Grid item size={{ xs: 6, sm: 6, md: 3 }}>
  35. <a
  36. href={`/products/${handle}`}
  37. style={{
  38. color: 'black',
  39. textDecoration: 'none'
  40. }}>
  41. <Box
  42. sx={{
  43. overflow: 'hidden',
  44. position: 'relative',
  45. cursor: 'pointer',
  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. <Button sx={{ position: "absolute", top: 20, left: 20, boxShadow: 0 }} variant="contained">
  59. NEW
  60. </Button>
  61. <Box sx={{ pb: 5, pt: 3 }}>
  62. <Typography variant="body1" sx={{ fontWeight: "400", mb: 1 }}>
  63. {collection_name}
  64. </Typography>
  65. <Typography variant="h6" sx={{ fontWeight: "bolder", mb: 1 }}>
  66. {title}
  67. </Typography>
  68. <Typography variant="body1" sx={{ fontWeight: "400" }}>
  69. {`${minPriceCurrency} ${parseFloat(minPrice).toFixed(2)}`}
  70. </Typography>
  71. <Typography variant="body1" sx={{ mt: 2 }}>
  72. {extra_desc}
  73. </Typography>
  74. </Box>
  75. </Box>
  76. </a>
  77. </Grid>
  78. )
  79. }
  80. return (
  81. <Box sx={{
  82. mb: 5,
  83. }}>
  84. {/* OFFSET PURPOSE */}
  85. <Grid size={{ xs: 12, md: 4 }} sx={{ mx: "auto", display: "flex", alignItems: "center", justifyContent: "center", my: 4 }}>
  86. <ChevronLeftIcon
  87. style={{
  88. cursor: "pointer",
  89. color: "#B7B7B7"
  90. }}
  91. onClick={swipeToLeft}
  92. />
  93. <Typography variant="h4" sx={{ mx: 2 }}>
  94. NEW IN
  95. </Typography>
  96. <KeyboardArrowRightIcon
  97. style={{
  98. cursor: "pointer",
  99. color: "#B7B7B7"
  100. }}
  101. onClick={swipeToRight}
  102. />
  103. </Grid>
  104. <Swiper
  105. modules={[Scrollbar, A11y]}
  106. spaceBetween={20}
  107. breakpoints={{
  108. 0: { slidesPerView: 2 }, // For very small screens
  109. 640: { slidesPerView: 2 }, // For screens >= 640px
  110. 1024: { slidesPerView: 4 }, // For screens >= 1024px
  111. }}
  112. pagination={{ clickable: true }}
  113. scrollbar={{ draggable: true }}
  114. onSwiper={(swiper) => (swiperRef.current = swiper)}
  115. >
  116. {filterProducts.map((product, index) => {
  117. let { handle, title, images, collections, minVariantPrice, maxVariantPrice, productType, variants } = product
  118. let minPrice = minVariantPrice.amount
  119. let minPriceCurrency = minVariantPrice.currencyCode
  120. let maxPrice = maxVariantPrice.amount
  121. let maxPriceCurrency = maxVariantPrice.currencyCode
  122. let img_url = images[0]?.url
  123. let collection_name = collections[0]?.title
  124. return (
  125. <SwiperSlide>
  126. {renderProduct(handle, img_url, title, collection_name, minPrice, minPriceCurrency, maxPrice, maxPriceCurrency, "")}
  127. </SwiperSlide>
  128. )
  129. })}
  130. </Swiper>
  131. </Box>
  132. );
  133. };
  134. export default ProductSelected;