Initial commit: Client Doc docs Server Tools
Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
@@ -0,0 +1,90 @@
|
||||
import moduleHelper from './module-helper';
|
||||
import { getListObject, uid } from './utils';
|
||||
const userInfoButtonList = {};
|
||||
const getObject = getListObject(userInfoButtonList, 'userInfoButton');
|
||||
export default {
|
||||
WXCreateUserInfoButton(x, y, width, height, lang, withCredentials) {
|
||||
const id = uid();
|
||||
const button = wx.createUserInfoButton({
|
||||
type: 'text',
|
||||
text: '',
|
||||
withCredentials,
|
||||
lang,
|
||||
style: {
|
||||
left: x / window.devicePixelRatio,
|
||||
top: y / window.devicePixelRatio,
|
||||
width: width / window.devicePixelRatio,
|
||||
height: height / window.devicePixelRatio,
|
||||
backgroundColor: 'rgba(0, 0, 0, 0)',
|
||||
color: 'rgba(0, 0, 0, 0)',
|
||||
textAlign: 'center',
|
||||
fontSize: 0,
|
||||
borderRadius: 0,
|
||||
borderColor: '#FFFFFF',
|
||||
borderWidth: 0,
|
||||
lineHeight: height / window.devicePixelRatio,
|
||||
},
|
||||
});
|
||||
userInfoButtonList[id] = button;
|
||||
return id;
|
||||
},
|
||||
WXUserInfoButtonShow(id) {
|
||||
const obj = getObject(id);
|
||||
if (!obj) {
|
||||
return;
|
||||
}
|
||||
obj.show();
|
||||
},
|
||||
WXUserInfoButtonDestroy(id) {
|
||||
const obj = getObject(id);
|
||||
if (!obj) {
|
||||
return;
|
||||
}
|
||||
obj.destroy();
|
||||
if (userInfoButtonList) {
|
||||
delete userInfoButtonList[id];
|
||||
}
|
||||
},
|
||||
WXUserInfoButtonHide(id) {
|
||||
const obj = getObject(id);
|
||||
if (!obj) {
|
||||
return;
|
||||
}
|
||||
obj.hide();
|
||||
},
|
||||
WXUserInfoButtonOffTap(id) {
|
||||
const obj = getObject(id);
|
||||
if (!obj) {
|
||||
return;
|
||||
}
|
||||
obj.offTap();
|
||||
},
|
||||
WXUserInfoButtonOnTap(id) {
|
||||
const obj = getObject(id);
|
||||
if (!obj) {
|
||||
return;
|
||||
}
|
||||
|
||||
obj.onTap((res) => {
|
||||
res.userInfo = res.userInfo || {};
|
||||
moduleHelper.send('UserInfoButtonOnTapCallback', JSON.stringify({
|
||||
callbackId: id,
|
||||
errCode: res.err_code || (res.errMsg.indexOf('getUserInfo:fail') === 0 ? 1 : 0),
|
||||
errMsg: res.errMsg || '',
|
||||
signature: res.signature || '',
|
||||
encryptedData: res.encryptedData || '',
|
||||
iv: res.iv || '',
|
||||
cloudID: res.cloudID || '',
|
||||
userInfoRaw: JSON.stringify({
|
||||
nickName: res.userInfo.nickName || '',
|
||||
avatarUrl: res.userInfo.avatarUrl || '',
|
||||
country: res.userInfo.country || '',
|
||||
province: res.userInfo.province || '',
|
||||
city: res.userInfo.city || '',
|
||||
language: res.userInfo.language || '',
|
||||
gender: res.userInfo.gender || 0,
|
||||
}),
|
||||
}));
|
||||
});
|
||||
},
|
||||
};
|
||||
Reference in New Issue
Block a user