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.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  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. setFilterProducts(products.filter(({ selected }) => selected))
  17. }
  18. }, [products])
  19. const swipeToLeft = () => {
  20. if (swiperRef.current) {
  21. swiperRef.current.slidePrev(); // Move to the previous slide
  22. }
  23. };
  24. const swipeToRight = () => {
  25. if (swiperRef.current) {
  26. swiperRef.current.slideNext(); // Move to the previous slide
  27. }
  28. };
  29. const renderProduct = (id, img_url, title, collection_name, minPrice, minPriceCurrency, maxPrice, maxPriceCurrency, extra_desc) => {
  30. return (
  31. <Grid item size={{ xs: 6, sm: 6, md: 3 }}>
  32. <Box
  33. onClick={() => { window.location.href = `/products/${id}` }}
  34. sx={{
  35. overflow: 'hidden',
  36. position: 'relative',
  37. cursor: 'pointer'
  38. }}
  39. >
  40. <img
  41. src={img_url}
  42. alt={title}
  43. style={{
  44. width: '100%',
  45. aspectRatio: '3 / 4',
  46. objectFit: 'cover',
  47. objectPosition: 'top center'
  48. }}
  49. />
  50. {/* <Button sx={{ position: "absolute", top: 20, left: 20, boxShadow: 0 }} variant="contained">
  51. NEW
  52. </Button> */}
  53. <Box sx={{ pb: 5, pt: 3 }}>
  54. <Typography variant="body1" sx={{ fontWeight: "400", mb: 1 }}>
  55. {collection_name}
  56. </Typography>
  57. <Typography variant="h5" sx={{ fontWeight: "bolder", mb: 1 }}>
  58. {title}
  59. </Typography>
  60. <Typography variant="body1" sx={{ fontWeight: "400" }}>
  61. {`${minPriceCurrency} ${parseFloat(minPrice).toFixed(2)}`}
  62. </Typography>
  63. <Typography variant="body1" sx={{ mt: 2 }}>
  64. {extra_desc}
  65. </Typography>
  66. </Box>
  67. </Box>
  68. </Grid>
  69. )
  70. }
  71. return (
  72. <Box sx={{
  73. mb: 5,
  74. }}>
  75. {/* OFFSET PURPOSE */}
  76. <Grid size={{ xs: 12, md: 4 }} sx={{ mx: "auto", display: "flex", alignItems: "center", justifyContent: "center", my: 4 }}>
  77. <ChevronLeftIcon
  78. style={{
  79. cursor:"pointer",
  80. color:"#B7B7B7"
  81. }}
  82. onClick={swipeToLeft}
  83. />
  84. <Typography variant="h4" sx={{mx:2}}>
  85. NEW IN
  86. </Typography>
  87. <KeyboardArrowRightIcon
  88. style={{
  89. cursor:"pointer",
  90. color:"#B7B7B7"
  91. }}
  92. onClick={swipeToRight}
  93. />
  94. </Grid>
  95. <Swiper
  96. modules={[Scrollbar, A11y]}
  97. spaceBetween={20}
  98. breakpoints={{
  99. 0: { slidesPerView: 2 }, // For very small screens
  100. 640: { slidesPerView: 2 }, // For screens >= 640px
  101. 1024: { slidesPerView: 4 }, // For screens >= 1024px
  102. }}
  103. pagination={{ clickable: true }}
  104. scrollbar={{ draggable: true }}
  105. onSwiper={(swiper) => (swiperRef.current = swiper)}
  106. >
  107. {filterProducts.map((product, index) => {
  108. let { id, title, images, collections, minVariantPrice, maxVariantPrice, productType, variants } = product
  109. let minPrice = minVariantPrice.amount
  110. let minPriceCurrency = minVariantPrice.currencyCode
  111. let maxPrice = maxVariantPrice.amount
  112. let maxPriceCurrency = maxVariantPrice.currencyCode
  113. let img_url = images[0]?.url
  114. let collection_name = collections[0]?.title
  115. // ID
  116. const parts = id.split('/');
  117. let prodID = parts[parts.length - 1];
  118. return (
  119. <SwiperSlide>
  120. {renderProduct(prodID, img_url, title, collection_name, minPrice, minPriceCurrency, maxPrice, maxPriceCurrency, "")}
  121. </SwiperSlide>
  122. )
  123. })}
  124. </Swiper>
  125. </Box>
  126. );
  127. };
  128. export default ProductSelected;