`;
itemsGrid.appendChild(menuItem);
});
categorySection.appendChild(categoryTitle);
categorySection.appendChild(itemsGrid);
menuContainer.appendChild(categorySection);
});
}
loadMenu();
`;
// Başlangıç miktarı
let quantity = 1;
// Miktarı artırma ve azaltma butonları
document.getElementById(`increase-${data.eventName}`).addEventListener('click', () => {
quantity++;
document.getElementById(`quantity-${data.eventName}`).textContent = quantity;
});
document.getElementById(`decrease-${data.eventName}`).addEventListener('click', () => {
if (quantity > 1) {
quantity--;
document.getElementById(`quantity-${data.eventName}`).textContent = quantity;
}
});
// Sepete ekleme butonu
document.getElementById(`addToCart-${data.eventName}`).addEventListener('click', () => {
addToCart(data.eventName, quantity);
});
}
// Sepete ekleme fonksiyonu
function addToCart(productName, quantity) {
totalQuantity += quantity; // Toplam miktara ekle
document.getElementById('totalQuantity').textContent = totalQuantity;
console.log(`Ürün: ${productName}, Miktar: ${quantity} sepete eklendi.`);
}
// Sayfanın altına sabit sepete ekleme butonu ve toplam ürün adeti gösterme
document.body.innerHTML += `
`;