sale.js
8.87 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
/*
* @Author: Targaryen
* @Date: 2016-05-19 10:20:08
* @Last Modified by: Targaryen
* @Last Modified time: 2016-05-24 15:04:09
*/
'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';
// 处理 opts 折扣等排序数据
dest.opts.countPerPage = 60;
dest.opts.start = 1;
dest.opts.end = 20;
dest.opts.sortType = {};
for (let i = 0; i < 2; i++) {
dest.opts.sortType[i] = {};
dest.opts.sortType[i].href = 'CURRENT_URL/?order=s_p_asc';
dest.opts.sortType[i].name = '价格';
dest.opts.sortType[i].hasSortOrient = {};
dest.opts.sortType[i].hasSortOrient.active = {};
dest.opts.sortType[i].hasSortOrient.active.desc = {};
}
return dest;
};
/**
* 处理页面左侧分类筛选数据
* @return {[type]} [description]
*/
const handleSaleSortData = (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 = () => {
return api.get('', sign.apiSign({
method: 'app.search.sales',
limit: 5,
order: 's_t_desc',
page: 1,
productSize: '384x511',
yh_channel: 1
}));
};
/**
* 获取左侧分类信息数据 promise 对象
* @return {[type]} [description]
*/
const getSortList = () => {
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
}));
};
/**
* 获取顶部 banner
* @return {[type]} [description]
*/
const getSaleBannerList = () => {
return tarApi.getBanner('', sign.apiSign({
content_code: '7c2b77093421efa8ae9302c91460db73'
}));
};
/**
* 获取 Sale 首页数据
* @return {[type]} [description]
*/
exports.getSaleIndexData = () => {
return api.all([getSaleActivityList(), getSaleGoodsList(), getSaleBannerList()]).then(result => {
var finalResult = {};
if (result[0].code === 200) {
finalResult.brandSale = handleSaleActivityData(result[0].data);
}
if (result[1].code === 200) {
if (!_.isEmpty(result[1].data.product_list)) { // 处理商品列表数据
finalResult.saleCategory = {};
finalResult.saleCategory.saleImage = [];
finalResult.saleCategory.saleImage.push(handleSaleGoodsListData(result[1].data.product_list));
}
}
if (result[2].code === 200) {
finalResult.topBanner = handleSaleBannerData(result[2].data);
finalResult.activityEnter = handleSaleBannerSmallData(result[2].data);
}
return finalResult;
});
};
/**
* 获取商品列表数据
* @return {[type]} [description]
*/
exports.getSaleGoodsData = () => {
return getSaleGoodsList().then(result => {
let finalResult = {};
if (result.code === 200) {
finalResult.goods = handleSaleGoodsListData(result.data.product_list);
}
return finalResult;
});
};
/**
* 获取其他三个页面全部数据
* @return {[type]} [description]
*/
exports.getSaleData = () => {
return api.all([getSortList(), getSaleGoodsList()]).then(result => {
let finalResult = {};
if (result[0].code === 200) {
finalResult.leftContent = handleSaleSortData(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);
}
}
return finalResult;
});
};