import style from './cart.module.css'; import React, { useEffect, useMemo, useRef, useState } from 'react'; import Link from 'next/link'; import { Button, Checkbox, Spinner, Tooltip } from '@chakra-ui/react'; import { toast } from 'react-hot-toast'; import { useRouter } from 'next/router'; import { getAuth } from '~/libs/auth'; import { useCartStore } from '~/modules/cart/stores/useCartStore'; import CartItemModule from '~/modules/cart/components/Item'; import CartSummary from '~/modules/cart/components/Summary'; import clsxm from '~/libs/clsxm'; import useDevice from '@/core/hooks/useDevice'; import CartSummaryMobile from '~/modules/cart/components/CartSummaryMobile'; import Image from '~/components/ui/image'; import { CartItem } from '~/types/cart' import { deleteUserCart ,upsertUserCart } from '~/services/cart' import { Trash2Icon } from 'lucide-react'; import { useProductCartContext } from '@/contexts/ProductCartContext' const CartPage = () => { const router = useRouter(); const auth = getAuth(); const [isStepApproval, setIsStepApproval] = useState(false); const [isSelectedAll, setIsSelectedAll] = useState(false); const [isButtonChek, setIsButtonChek] = useState(false); const [buttonSelectNow, setButtonSelectNow] = useState(true); const [isLoad, setIsLoad] = useState(false) const [isLoadDelete, setIsLoadDelete] = useState(false) const { loadCart, cart, summary, updateCartItem } = useCartStore(); const useDivvice = useDevice(); const { setRefreshCart } = useProductCartContext() const [isTop, setIsTop] = useState(true); const [hasChanged, setHasChanged] = useState(false); const prevCartRef = useRef(null); useEffect(() => { const handleScroll = () => { setIsTop(window.scrollY < 200); }; window.addEventListener('scroll', handleScroll); return () => { window.removeEventListener('scroll', handleScroll); }; }, []); useEffect(() => { if (typeof auth === 'object' && !cart) { loadCart(auth.id); setIsStepApproval(auth?.feature?.soApproval); } }, [auth, loadCart, cart, isButtonChek]); useEffect(() => { if (typeof auth === 'object' && !cart) { loadCart(auth.id); setIsStepApproval(auth?.feature?.soApproval); } }, [auth, loadCart, cart, isButtonChek]); useEffect(() => { const hasSelectedChanged = () => { if (prevCartRef.current && cart) { const prevCart = prevCartRef.current; return cart.products.some((item, index) => prevCart[index] && prevCart[index].selected !== item.selected ); } return false; }; if (hasSelectedChanged()) { setHasChanged(true) // Perform necessary actions here if selection has changed }else{ setHasChanged(false) } prevCartRef.current = cart ? [...cart.products] : null; }, [cart]); const hasSelectedPromo = useMemo(() => { if (!cart) return false; return cart.products.some(item => item.cart_type === 'promotion' && item.selected); }, [cart]); const hasSelected = useMemo(() => { if (!cart) return false; return cart.products.some(item => item.selected); }, [cart]); const hasSelectNoPrice = useMemo(() => { if (!cart) return false; return cart.products.some(item => item.selected && item.price.price_discount === 0); }, [cart]); const hasSelectedAll = useMemo(() => { if (!cart || !Array.isArray(cart.products)) return false; return cart.products.every(item => item.selected); }, [cart]); useEffect(() => { const updateCartItems = async () => { if (typeof auth === 'object' && cart) { const upsertPromises = cart.products.map(item => upsertUserCart({ userId: auth.id, type: item.cart_type, id: item.id, qty: item.quantity, selected: item.selected }) ); try { await Promise.all(upsertPromises); await loadCart(auth.id); } catch (error) { console.error('Failed to update cart items:', error); } } }; updateCartItems(); }, [hasChanged]); const handleCheckout = () => { router.push('/shop/checkout'); } const handleQuotation = () => { if (hasSelectedPromo || !hasSelected) { toast.error('Maaf, Barang promo tidak dapat dibuat quotation'); } else { router.push('/shop/quotation'); } } const handleChange = async (e: React.ChangeEvent) => { if (cart) { const updatedCart = { ...cart, products: cart.products.map(item => ({ ...item, selected: !hasSelectedAll })) }; updateCartItem(updatedCart); if(hasSelectedAll){ setIsSelectedAll(false); }else{ setIsSelectedAll(true); } } }; const handleDelete = async () => { if (typeof auth !== 'object' || !cart) return; setIsLoadDelete(true) for (const item of cart.products) { if(item.selected === true){ await deleteUserCart(auth.id, [item.cart_id]) await loadCart(auth.id) } } setIsLoadDelete(false) setRefreshCart(true) } return ( <>
Keranjang Belanja
{isLoad && ( )} {!isLoad && ( )}

{hasSelectedAll ? "Uncheck all" : "Select all"}

{!cart && }
{cart?.products.map((item) => ( ))} {cart?.products?.length === 0 && (
Empty Cart
Keranjangnya masih kosong nih
Yuk, tambahin barang-barang yang kamu mau ke keranjang sekarang!
Ada banyak potongan belanjanya pakai kode voucher
Mulai Belanja
)}
{useDivvice.isMobile && ( )} {!useDivvice.isMobile && ( )}
{!isStepApproval && ( )}
); }; export default CartPage;