cart.js
10.2 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
/**
* [购物车] 购物袋
* @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) {
var template;
Util.ajax({
url: '/shopping/cart/product/' + productId + '/edit',
success: function(res) {
if (res.code === '0') {
// helpers start
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('showStorage', function(leftNumber) {
leftNumber = typeof num1 === 'number' ? leftNumber : parseFloat(leftNumber, 10);
if (leftNumber <= 3 && leftNumber >= 0) {
return '仅剩' + leftNumber + '件';
} else if (leftNumber < 0) {
return '库存不足';
}
});
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());
$('#edit_' + productId).append(
template({
colors: res.colors,
sizes: res.sizes,
defaultColor: res.defaultColor,
defaultSize: res.defaultSize,
defaultImg: res.defaultImg
})
);
}
},
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;