-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.js
262 lines (235 loc) · 9.56 KB
/
main.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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
$(function(){
// MicroShop
// - Параметры
button_cart = '.shop_cart' // Кнопка перехода в корзину
button_add = 'button[value="cart/add"]' // Кнопка добавления в корзину
button_remove = 'button[value="cart/remove"]' // Кнопка удаления из корзины
button_remove_all = 'button[value="cart/removeall"]' // Кнопка удаления из корзины
form_order = '.form_order' // Форма оформления заказа
form_order_cart = '.form_order_cart' // Корзина в Форме оформления заказа
form_order_null = '.form_order_null' // Сообщение о пустой корзине
form_order_success = '.form_order_success' // Сообщение успешной отправки
product_count = '.product_count' // Поле с количеством товара в корзине
// - Пересчёт товаров
function cart_reload() {
if (localStorage.getItem('MicroShop')) {
oProducts = JSON.parse(localStorage.getItem('MicroShop'))
count = 0
sum = 0
$.each(oProducts.items, function() {
count = parseInt(count) + parseInt(this.count)
sum = parseInt(sum + this.price * this.count)
})
$(document).find(button_cart).find('shop_cart_btn span').html(count)
$(button_cart).show()
// Если на странице корзины то и данные в форме бомбим
if ($(document).find(form_order_cart).length > 0) {
$(document).find('#cart_count').html(count)
$(document).find('#cart_sum').html(sum)
}
} else {
$(button_cart).hide()
$(form_order).hide()
$(form_order_null).show()
}
}
cart_reload()
// - Отправка
function order_success() {
$(document).find(form_order).hide()
localStorage.removeItem('MicroShop')
$(document).find(form_order_success).show()
}
// - Если на странице содержимое корзины, то выгружаем её
if (localStorage.getItem('MicroShop') && $(document).find(form_order_cart).length > 0) {
$(document).find('.form_order_null').hide()
oProducts = JSON.parse(localStorage.getItem('MicroShop'))
var
cart_html = '',
sum = 0,
count = 0
// -- Собираем товары
cart_html += '<tbody>'
$.each(oProducts.items, function(index, elem) {
var
html = '<tr>'
html += '<td>'
html += index + 1
html += '</td>'
html += '<td>'
html += '<a href="' + this.url + '">' + this.name + '</a>'
html += '</td>'
html += '<td class="text-center">'
html += this.art
html += '</td>'
html += '<td class="text-center" style="min-width: 150px">'
html += this.price + ' р.'
html += '</td>'
html += '<td class="text-center d-flex justify-content-center">'
html += '<button type="button" class="form-control product_count_minus" name="button">-</button>'
html += '<input data-atr="'+this.art+'" type="text" class="product_count form-control" name="count" min="1" value="'+this.count+'"></input>'
html += '<button type="button" class="form-control product_count_plus" name="button">+</button>'
html += '</td>'
html += '<td class="text-center">'
html += '<button data-atr="' + this.art + '" class="btn form-control" type="button" value="cart/remove"><i class="fas fa-minus-circle"></i></button></td></tr>'
html += '</td>'
html += '</tr>'
cart_html += html
sum = parseInt(sum + this.price * this.count)
count = parseInt(count) + parseInt(this.count)
})
cart_html += '</tbody>'
// -- Собираем итог
var
html = '<tfoot><tr>'
html += '<td class="text-right" colspan="3"><strong>' + 'Итого:' + '</strong></td>'
html += '<td class="text-center">'
html += '<strong><span id="cart_sum">' + sum + '</span></strong> р.'
html += '</td>'
html += '<td class="text-center">'
html += '<strong><span id="cart_count">' + count + '</span></strong> шт.'
html += '</td>'
html += '<td class="text-center">'
html += '<button data-atr="' + this.art + '" class="btn form-control" type="button" value="cart/removeall"><i class="fas fa-trash-alt"></i></button></td></tr>'
html += '</td>'
html += '</tr></tfoot>'
cart_html += html
// -- Вставляем
$(document).find(form_order_cart).find('table thead').after(cart_html)
$(document).find(form_order_cart).find('#input_products').val(JSON.stringify(oProducts.items))
$(document).find('.form_order').show()
}
// - Добавление товара
$(document).find(button_add).on('click', function() {
// Переход в корзину если уже добавлен
if ($(this).hasClass('._active_'))
console.log('В корзине')
// window.location = '/oformlenie-zakaza/'
// Анимация
// $(this).addClass('_active_')
$(document).find('.ms2_form .cart_add_status').show()
// $(this).html( $(this).html().replace('корзину', 'корзине') )
// oProducts = {'items' : [ oProduct ]}
// Объект добавляемого товара
var form = $(this).parents('form')
var oProduct = {
art: form.find('.product_art_value').val(),
price: form.find('.product_price_value').val(),
count: form.find('.product_count_value').val(),
url: window.location.pathname,
img: $('.slider-catalog-item-nav .slick-slide:eq(0) img').attr('src'),
name: $('.product_name_value').html(),
}
if (localStorage.getItem('MicroShop')) {
// Если товары уже есть в корзине
// Проверяем что такого товара нет
oProducts = JSON.parse(localStorage.getItem('MicroShop'))
add = true
$.each(oProducts.items, function() {
if (this.art == oProduct.art) {
// Уже есть, увеличиваем количество
this.count = parseInt(this.count) + parseInt(oProduct.count)
localStorage.setItem('MicroShop', JSON.stringify(oProducts))
add = false
}
})
if (add) {
// Такого ещё нет, добавляем
oProducts.items.push(oProduct)
localStorage.setItem('MicroShop', JSON.stringify(oProducts))
}
} else
// Добавляем, если корзина еще пуста
localStorage.setItem('MicroShop', JSON.stringify({
'items': [oProduct]
}))
$.jGrowl("Товар добавлен в корзину")
cart_reload()
return false
})
// - Удаление товара
$(document).find(button_remove).on('click', function() {
if (localStorage.getItem('MicroShop')) {
// Объект удаляемого товара
var oProduct = {
art: $(this).data().atr
}
oProducts = JSON.parse(localStorage.getItem('MicroShop'))
$.each(oProducts.items, function(index, elem) {
if (oProducts.items.length == 1) {
// Если в корзине 1 продукт удаляем всё
localStorage.removeItem('MicroShop')
// Удаляем из таблицы
$('button[value="cart/remove"][data-atr="' + oProduct.art + '"]').parents('tr').remove()
} else {
// Если в корзине больше 1, ищём нужный
if (elem.art == oProduct.art) {
// Удаляем из корзины
oProducts.items.splice(index, 1)
localStorage.setItem('MicroShop', JSON.stringify(oProducts))
// Удаляем из таблицы
$('button[value="cart/remove"][data-atr="' + oProduct.art + '"]').parents('tr').remove()
}
}
})
}
$.jGrowl("Товар удалён из корзины")
cart_reload()
return false
})
// - Удаление всех товаров
$(document).find(button_remove_all).on('click', function() {
localStorage.removeItem('MicroShop')
$.jGrowl("Товары удалены из корзины")
cart_reload()
return false
})
// - Изменения количества товара
$(document).find(product_count).on('change click', function() {
var oProduct = {
art: $(this).data().atr,
count: $(this).val()
}
oProducts = JSON.parse(localStorage.getItem('MicroShop'))
$.each(oProducts.items, function() {
if (this.art == oProduct.art) {
// Находим товар и меняем количество
this.count = parseInt(oProduct.count)
localStorage.setItem('MicroShop', JSON.stringify(oProducts))
}
})
cart_reload()
})
// - В поле количества ввод только цифр
$('[name=count]').bind("change keyup input click", function() {
if (this.value.match(/[^0-9]/g))
this.value = this.value.replace(/[^0-9]/g, '');
if (this.value == 0)
this.value = 1
})
// - Стрелочки для изменения количества товара
$(document).find('.product_count_minus').on('click',function(){
if ($(this).next('[name=count]').val() != 1)
$(this).next('[name=count]').val(parseInt($(this).next('[name=count]').val()) - 1).click()
})
$(document).find('.product_count_plus').on('click',function(){
$(this).prev('[name=count]').val(parseInt($(this).prev('[name=count]').val()) + 1).click()
})
// MicroShop x
// Отправка сообщений AjaxForm
$(document).on('af_complete', function(event, response) {
var form = response.form
console.log('chelk')
console.log(form.attr('id'))
// Если у формы определённый id
if (form.attr('id') == 'form_order') {
// - Оформление заказа
order_success()
}
// Иначе печатаем в консоль весь ответ
else {
console.log(response)
}
})
// Отправка сообщений х
})