redshop-process.js
4.47 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
/*
* @Author: Targaryen
* @Date: 2017-03-23 11:02:31
* @Last Modified by: Targaryen
* @Last Modified time: 2017-03-24 11:39:15
*/
/* 红人店铺数据处理 */
const _ = require('lodash');
let countCarouselImage = 0; // 轮播图模块统计
/**
* 图片处理
* @param {*} moduleData
*/
const _picsHandle = (moduleData) => {
let pics = [];
_.forEach(_.get(moduleData, 'data', []), value => {
pics.push({
src: value.pic
});
});
return pics;
};
/**
* 红人店铺楼层数据处理工具
*/
const _tools = {
/**
* 模块标题
* @param {*} moduleData
*/
title(moduleData) {
return {
module_type: 'Title',
text: _.get(moduleData, 'data[0].text', ''),
isModuleMargin: _.get(moduleData, 'properties.isModuleMargin', false)
};
},
/**
* 视频模块
* @param {*} moduleData
*/
video(moduleData) {
return {
module_type: 'Video',
title: _.get(moduleData, 'data[0].text.title', ''),
content: _.get(moduleData, 'data[0].text.content', ''),
pic: _.get(moduleData, 'data[0].pic', ''),
};
},
/**
* 轮播图
* @param {*} moduleData
*/
carouselImage(moduleData) {
return {
module_type: 'CarouselImage',
num: countCarouselImage,
pics: _picsHandle(moduleData)
};
},
/**
* 一张图片
* @param {*} moduleData
*/
singleImage(moduleData) {
return {
module_type: 'SingleImage',
pic: _.get(moduleData, 'data[0].pic', ''),
text: _.get(moduleData, 'data[0].text', ''),
width: _.get(moduleData, 'properties.width', ''),
height: _.get(moduleData, 'data[0].text', ''),
moduleHeight: _.get(moduleData, 'properties.moduleHeight', ''),
isModuleMargin: _.get(moduleData, 'properties.isModuleMargin', false),
};
},
/**
* 两张图片
* @param {*} moduleData
*/
doubleImage(moduleData) {
return {
module_type: 'DoubleImage',
pics: _picsHandle(moduleData),
isModuleMargin: _.get(moduleData, 'properties.isModuleMargin', false),
};
},
/**
* 三张图片
* @param {*} moduleData
*/
tripleImage(moduleData) {
return {
module_type: 'TripleImage',
pics: _picsHandle(moduleData),
isModuleMargin: _.get(moduleData, 'properties.isModuleMargin', false),
displayType: _.get(moduleData, 'properties.displayType', 1),
};
},
/**
* 商品列表
* @param {*} moduleData
*/
sknList(moduleData) {
let skns = '';
_.forEach(_.get(moduleData, 'data', []), value => {
skns += value + ',';
});
console.log(skns);
return {
module_type: 'SknList',
skns: skns,
};
}
};
/**
* 处理红人店铺楼层
* @param {*} decoratorsData
*/
const floor = (decoratorsData) => {
let finalData = [];
_.forEach(decoratorsData, value => {
try {
value.module_data = JSON.parse(value.module_data);
} catch (error) {
console.log(error);
}
switch (value.module_type) {
case 'Title':
finalData.push(_tools.title(value.module_data));
break;
case 'Video':
finalData.push(_tools.video(value.module_data));
break;
case 'CarouselImage':
countCarouselImage++;
finalData.push(_tools.carouselImage(value.module_data));
break;
case 'SingleImage':
finalData.push(_tools.singleImage(value.module_data));
break;
case 'DoubleImage':
finalData.push(_tools.doubleImage(value.module_data));
break;
case 'TripleImage':
finalData.push(_tools.tripleImage(value.module_data));
break;
case 'SknList':
finalData.push(_tools.sknList(value.module_data));
break;
default:
break;
}
});
return finalData;
};
const shopIntro = (params) => {
if (params) {
params.short_intro = _.get(params, 'shop_intro', '').replace(/<.*?>/g, '');
}
return params;
};
module.exports = {
floor,
shopIntro
};