floor-data-handler.js
4.32 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
/**
* 获取各个楼层的数据
* @author: 赵彪<bill.zhao@yoho.cn>
* @date: 2016/08/05
*/
'use strict';
const _ = require('lodash');
/**
* 获取楼层title
* @param {String || Object} 原始title
* @return {Object} 转换后的title
*/
const _getTitle = t => {
const reg = /\w+/g;
let arr = [];
let r;
let cn;
let en;
if (!t) {
return {
en: '',
cn: ''
};
}
if (_.isObject(t)) {
t = t.title;
}
do {
r = reg.exec(t);
if (r) {
arr.push(r[0]);
}
} while (r);
en = arr.join(' ');
cn = t.replace(en, '');
return {
en,
cn
};
};
/**
* 获取slider楼层数据
* @param {Object} d 接口返回的楼层数据
* @return {Object} 处理之后的数据
*/
const getSliderData = d => {
_.forEach(d, img => {
img.src = _.split(img.src, '?')[0];
});
return {
slider: d
};
};
/**
* 获取BrandsAd楼层数据
* @param {Object} d 接口返回的楼层数据
* @return {Object} 处理之后的数据
*/
const getBrandAdFloor = d => {
const list = d.list;
_.forEach(list, data => {
data.btnText = 'shop now';
});
return {
brandsAd: list
};
};
/**
* 获取new arrivals楼层数据
* @param {Object} d 接口返回的楼层数据
* @return {Object} 处理之后的数据
*/
const getNewArrivals = d => {
const list = d.list;
const title = _getTitle(d.title);
_.forEach(list, (data, index) => {
if (index === 0 || index === list.length - 1) {
data.smallImg = true;
}
if (index % 2 !== 0) {
data.even = true;
}
});
return {
floorZh: title.cn,
floorEn: title.en,
newArrivals: list
};
};
/**
* 获取classic brands楼层数据
* @param {Object} d 接口返回的楼层数据
* @return {Object} 处理之后的数据
*/
const getClassicBrands = d => {
let brands = [];
let subArr;
let i = 0;
const list = d.list;
const title = _getTitle(d.title);
_.forEach(list, (data, index) => {
if (index === 0 || index === 1 || index === 6 || index === 7) {
brands.push({
big: [list[index]]
});
} else if ((index > 1 && index < 6 || index > 7 && index < 12) && index % 2 === 0) {
if (i < 4) {
subArr = list.slice(index, index + 2);
brands[i].small = subArr;
i += 1;
}
}
});
_.forEach(brands, (data, index) => {
if (index < 2) {
data.bottomSpace = true;
}
if (index === 1 || index === 3) {
data.right = true;
}
});
return {
floorZh: title.cn,
floorEn: title.en,
classicBrands: brands
};
};
/**
* 获取潮流标志楼层数据
* @param {Object} d 接口返回的楼层数据
* @return {Object} 处理之后的数据
*/
const getStyleIcon = d => {
const list = d.list;
const title = _getTitle(d.title);
_.forEach(list, data => {
data.btnText = '去看看';
});
return {
floorZh: title.cn,
floorEn: title.en,
styleIcon: list
};
};
/**
* 获取广告楼层数据
* @param {Object} d 接口返回的楼层数据
* @return {Object} 处理之后的数据
*/
const getAdBanner = d => {
return {
adBanner: d
};
};
/**
* 获取咨询楼层数据
* @param {Object} d 接口返回的楼层数据
* @return {Object} 处理之后的数据
*/
const getEditorial = d => {
const list = d.list;
const title = _getTitle(d.title);
let e = {
big: {},
small: []
};
_.forEach(list, (data, index) => {
if (index === 0) {
e.big = data;
} else {
e.small.push(data);
}
});
_.forEach(e.small, (data, index) => {
if (index === 0 || index === 1) {
data.bottomSpace = true;
}
if (index === 0 || index === 2) {
data.rightSpace = true;
}
});
return {
floorZh: title.cn,
floorEn: title.en,
editorial: e
};
};
module.exports = {
getSliderData,
getBrandAdFloor,
getNewArrivals,
getClassicBrands,
getStyleIcon,
getAdBanner,
getEditorial
};