preference.js
4.56 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
/*
* @Author: Targaryen
* @Date: 2016-05-18 11:42:11
* @Last Modified by: Targaryen
*/
'use strict';
const _ = require('lodash');
const $ = require('cheerio');
const helpers = global.yoho.helpers;
const yhchannelMap = {
boys: '1',
girls: '2',
kids: '3',
lifestyle: '4'
};
module.exports = class extends global.yoho.BaseModel {
constructor(ctx) {
super(ctx);
}
preference(data) {
return this.get({
data: {
method: 'app.product.preference',
product_skn: data.productskn,
limit: data.limit || '20',
shopId: data.shopId,
yh_channel: yhchannelMap[data.yhChannel]
},
param: {cache: true}
}).then(result => {
if (!result) {
return '';
}
result = _.isString(result) ? result : '';
let goodsContainer = $.load(result)('#shop-goods-container');
let goodThumb = goodsContainer.find('.good-thumb');
goodThumb.each(function(index, domEle) {
let href = $(domEle).attr('href').split('?')[0];
let skn = $(domEle).closest('.good-info').data('id');
if (skn) {
href = helpers.urlFormat(`/product/${skn}.html`); // 商品url改版
}
$(domEle).attr('href', href);
});
result = goodsContainer.append(
`<script type="text/javascript">
(function() {
var qs = {};
var hashes = window.location.search.slice(1).split('&');
for (var i = 0; i < hashes.length; i++) {
var hash = hashes[i].split('=');
qs[hash[0]] = hash[1];
}
// 店铺推荐点击商品 埋点
var C_ID = qs.yh_channel || 1;
var RECID = (new Date().getTime() + '_H5_YOHOBUY_' +
Math.floor(Math.random() * 1000000 + 1000000) +
'_' + Math.floor(Math.random() * 1000000 + 1000000));
var goodDom = document.getElementsByClassName("good-info");
for(var i = 0; i < goodDom.length; i++) {
goodDom[i].addEventListener('click', function(e) {
if (!window._yas || !window._yas.sendAppLogs) {
return;
}
var PRD_ID = e.currentTarget.getAttribute('data-good-id');
var PRD_NUM = e.currentTarget.getAttribute('data-good-index');
window._yas.sendAppLogs({
appop: 'YB_CHOOSE_FOR_YOU',
param: JSON.stringify({
REC_POSE: 100013,
REC_ID: RECID,
PRD_ID: PRD_ID,
PRD_NUM: PRD_NUM,
C_ID: C_ID,
ACTION_ID: 1
})
}, true);
}, false);
}
// 店铺推荐展示 埋点
setTimeout(function(){
// 店铺推荐展示 埋点
if (window._yas && typeof window._yas.sendAppLogs === 'function') {
var prdIds = document.getElementById('shop-goods-ids') || {};
var ids = prdIds.getAttribute('value') || '';
window._yas.sendAppLogs({
appop: 'YB_CHOOSE_FOR_YOU',
param: JSON.stringify({
REC_POSE: 100013,
REC_ID: RECID,
PRD_ID: ids,
PRD_NUM: ids.split(',').length,
C_ID: C_ID,
ACTION_ID: 0
})
}, true);
}
}, 2000);
}());</script>`
).html();
return result;
});
}
};