parameter.js
3.78 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
/**
* 静态化路由参数处理
* @author: yyq<yanqing.yang@yoho.cn>
* @date: 2017/11/24
*/
'use strict';
const _ = require('lodash');
// const logger = global.yoho.logger;
const minToFullMap = {
ag: 'age_level',
bd: 'brand',
cc: 'coupon_code',
cd: 'coupon_id',
ci: 'category_id',
cl: 'color',
cn: 'channel',
fp: 'filter_poolId',
gd: 'gender',
id: 'id',
ld: 'limited',
lt: 'limit',
mi: 'misort',
ms: 'msort',
nb: 'navBar',
nw: 'new',
od: 'order',
ol: 'outlets',
pc: 'price',
pd: 'p_d',
pg: 'page',
pm: 'promotion',
pp: 'productPool',
sd: 'standard',
se: 'shelveTime',
sf: 'specialoffer',
sh: 'shop_id',
si: 'specialsale_id',
so: 'sort',
sp: 'saleType',
st: 'style',
sz: 'size',
tp: 'type'
};
const fullToMinMap = _.transform(minToFullMap, (result, value, key) => {
if (_.indexOf(['gender', 'brand', 'category_id', 'color', 'style'], value) > -1) {
result[value] = key;
}
}, {});
const genderMap = {
minToFull: {
1: '1,3',
2: '2,3'
},
fullToMin: {
'1,3': 1,
'2,3': 2,
'1,2,3': ''
}
};
const sringifyParam = (param) => {
let arr = [];
_.forEach(param, (value, key) => {
if (value) {
arr.push(`${key}=${value}`);
}
});
return arr.join('&');
};
const transformKey = (params, isFull) => {
if (_.isEmpty(params)) {
return params;
}
let matchParams = {},
extraParams = {};
let map = isFull ? fullToMinMap : minToFullMap;
_.forEach(params, (value, key) => {
let name = map[key];
// 包含',' & 等于{seat} 表示为多选,不需要伪静态
if (name && _.indexOf(value, ',') === -1 && value !== '{seat}') {
matchParams[name] = value;
} else {
extraParams[key] = value;
// logger.info(`list parameter [${key}] map value not found`);
}
});
return {
matchParams,
extraParams
};
};
/**
* 筛选参数转化 min->full
* @param path 伪静态path
* @returns {Object}
*/
const minPathToFullParam = (path) => {
let obj = {};
_.forEach(_.split(path, '-'), splitValue => {
if (!splitValue) {
return;
}
let minKey = splitValue.substr(0, 2);
let fullKey = minToFullMap[minKey];
if (fullKey) {
obj[fullKey] = _.replace(_.replace(splitValue, minKey, ''), '__', '-'); // 替换value中__
}
});
obj.gender = genderMap.minToFull[obj.gender] || obj.gender || '1,2,3';
return obj;
};
/**
* 筛选参数转化 full->min
* @param uri 基础uri
* @param params 当前 URL 中的参数
* @param newObj 新增的参数
* @param delObj 删除的参数
* @returns {string}
*/
const fullParamToMinPath = (uri, params, newObj, delObj = {}) => {
let obj = _.assign({}, params, newObj);
let pathArr = [];
let extraQs = '';
Object.assign(delObj, {uid: true});
_.forEach(delObj, (value, key) => {
_.has(obj, key) && _.unset(obj, key);
});
if (obj.gender) {
obj.gender = _.has(genderMap.fullToMin, obj.gender) ? genderMap.fullToMin[obj.gender] : obj.gender;
}
let transParams = transformKey(obj, true);
_.forEach(transParams.matchParams, (value, key) => {
if (value) {
pathArr.push(`${key}${_.replace(value, '-', '__')}`); // 替换value中-
}
});
if (!_.isEmpty(transParams.extraParams)) {
extraQs = '?' + sringifyParam(transParams.extraParams);
}
let minPath = _.sortBy(pathArr).join('-') + (pathArr.length ? '.html' : '');
return `${_.trimEnd(uri, '/')}/${minPath}${extraQs}`;
};
module.exports = {
transformKey,
fullParamToMinPath,
minPathToFullParam
};