-
Notifications
You must be signed in to change notification settings - Fork 0
/
quantity.js
143 lines (126 loc) · 5.09 KB
/
quantity.js
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
// Определение функции showNotification
function showNotification(message) {
// Создаем элемент уведомления
const notification = document.createElement("div");
notification.textContent = message;
notification.classList.add("notification");
// Добавляем стили для уведомления
notification.style.position = "fixed";
notification.style.top = "50%";
notification.style.left = "50%";
notification.style.transform = "translate(-50%, -50%)";
notification.style.padding = "10px";
notification.style.background = "rgba(0, 0, 0, 0.8)";
notification.style.color = "#fff";
notification.style.fontFamily = "Arial, sans-serif";
notification.style.fontSize = "16px";
notification.style.borderRadius = "5px";
notification.style.zIndex = "9999";
// Добавляем уведомление на страницу
document.body.appendChild(notification);
// Через 3 секунды удаляем уведомление
setTimeout(() => {
notification.remove();
}, 3000);
}
function updateTotalPrice() {
let totalPriceElements = document.querySelectorAll(".total-price");
let totalPriceSum = 0;
totalPriceElements.forEach(function (element) {
let borderDiv = element.closest(".border-div");
let quantityInput = borderDiv.querySelector(".quantity-input");
let itemPrice = borderDiv.querySelector(".item-price");
let quantity = parseInt(quantityInput.value);
let total = quantity * parseFloat(itemPrice.textContent);
element.textContent = total.toFixed(0);
totalPriceSum += total;
});
document.querySelector(".end-price").textContent = totalPriceSum.toFixed(0);
}
document.querySelectorAll(".quantity-control").forEach(function (item) {
const minusBtn = item.querySelector(".minus");
const plusBtn = item.querySelector(".plus");
const quantityInput = item.querySelector(".quantity-input");
minusBtn.addEventListener("click", function () {
let currentValue = parseInt(quantityInput.value);
if (currentValue > 1) {
quantityInput.value = currentValue - 1;
updateTotalPrice();
}
});
plusBtn.addEventListener("click", function () {
let currentValue = parseInt(quantityInput.value);
quantityInput.value = currentValue + 1;
updateTotalPrice();
});
quantityInput.addEventListener("input", function () {
updateTotalPrice();
});
});
function addToOrders(
totalQuantity,
totalPrice,
deliveryPoint,
userId,
productList
) {
const xhr = new XMLHttpRequest();
xhr.open("POST", "/config/addToOrders.php", true);
xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
xhr.onreadystatechange = function () {
if (xhr.readyState === XMLHttpRequest.DONE) {
if (xhr.status === 200) {
// Handle success
showNotification("Failed to add order");
} else {
// Handle error
showNotification("Order added successfully");
}
}
};
const data = new URLSearchParams();
data.append("totalQuantity", totalQuantity);
data.append("userId", userId);
data.append("totalPrice", totalPrice);
data.append("productList", productList);
data.append("deliveryPoint", deliveryPoint);
xhr.send(data);
}
document.addEventListener("DOMContentLoaded", function () {
updateTotalPrice();
const deliveryButtons = document.querySelectorAll(".delivery-button");
let selectedDelivery = ""; // Переменная для хранения выбранного пункта выдачи
deliveryButtons.forEach((button) => {
button.addEventListener("click", function (event) {
event.stopPropagation();
// Сбрасываем стиль у всех кнопок
deliveryButtons.forEach((btn) => {
btn.style.color = "gray";
});
// Устанавливаем стиль для выбранной кнопки
button.style.color = "black";
selectedDelivery = button.dataset.delivery;
});
});
const orderButton = document.querySelectorAll(".order-button");
orderButton.forEach((button) => {
button.addEventListener("click", function () {
let deliveryPoint = selectedDelivery;
updateTotalPrice(); // Обновляем общую стоимость заказа
let totalPrice = document.querySelector(".end-price").textContent; // Получаем общую стоимость из соответствующего элемента
let userId = button.getAttribute("data-user-id");
let totalQuantity = document.querySelectorAll(".quantity-input").length;
let productList = ""; // Наименования всех товаров
document
.querySelectorAll(".margin-left-20 p:first-child")
.forEach(function (item) {
productList += item.textContent.trim() + ", ";
});
productList = productList.slice(0, -2); // Удаляем последнюю запятую и пробел
userId = parseInt(userId);
totalQuantity = parseInt(totalQuantity);
totalPrice = parseInt(totalPrice);
addToOrders(productList, userId, totalQuantity, totalPrice, deliveryPoint);
});
});
});