|
| 1 | +// // دالة لعرض محتويات العربة من التخزين المحلي |
| 2 | + |
| 3 | +// function renderCart() { |
| 4 | +// const cart = JSON.parse(localStorage.getItem('cart')) || []; |
| 5 | +// const cartContainer = document.getElementById('cart-container'); |
| 6 | + |
| 7 | +// if (cart.length === 0) { |
| 8 | +// cartContainer.innerHTML = '<p>Your cart is empty</p>'; |
| 9 | +// } else { |
| 10 | +// let total = 0; // Variable to store the total amount |
| 11 | +// cartContainer.innerHTML = cart.map(item => { |
| 12 | +// const itemTotal = item.price * item.quantity; // Calculate each item's price |
| 13 | +// total += itemTotal; // Add each item's price to the total |
| 14 | + |
| 15 | +// return ` |
| 16 | +// <div class="cart-item"> |
| 17 | +// <img src="${item.image}" alt="${item.name}"> |
| 18 | +// <div class="cart-item-info"> |
| 19 | +// <p>${item.name}</p> |
| 20 | +// <div class="quantity-control"> |
| 21 | +// <button onclick="updateCartQuantity(${item.id}, -1)">-</button> |
| 22 | +// <input type="number" id="quantity-${item.id}" value="${item.quantity}" min="1" style="width: 50px; text-align: center;" /> |
| 23 | +// <button onclick="updateCartQuantity(${item.id}, 1)">+</button> |
| 24 | +// </div> |
| 25 | +// <p class="price">Price: $${itemTotal.toFixed(2)}</p> <!-- Display each item's price --> |
| 26 | +// </div> |
| 27 | +// <button onclick="removeFromCart(${item.id})">Delete</button> |
| 28 | +// </div> |
| 29 | +// `; |
| 30 | +// }).join(''); |
| 31 | + |
| 32 | +// // Add total amount display |
| 33 | +// cartContainer.innerHTML += `<h4>Total: $${total.toFixed(2)}</h4>`; // Display the total |
| 34 | +// } |
| 35 | +// } |
| 36 | + |
| 37 | +// function updateCartQuantity(productId, change) { |
| 38 | +// const cart = JSON.parse(localStorage.getItem('cart')) || []; |
| 39 | +// const foundItem = cart.find(item => item.id === productId); |
| 40 | +// const quantityInput = document.getElementById(`quantity-${productId}`); |
| 41 | +// let currentQuantity = parseInt(quantityInput.value) || 1; |
| 42 | + |
| 43 | +// // تحديث الكمية بناءً على التغيير |
| 44 | +// currentQuantity += change; |
| 45 | + |
| 46 | +// // التأكد من أن الكمية لا تقل عن 1 |
| 47 | +// if (currentQuantity < 1) { |
| 48 | +// currentQuantity = 1; |
| 49 | +// } |
| 50 | + |
| 51 | +// // تعيين الكمية الجديدة في حقل الإدخال |
| 52 | +// quantityInput.value = currentQuantity; |
| 53 | + |
| 54 | +// // تحديث الكمية في العربة |
| 55 | +// if (foundItem) { |
| 56 | +// foundItem.quantity = currentQuantity; |
| 57 | +// } |
| 58 | + |
| 59 | +// // حفظ العربة المحدثة في التخزين المحلي |
| 60 | +// localStorage.setItem('cart', JSON.stringify(cart)); |
| 61 | + |
| 62 | +// // تحديث عرض العربة |
| 63 | +// renderCart(); |
| 64 | + |
| 65 | +// } |
| 66 | + |
| 67 | +// // دالة لإزالة منتج من العربة |
| 68 | +// function removeFromCart(productId) { |
| 69 | +// const cart = JSON.parse(localStorage.getItem('cart')) || []; |
| 70 | +// const updatedCart = cart.filter(item => item.id !== productId); |
| 71 | + |
| 72 | +// localStorage.setItem('cart', JSON.stringify(updatedCart)); |
| 73 | +// renderCart(); // تحديث عرض العربة |
| 74 | +// } |
| 75 | + |
| 76 | +// // دالة لتفريغ العربة |
| 77 | +// function clearCart() { |
| 78 | +// localStorage.removeItem('cart'); |
| 79 | +// renderCart(); |
| 80 | +// } |
| 81 | + |
| 82 | +// // عرض محتويات العربة عند تحميل الصفحة |
| 83 | +// document.addEventListener('DOMContentLoaded', renderCart); |
| 84 | + |
| 85 | +//----------------------------------------------------------------------------> |
| 86 | +// دالة لعرض محتويات العربة من التخزين المحلي |
| 87 | +function renderCart() { |
| 88 | + const cart = JSON.parse(localStorage.getItem("cart")) || []; // استرجاع بيانات العربة |
| 89 | + const cartContainer = document.getElementById("cart-container"); // العنصر الذي يحتوي على العربة |
| 90 | + |
| 91 | + if (cart.length === 0) { |
| 92 | + cartContainer.innerHTML = "<p style='color:#db4444'>Your cart is empty</p>"; // عرض رسالة إذا كانت العربة فارغة |
| 93 | + } else { |
| 94 | + let total = 0; // متغير لحساب المجموع النهائي |
| 95 | + cartContainer.innerHTML = cart |
| 96 | + .map((item) => { |
| 97 | + const itemTotal = item.price * item.quantity; // حساب السعر لكل عنصر |
| 98 | + total += itemTotal; // إضافة سعر كل عنصر إلى الإجمالي |
| 99 | + |
| 100 | + return ` |
| 101 | + <div class="cart-item"> |
| 102 | + <img src="${item.image}" alt="${ |
| 103 | + item.name |
| 104 | + }"> <!-- عرض صورة المنتج --> |
| 105 | + <div class="cart-item-info"> |
| 106 | + <p>${item.name}</p> <!-- اسم المنتج --> |
| 107 | + <div class="quantity-control"> |
| 108 | + <button onclick="updateCartQuantity(${ |
| 109 | + item.id |
| 110 | + }, -1)">-</button> <!-- زر لتقليل الكمية --> |
| 111 | + <input type="number" id="quantity-${ |
| 112 | + item.id |
| 113 | + }" value="${ |
| 114 | + item.quantity |
| 115 | + }" min="1" style="width: 50px; text-align: center;" /> |
| 116 | + <button onclick="updateCartQuantity(${ |
| 117 | + item.id |
| 118 | + }, 1)">+</button> <!-- زر لزيادة الكمية --> |
| 119 | + </div> |
| 120 | + <p class="price">Price: $${itemTotal.toFixed( |
| 121 | + 2 |
| 122 | + )}</p> <!-- عرض السعر لكل عنصر --> |
| 123 | + </div> |
| 124 | + <button onclick="removeFromCart(${ |
| 125 | + item.id |
| 126 | + })">Delete</button> <!-- زر لحذف المنتج من العربة --> |
| 127 | + </div> |
| 128 | + `; |
| 129 | + }) |
| 130 | + .join(""); |
| 131 | + |
| 132 | + // عرض المجموع النهائي |
| 133 | + cartContainer.innerHTML += `<h4>Total: $${total.toFixed(2)}</h4>`; // عرض الإجمالي |
| 134 | + } |
| 135 | +} |
| 136 | + |
| 137 | +// دالة لتحديث كمية المنتجات في العربة |
| 138 | +function updateCartQuantity(productId, change) { |
| 139 | + const cart = JSON.parse(localStorage.getItem("cart")) || []; // استرجاع العربة |
| 140 | + const foundItem = cart.find((item) => item.id === productId); // البحث عن المنتج في العربة |
| 141 | + const quantityInput = document.getElementById(`quantity-${productId}`); |
| 142 | + let currentQuantity = parseInt(quantityInput.value) || 1; |
| 143 | + |
| 144 | + // تحديث الكمية بناءً على التغيير |
| 145 | + currentQuantity += change; |
| 146 | + |
| 147 | + // التأكد من أن الكمية لا تقل عن 1 |
| 148 | + if (currentQuantity < 1) { |
| 149 | + currentQuantity = 1; |
| 150 | + } |
| 151 | + |
| 152 | + // تعيين الكمية الجديدة في حقل الإدخال |
| 153 | + quantityInput.value = currentQuantity; |
| 154 | + |
| 155 | + // تحديث الكمية في العربة |
| 156 | + if (foundItem) { |
| 157 | + foundItem.quantity = currentQuantity; |
| 158 | + } |
| 159 | + |
| 160 | + // حفظ العربة المحدثة في التخزين المحلي |
| 161 | + localStorage.setItem("cart", JSON.stringify(cart)); |
| 162 | + |
| 163 | + // تحديث عرض العربة |
| 164 | + renderCart(); |
| 165 | +} |
| 166 | + |
| 167 | + |
| 168 | +// دالة لإزالة منتج من العربة |
| 169 | +function removeFromCart(productId) { |
| 170 | + const cart = JSON.parse(localStorage.getItem("cart")) || []; // استرجاع العربة |
| 171 | + const updatedCart = cart.filter((item) => item.id !== productId); // إزالة المنتج من العربة |
| 172 | + |
| 173 | + localStorage.setItem("cart", JSON.stringify(updatedCart)); // حفظ العربة المحدثة |
| 174 | + renderCart(); // تحديث عرض العربة |
| 175 | +} |
| 176 | + |
| 177 | +// دالة لتفريغ العربة |
| 178 | +function clearCart() { |
| 179 | + localStorage.removeItem("cart"); |
| 180 | + renderCart(); |
| 181 | +} |
| 182 | + |
| 183 | +// عرض محتويات العربة عند تحميل الصفحة |
| 184 | +document.addEventListener("DOMContentLoaded", renderCart); // عرض العربة عند تحميل الصفحة |
| 185 | + |
| 186 | +//----------------------------------------------------------------------------> |
| 187 | + |
| 188 | +// store data-->check out |
| 189 | + |
| 190 | + |
| 191 | +const cartItems = document.querySelectorAll(".cart-item"); |
| 192 | +let checkoutData = []; |
| 193 | + |
| 194 | +cartItems.forEach((item) => { |
| 195 | + const productImage = item.querySelector(".product-image").src; |
| 196 | + const productName = item.querySelector(".product-name").textContent; |
| 197 | + const productPrice = item.querySelector(".product-price").dataset.price; |
| 198 | + |
| 199 | + checkoutData.push({ |
| 200 | + image: productImage, |
| 201 | + name: productName, |
| 202 | + price: productPrice, |
| 203 | + }); |
| 204 | +}); |
| 205 | + |
| 206 | +localStorage.setItem("checkoutData", JSON.stringify(checkoutData)); |
| 207 | + |
| 208 | +//open checkout_page |
| 209 | +document.getElementById("checkout-btn").addEventListener("click", () => { |
| 210 | + window.location.href = "../checkout+order/checkoutpage/checkout.html"; |
| 211 | +}); |
| 212 | + |
| 213 | + |
0 commit comments