cart.js
12.9 KB
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
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
/**
* [购物车] 购物袋
* @author: jinhu.dong<jinhu.dong@yoho.cn>
* @date: 2016/07/08
* @module shopping/cart
*/
var Dialog = require('../../plugins/dialog');
var JSON = require('yoho-json2');
var _confirm = Dialog.Confirm;
var _alert = Dialog.Alert;
var Util = require('./util');
var hbs = require('yoho-handlebars');
var Stepper = require('./stepper');
var Cart = {
/*
* 添加到购物车
* @function [addToCart]
* @params { String } productSku 购买商品Sku码
* @params { Number } buyNumber 购买商品数量
* @params { Function } callback 购买结果回调
*/
addToCart: function(params, callback) {
Util.ajax({
url: '/shopping/cart/add',
type: 'POST',
data: params,
success: function(res) {
if (res.code === 200) {
if (callback) {
return callback(res);
}
}
}
});
},
/*
* 显示商品库存不足提示
* @function [toggleNotEnough]
* @params { Object } target 提示显示在目标DOM对象
* @params { Object } bCheckAll 显示全选提示还是单个商品提示
*/
toggleNotEnough: function(target, bCheckAll) {
var msg = '您勾选的商品库存不足',
allKlass = '',
tooltip;
if (bCheckAll) {
msg = '您全选的商品中存在库存不足商品,已帮您自动取消勾选';
allKlass = 'all';
}
tooltip = $('<div class="tooltip">' +
'<div class="content ' + allKlass + '">' + msg + '</div>' +
'<div class="indicator"></div>' +
'</div>');
tooltip.appendTo(target);
setTimeout(function() {
tooltip.remove();
}, 2000);
},
/*
* 取消全选
* @function [toggleCheckAllPros]
*/
toggleCheckAllPros: function(checked) {
var data = [],
goodInfo;
$('#cart_content').find('li.chk').each(function() {
goodInfo = $.parseJSON($(this).attr('data-product_info'));
goodInfo.selected = checked;
data.push(goodInfo);
});
Cart.resetCheckAllStyle();
Cart.toggleSelectGoods(data);
},
/*
* 取消全选样式,选择商品数量没有达到
* @function [resetCheckAllStyle]
*/
resetCheckAllStyle: function() {
$('.chk-all').removeClass('chk-group');
},
/*
* 根据服务端JSON,刷新购物车信息
* @function [refreshCart]
*/
refreshCart: function(data) {
var template;
hbs.registerHelper('multiple', function(num1, num2) {
num1 = typeof num1 === 'number' ? num1 : parseFloat(num1, 10);
num2 = typeof num2 === 'number' ? num2 : parseFloat(num2, 10);
if (num1 && num2) {
return num1 * num2;
} else {
console.error('multiplication needs two number parameters');
}
});
hbs.registerHelper('isEqual', function(v1, v2, options) {
if (v1 === v2) {
return options.fn(this);
}
return options.inverse(this);
});
hbs.registerHelper('image', function(url, width, height, mode) {
mode = parseInt(mode, 10) ? mode : 2;
url = url || '';
return url.replace(/{width}/g, width).replace(/{height}/g, height).replace(/{mode}/g, mode);
});
template = hbs.compile($('#cart-content-tpl').html());
$('#cart_content').html(template(data));
Stepper.init();
},
/*
* 选择与取消选择
* @function [toggleSelectGoods]
*/
toggleSelectGoods: function(data) {
$.ajax({
type: 'POST',
url: '/shopping/cart/toggleSelectGoods',
data: {skuList: JSON.stringify(data)},
dataType: 'json'
}).done(function(res) {
if (res.code === 200) {
Util.refreshCart(res, function() {
Stepper.init();
});
} else {
new _alert(res.message).show();
}
}).fail(function() {
});
},
/*
* 单选每一个商品判断是否需要全选
* @function [toggleCheckAll]
*/
toggleCheck: function(target) {
var $this = $(target),
$checkoutBtn = $('#checkout_btn'),
checkAll = $this.hasClass('chk-all');
var goodInfo;
var data = [];
if ($this.hasClass('chk-group')) {
// 取消选择
$this.removeClass('chk-group');
$checkoutBtn.addClass('disable');
if (checkAll) {
Cart.toggleCheckAllPros('N');
} else {
Cart.resetCheckAllStyle();
goodInfo = $.parseJSON($this.parent().attr('data-product_info'));
goodInfo.selected = 'N';
data.push(goodInfo);
Cart.toggleSelectGoods(data);
}
} else {
// 选择
if (checkAll) {
Cart.toggleCheckAllPros('Y');
} else {
goodInfo = $.parseJSON($this.parent().attr('data-product_info'));
goodInfo.selected = 'Y';
data.push(goodInfo);
Cart.toggleSelectGoods(data);
}
}
},
/*
* 删除商品
* @function [removePro]
* @params { Array } products 商品列表
*/
removePro: function(products) {
var dialog = new _confirm({
content: '您确定要从购物车中删除该商品吗?',
cb: function() {
dialog.close();
Util.ajax({
url: '/shopping/cart/product/remove',
data: {skuList: JSON.stringify(products)},
type: 'DELETE',
success: function(res) {
Util.refreshCart(res, function() {
Stepper.init();
});
}
});
}
}).show();
},
/*
* 删除商品
* @function [removePro]
* @params { Array } products 商品列表
*/
sendToFavorite: function(products) {
var msg = '确定要将该商品从购物车中移入收藏吗?<br/>移入收藏后该商品将不在购物车中显示';
var dialog;
if (products.length > 1) {
msg = '确定要将已选中的商品从购物车中移入收藏吗?<br/>移入收藏后已选中的商品将不在购物车中显示';
}
dialog = new _confirm({
content: msg,
cb: function() {
dialog.close();
Util.ajax({
url: '/shopping/cart/product/send_to_favorite',
type: 'POST',
data: {skuList: JSON.stringify(products)},
success: function(res) {
Util.refreshCart(res, function() {
Stepper.init();
});
}
});
}
}).show();
},
// 编辑商品的颜色和尺寸
editColorOrSize: function(productId, skn, defaultColor, defaultSize) {
var template;
var index = 0;
var colors;
var colorsLen;
var color;
// 前端处理后的集合
var filterSet = [];
var defaultImg;
var editTarget = $('#edit_' + productId);
// 选择
var selectColor;
// sku
var newProductSku;
var oldProductSku;
$.ajax({
type: 'GET',
url: '/product/item/getProductInfo',
data: {
productId: productId,
skn: skn
},
success: function(res) {
// 没有res.code
if (res.colors) {
// 获取成功
colors = res.colors;
colorsLen = colors.length;
for (index; index < colorsLen; index++) {
color = colors[index];
// 迭代每一种颜色
filterSet.push({
proId: res.id,
color: color.color,
sizes: color.sizes,
pic: color.thumbs[0],
selectable: color.total > 0,
colorName: color.name
});
if (color.color === defaultColor) {
defaultImg = color.thumbs[0];
}
}
}
// helpers start
hbs.registerHelper('isEqual', function(v1, v2, options) {
if (v1 === v2) {
return options.fn(this);
}
return options.inverse(this);
});
hbs.registerHelper('image', function(url, width, height, mode) {
mode = parseInt(mode, 10) ? mode : 2;
url = url || '';
return url.replace(/{width}/g, width).replace(/{height}/g, height).replace(/{mode}/g, mode);
});
// helpers end
template = hbs.compile($('#edit-color-size-tpl').html());
editTarget.append(
template({
colors: filterSet,
defaultColor: defaultColor,
defaultSize: defaultSize,
defaultImg: defaultImg
})
);
oldProductSku = editTarget.find('.current-sizes .current').attr('data-sku');
editTarget.delegate('#confirm', 'click', function(e) {
e.preventDefault();
Util.ajax({
url: '/shopping/cart/updateProduct',
type: 'PUT',
data: {
swapData: JSON.stringify([{
buy_number: '1',
selected: 'Y',
new_product_sku: newProductSku,
old_product_sku: oldProductSku
}])
},
success: function(newCartData) {
editTarget.find('.edit-color-size').remove();
Util.refreshCart(newCartData);
}
});
return false;
}).delegate('#cancel', 'click', function(e) {
e.preventDefault();
editTarget.find('.edit-color-size').remove();
return false;
}).delegate('.edit-color-size', 'click', function(e) {
e.preventDefault();
return false;
}).delegate('.color-item', 'click', function(e) {
e.preventDefault();
selectColor = $(this);
if (!selectColor.hasClass('current-color')) {
selectColor.addClass('current-color').siblings().removeClass('current-color');
selectColor.parent().siblings('.current-sizes').hide().removeClass('current-sizes');
editTarget.find('#' + selectColor.attr('data-target')).show().addClass('current-sizes')
.end()
.find('.right img').attr({
src: selectColor.attr('data-imageurl'),
title: selectColor.attr('data-title')
})
.end()
.find('.selected-color').text(selectColor.attr('data-title'));
}
return false;
}).delegate('.current-sizes .size-item', 'click', function() {
$(this).addClass('current').siblings('.current').removeClass('current');
newProductSku = $(this).attr('data-sku');
});
},
fail: function() {
new _alert('此商品无法编辑颜色和尺寸').show();
}
});
},
checkStorage: function(callback) {
Util.ajax({
url: '/shopping/cart/checkStorage',
success: function(res) {
if (!res.noStorage.length) {
if (callback) {
return callback();
}
} else {
new _alert(res.noStorage.join('<br/>') + '<br/>库存不足').show();
}
}
});
}
};
module.exports = Cart;