vue-directive.js
6.46 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
/*
* @Author: Targaryen
* @Date: 2016-08-02 17:29:52
* @Last Modified by: Targaryen
* @Last Modified time: 2016-08-02 17:42:26
*/
import yoho from 'yoho';
import util from 'common/util';
function ImgSrcBinding(el, binding) {
if (binding.value === binding.oldValue) {
return;
}
if (typeof binding.value === 'string') {
el.src = binding.value;
} else if (typeof binding.value === 'object') {
let {src, width, height, mode} = binding.value;
el.src = util.getImgUrl(src, width, height, mode);
}
}
function BrandHrefBinding(el, binding) {
if (binding.value === binding.oldValue) {
return;
}
if (binding.modifiers.shop) {
let href = `/product/shop/${binding.value.domain || binding.value.name}`;
let shopId = binding.value.shopId;
if (yoho.isYohoBuy && shopId) {
let { shopName, shopTemplateType, isRedShop } = binding.value;
if (isRedShop === 1) {
shopTemplateType = '1';
}
let goParams = {
action: 'go.shop',
params: {
shop_id: shopId + '',
shop_name: shopName,
is_red_shop: isRedShop,
shop_template_type: shopTemplateType
}
};
href += `?openby:yohobuy=${JSON.stringify(goParams)}`;
el.href = href;
}
if (yoho.isYohoBuy && !shopId) {
yoho.getAppVersion({}, (version) => {
if (version >= '6.5.5') {
let { name } = binding.value;
let goParams = {
action: 'go.searchlist',
params: {
keyword: name
}
};
href += `?openby:yohobuy=${JSON.stringify(goParams)}`;
el.href = href;
} else {
el.href = href;
}
});
}
} else {
el.href = `/product/shop/${binding.value}`;
}
}
function GoodHrefBinding(el, binding) {
if (binding.value === binding.oldValue) {
return;
}
let {product_id, goods_id, cn_alphabet, product_skn} = binding.value;
if (!binding.modifiers.collect) {
goods_id = binding.value.goods_list.length ? binding.value.goods_list[0].goods_id : '';
}
let href = `/product/pro_${product_id}_${goods_id}/${cn_alphabet || 'item'}.html`;
if (yoho.isYohoBuy) {
let goParams = {
action: 'go.productDetail',
params: {
product_skn: product_skn
}
};
href += `?openby:yohobuy=${JSON.stringify(goParams)}`;
}
el.href = href;
}
function BlkHrefBinding(el, binding) {
let value = binding.value;
let protocol = value.match(/^(https?:)?\/\//);
protocol = protocol && protocol.length ? protocol[0] : '';
value = value.replace(protocol, '');
// 新品抢先看
let query = value.match(/^m\.yohobuy\.com\/product\/blknew(\?.*)?/);
if (query) {
query = query[1] || '';
return el.href = `${protocol}m.yohoblk.com/new${query}`;
}
// 全部品类
if (value === 'm.yohobuy.com/cate') {
return el.href = `${protocol}m.yohoblk.com/cate-all`;
}
// 全部品牌
if (value === 'm.yohobuy.com/brand' || value === 'm.yohobuy.com/brands') {
return el.href = `${protocol}m.yohoblk.com/brand`;
}
// 部分品牌
query = value.match(/^m\.yohobuy\.com\/product\/index\/brand\?(.*)?/);
query = query && query[1] || '';
if (query && query.indexOf('domain=') > -1) {
let domain = query.match(/domain=([^&]*)&?.*?/);
domain = domain[1] || '';
return el.href = `${protocol}m.yohoblk.com/product/shop/${domain}?${query}`;
}
let subDomain = value.match(/(.+)\.m\.yohobuy\.com/);
subDomain = subDomain ? subDomain[1] : '';
if (subDomain) {
if (subDomain === 'guang') {
// 逛
let editorialId = value.match(/guang\.m\.yohobuy\.com\/info\/index\?id=(\d{1,})/);
if (editorialId) {
editorialId = editorialId[1];
return el.href = `${protocol}m.yohoblk.com/editorial/${editorialId}.html`;
}
} else if (subDomain === 'list') {
// 品类
query = value.match(/\?.*/);
query = query ? query[0] : '';
return el.href = `${protocol}m.yohoblk.com/product/list${query}`;
} else {
// 品牌
query = value.match(/\?.*/);
query = query ? query[0] : '';
return el.href = `${protocol}m.yohoblk.com/product/shop/${subDomain}${query}`;
}
}
el.href = `${protocol}${value}`;
}
function lazyHtmlReplace(html, lazy) {
let renderImgIndex = 5;
return html
.replace(/<img [^>]*src=['"]([^'"]+)[^>]*>/gi, (imgHtml, src) => {
if (src.indexOf('?') < 0) {
src += '?imageMogr2/thumbnail/750x/quality/60/interlace/1';
}
if (lazy) {
renderImgIndex--;
}
src = util.replaceHttp(src);
return (lazy && renderImgIndex < 0) ? `<img v-lazy.imgLazyContainer="'${src}'" />` : `<img src="${src}" />`;
});
}
export default (Vue) => {
Vue.directive('lazy-html', {
bind(el, binding) {
// TODO 首屏幕不使用
setTimeout(() => {
let html = lazyHtmlReplace(binding.value, true);
try {
let res = Vue.compile(`<div>${html}</div>`);
let component = new Vue({
render: res.render,
staticRenderFns: res.staticRenderFns
});
Vue.nextTick(() => {
component.$mount(el);
});
} catch (e) {
html = lazyHtmlReplace(binding.value);
el.innerHTML = html;
}
}, 500);
}
});
Vue.directive('img-src', {
bind: ImgSrcBinding,
update: ImgSrcBinding
});
Vue.directive('brand-href', {
bind: BrandHrefBinding,
update: BrandHrefBinding
});
Vue.directive('good-href', {
bind: GoodHrefBinding,
update: GoodHrefBinding
});
Vue.directive('blk-href', {
bind: BlkHrefBinding,
update: BlkHrefBinding
});
};