wxJsFunc.js
7.23 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
/**
* Created by shipfi on 2016/9/30.
*/
import _ from 'lodash';
import cookieManager from './cookieManager';
import api from '../api/index';
let __instance = (function () {
let instance;
return (newInstance) => {
if (newInstance)
instance = newInstance;
return instance;
}
}());
class WxJsFunc {
constructor() {
if (__instance())
return __instance();
this.foo = 'bar';
this.wxObject = null;
this.wxTool = null;
__instance(this)
}
using(_wxObject, _wxTool) {
this.wxObject = _wxObject;
this.wxTool = _wxTool;
}
shareFriends() {
console.log(this.wxObject);
if (this.wxObject && typeof this.wxObject.onMenuShareAppMessage != 'undefined') {
self = this;
return function (options) {
self.wxObject.onMenuShareAppMessage({
title: options.title, // 分享标题
link: options.link, // 分享链接
imgUrl: options.imgUrl, // 分享图标
desc: options.desc, // 分享描述
type: 'link', // 分享类型,music、video或link,不填默认为link
dataUrl: '', // 如果type是music或video,则要提供数据链接,默认为空
trigger: function (res) {
// 不要尝试在trigger中使用ajax异步请求修改本次分享的内容,因为客户端分享操作是一个同步操作,这时候使用ajax的回包会还没有返回
},
success: function (res) {
},
cancel: function (res) {
},
fail: function (res) {
}
});
};
} else {
return null;
}
}
/**
* 分享接口
* @param options
*/
shareOthers(options) {
if (this.wxObject && typeof this.wxObject.onMenuShareAppMessage != 'undefined') {
var title = '[' + options.title.substr(0, 30) + ']';
var titleInShareOthers = options.title.substr(0, 30);
var descInShareOthers = options.desc.substr(0, 100);
if (options.shareType == 'TOPIC') {
title = '[' + options.grpName + ']' + titleInShareOthers;
descInShareOthers = '[' + options.grpName + ']' + descInShareOthers;
}
// 分享给朋友
this.wxObject.onMenuShareAppMessage({
title: titleInShareOthers, // 分享标题
link: options.link, // 分享链接
imgUrl: options.imgUrl, // 分享图标
desc: descInShareOthers, // 分享描述
type: 'link', // 分享类型,music、video或link,不填默认为link
dataUrl: '', // 如果type是music或video,则要提供数据链接,默认为空
trigger: function (res) {
// 不要尝试在trigger中使用ajax异步请求修改本次分享的内容,因为客户端分享操作是一个同步操作,这时候使用ajax的回包会还没有返回
},
success: function (res) {
if (options.notifyAPI && 'topicId' in options) {
api.postTopicShare(options.topicId, 2).then(function (shareRes) {
if (typeof options.success == 'function') {
options.success(shareRes);
}
}, function (shareError) {
if (typeof options.error == 'function') {
options.error(shareError);
}
});
} else {
if (typeof options.success == 'function') {
options.success(1);
}
}
},
cancel: function (res) {
},
fail: function (res) {
}
});
// 分享到朋友圈
this.wxObject.onMenuShareTimeline({
title: title, // 分享标题
link: options.link, // 分享链接
imgUrl: options.imgUrl, // 分享图标
success: function () {
// 用户确认分享后执行的回调函数
if (options.notifyAPI && 'topicId' in options) {
api.postTopicShare(options.topicId, 1).then(function (shareRes) {
if (typeof options.success == 'function') {
options.success(shareRes);
}
}, function (shareError) {
if (typeof options.error == 'function') {
options.error(shareError);
}
});
} else {
if (typeof options.success == 'function') {
options.success(1);
}
}
},
cancel: function () {
// 用户取消分享后执行的回调函数
}
});
// 分享到QQ
this.wxObject.onMenuShareQQ({
title: title, // 分享标题
link: options.link, // 分享链接
imgUrl: options.imgUrl, // 分享图标
desc: descInShareOthers, // 分享描述
success: function () {
// 用户确认分享后执行的回调函数
if (options.notifyAPI && 'topicId' in options) {
if (options.notifyAPI && 'topicId' in options) {
api.postTopicShare(options.topicId, 3).then(function (shareRes) {
if (typeof options.success == 'function') {
options.success(shareRes);
}
}, function (shareError) {
if (typeof options.error == 'function') {
options.error(shareError);
}
});
} else {
if (typeof options.success == 'function') {
options.success(1);
}
}
}
},
cancel: function () {
// 用户取消分享后执行的回调函数
}
});
}
}
/**
* 隐藏菜单项接口
* @param options
*/
hideMenuItems() {
if (this.wxObject && typeof this.wxObject.hideMenuItems != 'undefined') {
this.wxObject.hideMenuItems({
menuList: [
'menuItem:copyUrl',
'menuItem:openWithQQBrowser',
'menuItem:openWithSafari'
]
});
}
}
}
let wxJsFunc = new WxJsFunc();
export {wxJsFunc}