114 lines
2.9 KiB
JavaScript
114 lines
2.9 KiB
JavaScript
// TUIKitWChat/Chat/index.js
|
|
// import Aegis from './lib/aegis'; //移到app.js
|
|
import constant from './utils/constant';
|
|
const app = getApp();
|
|
Component({
|
|
/**
|
|
* 组件的属性列表
|
|
*/
|
|
properties: {
|
|
|
|
},
|
|
|
|
/**
|
|
* 组件的初始数据
|
|
*/
|
|
data: {
|
|
isShowConversation: false,
|
|
isShowConversationList: true,
|
|
currentConversationID: '',
|
|
unreadCount: 0,
|
|
hasCallKit: false,
|
|
config: {
|
|
userID: '',
|
|
userSig: '',
|
|
type: 1,
|
|
tim: null,
|
|
SDKAppID: 0,
|
|
},
|
|
},
|
|
|
|
/**
|
|
* 组件的方法列表
|
|
*/
|
|
methods: {
|
|
init() {
|
|
|
|
console.warn("TUIKit js: init")
|
|
|
|
const { config } = this.data;
|
|
config.userID = wx.$chat_userID;
|
|
config.userSig = wx.$chat_userSig;
|
|
config.tim = wx.$TUIKit;
|
|
config.SDKAppID = wx.$chat_SDKAppID;
|
|
this.setData({
|
|
config,
|
|
}, () => {
|
|
this.TUICallKit = this.selectComponent('#TUICallKit');
|
|
// 这里的 isExitInit 用来判断 TUICallKit init 方法是否存在
|
|
// 当 isExitInit 为 true 时,进行 callkit 初始化和日志上报
|
|
const isExitInit = (this.TUICallKit.init !== undefined);
|
|
if (this.TUICallKit !== null && isExitInit) {
|
|
wx.aegis.reportEvent({
|
|
name: 'TUICallKit',
|
|
ext1: 'TUICallKitInit',
|
|
ext2: wx.$chat_reportType,
|
|
ext3: wx.$chat_SDKAppID,
|
|
});
|
|
this.TUICallKit.init();
|
|
wx.setStorageSync('_isTIMCallKit', true);
|
|
wx.$_isTIMCallKit = '_isTIMCallKit';
|
|
this.setData({
|
|
hasCallKit: true,
|
|
});
|
|
}
|
|
});
|
|
const TUIConversation = this.selectComponent('#TUIConversation');
|
|
TUIConversation.init();
|
|
|
|
//移到app.js
|
|
// if (app?.globalData?.reportType !== constant.OPERATING_ENVIRONMENT) {
|
|
// this.aegisInit();
|
|
// }
|
|
|
|
wx.$chat_reportType = 'chat-uikit-wechat';
|
|
wx.aegis.reportEvent({
|
|
name: 'time',
|
|
ext1: 'first-run-time',
|
|
ext2: wx.$chat_reportType,
|
|
ext3: wx.$chat_SDKAppID,
|
|
});
|
|
},
|
|
currentConversationID(event) {
|
|
this.setData({
|
|
isShowConversation: true,
|
|
isShowConversationList: false,
|
|
currentConversationID: event.detail.currentConversationID,
|
|
unreadCount: event.detail.unreadCount,
|
|
}, () => {
|
|
const TUIChat = this.selectComponent('#TUIChat');
|
|
TUIChat.init();
|
|
});
|
|
},
|
|
showConversationList() {
|
|
this.setData({
|
|
isShowConversation: false,
|
|
isShowConversationList: true,
|
|
}, () => {
|
|
const TUIConversation = this.selectComponent('#TUIConversation');
|
|
TUIConversation.init();
|
|
});
|
|
},
|
|
handleCall(event) {
|
|
if (event.detail.groupID) {
|
|
this.TUICallKit.groupCall(event.detail);
|
|
} else {
|
|
this.TUICallKit.call(event.detail);
|
|
}
|
|
},
|
|
sendMessage(event) {
|
|
this.selectComponent('#TUIChat').sendMessage(event);
|
|
},
|
|
},
|
|
});
|