in this code, instead of showing “The product has been added to cart.” alert message, I want to update cart quantity if item already exist in cart, please help me out.
JavaScript
x
13
13
1
const addToCart = (id) => {
2
const check = cart.every((item) => {
3
return item.id !== id;
4
});
5
if (check) {
6
const cartData = products.filter((el) => {
7
return el.id === id;
8
});
9
setCart([cart, cartData]);
10
} else {
11
alert('The product has been added to cart.');
12
}
13
Advertisement
Answer
I am making some assumptions here as to what your variables look like, but generally, here is what you need:
JavaScript
1
15
15
1
const products = [{id: 1, name: 'Prod 1'}, {id: 2, name: 'Prod 2'}, {id: 3, name: 'Prod 3'}, {id: 4, name: 'Prod 4'}]
2
const cart = [{id: 1, name: 'Prod 1', quantity: 1}, {id: 4, name: 'Prod 4', quantity: 1}];
3
4
const addToCart = (id) => {
5
const check_index = cart.findIndex(item => item.id === id);
6
if (check_index !== -1) {
7
cart[check_index].quantity++;
8
console.log("Quantity updated:", cart);
9
} else {
10
cart.push({products.find(p => p.id === id), quantity: 1})
11
console.log('The product has been added to cart:', cart);
12
}
13
}
14
15
addToCart(4)