import { useState, useEffect } from "react"; import { useSelector } from "react-redux"; import { Box, Typography, IconButton, Dialog, DialogContent, } from "@mui/material"; import Grid from '@mui/material/Grid2'; import CloseIcon from "@mui/icons-material/Close"; import ZoomInIcon from '@mui/icons-material/ZoomIn'; import ZoomOutIcon from '@mui/icons-material/ZoomOut'; import defaultImage from "../../assets/images/default.png"; import { Carousel } from 'react-responsive-carousel'; // Utility function to check if an object is empty const isEmptyObject = (obj) => Object.keys(obj).length === 0 && obj.constructor === Object; const ImageView = () => { const product = useSelector((state) => state.products.product.data) const [previewImage, setPreviewImage] = useState(""); const [isZoomed, setIsZoomed] = useState(false); const [zoomSize, setZoomSize] = useState(100) const [currentIndex, setCurrentIndex] = useState(0); useEffect(() => { if (!isEmptyObject(product)) { setPreviewImage(product?.images[0]?.url) } }, [product]) const handleThumbnailClick = (image) => { setPreviewImage(image); }; const handleZoomToggle = () => { setIsZoomed(!isZoomed); }; const handleSlideChange = (index) => { setPreviewImage(product?.images[index]?.url) }; const onZoomIn = () => { if (zoomSize > 310) return setZoomSize(zoomSize + 20) } const onZoomOut = () => { if (zoomSize < 40) return setZoomSize(zoomSize - 20) } return ( {/* Image Preview Section */} { handleZoomToggle() setZoomSize(100) }} onChange={(index) => handleSlideChange(index)} selectedItem={currentIndex}> {product?.images?.map(({ src, url }, index) => ( ))} {/* Image Control Section */} {product?.images?.map(({ src, url }, index) => ( { handleThumbnailClick(url) setCurrentIndex(index) }} sx={{ p: 0.4, borderRadius: 1, backgroundColor: (previewImage == url) ? "#95AAC5" : "none" }} > {`img_${index ))} {/* Zoom Dialog */} {/* Fixed position close button */} {/* Scrollable content */} Zoomed Preview ); }; export default ImageView;