"use client"; import React, { useEffect } from "react"; import { useRouter } from "next/navigation"; export default function Cart() { const router = useRouter(); const [cartItems, setCartItems] = React.useState([]); const [loading, setLoading] = React.useState(true); const [error, setError] = React.useState(null); const [recommendProducts, setRecommendProducts] = React.useState([]); useEffect(() => { const fetchCartItems = async () => { try { const token = localStorage.getItem("token"); if (!token) { setCartItems([]); setLoading(false); return; } const res = await fetch("/api/cart", { headers: { Authorization: `Bearer ${token}`, }, }); if (!res.ok) { throw new Error("获取购物车失败"); } const data = await res.json(); setCartItems(data); } catch (err) { setError(err.message); } finally { setLoading(false); } }; fetchCartItems(); }, []); useEffect(() => { const fetchRecommendProducts = async () => { try { const res = await fetch("/api/products"); if (!res.ok) { throw new Error("获取推荐商品失败"); } const data = await res.json(); // 随机获取4个商品作为推荐 const shuffled = data.sort(() => 0.5 - Math.random()); setRecommendProducts(shuffled.slice(0, 4)); } catch (err) { console.error("获取推荐商品失败:", err); } }; fetchRecommendProducts(); }, []); const calculateTotal = () => { return cartItems.reduce( (total, item) => total + item.productId.price * item.quantity, 0 ); }; const handleCheckout = () => { const productParams = cartItems .map((item) => `${item.productId._id}:${item.quantity}`) .join(","); router.push(`/checkout?items=${productParams}`); }; const handleDelete = async (itemId) => { try { const token = localStorage.getItem("token"); if (!token) { router.push("/login"); return; } const res = await fetch("/api/cart", { method: "DELETE", headers: { "Content-Type": "application/json", Authorization: `Bearer ${token}`, }, body: JSON.stringify({ cartItemId: itemId }), }); if (!res.ok) { throw new Error("删除失败"); } // 更新本地状态 setCartItems(cartItems.filter((item) => item._id !== itemId)); } catch (error) { console.error("删除失败:", error); } }; const handleUpdateQuantity = async (itemId, newQuantity) => { try { const token = localStorage.getItem("token"); if (!token) { router.push("/login"); return; } const res = await fetch("/api/cart", { method: "PUT", headers: { "Content-Type": "application/json", Authorization: `Bearer ${token}`, }, body: JSON.stringify({ cartItemId: itemId, quantity: newQuantity, }), }); if (!res.ok) { throw new Error("更新数量失败"); } // 更新本地状态 setCartItems( cartItems.map((item) => item._id === itemId ? { ...item, quantity: newQuantity } : item ) ); } catch (error) { console.error("更新失败:", error); } }; if (loading) { return
购物车为空
赶紧去逛逛,购买心仪的商品吧
¥{item.productId.price.toFixed(2)}