outlets-handler.js
7.09 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
/**
*
* @Author: zhoushaofeng
* @Date: 2016-06-02 15:50:47
* @Last Modified time: 2016-06-08 19:31:52
*/
'use strict';
const utils = '../../../utils';
const helpers = global.yoho.helpers;
const _ = require('lodash');
const productProcess = require(`${utils}/product-process`);
const url = require('url');
const queryString = require('querystring');
/**
* 热门分类
*/
const hotCategory = (data) => {
return {
hotCategory: {
name: data.name,
list: data.menuNav.list,
blocks: data.menuNav.blocks,
brands: data.imgs.slice(0, 1),
types: data.imgs.slice(1, 7)
}
};
};
/**
* 折扣文本切割
*/
const discountSplit = (text) => {
let endNum = 0,
i;
text = text || '';
for (i = 0; i < text.length; i++) {
if (/^([0-9]|\%)*$/.test(text[i])) {
endNum = i + 1;
}
}
return {
discount: text.slice(0, endNum),
discountText: text.slice(endNum, text.length)
};
};
/**
* 处理奥莱首页和频道底部分类
* @param {[type]} origin [description]
* @return {[type]} [description]
*/
const handleOutletsGoodsMenuData = (origin, params) => {
let dest = {
title: '最新折扣',
more: '/product/outlets/list',
menuList: [],
msort: [],
misort: []
};
_.forEach(origin, subValue => {
let oldParam = _.cloneDeep(params);
let goodsmenu = {};
let urlSuffix = {};
goodsmenu.name = subValue.categoryName;
urlSuffix = queryString.parse(url.parse(subValue.url).query);
if (!_.isEmpty(urlSuffix.msort) && urlSuffix.msort === oldParam.msort && urlSuffix.misort === oldParam.misort) {
goodsmenu.cur = true;
}
delete oldParam.msort;
delete oldParam.misort;
if (urlSuffix.msort) {
Object.assign(oldParam, {msort: urlSuffix.msort});
dest.msort.push(urlSuffix.msort);
}
if (urlSuffix.misort) {
Object.assign(oldParam, {misort: urlSuffix.misort});
dest.misort.push(urlSuffix.misort);
}
goodsmenu.href = '?' + queryString.stringify(oldParam) + '#otspool';
dest.menuList.push(goodsmenu);
});
return dest;
};
/**
* 分类导航
*/
const categoryNavigation = (data, params) => {
let goodsBoard = {};
goodsBoard.goodsMenu = handleOutletsGoodsMenuData(data, params);
return {goodsBoard: goodsBoard};
};
/**
* 处理楼层数据
* @param {[array]} list
* @return {[array]}
*/
exports.processFloor = (list, params) => {
const formatData = {};
let floorData;
list = list || [];
// 格式化数据
_.forEach(list, (floor) => {
switch (floor.template_name) {
case 'NL2R':
floorData = {topBanner: floor.data};
break;
case 'hotCategory':
floorData = hotCategory(floor.data);
break;
case 'categoryNavigation':
floorData = categoryNavigation(floor.data, params);
break;
default:
floorData = floor.data;
break;
}
Object.assign(formatData, floorData);
});
return formatData;
};
/**
* 处理奥莱资源位数据
* @param {[type]} origin [description]
* @return {[type]} [description]
*/
exports.handleOutletsBannersData = (origin, params) => {
var dest = {};
dest.limitedBuy = {};
dest.limitedBuy.extra = {};
_.forEach(origin.list, value => {
// 处理焦点图数据
if (value.template_name === 'focus') {
dest.mainBanner = {
list: value.data
};
}
// 处理三张小图数据
if (value.template_name === 'threePicture') {
dest.column = value.data;
}
// 处理右侧一张图片
if (value.template_name === 'single_image') {
dest.limitedBuy.extra.sourceImg = {
href: value.data[0].url,
img: value.data[0].src
};
}
// 处理热销推荐数据
if (value.template_name === 'recommendCategory') {
dest.limitedBuy.extra.hotType = {
title: _.isEmpty(value.data.title) ? '热销推荐' : value.data.title,
classify: []
};
_.forEach(value.data.categoryList, subValue => {
let category = {};
category.href = subValue.url + '&bannerImage=' + subValue.bannerImage;
category.name = subValue.navigateNamePC;
dest.limitedBuy.extra.hotType.classify.push(category);
});
}
// 处理品类导航数据
if (value.template_name === 'categoryNavigation') {
dest.goodsBoard = {
goodsMenu: handleOutletsGoodsMenuData(value.data, params)
};
}
});
return dest;
};
/**
* 处理奥莱活动数据
* @param {[type]} origin [description]
* @param {[type]} params [description]
* @return {[type]} [description]
*/
exports.handleOutletsActivityData = (origin, name) => {
let dest = {
name: name || '限时嗨购',
topic: []
};
// 处理奥莱活动列表数据
_.forEach(origin, value => {
let activity = {
href: helpers.urlFormat('/product/outlets/special/detail', {id: value.id}),
img: value.webCoverUrl,
logo: value.logoUrl,
title: value.title,
limit: parseInt(value.endLeftTime, 10) * 1000
};
if (value.promotionName) {
Object.assign(activity, discountSplit(value.promotionName));
}
dest.topic.push(activity);
});
return dest;
};
/**
* 处理奥莱活动专题数据
* @param {[type]} origin [description]
* @return {[type]} [description]
*/
exports.handleOutletsSpecilData = (origin) => {
let dest = {};
dest.mainBanner = {
src: helpers.image(origin.webUrl, 1920, 360)
};
dest.specialHead = {
logo: origin.logoUrl,
special: origin.title,
title: '全部商品',
limit: origin.endLeftTime * 1000
};
if (origin.promotionName) {
Object.assign(dest.specialHead, discountSplit(origin.promotionName));
}
return dest;
};
/**
* 处理潮品速递商品数据
* @param {[type]} origin [description]
* @return {[type]} [description]
*/
exports.handleOutletstrendGoodData = (origin) => {
let dest = {};
dest.title = '潮品推荐';
dest.goods = productProcess.processProductList(origin.product_list);
_.forEach(dest.goods, (value, key) => {
dest.goods[key].discount = (value.salesPrice / value.marketPrice * 10).toFixed(1) * 1;
});
return dest;
};
/**
* 处理即将上线品牌数据
* @param origin
* @returns {{}}
*/
exports.handleComeSoonData = (origin) => {
let dest = {
title: '上线预告'
};
dest.brands = [];
_.forEach(origin, value => {
dest.brands.push({
logo: value.logoUrl
});
});
return dest;
};