forked from Movalabs-crew/mova-store
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCartContext.jsx
More file actions
126 lines (110 loc) · 3.45 KB
/
Copy pathCartContext.jsx
File metadata and controls
126 lines (110 loc) · 3.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
"use client"
import { createContext, useContext, useEffect, useState } from "react";
const CartContext = createContext();
export const useCart = () => useContext(CartContext);
export const CartProvider = ({ children }) => {
const [cartItems, setCartItems] = useState([]);
const [itemCount, setItemCount] = useState(0);
const [totalPrice, setTotalPrice] = useState(0);
useEffect(() => {
let storedCartItems = [];
let storedItemCount = 0;
let storedTotalPrice = 0;
try {
const rawItems = localStorage.getItem("cartItems");
if (rawItems) {
const parsed = JSON.parse(rawItems);
if (Array.isArray(parsed)) {
storedCartItems = parsed;
}
}
} catch {
storedCartItems = [];
}
try {
const rawCount = localStorage.getItem("itemCount");
if (rawCount) {
const parsedCount = parseInt(rawCount, 10);
if (Number.isFinite(parsedCount) && parsedCount >= 0) {
storedItemCount = parsedCount;
}
}
} catch {
storedItemCount = 0;
}
try {
const rawPrice = localStorage.getItem("totalPrice");
if (rawPrice) {
const parsedPrice = parseFloat(rawPrice);
if (Number.isFinite(parsedPrice) && parsedPrice >= 0) {
storedTotalPrice = parsedPrice;
}
}
} catch {
storedTotalPrice = 0;
}
setCartItems(storedCartItems);
setItemCount(storedItemCount);
setTotalPrice(storedTotalPrice);
}, []);
const addToCart = (product) => {
setCartItems((prevCartItems) => {
const updatedCartItems = [...prevCartItems, product];
localStorage.setItem("cartItems", JSON.stringify(updatedCartItems));
return updatedCartItems;
});
setItemCount((prevItemCount) => {
const newItemCount = prevItemCount + 1;
localStorage.setItem("itemCount", newItemCount.toString());
return newItemCount;
});
setTotalPrice((prevTotalPrice) => {
const newTotalPrice = prevTotalPrice + product.price;
localStorage.setItem("totalPrice", newTotalPrice.toString());
return newTotalPrice;
});
};
const removeFromCart = (product) => {
setCartItems((prevCartItems) => {
const index = prevCartItems.findIndex((item) => item.id === product.id);
if (index === -1) return prevCartItems;
const removedItem = prevCartItems[index];
const updatedCartItems = [...prevCartItems];
updatedCartItems.splice(index, 1);
localStorage.setItem("cartItems", JSON.stringify(updatedCartItems));
setItemCount((prevItemCount) => {
const newItemCount = Math.max(0, prevItemCount - 1);
localStorage.setItem("itemCount", newItemCount.toString());
return newItemCount;
});
setTotalPrice((prevTotalPrice) => {
const newTotalPrice = Math.max(0, prevTotalPrice - (removedItem.price || 0));
localStorage.setItem("totalPrice", newTotalPrice.toString());
return newTotalPrice;
});
return updatedCartItems;
});
};
const clearCart = () => {
setCartItems([]);
setItemCount(0);
setTotalPrice(0);
localStorage.removeItem("cartItems");
localStorage.removeItem("itemCount");
localStorage.removeItem("totalPrice");
};
return (
<CartContext.Provider
value={{
cartItems,
itemCount,
totalPrice,
addToCart,
removeFromCart,
clearCart,
}}
>
{children}
</CartContext.Provider>
);
};