sale.js
11.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
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
/*
* @Author: Targaryen
* @Date: 2016-05-19 10:20:08
* @Last Modified by: Targaryen
* @Last Modified time: 2016-05-25 17:49:34
*/
'use strict';
const library = '../../../library';
const API = require(`${library}/api`).API;
const TARAPI = require(`${library}/tar-api`).TARAPI;
const sign = require(`${library}/sign`);
const api = new API();
const tarApi = new TARAPI();
const _ = require('lodash');
/**
* 处理商品列表数据
* @param {[type]} origin [description]
* @return {[type]} [description]
*/
const handleSaleGoodsListData = (origin) => {
var dest = [];
if (!_.isEmpty(origin)) {
_.forEach(origin, function(value) {
let oneGoods = {};
oneGoods.tags = value.tags;
oneGoods.thumb = value.default_images;
oneGoods.url = '/product/pro_' + value.product_id + '_' + value.goods_list[0].goods_id + '/' +
value.cn_alphabet + '.html';
oneGoods.goodsList = value.goods_list;
oneGoods.name = value.product_name;
oneGoods.brand = {};
oneGoods.brand.url = value.brand_domain + '.SUB_DOMAIN'; // 待处理
oneGoods.brand.name = value.brand_name;
oneGoods.marketPrice = value.market_price;
dest.push(oneGoods);
});
}
return dest;
};
/**
* 处理筛选数据
* @param {[type]} origin [description]
* @return {[type]} [description]
*/
const handleSaleFilterData = (origin) => {
var dest = {};
dest.brand = {};
dest.price = [];
dest.channel = [];
dest.opts = {};
// 处理 品牌 筛选数据
dest.brand.default = [];
if (!_.isEmpty(origin.brand)) {
_.forEach(origin.brand, function(value) {
let brand = {};
brand.checked = false;
brand.href = 'CURRENT_URL/brand=' + value.brand_domain; // 待处理
brand.name = value.brand_name;
dest.brand.default.push(brand);
});
}
// 处理 价格 筛选数据
if (!_.isEmpty(origin.priceRange)) {
_.forEach(origin.priceRange, function(value, key) {
let price = {
checked: false,
href: 'CURRENT_URL/price=' + key, // 待处理
name: value
};
dest.price.push(price);
});
}
// 处理频道数据
for (let i = 0; i < 2; i++) {
dest.channel[i] = {};
dest.channel[i].checked = false;
}
dest.channel[0].name = '男生';
dest.channel[0].href = 'CURRENT_URL/?gender=1,3';
dest.channel[1].name = '女生';
dest.channel[1].href = 'CURRENT_URL/?gender=2,3';
return dest;
};
/**
* 处理 opts 排序数据
* @param {[type]} origin [description]
* @return {[type]} [description]
*/
const handleSaleOptsData = () => {
var dest = {};
dest.countPerPage = 60;
dest.start = 1;
dest.end = 20;
dest.sortType = [];
for (let i = 0; i < 2; i++) {
let opt = {};
opt.href = 'CURRENT_URL/?order=s_p_asc';
opt.name = '价格';
opt.hasSortOrient = {};
opt.hasSortOrient.active = {};
opt.hasSortOrient.active.desc = {};
dest.sortType.push(opt);
}
return dest;
};
/**
* 处理页面左侧分类筛选数据
* @return {[type]} [description]
*/
const handleSaleSortData = (origin) => {
var leftContent = {};
leftContent.allSort = {};
leftContent.allSort.list = [];
_.forEach(origin, function(value) {
let category = {};
category.name = value.category_name;
category.num = value.node_count;
category.childList = [];
_.forEach(value.sub, function(subValue) {
category.childList.push({
name: subValue.category_name,
num: subValue.node_count,
href: ''
});
});
leftContent.allSort.list.push(category);
});
return leftContent;
};
/**
* 处理断码区分类筛选数据 待处理
* @return {[type]} [description]
*/
const handleSalebreakingYardsSortData = (origin) => {
var leftContent = {};
leftContent.allDiscount = {};
leftContent.allDiscount.list = [];
_.forEach(origin, function(value) {
let category = {};
category.name = value.sort_name;
leftContent.allDiscount.list.push(category);
});
return leftContent;
};
/**
* 处理折扣专区活动数据
* @param {[type]} origin [description]
* @return {[type]} [description]
*/
const handleSaleActivityData = (origin) => {
var dest = {};
dest.big = [];
dest.normal = [];
_.forEach(origin, function(value, key) {
let activity = {};
activity.link = value.web_url;
activity.img = value.cover_url;
activity.time = value.left_time;
activity.brand = value.logo_url;
activity.discount = value.title;
if (key < 3) {
dest.big.push(activity);
} else {
dest.normal.push(activity);
}
});
return dest;
};
/**
* 处理首页 banner 数据
* @param {[type]} origin [description]
* @return {[type]} [description]
*/
const handleSaleBannerData = (origin) => {
var dest = {};
dest.list = [];
_.forEach(origin, function(value) {
if (value.template_name === 'focus') {
_.forEach(value.data, function(subValue) {
let banner = {};
banner.bannerHeight = 450;
banner.href = subValue.url;
banner.img = subValue.src;
dest.list.push(banner);
});
}
if (value.template_name === 'small_pic') {
_.forEach(value.data, function(picList) {
let smallPic = {};
smallPic.link = picList.url;
smallPic.icon = picList.src;
smallPic.title = picList.title;
smallPic.desc = picList.alt;
dest.list.push(smallPic);
});
}
});
return dest;
};
/**
* 处理首页 banner 小图
* @param {[type]} origin [description]
* @return {[type]} [description]
*/
const handleSaleBannerSmallData = (origin) => {
var dest = [];
_.forEach(origin, function(value) {
if (value.template_name === 'small_pic') {
_.forEach(value.data, function(picList) {
let smallPic = {};
smallPic.link = picList.url;
smallPic.icon = picList.src;
smallPic.title = picList.title;
smallPic.desc = picList.alt;
dest.push(smallPic);
});
}
});
return dest;
};
/**
* 获取商品列表 promise 对象
* @return {[type]} [description]
*/
const getSaleGoodsList = (params) => {
console.log(params);
return api.get('', sign.apiSign({
method: 'app.search.sales',
p_d: _.isEmpty(params.p_d) ? null : params.p_d,
limit: _.isEmpty(params.limit) ? null : params.limit,
order: _.isEmpty(params.order) ? 's_t_desc' : params.order,
page: _.isEmpty(params.page) ? 1 : params.page,
gender: _.isEmpty(params.gender) ? null : params.gender,
sort: _.isEmpty(params.sort) ? null : params.sort,
brand: _.isEmpty(params.brand) ? null : params.brand,
color: _.isEmpty(params.color) ? null : params.color,
size: _.isEmpty(params.size) ? null : params.size,
saleType: _.isEmpty(params.saleType) ? null : params.saleType,
breakSize: _.isEmpty(params.breakSize) ? null : params.breakSize,
breakSort: _.isEmpty(params.breakSort) ? null : params.breakSort,
productPool: _.isEmpty(params.productPool) ? null : params.productPool,
price: _.isEmpty(params.price) ? null : params.price,
productSize: '384x511',
yh_channel: 1
}));
};
/**
* 断码区分类信息数据 promise 对象
* @return {[type]} [description]
*/
const getSalebreakingYardsSortList = () => {
return api.get('', sign.apiSign({
method: 'app.sale.getBreakingSort',
yh_channel: 1
}));
};
/**
* 获取折扣专区活动列表 promise 对象
* @return {[type]} [description]
*/
const getSaleActivityList = () => {
return tarApi.getActivity('', sign.apiSign({
method: 'app.activity.get',
sort: 2,
plateform: 2
}));
};
/**
* 获取Sale首页顶部 banner promise 对象
* @return {[type]} [description]
*/
const getSaleBannerList = () => {
return tarApi.getBanner('', sign.apiSign({
content_code: '7c2b77093421efa8ae9302c91460db73'
}));
};
/**
* 获取Sale首页商品列表数据 仅 Ajax 调用 Controller 调用
* @return {[type]} [description]
*/
exports.getSaleGoodsData = (params) => {
return getSaleGoodsList(params).then(result => {
let finalResult = {};
if (result.code === 200) {
finalResult.goods = handleSaleGoodsListData(result.data.product_list);
}
return finalResult;
});
};
/**
* 获取 Sale 首页数据 Controller 调用
* @return {[type]} [description]
*/
exports.getSaleIndexData = () => {
return api.all([getSaleActivityList(), getSaleBannerList()]).then(result => {
var finalResult = {};
if (result[0].code === 200) {
finalResult.brandSale = handleSaleActivityData(result[0].data);
}
if (result[1].code === 200) {
finalResult.topBanner = handleSaleBannerData(result[1].data);
finalResult.activityEnter = handleSaleBannerSmallData(result[1].data);
}
return finalResult;
});
};
/**
* 获取 VIP 会员专享和新降价专区数据 Controller 调用
* @return {[type]} [description]
*/
exports.getSaleOthersData = (params) => {
return api.all([getSaleGoodsList(params)]).then(result => {
let finalResult = {};
if (result[0].code === 200) {
if (!_.isEmpty(result[0].data.product_list)) { // 处理商品列表数据
finalResult.goods = handleSaleGoodsListData(result[0].data.product_list);
}
if (!_.isEmpty(result[0].data.filter)) {
finalResult.filters = handleSaleFilterData(result[0].data.filter);
}
if (!_.isEmpty(result[0].data.filter.group_sort)) {
finalResult.leftContent = handleSaleSortData(result[0].data.filter.group_sort);
}
}
finalResult.opts = handleSaleOptsData();
return finalResult;
});
};
/**
* 获取折扣专场数据 Controller 调用
* @return {[type]} [description]
*/
exports.getSaleDiscountData = (params) => {
return api.all([getSaleGoodsList(params)]).then(result => {
let finalResult = {};
if (result[0].code === 200) {
finalResult.saleList = {};
finalResult.saleList.goods = handleSaleGoodsListData(result[0].data.product_list);
finalResult.leftContent = handleSaleSortData(result[0].data.filter.group_sort);
}
return finalResult;
});
};
/**
* 获取断码区数据 Controller 调用
* @param {[type]} params [description]
* @return {[type]} [description]
*/
exports.getSalebreakingYardsData = (params) => {
return api.all([getSalebreakingYardsSortList(), getSaleGoodsList(params)]).then(result => {
let finalResult = {};
if (result[0].code === 200) {
finalResult.size = handleSalebreakingYardsSortData(result[0].data); //待处理
}
if (result[1].code === 200) {
if (!_.isEmpty(result[1].data.product_list)) { // 处理商品列表数据
finalResult.goods = handleSaleGoodsListData(result[1].data.product_list);
}
if (!_.isEmpty(result[1].data.filter)) {
finalResult.filters = handleSaleFilterData(result[1].data.filter);
finalResult.leftContent = handleSaleSortData(result[1].data.filter.group_sort);
}
}
finalResult.opts = handleSaleOptsData();
return finalResult;
});
};