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.

ProductList.jsx 2.5KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. import React, { useEffect } from 'react';
  2. import { Box, Typography, Button } from '@mui/material';
  3. import Grid from '@mui/material/Grid2';
  4. //REDUX
  5. import { useSelector, useDispatch } from 'react-redux';
  6. import { fetchProducts } from '../../redux/slices/productSlice';
  7. const ProductList = ({ size = 99999 }) => {
  8. const products = useSelector((state) => state.products.products.data)
  9. const dispatch = useDispatch();
  10. useEffect(() => {
  11. dispatch(fetchProducts())
  12. }, [])
  13. useEffect(() => {
  14. if(products) console.log(products)
  15. }, [products])
  16. const renderProduct = (id, img_url, title, collection, price, currency, extra_desc) => {
  17. return (
  18. <Grid item size={{ xs: 6, sm: 6, md: 3 }}>
  19. <Box
  20. onClick={() => { window.location.href = `/products/${id}` }}
  21. sx={{
  22. overflow: 'hidden',
  23. position: 'relative',
  24. cursor: 'pointer'
  25. }}
  26. >
  27. <img
  28. src={img_url}
  29. alt={title}
  30. style={{
  31. width: '100%',
  32. aspectRatio: '3 / 4',
  33. objectFit: 'cover',
  34. }}
  35. />
  36. {/* <Button sx={{ position: "absolute", top: 20, left: 20, boxShadow: 0 }} variant="contained">
  37. NEW
  38. </Button> */}
  39. <Box sx={{ py: 5 }}>
  40. <Typography variant="body2" >
  41. {collection}
  42. </Typography>
  43. <Typography variant="h5" sx={{ fontWeight: "bolder" }}>
  44. {title}
  45. </Typography>
  46. <Typography variant="body" >
  47. {`${currency} ${price}`}
  48. </Typography>
  49. <Typography variant="body2" sx={{ mt: 2 }}>
  50. {extra_desc}
  51. </Typography>
  52. </Box>
  53. </Box>
  54. </Grid>
  55. )
  56. }
  57. return (
  58. <Box sx={{ mb: 5 }}>
  59. <Grid container spacing={1} columns={12}>
  60. {products.map((product, index) => {
  61. let {id, title, compareAtPriceRange, images, collections} = product
  62. let price = compareAtPriceRange.maxVariantPrice.amount
  63. let currency = compareAtPriceRange.maxVariantPrice.currencyCode
  64. let img_url = images.nodes[0].url
  65. let collection_name = collections.nodes[0]?.title
  66. // ID
  67. const parts = id.split('/');
  68. let prodID = parts[parts.length - 1];
  69. if (index < size) {
  70. return renderProduct(prodID, img_url, title, collection_name, price, currency, "" )
  71. }
  72. })}
  73. </Grid>
  74. </Box>
  75. );
  76. };
  77. export default ProductList;