Compare commits

...

36 Commits

Author SHA1 Message Date
yj fbdc118292 优化 2025-11-10 13:43:26 +08:00
yj 819c899c57 优化 2025-11-10 12:47:34 +08:00
yj 300194a8e4 优化 2025-03-04 15:10:09 +08:00
yj 348b5d2ddc 网络状态 2025-03-04 15:01:25 +08:00
yj b978744362 优化 2025-03-03 17:46:13 +08:00
yj d6bdecc359 添加报错提示 2025-03-03 10:41:40 +08:00
yj 26f567ffd4 优化 2025-02-28 17:21:42 +08:00
yj d86738463f 优化 2025-02-28 15:33:59 +08:00
yj b030e2e26b bug修复 2025-02-28 14:41:16 +08:00
yj 043fbf1846 修改bug 2025-02-28 14:07:10 +08:00
yj fc73b4dd29 优化 2025-02-27 16:41:15 +08:00
yj 9994bbce4e 优化 2025-02-27 16:06:30 +08:00
yj 877754ac06 优化 2025-02-27 15:51:47 +08:00
yj d6718ae65b 暂时屏蔽5分钟下麦 2025-02-26 15:32:24 +08:00
yj d4c26577da 静音设置 2025-02-26 13:54:31 +08:00
yj f4c8ee36b0 优化 2025-02-25 17:16:45 +08:00
yj e4f57d216f 优化 2025-02-25 09:42:16 +08:00
yj 3b61578baa 全员观看-活跃用户 2025-02-24 16:38:47 +08:00
yj 9c4e9cb918 优化 2025-02-24 14:34:14 +08:00
yj a95e977ca1 聊天显示bug 2025-02-24 10:08:36 +08:00
yj 61c37c4b59 优化 2025-02-21 11:52:48 +08:00
yj dddd1e16f5 优化 2025-02-20 17:56:56 +08:00
yj b786ed9923 优化 2025-02-20 17:07:30 +08:00
yj 04f7b0bb4c 优化 2025-02-20 16:08:10 +08:00
yj 5ae26babb1 优化 2025-02-20 15:55:11 +08:00
yj 54187034df 优化 2025-02-20 14:19:00 +08:00
yj 21901de43a 优化 2025-02-20 09:37:38 +08:00
yj 2576d53a14 优化 2025-02-19 18:02:14 +08:00
yj fdceae0c76 优化 2025-02-19 16:12:37 +08:00
yj 3fedd96ce3 优化 2025-02-18 17:49:13 +08:00
yj 1d67b27a1a 入会时,记录用户当前使用版本 2025-02-18 11:07:27 +08:00
yj ecf913ce88 优化 2025-02-18 09:49:09 +08:00
yj e0ba230ce5 优化 2025-02-17 17:55:23 +08:00
yj 0c90133ca4 修复bug 2025-02-17 17:52:50 +08:00
yj f647c1b972 修改重连时间 2025-02-17 15:59:04 +08:00
yj b42a5ae6ab 发言人5分钟未推音视频流自动下麦 2025-02-17 11:21:00 +08:00
15 changed files with 716 additions and 208 deletions

View File

@ -21,3 +21,9 @@ export const GetOpenId = (code: string) => Request({
url: `/pub/mini-openid?js_code=${code}`,
method: 'get',
})
export const PostHomeVerLog = (data: any) =>
Request({
url: `/home/ver-log`,
method: 'post',
data
})

View File

@ -14,7 +14,8 @@
"t-message": "tdesign-miniprogram/message/message",
"t-dialog": "tdesign-miniprogram/dialog/dialog",
"t-popup": "tdesign-miniprogram/popup/popup",
"t-cell": "tdesign-miniprogram/cell/cell"
"t-cell": "tdesign-miniprogram/cell/cell",
"t-toast": "tdesign-miniprogram/toast/toast"
},
"entryPagePath": "pages/form/index",
"window": {

BIN
assets/icon11.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 416 B

BIN
assets/icon12.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 411 B

BIN
assets/icon13.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 417 B

BIN
assets/icon14.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 524 B

View File

@ -1,4 +1,4 @@
import { GetCheckoutRoomNum, PostAnonLogin, GetAgoraConf, GetRoomRtcToken, GetOpenId } from '../../api/form/index'
import { GetCheckoutRoomNum, PostAnonLogin, GetAgoraConf, GetRoomRtcToken, GetOpenId, PostHomeVerLog } from '../../api/form/index'
import { Message } from 'tdesign-miniprogram';
import { startSignalr, onStop } from '../../utils/singlr';
import { agora } from '../../utils/agora'
@ -16,6 +16,20 @@ Page({
code: ''
},
onShow() {
const deviceInfo = wx.getDeviceInfo()
if (deviceInfo && (deviceInfo.platform === 'windows' || deviceInfo.platform === 'mac')) {
wx.showModal({
title: '提示',
content: '当前仅支持移动端使用PC端无法使用。',
showCancel: false,
confirmText: '我知道了',
success: function () {
wx.exitMiniProgram && wx.exitMiniProgram();
}
});
return
}
wx.hideLoading()
const that = this;
onStop()
this.setData({
@ -25,9 +39,50 @@ Page({
key: 'isConnected',
success(res: any) {
if (res.data) {
that.setData({
isJoin: false
})
that.setData({
netWorkErrorDialog: true,
})
wx.setStorage({
key: "isConnected",
data: false
})
}
},
})
wx.getStorage({
key: 'isAllLeave',
success(res: any) {
if (res.data) {
Message.success({
context: that,
offset: ['50px', 32],
duration: 2000,
content: '管理员已结束会议!',
});
wx.setStorage({
key: "isAllLeave",
data: false
})
}
},
})
wx.getStorage({
key: 'isForceExitRoom',
success(res: any) {
if (res.data) {
Message.success({
context: that,
offset: ['50px', 32],
duration: 2000,
content: '管理员已将你移出会议!',
});
wx.setStorage({
key: "isForceExitRoom",
data: false
})
}
},
})
@ -104,7 +159,15 @@ Page({
token: res[0].data,
appid: res[1].data
})
} else {
this.setData({
isJoin: false
})
}
}).catch(() => {
this.setData({
isJoin: false
})
})
},
getCode(callBack?) {
@ -130,6 +193,14 @@ Page({
key: "isConnected",
data: false
})
wx.setStorage({
key: "isAllLeave",
data: false
})
wx.setStorage({
key: "isForceExitRoom",
data: false
})
this.setData({
netWorkErrorDialog: false
})
@ -174,6 +245,12 @@ Page({
uid: res.data.uid,
screenShareId: res.data.screenShareId,
})
const accountInfo = wx.getAccountInfoSync()
PostHomeVerLog({
version: accountInfo?.miniProgram?.envVersion + '-' + accountInfo?.miniProgram?.version,
platformType: 2,
roomNum: this.data.meetingForm.roomNum,
})
wx.navigateTo({
url: `/pages/meeting/index?roomNum=${this.data.meetingForm.roomNum}&nickName=${this.data.meetingForm.roomName}`
})
@ -216,6 +293,18 @@ Page({
})
return
}
if (this.data.meetingForm.roomName.length > 10) {
Message.error({
context: this,
offset: [90, 32],
duration: 3000,
content: '入会名称最多10个字',
});
this.setData({
isJoin: false
})
return
}
GetCheckoutRoomNum(this.data.meetingForm.roomNum).then(async res => {
if (res.code === 200) {
if (res.data) {

View File

@ -1,5 +1,6 @@
{
"usingComponents": {},
"navigationBarTextStyle": "white",
"pageOrientation": "landscape"
"usingComponents": {},
"navigationBarTextStyle": "white",
"pageOrientation": "landscape",
"disableScroll": true
}

View File

@ -10,6 +10,8 @@
border-radius: 4rpx;
padding: 2rpx;
bottom: 4rpx;
max-width: calc(100% - 12rpx);
box-sizing: border-box;
&-view {
width: 16rpx;
@ -64,7 +66,9 @@
&-text {
color: white;
font-size: 12rpx;
margin-left: 2rpx;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
}
}
@ -149,7 +153,7 @@
&-up {
position: fixed;
z-index: 5;
right: 7.4%;
right: 65px;
top: 14%;
color: white;
background-color: rgba(0, 0, 0, 0.5);
@ -165,7 +169,7 @@
&-down {
position: fixed;
z-index: 5;
right: 7.4%;
right: 65px;
bottom: 14%;
color: white;
background-color: rgba(0, 0, 0, 0.5);
@ -179,7 +183,7 @@
}
&-box {
height: calc(100% / 3);
height: 96px;
position: relative;
padding: 2rpx 4rpx;
box-sizing: border-box;
@ -306,7 +310,7 @@
.user-popup {
width: 30vw;
height: 100vh;
height: 88vh;
background-color: #16191E;
padding: 10rpx 0;
box-sizing: border-box;
@ -314,12 +318,18 @@
flex-direction: column;
&-title {
color: white;
text-align: center;
color: gray;
font-size: 16rpx;
flex-shrink: 0;
border-bottom: 1px rgb(59, 59, 59) solid;
padding-bottom: 10rpx;
display: flex;
align-items: center;
justify-content: space-around;
&-active {
color: white;
}
}
&-view {
@ -329,6 +339,7 @@
flex-grow: 1;
&-view {
color: white;
display: flex;
align-items: center;
justify-content: space-between;
@ -340,14 +351,17 @@
flex-grow: 1;
&-text {
flex-grow: 1;
color: white;
font-size: 14rpx;
margin: 0 2rpx;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
width: 0;
max-width: 100rpx;
}
&-me {
color: white;
font-size: 14rpx;
}
}

View File

@ -1,15 +1,18 @@
import { GetRoomInfo, GetRoomUser, GetShowUser, GetApplySpeak, PostMuteAll, PostOpenMicr, PostOpenCamera, DeleteRoomManager } from '../../api/meeting/index'
import { GetRoomRtcToken } from '../../api/form/index'
import { agora } from '../../utils/agora'
import { onInvoke, onSignalr, getSignIr, offSignalr } from '../../utils/singlr'
import { onInvoke, onSignalr, getSignIr, offSignalr, onStop } from '../../utils/singlr'
import { role, getStorage } from '../../utils/utils'
import { Message } from 'tdesign-miniprogram';
import { Message, Toast } from 'tdesign-miniprogram';
import * as signalR from "signalr-for-wx";
import dayjs from 'dayjs';
const computedBehavior = require('miniprogram-computed').behavior;
let reconnectTime = "" as any;
let refreshTime = "" as any;
let isReconnecTimeSetTimeout = "" as any;
let isAutoApplySpeakTime = "" as any;
let isSpeakTime = "" as any;
let netWorkTime = "" as any;
let isReconnecTime = "" as any;
Page({
behaviors: [computedBehavior],
data: {
@ -72,6 +75,7 @@ Page({
},
],
channelId: '',
tabBarIndex: 1,
roomInfo: '',
roomUserList: [],
audioList: [],
@ -87,11 +91,13 @@ Page({
leaveDialog: false,
userPopupVisible: false,
chatPopupVisible: false,
inputPopupVisible: false,
isFullscreen: false,
muted: false,
currentRequestSpeakType: '',
user: '',
messageStr: '',
inputStr: '',
commonlyChatList: [
'能听到我说话吗?',
'听得到',
@ -101,7 +107,13 @@ Page({
isFirstShow: true,
isCurrePage: true,
isReconnec: false,
isReconnecTime: false,
isAutoApplySpeakDialog: false,
showScroll: false,
reconnecNumber: 0,
setting: {
voiceStimulation: true, //语音激励
},
network: 0
},
watch: {
'roomUserList.**': function (roomUserList) {
@ -110,7 +122,8 @@ Page({
userNumer: roomUserList.filter((item: any) => item.isRoom).length,
audioList: roomUserList.map(item => {
return {
volume: 0,
volume: item.volume || '0%',
volumeNumber: item.volumeNumber || 0,
uid: item.uid,
}
})
@ -128,6 +141,32 @@ Page({
'footerList.**': function (footerList) {
const footerListTemplate = [...footerList];
footerListTemplate[3].show = footerListTemplate[2].active
// if (!footerListTemplate[1].active && !footerListTemplate[2].active) {
// if (isAutoApplySpeakTime) {
// clearTimeout(isAutoApplySpeakTime)
// isAutoApplySpeakTime = ''
// }
// isAutoApplySpeakTime = setTimeout(() => {
// let userItem = this.data.roomUserList.find((item: any) => item.uid === this.data.user.uid)
// if (!role.ID.includes(this.data.user.roleId) && userItem && userItem.isRoomManager) {
// DeleteRoomManager({
// roomId: this.data.roomInfo.id,
// roomNum: this.data.channelId,
// userId: userItem.uid
// })
// this.setData({
// isAutoApplySpeakDialog: true
// })
// }
// clearTimeout(isAutoApplySpeakTime)
// isAutoApplySpeakTime = ''
// }, 1000 * 60 * 5);
// } else {
// if (isAutoApplySpeakTime) {
// clearTimeout(isAutoApplySpeakTime)
// isAutoApplySpeakTime = ''
// }
// }
this.setData({
footerList: footerListTemplate
})
@ -142,31 +181,9 @@ Page({
}, 10000);
}
},
'isReconnecTime': function (isReconnecTime) {
if (isReconnecTime) {
isReconnecTimeSetTimeout = setTimeout(() => {
clearTimeout(isReconnecTimeSetTimeout)
this.setData({
isReconnec: true,
isReconnecTime: false,
})
isReconnecTimeSetTimeout = ''
wx.hideLoading()
}, 8000)
} else {
if (isReconnecTimeSetTimeout) {
clearTimeout(isReconnecTimeSetTimeout)
isReconnecTimeSetTimeout = ''
wx.hideLoading()
}
}
},
'isCurrePage': function (isCurrePage) {
if (isCurrePage) {
if (refreshTime) {
clearInterval(refreshTime)
refreshTime = ''
}
this.clearTimer()
} else {
refreshTime = setInterval(() => {
GetRoomUser(this.data.channelId).then(res => {
@ -203,6 +220,15 @@ Page({
})
}
},
'isAdmin': function (isAdmin) {
const query = wx.createSelectorQuery()
query.select('#meeting-content-smallvideo').fields({ size: true, scrollOffset: true }, (res) => {
this.setData({
showScroll: Math.ceil(isAdmin * 94) > Math.ceil(res.height)
})
})
query.exec()
}
},
async onLoad(option) {
wx.enableAlertBeforeUnload({
@ -250,8 +276,14 @@ Page({
},
onReady() {
wx.onNetworkStatusChange(this.listener)
this.setStorageData()
},
onShow() {
async onShow() {
if (netWorkTime) {
clearTimeout(netWorkTime)
netWorkTime = ''
}
this.getNetWorkSpeed()
wx.setKeepScreenOn({
keepScreenOn: true,
});
@ -263,105 +295,285 @@ Page({
isFirstShow: false,
})
} else {
const item = this.data.roomUserList.find(row => row.uid === this.data.user.uid)
if (item && !item.isRoomManager) {
wx.showLoading({
title: '重连中',
mask: true
})
this.setData({
isReconnecTime: true,
})
agora.destroy(() => {
reconnectTime = setInterval(() => {
if (getSignIr() === signalR.HubConnectionState.Connected) {
this.reconnecFun()
clearInterval(reconnectTime)
reconnectTime = ''
}
}, 2000)
})
}
this.reconnecFun()
}
isSpeakTime = setInterval(() => {
if (this.data.setting.voiceStimulation) {
function getMaxObject(arr) {
let maxObject = arr[0];
for (let i = 1; i < arr.length; i++) {
if (arr[i].volumeNumber > maxObject.volumeNumber) {
maxObject = arr[i];
}
}
return maxObject;
}
const isShare = this.data.roomUserList.find(item => item.shareSrc)
const item = getMaxObject(this.data.audioList)
const user = this.data.roomUserList.find(row => item.uid === row.uid)
if (item && (this.data.currentUid !== item.uid && !isShare && (user && user.isRoom) && item.volumeNumber > 0 && item.uid !== this.data.user.uid)) {
this.setData({
currentUid: item.uid
})
}
}
}, 3000)
},
// 隐藏
onHide() {
this.setData({
isCurrePage: true,
isReconnecTime: false
})
if (reconnectTime) {
clearInterval(reconnectTime)
reconnectTime = ''
}
if (isReconnecTimeSetTimeout) {
clearInterval(isReconnecTimeSetTimeout)
isReconnecTimeSetTimeout = ''
}
if (refreshTime) {
clearInterval(refreshTime)
refreshTime = ''
}
this.clearTimer()
},
// 卸载
onUnload() {
wx.offNetworkStatusChange(this.listener)
if (reconnectTime) {
clearInterval(reconnectTime)
reconnectTime = ''
}
if (isReconnecTimeSetTimeout) {
clearInterval(isReconnecTimeSetTimeout)
isReconnecTimeSetTimeout = ''
}
if (refreshTime) {
clearInterval(refreshTime)
refreshTime = ''
this.clearTimer()
},
// 获取网络质量
getNetWorkSpeed() {
this.getNetworkStatus().then(networkStatus => {
this.setData({
network: networkStatus,
})
netWorkTime = setTimeout(() => {
this.getNetWorkSpeed()
}, 3000);
})
},
getNetworkStatus() {
const DOWNLOAD_TIME = [500, 1500];
return new Promise((resolve) => {
try {
let networkStatus = 0
this.getNetworkType().then(({ networkType }) => {
if (['unknown', 'none'].includes(networkType)) {
return resolve(-1);
}
if (['2g', '3g'].includes(networkType)) {
return resolve(2);
}
const startTime = +new Date();
this.requestImage().then(() => {
const requestTime = +new Date() - startTime;
if (requestTime < DOWNLOAD_TIME[0]) {
networkStatus = 0;
} else if (requestTime > DOWNLOAD_TIME[1]) {
networkStatus = 1
} else {
networkStatus = 2;
}
return resolve(networkStatus);
})
});
} catch (error) {
resolve(0);
}
})
},
requestImage() {
return new Promise((resolve) => {
wx.request({
url: `https://meeting-api.23544.com/meeting/update/ddq.png?t=${+new Date()}`,
success() {
resolve('');
},
fail() {
resolve('')
}
})
})
},
getNetworkType() {
return new Promise((resolve) => {
wx.getNetworkType({
success(res) {
resolve(res);
},
fail(err) {
resolve(err);
}
})
})
},
// 设置缓存
async setStorageData() {
const setting: any = await getStorage('setting')
if (setting) {
this.setData({
setting
})
} else {
wx.setStorage({
key: "setting",
data: this.data.setting
})
}
},
// 重连
async reconnecFun() {
offSignalr()
await GetRoomRtcToken(this.data.channelId).then(res => {
if (res.code === 200) {
agora.reconnecSetOption(res.data, async (bool) => {
if (bool) {
await this.joinChannel()
this.startClientEvent()
this.startSignalr()
await this.getRoomUser()
await this.getShowUser()
Message.success({
context: this,
offset: [20, 32],
duration: 3000,
content: '重连成功',
});
this.setData({
isReconnecTime: false,
isReconnec: false
})
} else {
this.setData({
isReconnec: true
})
}
wx.hideLoading()
})
} else {
wx.hideLoading()
this.setData({
isReconnec: true
})
}
}).catch(() => {
if (isReconnecTime) {
clearTimeout(isReconnecTime)
isReconnecTime = ''
}
isReconnecTime = setTimeout(() => {
wx.hideLoading()
this.setData({
isReconnec: true
})
}, 1000 * 30);
wx.hideLoading()
wx.showLoading({
title: '重连中',
mask: true
})
if (reconnectTime) {
clearTimeout(reconnectTime)
reconnectTime = ''
}
agora.destroy(() => {
this.startReconnec()
})
},
async startReconnec() {
if (getSignIr() === signalR.HubConnectionState.Connected) {
clearTimeout(reconnectTime)
reconnectTime = ''
await GetRoomRtcToken(this.data.channelId).then(res => {
if (res.code === 200) {
agora.reconnecSetOption(res.data, async (bool) => {
if (bool) {
await this.joinChannel()
this.startClientEvent()
this.startSignalr()
await this.getRoomUser()
await this.getShowUser()
Message.success({
context: this,
offset: [20, 32],
duration: 3000,
content: '重连成功',
});
this.setData({
isReconnec: false
})
if (isReconnecTime) {
clearTimeout(isReconnecTime)
isReconnecTime = ''
}
} else {
this.setData({
isReconnec: true
})
}
wx.hideLoading()
})
} else {
wx.hideLoading()
this.setData({
isReconnec: true
})
}
}).catch(() => {
wx.hideLoading()
this.setData({
isReconnec: true
})
})
} else {
if (this.data.reconnecNumber > 10) {
this.setIsConnectedBack()
} else {
this.setData({
reconnecNumber: this.data.reconnecNumber + 1
})
reconnectTime = setTimeout(() => {
this.startReconnec()
}, 3000)
}
}
},
// 清除定时器
clearTimer() {
if (refreshTime) {
clearInterval(refreshTime)
refreshTime = ''
}
if (reconnectTime) {
clearTimeout(reconnectTime)
reconnectTime = ''
}
if (isAutoApplySpeakTime) {
clearTimeout(isAutoApplySpeakTime)
isAutoApplySpeakTime = ''
}
if (isSpeakTime) {
clearInterval(isSpeakTime)
isSpeakTime = ''
}
if (netWorkTime) {
clearTimeout(netWorkTime)
netWorkTime = ''
}
if (isReconnecTime) {
clearTimeout(isReconnecTime)
isReconnecTime = ''
}
},
// 显示聊天输入框
showInputPopup() {
this.setData({
inputPopupVisible: true,
inputStr: this.data.messageStr,
chatPopupVisible: false
})
},
// 隐藏聊天输入框
hideInputPopup() {
this.setData({
inputPopupVisible: false,
messageStr: this.data.inputStr,
chatPopupVisible: true
})
},
// 申请发言提示框
confirmIsAutoApplySpeakDialog() {
if (!this.data.isClicked) {
GetApplySpeak(this.data.channelId).then(res => {
if (res.code === 200) {
this.setData({
isClicked: true,
})
this.message('申请发言成功').success()
}
this.setData({
isAutoApplySpeakDialog: false
})
}).catch(() => {
this.setData({
isAutoApplySpeakDialog: false
})
})
} else {
this.message('申请太频繁了,请稍后重试!').error();
}
},
// 关闭发言断开弹窗
cancelIsAutoApplySpeakDialog() {
this.setData({
isAutoApplySpeakDialog: false
})
},
// socket监听
startSignalr() {
offSignalr()
onSignalr(async (item) => {
if (this.data.isCurrePage) {
return
const item = this.data.roomUserList.find(row => row.uid === this.data.user.uid)
if (item && !item.isRoomManager) {
return
}
}
const userInfo: any = await getStorage('user')
switch (item.key) {
@ -384,21 +596,19 @@ Page({
break;
// 全员离开房间
case 'AllLeave':
this.message('管理员已结束会议!').success()
wx.disableAlertBeforeUnload({
complete: () => {
wx.navigateBack()
}
wx.setStorage({
key: "isAllLeave",
data: true
})
this.closeRoom()
break;
// 移出会议
case 'ForceExitRoom':
this.message('管理员已将你移出会议!').success()
wx.disableAlertBeforeUnload({
complete: () => {
wx.navigateBack()
}
wx.setStorage({
key: "isForceExitRoom",
data: true
})
this.closeRoom()
break;
// 更新视图模式
case 'RefreshView':
@ -527,13 +737,43 @@ Page({
// 显示设备列表
case 'ShowDriverList':
break;
// 修改用户名称
case 'ModifyNickName':
this.setAllUserListData('ModifyNickName', item)
break;
case 'SetSpeaker':
await onInvoke('SetSpeakerCallback', item.RoomManagerInputDTO)
break;
// 扩展参数
case 'ReceivedOperation':
try {
const temp = JSON.parse(item.contentString)
if (temp.type === 'audio') {
await PostOpenMicr({
roomNum: temp.roomNum,
uid: temp.uid,
enableMicr: temp.enableMicr
})
} else {
await PostOpenCamera({
roomNum: temp.roomNum,
uid: temp.uid,
enableCamera: temp.enableCamera
})
}
} catch (error) {
}
break;
// 共享人取消共享屏幕
case 'StopedSharedScreen':
this.getShowUser()
break;
}
})
},
// 声网监听
startClientEvent() {
agora.clientEvent({
streamAdded: async (url: string, uid: number | string) => {
@ -568,9 +808,24 @@ Page({
agora.renewToken(res.data)
}
})
}
},
updateUrl: (e) => {
const roomUserListTemp = [...this.data.roomUserList]
const item = roomUserListTemp.find(row => row.uid == e.uid || row.screenShareId == e.uid)
if (item) {
if (String(e.uid).length === 9) {
item.shareSrc = e.url;
} else {
item.src = e.url;
}
}
},
error: (e) => {
this.reconnecFun()
},
})
},
// 获取房间用户
async getRoomUser(): Promise<void> {
await GetRoomUser(this.data.channelId).then(res => {
if (res.code === 200) {
@ -585,6 +840,30 @@ Page({
}
})
},
// 切换tab
setTabBarIndex(e) {
this.setData({
tabBarIndex: Number(e.currentTarget.dataset.tabbarindex)
})
this.setStorageData()
},
// 修改缓存设置
changeSetting(e) {
this.data.setting[e.currentTarget.dataset.str] = e.detail.value
wx.setStorage({
key: "setting",
data: this.data.setting
})
},
// 成员显示用户名称
showMultiText(e) {
Toast({
context: this,
selector: '#t-toast',
message: e.currentTarget.dataset.item.userName,
});
},
// 查看全员观看
async getShowUser(): Promise<void> {
await GetShowUser(this.data.channelId).then(async (res) => {
if (res.code === 200 && res.data) {
@ -594,6 +873,7 @@ Page({
}
})
},
// 首次获取用户信息
async getRoomInfo(): Promise<void> {
await GetRoomInfo(this.data.channelId).then(async (res) => {
if (res.code === 200) {
@ -603,14 +883,26 @@ Page({
}
})
},
// 加入房间
async joinChannel(): Promise<void> {
const item = this.data.roomUserList.find(row => row.uid === this.data.user.uid)
await onInvoke('joinChannel', {
roomNum: this.data.channelId,
enableMicr: this.data.footerList[1].active,
enableCamera: this.data.footerList[2].active,
isRoomManager: item ? item.isRoomManager : false,
})
await agora.joinChannel()
agora.joinChannel(item ? item.isRoomManager : false, (url: string) => {
const roomUserListTemp = [...this.data.roomUserList]
const itemUser = roomUserListTemp.find(row => row.uid == this.data.user.uid)
itemUser.src = url
this.setData({
roomUserList: roomUserListTemp,
})
})
this.changeAgoraDevice()
},
// 用户数据组装
async setAllUserListData(key: string, item: any, callBack?: Function): Promise<void> {
const { roomUserList } = this.data;
const userInfo: any = await getStorage('user')
@ -683,9 +975,20 @@ Page({
roomUserList
})
break;
case 'ModifyNickName':
let row = roomUserList.find((row: any) => row.uid == item.uid)
if (row) {
row.userName = item.nickName
row.avatarName = item.nickName?.slice(-2)
}
this.setData({
roomUserList
})
break;
}
this.changeAgoraDevice()
},
// 点击底部按钮
async changeFooterList(e): Promise<void> {
const userInfo: any = await getStorage('user')
const { index } = e.currentTarget.dataset;
@ -788,6 +1091,7 @@ Page({
break;
}
},
// 开关摄像头
async postOpenMicrApi(enableMicr: boolean, uid: string, isAll: boolean, isMessage: boolean = false): Promise<void> {
if (isAll) {
await PostMuteAll({
@ -795,31 +1099,51 @@ Page({
enableMicr
})
} else {
await PostOpenMicr({
roomNum: this.data.channelId,
await onInvoke('sendOper2User', {
uid,
enableMicr
contentString: JSON.stringify({
roomNum: this.data.channelId,
uid,
enableMicr,
type: 'audio'
})
})
// await PostOpenMicr({
// roomNum: this.data.channelId,
// uid,
// enableMicr
// })
}
if (isMessage) {
this.message('操作成功').success()
}
},
// 开关摄像头
async postOpenCameraApi(enableCamera: boolean, uid: string, isMessage: boolean = false): Promise<void> {
if (enableCamera) {
// await agora.startCameraCapture()
} else {
// await agora.stopCameraCapture();
}
await PostOpenCamera({
roomNum: this.data.channelId,
await onInvoke('sendOper2User', {
uid,
enableCamera
contentString: JSON.stringify({
roomNum: this.data.channelId,
uid,
enableCamera,
type: 'video'
})
})
// await PostOpenCamera({
// roomNum: this.data.channelId,
// uid,
// enableCamera
// })
if (isMessage) {
this.message('操作成功').success()
}
},
// 关闭弹窗
async closeDialog(e) {
const { type } = e.currentTarget.dataset;
switch (e.type) {
@ -852,12 +1176,7 @@ Page({
break;
}
},
playerStateChange(e) {
},
recorderStateChange(e) {
},
// 音量提示
playerAudioVolumenotify(e) {
const { uid } = e.currentTarget.dataset;
const { volume } = e.detail;
@ -866,18 +1185,26 @@ Page({
const item = audioListTemp.find(row => row.uid == uid)
if (item) {
item.volume = Math.floor(percentage) + '%'
item.volumeNumber = Math.floor(percentage)
}
this.setData({
audioList: audioListTemp,
userVolume: audioListTemp.find(row => row.uid == this.data.user.uid).volume
})
},
// 切换视频
clickChangeVideo(e) {
const { item } = e.currentTarget.dataset;
this.setData({
currentUid: item.uid
})
const isShare = this.data.roomUserList.find(item => item.shareSrc)
if (isShare) {
this.message(`正在进行屏幕共享,不允许切换画面。`).error()
} else {
this.setData({
currentUid: item.uid
})
}
},
// 悬浮提示
message(content: string) {
return {
success: () => {
@ -898,6 +1225,7 @@ Page({
}
}
},
// 获取当前用户在房间信息
async getUserRoomInfo(): Promise<any> {
const userInfo: any = await getStorage('user')
return new Promise((resolve, _reject) => {
@ -909,6 +1237,7 @@ Page({
}
})
},
// 更改数据
async changeAgoraDevice(): Promise<any> {
const userInfo: any = await getStorage('user')
this.data.roomUserList.forEach(async (item: any) => {
@ -927,47 +1256,64 @@ Page({
}
});
},
// 退出提示
async back() {
this.setData({
leaveDialog: true
})
},
// 关闭聊天和成员
onVisibleChange() {
this.setData({
userPopupVisible: false,
chatPopupVisible: false,
})
},
// 聊天内容输入框赋值
changeMessageStr(e) {
this.setData({
messageStr: e.detail.value
})
},
// 聊天内容输入框赋值
changeInputStr(e) {
this.setData({
inputStr: e.detail.value
})
},
// 聊天发送
async sendMeg(e) {
if (this.data.messageStr || e.target.dataset.item) {
await onInvoke('sendChannelMsg', {
roomNum: this.data.channelId,
msg: e.target.dataset.item || this.data.messageStr
})
const item = this.data.roomUserList.find(row => row.uid === this.data.user.uid)
this.setData({
chatList: [...this.data.chatList, {
userName: this.data.user.userName,
userName: item.userName,
message: e.target.dataset.item || this.data.messageStr,
timestamp: dayjs(+new Date()).format('HH:mm:ss'),
me: true
}],
messageStr: ''
})
if (!e.target.dataset.item) {
this.setData({
messageStr: ''
})
}
this.scrollToBottom()
} else {
this.message('请输入文字!').error()
}
},
// 全屏切换
changeFullscreen() {
this.setData({
isFullscreen: !this.data.isFullscreen
})
},
// 聊天框位置滚动
scrollToBottom() {
wx.createSelectorQuery()
.select('#chatView')
@ -979,21 +1325,27 @@ Page({
})
})
},
// 断网退出房间
setIsConnectedBack() {
wx.setStorage({
key: "isConnected",
data: true
})
wx.disableAlertBeforeUnload({
complete: () => {
wx.navigateBack()
}
})
},
// 监听网络变化
async listener(res) {
if (res.isConnected && (res.networkType !== 'none' || res.networkType !== 'unknown')) {
} else {
wx.setStorage({
key: "isConnected",
data: true
})
wx.disableAlertBeforeUnload({
complete: () => {
wx.navigateBack()
}
})
}
},
// 重连失败退出房间
closeRoom() {
wx.disableAlertBeforeUnload({
complete: () => {
@ -1004,9 +1356,7 @@ Page({
}
})
},
scroll() {
},
// 上箭头滚动
scrollUp() {
const query = wx.createSelectorQuery()
query.select('#meeting-content-smallvideo').scrollOffset((res => {
@ -1016,6 +1366,7 @@ Page({
}))
query.exec()
},
// 下箭头滚动
scrollDown() {
const query = wx.createSelectorQuery()
query.select('#meeting-content-smallvideo').scrollOffset((res => {

View File

@ -1,7 +1,11 @@
<!--pages/meeting/index.wxml-->
<view class="meeting">
<view wx:if="{{!isFullscreen}}">
<view wx:if="{{!isFullscreen}}" style="position: relative;">
<header-tab title='会议号:{{roomInfo.roomNum}} 会议名称:{{roomInfo.roomName}}' backGround='rgb(35,36,38)' iconSize='24' color="white" titleStyle='padding:12rpx 0;font-size:16rpx' isStatusBarHeight="{{false}}" isBack='{{false}}'></header-tab>
<image src="/assets/icon11.png" style="width: 20rpx;height: 20rpx;position: absolute;left: 20rpx;top: 50%;transform: translate(0,-50%);" wx:if="{{network === 0}}" />
<image src="/assets/icon12.png" style="width: 20rpx;height: 20rpx;position: absolute;left: 20rpx;top: 50%;transform: translate(0,-50%);" wx:elif="{{network === 2}}" />
<image src="/assets/icon14.png" style="width: 20rpx;height: 20rpx;position: absolute;left: 20rpx;top: 50%;transform: translate(0,-50%);" wx:elif="{{network === -1}}" />
<image src="/assets/icon13.png" style="width: 20rpx;height: 20rpx;position: absolute;left: 20rpx;top: 50%;transform: translate(0,-50%);" wx:else />
</view>
<view class="meeting-content">
<view class="meeting-content-noAdmin" wx:if="{{isAdmin === 0}}">
@ -16,20 +20,20 @@
<t-icon name="fullscreen-2" size="24rpx" data-name="fullscreen-2" wx:else />
</view>
<view class="meeting-content-video-canvas" wx:if="{{currentUser.shareSrc}}">
<live-player id="player" src="{{currentUser.shareSrc}}" mode="RTC" autoplay="true" bindstatechange="playerStateChange" object-fit="contain"/>
<live-player id="player" src="{{currentUser.shareSrc}}" mode="RTC" autoplay="true" object-fit="contain" muted="{{true}}" />
</view>
<view class="meeting-content-video-canvas" wx:elif="{{currentUser.src && currentUser.enableCamera}}">
<live-player id="player" src="{{currentUser.src}}" mode="RTC" autoplay="true" bindstatechange="playerStateChange" object-fit="contain" muted="{{currentUser.uid === user.uid}}" />
<view class="meeting-content-video-canvas" wx:elif='{{currentUser.enableCamera}}'>
<live-player id="player" src="{{currentUser.src}}" mode="RTC" autoplay="true" object-fit="contain" muted="{{true}}" />
</view>
<view class="meeting-content-video-user">
<view class="meeting-content-video-user-view" style=" background:{{currentUser.roleId === '1' || currentUser.roleId === '3'? '#FDC229' : '#3F51B5' }}">
<view class="meeting-content-video-user-view" wx:if="{{currentUser.roleId === '1' || currentUser.roleId === '3'}}" style=" background:#FDC229">
<image src="/assets/icon9.png" class="meeting-content-video-user-view-image" />
</view>
<image wx:if="{{!currentUser.enableMicr}}" src="/assets/{{currentUser.enableMicr ? 'icon2' : 'icon2-active'}}.png" class="meeting-content-video-user-image" />
<text class="meeting-content-video-user-text">{{currentUser.userName}}</text>
</view>
</view>
<scroll-view scroll-y class="meeting-content-smallvideo" id="meeting-content-smallvideo" style="width: {{isFullscreen ? '0' :'20%'}}" bindscroll='scroll' scroll-top="{{scrollTop}}">
<scroll-view scroll-y class="meeting-content-smallvideo" id="meeting-content-smallvideo" style="width: {{isFullscreen ? '0' :'170px'}}" scroll-top="{{scrollTop}}">
<view class="meeting-content-smallvideo-box" id="video-{{item.uid}}" wx:for="{{roomUserList}}" data-item="{{item}}" wx:key="index" bind:tap="clickChangeVideo" wx:if="{{item.isRoom && item.isAdmin}}">
<view class="meeting-content-smallvideo-box-view {{item.uid == currentUid ? 'active' : ''}}">
<view class="meeting-content-smallvideo-box-view-avatar {{item.uid == currentUid ? 'active' : ''}}" wx:if="{{!item.enableCamera}}">
@ -38,11 +42,11 @@
</view>
</view>
<view class="meeting-content-smallvideo-box-view-canvas" wx:if="{{item.src}}">
<live-pusher wx:if="{{user.uid === item.uid}}" url="{{item.src}}" mode="RTC" object-fit="contain" bindstatechange="recorderStateChange" background-mute enable-mic="{{footerList[1].active}}" enable-camera max-bitrate="500" min-bitrate="200" autopush enable-agc enable-ans device-position="front" class="meeting-content-smallvideo-box-view-canvas-play" data-uid="{{item.uid}}" bindaudiovolumenotify="playerAudioVolumenotify" beauty='{{9}}' whiteness='{{9}}' />
<live-player src="{{item.src}}" class="meeting-content-smallvideo-box-view-canvas-play" mode="RTC" autoplay="true" bindstatechange="playerStateChange" object-fit="contain" data-uid="{{item.uid}}" bindaudiovolumenotify="playerAudioVolumenotify" wx:else />
<live-pusher wx:if="{{user.uid === item.uid}}" url="{{item.src}}" mode="RTC" object-fit="contain" background-mute enable-mic="{{footerList[1].active}}" enable-camera max-bitrate="500" min-bitrate="200" autopush enable-agc enable-ans device-position="front" class="meeting-content-smallvideo-box-view-canvas-play" data-uid="{{item.uid}}" bindaudiovolumenotify="playerAudioVolumenotify" beauty='{{9}}' whiteness='{{9}}' />
<live-player src="{{item.src}}" class="meeting-content-smallvideo-box-view-canvas-play" mode="RTC" autoplay="true" muted="{{item.uid === user.uid ? true : !item.enableMicr}}" object-fit="contain" data-uid="{{item.uid}}" bindaudiovolumenotify="playerAudioVolumenotify" wx:else />
</view>
<view class="meeting-content-smallvideo-box-view-user">
<view class="meeting-content-smallvideo-box-view-user-view" style=" background:{{ item.roleId === '1' || item.roleId === '3' ? '#FDC229' : '#3F51B5' }}">
<view class="meeting-content-smallvideo-box-view-user-view" wx:if="{{item.roleId === '1' || item.roleId === '3'}}" style=" background:#FDC229">
<image src="/assets/icon9.png" class="meeting-content-smallvideo-box-view-user-view-image" />
</view>
<image wx:if="{{!item.enableMicr}}" src="/assets/{{item.enableMicr ? 'icon2' : 'icon2-active'}}.png" class="meeting-content-smallvideo-box-view-user-image" />
@ -59,10 +63,10 @@
</view>
</view>
</view>
<view class="meeting-content-smallvideo-up" bind:tap="scrollUp" wx:if="{{!isFullscreen && isAdmin>3}}">
<view class="meeting-content-smallvideo-up" bind:touchstart="scrollUp" wx:if="{{!isFullscreen && showScroll && isAdmin >0}}">
<t-icon name="chevron-up" size="24rpx" data-name="chevron-up" />
</view>
<view class="meeting-content-smallvideo-down" bind:tap="scrollDown" wx:if="{{!isFullscreen && isAdmin>3}}">
<view class="meeting-content-smallvideo-down" bind:touchstart="scrollDown" wx:if="{{!isFullscreen && showScroll && isAdmin >0}}">
<t-icon name="chevron-down" size="24rpx" data-name="chevron-down" />
</view>
</scroll-view>
@ -91,16 +95,18 @@
<t-message id="t-message" />
<t-dialog visible="{{applySpeakDialog}}" content="该操作需向管理员申请发言权限" confirm-btn="{{ { content: '确定', variant: 'base', theme: 'primary' } }}" cancel-btn="取消" data-type="applySpeakDialog" bind:confirm="closeDialog" bind:cancel="closeDialog" style="transform: scale(0.5) translate3d(-50%, -50%, 0);" close-btn="{{false}}" />
<t-dialog visible="{{leaveDialog}}" content="确定离开房间吗?" confirm-btn="{{ { content: '确定', variant: 'base', theme: 'primary' } }}" cancel-btn="取消" data-type="leaveDialog" bind:confirm="closeDialog" bind:cancel="closeDialog" style="transform: scale(0.5) translate3d(-50%, -50%, 0);" close-btn="{{false}}" />
<t-popup visible="{{userPopupVisible}}" bind:visible-change="onVisibleChange" placement="right">
<t-popup visible="{{userPopupVisible}}" bind:visible-change="onVisibleChange" placement="right" style="bottom: 0;top:unset;height: 88vh;">
<view class="user-popup">
<view class="user-popup-title">
成员
<view class="{{ tabBarIndex === 1 ? ' user-popup-title-active' : '' }}" bind:tap="setTabBarIndex" data-tabBarIndex='1'>成员</view>
<view class="{{ tabBarIndex === 2 ? ' user-popup-title-active' : '' }}" bind:tap="setTabBarIndex" data-tabBarIndex='2'>设置</view>
</view>
<scroll-view scroll-y class="user-popup-view" enhanced>
<scroll-view scroll-y class="user-popup-view" enhanced wx:if="{{tabBarIndex === 1}}">
<view class="user-popup-view-view" wx:for="{{roomUserList}}" data-item="{{item}}" wx:key="index" wx:if="{{item.isRoom}}">
<view class="user-popup-view-view-avatar">
<view class="user-popup-view-view-avatar" bind:tap="showMultiText" data-item="{{item}}">
<t-avatar size="36rpx">{{item.avatarName}}</t-avatar>
<text class="user-popup-view-view-avatar-text">{{item.userName}}</text>
<text class="user-popup-view-view-avatar-me" wx:if="{{user.uid=== item.uid}}">(我)</text>
</view>
<view class="user-popup-view-view-image">
<image src="/assets/{{item.enableMicr ? 'icon2' : 'icon2-active'}}.png" class="user-popup-view-view-image-icon" />
@ -108,6 +114,12 @@
</view>
</view>
</scroll-view>
<scroll-view scroll-y class="user-popup-view" enhanced wx:else>
<view class="user-popup-view-view">
<text>语音激励</text>
<switch checked="{{setting.voiceStimulation}}" bindchange="changeSetting" data-str='voiceStimulation' />
</view>
</scroll-view>
</view>
</t-popup>
<t-popup visible="{{chatPopupVisible}}" bind:visible-change="onVisibleChange" placement="right">
@ -130,9 +142,19 @@
</view>
</view>
<view class="chat-popup-input">
<input type="text" placeholder="请输入文字" class="chat-popup-input-text" value="{{messageStr}}" bind:input="changeMessageStr" />
<input type="text" placeholder="请输入文字" class="chat-popup-input-text" value="{{messageStr}}" bind:input="changeMessageStr" disabled bind:tap="showInputPopup" />
<view class="chat-popup-input-submit" bind:tap="sendMeg">发送</view>
</view>
</view>
</t-popup>
<t-popup visible="{{inputPopupVisible}}" bind:visible-change="hideInputPopup" placement="top" close-on-overlay-click='{{false}}'>
<view style="padding: 10rpx;display: flex;align-items: center;">
<view class="chat-popup-input-submit" bind:tap="hideInputPopup">确认</view>
<text style="color: gray;font-size: 16rpx;margin: 0 0 0 6rpx">{{inputStr.length}}/30</text>
<view style="height: 30rpx;width: 1px;background-color: gray;margin: 0 6rpx"></view>
<input type="text" placeholder="请输入文字" value="{{inputStr}}" maxlength='{{30}}' bind:input="changeInputStr" style="flex-grow: 1;" />
</view>
</t-popup>
<t-dialog visible="{{isReconnec}}" content="重连失败,请退出重试!" confirm-btn="{{ { content: '确定', variant: 'base', theme: 'primary' } }}" data-type="isReconnec" cancel-btn="{{null}}" bind:confirm="closeRoom" style="transform: scale(0.5) translate3d(-50%, -50%, 0);" close-btn="{{false}}" />
<t-dialog visible="{{isAutoApplySpeakDialog}}" content="由于您长时间未发言,已自动取消发言权限,是否重新申请发言?" cancel-btn="取消" confirm-btn="{{ { content: '确定', variant: 'base', theme: 'primary' } }}" data-type="isAutoApplySpeakDialog" bind:cancel="cancelIsAutoApplySpeakDialog" bind:confirm="confirmIsAutoApplySpeakDialog" style="transform: scale(0.5) translate3d(-50%, -50%, 0);" close-btn="{{false}}" />
<t-toast id="t-toast" style="transform: scale(0.5) translate3d(-50%, -50%, 0);transform-origin: 0% 0%;" />

View File

@ -5,5 +5,5 @@
"compileHotReLoad": true,
"urlCheck": true
},
"libVersion": "3.6.5"
"libVersion": "3.8.8"
}

View File

@ -22,13 +22,10 @@ export const agora = {
destroy: async (callback?) => {
if (client) {
await client.leave()
await client.destroy(() => {
callback?.()
client = '';
})
} else {
callback?.()
await client.destroy()
client = '';
}
callback?.()
},
// 设置角色
setRole: async (isRoomManager: boolean, callBack?: Function) => {
@ -54,9 +51,11 @@ export const agora = {
await agora.init(callback)
},
// 加入频道
joinChannel: () => {
client.join(option.token, option.channelId, option.uid, () => {
agora.setRole(false)
joinChannel: async (roleStatus: boolean, callBack: Function) => {
await client.join(option.token, option.channelId, option.uid, () => {
agora.setRole(roleStatus, (url) => {
callBack(url)
})
})
},
// 刷新token
@ -64,7 +63,7 @@ export const agora = {
client.renewToken(token)
},
// 监听
clientEvent: ({ streamAdded, streamRemoved, tokenRef }) => {
clientEvent: ({ streamAdded, streamRemoved, tokenRef, updateUrl, error }: any) => {
client.on("stream-added", async e => {
await agora.subscribe(e.uid, (url: string, uid: number | string) => {
streamAdded(url, uid)
@ -76,6 +75,12 @@ export const agora = {
client.on("token-privilege-will-expire", async e => {
tokenRef()
});
client.on("error", async e => {
error()
});
client.on("update-url", async e => {
updateUrl(e)
});
},
// 订阅远端音视频流
subscribe: async (uid: number | string, callBack: Function) => {

View File

@ -1,7 +1,6 @@
// const apiBase = "http://192.168.2.9:5192"
const apiBase = "https://meeting-api.23544.com/pc"
// const apiBase = "https://meeting-api.23544.com/test29"
import { Message } from 'tdesign-miniprogram';
export const Request = (params) => {
return new Promise((resolve, reject) => {
wx.getStorage({
@ -47,21 +46,12 @@ function requestMethods(obj, callback) {
callback('success', res)
},
fail: res => {
if (res.errMsg === 'request:fail timeout') {
Message.error({
context: this,
offset: [20, 32],
duration: 2000,
content: '网络连接超时,请检查网络状态',
});
}
if (res.errMsg === 'request:fail ') {
Message.error({
context: this,
offset: [20, 32],
duration: 2000,
content: '网络已断开,请检查网络状态',
});
if (res.errno === 5) {
wx.showToast({
icon: 'error',
title: '网络连接超时,请检查网络状态',
mask: true
})
}
callback('fail', res)
},

View File

@ -68,6 +68,10 @@ export const onInvoke = async (str: string, data: any) => {
// 发言人设置成功
await connection.invoke(str, data)
break;
case 'sendOper2User':
// 扩展参数
await connection.invoke(str, data.uid, data.contentString)
break;
}
}
export const onSignalr = (callBack: Function) => {
@ -197,6 +201,14 @@ export const onSignalr = (callBack: Function) => {
driversJsonString
})
});
// 修改用户名称
connection.on("ModifyNickName", (uid, nickName) => {
callBack({
key: 'ModifyNickName',
uid,
nickName
})
});
// 设置发言人
connection.on("SetSpeaker", (RoomManagerInputDTO) => {
callBack({
@ -204,10 +216,24 @@ export const onSignalr = (callBack: Function) => {
RoomManagerInputDTO
})
});
// 扩展参数
connection.on("ReceivedOperation", (contentString) => {
callBack({
key: 'ReceivedOperation',
contentString
})
});
// 共享人取消共享屏幕
connection.on("StopedSharedScreen", (ScreenShareId) => {
callBack({
key: 'StopedSharedScreen',
ScreenShareId
})
});
}
}
export const onStop = async () => {
agora.destroy();
await agora.destroy();
if (connection) {
connection.stop()
connection = '';
@ -260,7 +286,10 @@ export const offSignalr = () => {
connection.off('DriverList');
connection.off('SetDriver');
connection.off('ShowDriverList');
connection.off('ModifyNickName');
connection.off('SetSpeaker');
connection.off('ReceivedOperation');
connection.off('StopedSharedScreen');
}
}