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.

Product.jsx 3.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. import React, { useEffect } from 'react'
  2. import { Box, Typography } from '@mui/material';
  3. import { useParams } from 'react-router-dom';
  4. import { useSelector, useDispatch } from 'react-redux';
  5. import Grid from '@mui/material/Grid2';
  6. import logoSrc from "../../assets/svg/logo.svg";
  7. import ImageView from '../../components/ImageView/ImageView';
  8. import ProductDetails from '../../components/ProductDetails';
  9. import ProductSuggestion from '../../components/ProductSuggestion';
  10. import ProductHistoryList from '../../components/ProductHistoryList';
  11. import SocialMedia from '../../components/SocialMedia'
  12. import Feature from '../../components/Feature'
  13. import { fetchProduct } from '../../redux/slices/productSlice';
  14. const Product = () => {
  15. let { pid } = useParams();
  16. const product = useSelector((state) => state.products.product.data)
  17. const dispatch = useDispatch();
  18. useEffect(() => {
  19. dispatch(fetchProduct(pid))
  20. if(localStorage.getItem('amber-product-history')){
  21. let productHistory = JSON.parse(localStorage.getItem('amber-product-history'))
  22. if(productHistory.includes(pid)) return
  23. productHistory = [pid, ...productHistory]
  24. productHistory = productHistory.slice(0, 6)
  25. productHistory = JSON.stringify(productHistory)
  26. localStorage.setItem('amber-product-history', productHistory)
  27. } else {
  28. let productHistory = [pid]
  29. productHistory = JSON.stringify(productHistory)
  30. localStorage.setItem('amber-product-history', productHistory)
  31. }
  32. }, [])
  33. return (
  34. <Box sx={{
  35. px: {
  36. xs: 2,
  37. md: 12,
  38. lg: 20
  39. },
  40. mb: {
  41. xs: 0,
  42. md: 5,
  43. lg: 10
  44. }
  45. }}>
  46. <Grid container spacing={0} sx={{ mt: 15, mb:5 }}>
  47. <Grid size={12} sx={{ backgroundColor: "#000", textAlign:"center", display:{xs:"block", md:"none"} }}>
  48. <img src={logoSrc} alt="Logo"
  49. style={{
  50. width: 150,
  51. height: 50
  52. }} />
  53. </Grid>
  54. <Grid size={{ xs: 12, md: 6 }}>
  55. <Box sx={{ paddingRight: 1 }}>
  56. <Box>
  57. {/* <ImageView /> */}
  58. </Box>
  59. </Box>
  60. </Grid>
  61. <Grid size={{ xs: 12, md: 6 }}>
  62. <Box>
  63. <Box>
  64. <ProductDetails />
  65. </Box>
  66. </Box>
  67. </Grid>
  68. </Grid>
  69. <Box sx={{
  70. width: "100%",
  71. borderTop: "1px solid rgba(0,0,0,0.2)",
  72. py: 4,
  73. textAlign: "center"
  74. }}>
  75. <Typography variant='body1' sx={{ fontWeight: "400", mb: 4 }}>
  76. YOU MAY ALSO LIKE
  77. </Typography>
  78. <ProductSuggestion />
  79. </Box>
  80. <Box sx={{
  81. width: "100%",
  82. borderTop: "1px solid rgba(0,0,0,0.2)",
  83. py: 4,
  84. textAlign: "center"
  85. }}>
  86. <Typography variant='body1' sx={{ fontWeight: "400", mb: 4 }}>
  87. RECENTLY VIEWED
  88. </Typography>
  89. <ProductHistoryList />
  90. </Box>
  91. <SocialMedia />
  92. <Feature />
  93. </Box>
  94. )
  95. }
  96. export default Product