import { useEffect, useState } from "react"; import { Drawer, Box, Typography, IconButton, Button } from "@mui/material"; import Grid from '@mui/material/Grid2'; import CloseIcon from "@mui/icons-material/Close"; import { updateItemQuantity } from "../../redux/slices/cartSlice"; import AddIcon from '@mui/icons-material/Add'; import RemoveIcon from '@mui/icons-material/Remove'; import { useSelector, useDispatch } from 'react-redux'; const SideCart = ({ open, onClose }) => { const dispatch = useDispatch() const cart = useSelector((state) => state.cart.cart) const [cartProducts, setCartProducts] = useState([]) // this is being used as view only, will not used as a way to manipulate cart in any way useEffect(() => { setCartProducts(cart?.lines?.nodes || []) }, [cart]) const handleUpdateCart = ({ quantity, lineId }) => { let cartHistory = localStorage.getItem('amber-cart'); cartHistory = cartHistory ? JSON.parse(cartHistory) : {}; dispatch(updateItemQuantity({ cartId: cartHistory.id, lineId, quantity, })) } return ( {/* Header */} Your Cart {/* Product List */} {cartProducts && cartProducts?.length > 0 ? ( cartProducts.map(({ id, cost, merchandise, quantity }, index) => { let { amount, currencyCode } = cost.totalAmount let { image, product, title } = merchandise // ID const parts = product?.id?.split('/'); let prodID = parts[parts.length - 1]; return ( <> {/* Product Image */} {/* Product Details */} {product?.title} {`VARIANT: ${title}`} {`${currencyCode} ${parseFloat(amount).toFixed(2)}`} { handleUpdateCart({ quantity: quantity - 1, lineId: id }) }}>

{quantity}

{ handleUpdateCart({ quantity: quantity + 1, lineId: id }) }}>
) }) ) : ( Your cart is empty. )}
0) ? "block" : "none" }}> {/* INVOICES */} Subtotal {` ${cart?.cost?.subtotalAmount?.currencyCode} ${parseFloat(cart?.cost?.subtotalAmount?.amount).toFixed(2)} `} Taxes {` ${cart?.cost?.totalTaxAmount?.currencyCode} ${parseFloat(cart?.cost?.totalTaxAmount?.amount).toFixed(2)} `} Total {` ${cart?.cost?.totalAmount?.currencyCode} ${parseFloat(cart?.cost?.totalAmount?.amount).toFixed(2)} `}
); }; export default SideCart;