2022-05-05 19:48:27 +08:00
|
|
|
|
<template>
|
2022-05-18 17:25:43 +08:00
|
|
|
|
<div id="app-container" v-loading="isMeetingLoading" ref="appContainer">
|
|
|
|
|
<div class="row">
|
|
|
|
|
<div class="meeting-container" ref="meetingContainerRef">
|
|
|
|
|
<div id="video-element" ref="videoElementRef"></div>
|
|
|
|
|
<el-button @click="setFullScreen" class="fullscreen-btn">
|
|
|
|
|
全屏</el-button
|
|
|
|
|
>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="chat-right" ref="chatRightRef">
|
|
|
|
|
<messageList :messageList="messages"></messageList>
|
|
|
|
|
<div class="option-bar">
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="editingMessage"
|
|
|
|
|
style="margin-right: 15px"
|
|
|
|
|
></el-input>
|
|
|
|
|
<el-button
|
|
|
|
|
type="success"
|
|
|
|
|
@click="sendMessage"
|
|
|
|
|
:disabled="editingMessage.length === 0"
|
|
|
|
|
>发送</el-button
|
|
|
|
|
>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2022-05-05 19:48:27 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<el-tabs class="tabs" type="border-card">
|
|
|
|
|
<el-tab-pane label="会议介绍">
|
|
|
|
|
<div class="meeting-info meeting-note" v-html="meetingNote"></div>
|
|
|
|
|
</el-tab-pane>
|
|
|
|
|
<el-tab-pane label="会议日程"
|
|
|
|
|
><div
|
|
|
|
|
class="meeting-info meeting-schedule"
|
|
|
|
|
v-html="meetingSchedule"
|
|
|
|
|
></div
|
|
|
|
|
></el-tab-pane>
|
|
|
|
|
<el-tab-pane label="专家介绍"
|
|
|
|
|
><div class="meeting-info expert-info" v-html="expertInfo"></div
|
|
|
|
|
></el-tab-pane>
|
2022-05-18 17:25:43 +08:00
|
|
|
|
<el-tab-pane label="聊天" class="chat-pane" v-if="screenWidth < 768"
|
2022-05-05 19:48:27 +08:00
|
|
|
|
><div class="meeting-info chat">
|
|
|
|
|
<messageList :messageList="messages"></messageList>
|
|
|
|
|
<div class="option-bar">
|
2022-05-18 17:25:43 +08:00
|
|
|
|
<el-input
|
2022-05-05 19:48:27 +08:00
|
|
|
|
v-model="editingMessage"
|
2022-05-18 17:25:43 +08:00
|
|
|
|
style="margin-right: 15px"
|
|
|
|
|
></el-input>
|
|
|
|
|
<!-- <svg-icon :icon-class="search" style="height: 30px; width: 16px" /> -->
|
2022-05-05 19:48:27 +08:00
|
|
|
|
<el-button
|
|
|
|
|
type="success"
|
|
|
|
|
@click="sendMessage"
|
|
|
|
|
:disabled="editingMessage.length === 0"
|
|
|
|
|
>发送</el-button
|
|
|
|
|
>
|
|
|
|
|
</div>
|
|
|
|
|
</div></el-tab-pane
|
|
|
|
|
>
|
|
|
|
|
</el-tabs>
|
|
|
|
|
|
|
|
|
|
<el-dialog
|
|
|
|
|
v-model="showSignDialog"
|
|
|
|
|
:close-on-click-modal="false"
|
|
|
|
|
title="签到"
|
|
|
|
|
width="30%"
|
|
|
|
|
>
|
|
|
|
|
<span>是否确认签到</span>
|
|
|
|
|
<template #footer>
|
|
|
|
|
<span class="dialog-footer">
|
|
|
|
|
<el-button type="primary" @click="submitSign">确定</el-button>
|
|
|
|
|
<el-button type="primary" @click="showSignDialog = false"
|
|
|
|
|
>取消</el-button
|
|
|
|
|
>
|
|
|
|
|
</span>
|
|
|
|
|
</template>
|
|
|
|
|
</el-dialog>
|
|
|
|
|
<questions
|
|
|
|
|
mode="1"
|
2022-05-18 17:25:43 +08:00
|
|
|
|
v-if="showExamDialog"
|
2022-05-05 19:48:27 +08:00
|
|
|
|
:showDialog="showExamDialog"
|
|
|
|
|
@close="showExamDialog = $event"
|
|
|
|
|
></questions>
|
|
|
|
|
|
|
|
|
|
<questions
|
|
|
|
|
mode="2"
|
2022-05-18 17:25:43 +08:00
|
|
|
|
v-if="showQuestionnaireDialog"
|
2022-05-05 19:48:27 +08:00
|
|
|
|
:showDialog="showQuestionnaireDialog"
|
|
|
|
|
@close="showQuestionnaireDialog = $event"
|
|
|
|
|
></questions>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
<script setup>
|
2022-05-29 13:30:19 +08:00
|
|
|
|
import {
|
|
|
|
|
computed,
|
|
|
|
|
reactive,
|
|
|
|
|
watch,
|
|
|
|
|
ref,
|
|
|
|
|
onMounted,
|
|
|
|
|
onUnmounted,
|
|
|
|
|
nextTick,
|
|
|
|
|
} from "vue";
|
2022-05-05 19:48:27 +08:00
|
|
|
|
import { useStore } from "vuex";
|
2022-05-29 13:30:19 +08:00
|
|
|
|
|
2022-05-06 23:11:47 +08:00
|
|
|
|
import { signMeeting, generateSignature } from "@/api/meeting";
|
2022-05-05 19:48:27 +08:00
|
|
|
|
import questions from "@/components/questions";
|
|
|
|
|
import messageList from "@/components/messageList";
|
|
|
|
|
import dayjs from "dayjs";
|
|
|
|
|
import ZoomMtgEmbedded from "@zoomus/websdk/embedded";
|
|
|
|
|
import _ from "lodash";
|
2022-05-25 17:31:14 +08:00
|
|
|
|
|
2022-05-18 17:25:43 +08:00
|
|
|
|
import ReconnectingWebSocket from "reconnecting-websocket";
|
2022-05-05 19:48:27 +08:00
|
|
|
|
import { ElMessage, ElMessageBox } from "element-plus";
|
2022-05-18 17:25:43 +08:00
|
|
|
|
import { useRoute } from "vue-router";
|
|
|
|
|
const route = useRoute();
|
2022-05-05 19:48:27 +08:00
|
|
|
|
const store = useStore();
|
2022-05-25 17:31:14 +08:00
|
|
|
|
|
2022-05-18 17:25:43 +08:00
|
|
|
|
const meetingNote = computed(() => store.getters.meetingNote); // 会议介绍
|
|
|
|
|
const meetingSchedule = computed(() => store.getters.meetingSchedule); // 会议日程
|
|
|
|
|
const expertInfo = computed(() => store.getters.expertInfo); // 专家信息
|
|
|
|
|
const isMeetingLoading = ref(true); // 视频课件是否正在加载
|
2022-05-25 17:31:14 +08:00
|
|
|
|
const templateId = ref(6); // 布局 id
|
2022-05-05 19:48:27 +08:00
|
|
|
|
if (store.getters.templateId) {
|
|
|
|
|
templateId.value = store.getters.templateId;
|
|
|
|
|
}
|
2022-05-18 17:25:43 +08:00
|
|
|
|
const joinAccount = ref(""); // 参会账号
|
|
|
|
|
const joinName = ref(""); // 参会名称
|
|
|
|
|
const screenWidth = ref(0); // 屏幕宽度
|
|
|
|
|
const meetingWidth = ref(0); // 视频课件容器元素宽度
|
|
|
|
|
const meetingHeight = ref(0); // 视频课件容器元素高度
|
|
|
|
|
screenWidth.value = document.body.offsetWidth;
|
2022-05-25 17:31:14 +08:00
|
|
|
|
|
|
|
|
|
joinAccount.value =
|
|
|
|
|
store.getters.icCard || store.getters.phone || store.getters.nickname;
|
|
|
|
|
joinName.value =
|
|
|
|
|
store.getters.nickname || store.getters.phone || store.getters.icCard;
|
|
|
|
|
|
2022-05-05 19:48:27 +08:00
|
|
|
|
// 设置会议背景大小、图片
|
2022-05-18 17:25:43 +08:00
|
|
|
|
const meetingContainerRef = ref(null); // 会议容器元素(包含背景)
|
|
|
|
|
const videoElementRef = ref(null); // 视频课件容器元素
|
|
|
|
|
const chatRightRef = ref(null); // 右侧聊天元素
|
2022-05-05 19:48:27 +08:00
|
|
|
|
onMounted(() => {
|
2022-05-18 17:25:43 +08:00
|
|
|
|
meetingContainerRef.value.style.background = `url(${store.getters.templateBackgroundPic}) 0% 0% / cover no-repeat`; // 设置背景图片
|
2022-05-05 19:48:27 +08:00
|
|
|
|
setTextLabel();
|
2022-05-25 17:31:14 +08:00
|
|
|
|
meetingWidth.value = meetingContainerRef.value.offsetWidth * 0.95; // zoom 会议组件宽度是父元素宽度的 95%
|
|
|
|
|
meetingHeight.value = (meetingWidth.value * 9) / 16; // 根据 zoom 会议组件长宽比 16:9 计算出会议组件高度
|
|
|
|
|
meetingContainerRef.value.style.paddingTop = `${meetingHeight.value * 0.2}px`; // 父元素顶部padding 是会议组件高度的20%
|
2022-05-18 17:25:43 +08:00
|
|
|
|
videoElementRef.value.style.width = meetingWidth.value + "px";
|
|
|
|
|
videoElementRef.value.style.height = meetingHeight.value + "px";
|
2022-05-05 19:48:27 +08:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
// 设置文本标签
|
|
|
|
|
const setTextLabel = () => {
|
|
|
|
|
document.querySelectorAll(".text-tag").forEach((el) => {
|
|
|
|
|
el.remove();
|
|
|
|
|
});
|
|
|
|
|
store.getters.textLabelList.forEach((item) => {
|
|
|
|
|
const labelObj = JSON.parse(item.textLabel);
|
|
|
|
|
const textEl = document.createElement("div");
|
|
|
|
|
textEl.id = `${_.uniqueId("tag-")}`;
|
|
|
|
|
textEl.innerHTML = labelObj.content;
|
|
|
|
|
textEl.className = "text-tag";
|
2022-05-18 17:25:43 +08:00
|
|
|
|
textEl.style.backgroundColor = labelObj.backgroundColor;
|
|
|
|
|
textEl.style.visibility =
|
|
|
|
|
labelObj.visibility === "1" ? "visible" : "hidden";
|
2022-05-05 19:48:27 +08:00
|
|
|
|
textEl.style.left = `${labelObj.x}`;
|
|
|
|
|
textEl.style.top = `${labelObj.y}`;
|
2022-05-18 17:25:43 +08:00
|
|
|
|
meetingContainerRef.value.appendChild(textEl);
|
2022-05-05 19:48:27 +08:00
|
|
|
|
});
|
|
|
|
|
};
|
2022-05-25 17:31:14 +08:00
|
|
|
|
|
2022-05-18 17:25:43 +08:00
|
|
|
|
// 会议配置
|
2022-05-05 19:48:27 +08:00
|
|
|
|
const meetingConfig = reactive({
|
|
|
|
|
client: ZoomMtgEmbedded.createClient(),
|
|
|
|
|
// This Sample App has been updated to use SDK App type credentials https://marketplace.zoom.us/docs/guides/build/sdk-app
|
2022-05-25 17:31:14 +08:00
|
|
|
|
sdkKey: "99Spa64AWHYVZD95imUpVyMD0KF9CpEIrIb1",
|
|
|
|
|
// meetingNumber: store.getters.meetingNumber,
|
2022-05-26 17:33:16 +08:00
|
|
|
|
meetingNumber: store.getters.meetingNumber,
|
|
|
|
|
passWord: store.state.password,
|
2022-05-25 17:31:14 +08:00
|
|
|
|
// sdkKey: "99Spa64AWHYVZD95imUpVyMD0KF9CpEIrIb1",
|
2022-05-26 17:33:16 +08:00
|
|
|
|
// meetingNumber: "97097842319",
|
|
|
|
|
// passWord: "111916",
|
2022-05-25 17:31:14 +08:00
|
|
|
|
// role: route.name === "Host" ? 1 : 0,
|
|
|
|
|
role: 0,
|
2022-05-06 23:11:47 +08:00
|
|
|
|
// signatureEndpoint: "http://120.26.107.74:4000",
|
2022-05-26 17:33:16 +08:00
|
|
|
|
userEmail: store.getters.email,
|
|
|
|
|
// userEmail: "934510341@qq.com",
|
|
|
|
|
userName: joinName.value,
|
|
|
|
|
// userName: "afasde1",
|
2022-05-05 19:48:27 +08:00
|
|
|
|
// pass in the registrant's token if your meeting or webinar requires registration. More info here:
|
|
|
|
|
// Meetings: https://marketplace.zoom.us/docs/sdk/native-sdks/web/component-view/meetings#join-registered
|
|
|
|
|
// Webinars: https://marketplace.zoom.us/docs/sdk/native-sdks/web/component-view/webinars#join-registered
|
2022-05-26 17:33:16 +08:00
|
|
|
|
// registrantToken:
|
|
|
|
|
// "Xhi0bKUzyNBnJwe2EJWZ0JZ3IYqtPgyyWE1CXW3z2X4.DQMAAAAWm3t-jxZqSS14R0dCSFRDNkFibVQwakpHbFd3AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
|
|
|
|
|
registrantToken: store.getters.token,
|
2022-05-05 19:48:27 +08:00
|
|
|
|
});
|
2022-05-18 17:25:43 +08:00
|
|
|
|
console.log(meetingConfig);
|
|
|
|
|
|
2022-05-25 17:31:14 +08:00
|
|
|
|
// 生成签名
|
2022-05-05 19:48:27 +08:00
|
|
|
|
const getSignature = async () => {
|
2022-05-06 23:11:47 +08:00
|
|
|
|
const { sign } = await generateSignature({
|
|
|
|
|
meetingNumber: store.getters.meetingNumber,
|
2022-05-18 17:25:43 +08:00
|
|
|
|
role: meetingConfig.role,
|
2022-05-06 23:11:47 +08:00
|
|
|
|
});
|
2022-05-25 17:31:14 +08:00
|
|
|
|
console.log(sign);
|
2022-05-06 23:11:47 +08:00
|
|
|
|
startMeeting(sign);
|
2022-05-25 17:31:14 +08:00
|
|
|
|
// axios
|
|
|
|
|
// .post("http://localhost:4000", {
|
|
|
|
|
// meetingNumber: store.getters.meetingNumber,
|
|
|
|
|
// role: meetingConfig.role,
|
|
|
|
|
// })
|
|
|
|
|
// .then((res) => {
|
|
|
|
|
// console.log(res.data.signature);
|
|
|
|
|
// startMeeting(res.data.signature);
|
|
|
|
|
// })
|
|
|
|
|
// .catch((error) => {
|
|
|
|
|
// console.log(error);
|
|
|
|
|
// });
|
2022-05-05 19:48:27 +08:00
|
|
|
|
};
|
|
|
|
|
|
2022-05-25 17:31:14 +08:00
|
|
|
|
// 开始会议
|
2022-05-05 19:48:27 +08:00
|
|
|
|
const startMeeting = async (signature) => {
|
|
|
|
|
let meetingSDKElement = document.getElementById("video-element");
|
2022-05-18 17:25:43 +08:00
|
|
|
|
try {
|
|
|
|
|
meetingConfig.client.init({
|
|
|
|
|
debug: true,
|
|
|
|
|
zoomAppRoot: meetingSDKElement,
|
|
|
|
|
language: "zh-CN",
|
|
|
|
|
customize: {
|
|
|
|
|
video: {
|
|
|
|
|
isResizable: false,
|
|
|
|
|
popper: {
|
|
|
|
|
disableDraggable: true,
|
|
|
|
|
},
|
|
|
|
|
viewSizes: {
|
|
|
|
|
default: {
|
|
|
|
|
width: meetingWidth.value,
|
|
|
|
|
height: meetingHeight.value - 45,
|
|
|
|
|
},
|
2022-05-05 19:48:27 +08:00
|
|
|
|
},
|
|
|
|
|
},
|
2022-05-18 17:25:43 +08:00
|
|
|
|
|
|
|
|
|
meetingInfo: [
|
|
|
|
|
"topic",
|
|
|
|
|
"host",
|
|
|
|
|
"mn",
|
|
|
|
|
"pwd",
|
|
|
|
|
"telPwd",
|
|
|
|
|
"invite",
|
|
|
|
|
"participant",
|
|
|
|
|
"dc",
|
|
|
|
|
"enctype",
|
|
|
|
|
],
|
2022-05-05 19:48:27 +08:00
|
|
|
|
},
|
2022-05-18 17:25:43 +08:00
|
|
|
|
});
|
2022-05-05 19:48:27 +08:00
|
|
|
|
|
2022-05-18 17:25:43 +08:00
|
|
|
|
await meetingConfig.client.join({
|
|
|
|
|
sdkKey: meetingConfig.sdkKey,
|
|
|
|
|
signature: signature,
|
|
|
|
|
meetingNumber: meetingConfig.meetingNumber,
|
|
|
|
|
password: meetingConfig.passWord,
|
|
|
|
|
userName: meetingConfig.userName,
|
|
|
|
|
userEmail: meetingConfig.userEmail,
|
|
|
|
|
tk: meetingConfig.registrantToken,
|
|
|
|
|
});
|
2022-05-29 13:30:19 +08:00
|
|
|
|
document.querySelector("#suspension-view-tab-thumbnail-gallery").click();
|
2022-05-18 17:25:43 +08:00
|
|
|
|
initDesktopLayout();
|
|
|
|
|
isMeetingLoading.value = false;
|
|
|
|
|
} catch (error) {
|
|
|
|
|
isMeetingLoading.value = false;
|
|
|
|
|
}
|
2022-05-05 19:48:27 +08:00
|
|
|
|
};
|
2022-05-18 17:25:43 +08:00
|
|
|
|
const setFullScreen = () => {
|
|
|
|
|
videoElementRef.value.requestFullscreen();
|
|
|
|
|
};
|
|
|
|
|
onMounted(() => {
|
|
|
|
|
getSignature();
|
|
|
|
|
});
|
2022-05-05 19:48:27 +08:00
|
|
|
|
// 初始化
|
|
|
|
|
const initDesktopLayout = () => {
|
|
|
|
|
// 初始化高度
|
2022-05-29 13:30:19 +08:00
|
|
|
|
|
|
|
|
|
const heightEl = document.querySelectorAll(
|
|
|
|
|
".zmwebsdk-MuiBox-root.zmwebsdk-MuiBox-root"
|
|
|
|
|
)[2];
|
2022-05-18 17:25:43 +08:00
|
|
|
|
heightEl.style.height = `${meetingHeight.value - 45}px`;
|
2022-05-25 17:31:14 +08:00
|
|
|
|
console.log(meetingHeight.value);
|
|
|
|
|
|
2022-05-05 19:48:27 +08:00
|
|
|
|
// 初始化宽度
|
2022-05-29 13:30:19 +08:00
|
|
|
|
document.querySelectorAll(
|
|
|
|
|
".zmwebsdk-MuiPaper-root.zmwebsdk-MuiPaper-elevation1.zmwebsdk-MuiPaper-rounded"
|
|
|
|
|
)[1].style.width = `${meetingWidth.value - 4}px`;
|
2022-05-05 19:48:27 +08:00
|
|
|
|
// 加载完成显示 video element
|
|
|
|
|
document.querySelector("#video-element").style.visibility = "visible";
|
|
|
|
|
};
|
|
|
|
|
// 检测屏幕共享开启状态变化
|
|
|
|
|
const inSharing = ref(false); // 是否开启屏幕共享
|
|
|
|
|
setInterval(() => {
|
2022-05-29 13:30:19 +08:00
|
|
|
|
const elSharing = document.querySelector(
|
|
|
|
|
"div[class*=zmwebsdk-makeStyles-inSharing]"
|
|
|
|
|
);
|
2022-05-05 19:48:27 +08:00
|
|
|
|
if (elSharing) {
|
2022-05-18 17:25:43 +08:00
|
|
|
|
inSharing.value = true;
|
|
|
|
|
} else {
|
|
|
|
|
inSharing.value = false;
|
2022-05-05 19:48:27 +08:00
|
|
|
|
}
|
|
|
|
|
}, 500);
|
|
|
|
|
|
2022-05-29 13:30:19 +08:00
|
|
|
|
const avatarList = ref("");
|
|
|
|
|
setInterval(() => {
|
|
|
|
|
const avatarElList = document.querySelectorAll(
|
|
|
|
|
'ul[class^="zmwebsdk-makeStyles-avatarList"] li'
|
|
|
|
|
);
|
|
|
|
|
const arr = [];
|
|
|
|
|
avatarElList.forEach((el) => {
|
|
|
|
|
arr.push({
|
|
|
|
|
videoOn: el.className.includes("videoOn"),
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
avatarList.value = arr
|
|
|
|
|
.map((el) => {
|
|
|
|
|
return el.videoOn ? "on" : "off";
|
|
|
|
|
})
|
|
|
|
|
.join(",");
|
|
|
|
|
// console.log(avatarList.value);
|
|
|
|
|
}, 500);
|
|
|
|
|
watch(avatarList, (val) => {
|
|
|
|
|
if (inSharing.value) {
|
|
|
|
|
document
|
|
|
|
|
.querySelectorAll(`ul[class^="zmwebsdk-makeStyles-avatarList"] li`)
|
|
|
|
|
.forEach((el) => {
|
|
|
|
|
if (el.className.includes("videoOn")) {
|
|
|
|
|
el.style.visibility = "visible";
|
|
|
|
|
} else {
|
|
|
|
|
el.style.visibility = "hidden";
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
// 当观众被设为嘉宾时,摄图会自动改为 ribbon,通过setInterval 监听变化,将其重新设为gallery view
|
|
|
|
|
const isRibbon = ref(null);
|
|
|
|
|
setInterval(() => {
|
|
|
|
|
isRibbon.value = document.querySelector(
|
|
|
|
|
"#suspension-view-tab-thumbnail-ribbon.zmwebsdk-MuiTab-selected"
|
|
|
|
|
);
|
|
|
|
|
}, 500);
|
|
|
|
|
|
|
|
|
|
watch(isRibbon, (val) => {
|
|
|
|
|
if (val) {
|
|
|
|
|
const galleryViewButton = document.querySelector(
|
|
|
|
|
"#suspension-view-tab-thumbnail-gallery"
|
|
|
|
|
);
|
|
|
|
|
if (galleryViewButton) galleryViewButton.click();
|
|
|
|
|
initDesktopLayout();
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
// 当被设为嘉宾时自动点击同意按钮
|
|
|
|
|
setInterval(() => {
|
|
|
|
|
const isSetAsGuest = document.querySelector(
|
|
|
|
|
".zmwebsdk-MuiButtonBase-root.zmwebsdk-MuiButton-root.zmwebsdk-MuiButton-contained.zmwebsdk-MuiButton-containedPrimary.zmwebsdk-MuiButton-containedSizeSmall.zmwebsdk-MuiButton-sizeSmall.zmwebsdk-MuiButton-disableElevation"
|
|
|
|
|
);
|
|
|
|
|
if (isSetAsGuest) {
|
|
|
|
|
isSetAsGuest.click();
|
|
|
|
|
}
|
|
|
|
|
}, 500);
|
|
|
|
|
|
2022-05-05 19:48:27 +08:00
|
|
|
|
// 根据id设置布局
|
|
|
|
|
const setLayout = (templateId) => {
|
|
|
|
|
console.log(templateId);
|
2022-05-29 13:30:19 +08:00
|
|
|
|
const v_s_wrap_el = document.querySelectorAll(
|
|
|
|
|
".zmwebsdk-MuiBox-root.zmwebsdk-MuiBox-root"
|
|
|
|
|
)[2]; // 包含视频和课件的容器
|
2022-05-18 17:25:43 +08:00
|
|
|
|
v_s_wrap_el.style.flexDirection = "";
|
|
|
|
|
|
2022-05-29 13:30:19 +08:00
|
|
|
|
const v_wrap_el = v_s_wrap_el.lastChild;
|
2022-05-25 17:31:14 +08:00
|
|
|
|
if (!inSharing.value) return;
|
|
|
|
|
|
2022-05-29 13:30:19 +08:00
|
|
|
|
const s_wrap_el = document.querySelector(
|
|
|
|
|
`div[class*="zmwebsdk-makeStyles-inSharing"]`
|
|
|
|
|
);
|
2022-05-25 17:31:14 +08:00
|
|
|
|
if (templateId === "1") {
|
|
|
|
|
// 课件|视频 对半分
|
2022-05-18 17:25:43 +08:00
|
|
|
|
v_wrap_el.style.width = `${meetingWidth.value / 2 - 2}px`;
|
2022-05-25 17:31:14 +08:00
|
|
|
|
} else if (templateId === "2") {
|
|
|
|
|
// 视频|课件 对半分
|
2022-05-18 17:25:43 +08:00
|
|
|
|
v_wrap_el.style.width = `${meetingWidth.value / 2 - 2}px`;
|
|
|
|
|
v_s_wrap_el.style.flexDirection = "row-reverse";
|
2022-05-25 17:31:14 +08:00
|
|
|
|
} else if (templateId === "3") {
|
|
|
|
|
// 课件|视频 左4/5 | 右边1/5
|
|
|
|
|
v_wrap_el.style.width = `${(meetingWidth.value - 4) / 5}px`;
|
|
|
|
|
} else if (templateId === "4") {
|
|
|
|
|
// 视频|课件 左1/4 | 右边3/4
|
|
|
|
|
v_wrap_el.style.width = `${(meetingWidth.value - 4) / 5}px`;
|
2022-05-18 17:25:43 +08:00
|
|
|
|
v_s_wrap_el.style.flexDirection = "row-reverse";
|
2022-05-25 17:31:14 +08:00
|
|
|
|
} else if (templateId === "5") {
|
|
|
|
|
// 只显示课件
|
|
|
|
|
v_wrap_el.style.display = `none`;
|
|
|
|
|
} else if (templateId === "6") {
|
|
|
|
|
// 只显示视频
|
|
|
|
|
s_wrap_el.style.display = "none";
|
|
|
|
|
v_wrap_el.style.width = `${meetingWidth.value - 4}px`;
|
2022-05-05 19:48:27 +08:00
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
watch(inSharing, (newVal) => {
|
|
|
|
|
console.log(newVal);
|
|
|
|
|
if (newVal) {
|
|
|
|
|
setLayout(templateId.value);
|
|
|
|
|
} else {
|
|
|
|
|
const galleryViewButton = document.querySelector(
|
|
|
|
|
"#suspension-view-tab-thumbnail-gallery"
|
|
|
|
|
);
|
2022-05-29 13:30:19 +08:00
|
|
|
|
if (galleryViewButton) galleryViewButton.click();
|
|
|
|
|
const v_s_wrap_el = document.querySelectorAll(
|
|
|
|
|
".zmwebsdk-MuiBox-root.zmwebsdk-MuiBox-root"
|
|
|
|
|
)[2];
|
|
|
|
|
if (!v_s_wrap_el) return;
|
|
|
|
|
const v_wrap_el = v_s_wrap_el.lastChild;
|
2022-05-25 17:31:14 +08:00
|
|
|
|
v_wrap_el.style.width = "";
|
|
|
|
|
v_s_wrap_el.style.flexDirection = "";
|
2022-05-05 19:48:27 +08:00
|
|
|
|
}
|
|
|
|
|
});
|
2022-05-06 23:11:47 +08:00
|
|
|
|
|
2022-05-18 17:25:43 +08:00
|
|
|
|
let socket = reactive({});
|
|
|
|
|
const initWebSocket = () => {
|
|
|
|
|
// 建立websocket连接
|
|
|
|
|
socket = new ReconnectingWebSocket(
|
|
|
|
|
`wss://meeting.chuhuankj.com/wss/websocket/meeting/${store.getters.meetingId}/${joinAccount.value}`
|
|
|
|
|
);
|
|
|
|
|
socket.addEventListener("open", () => {
|
|
|
|
|
// socket.send("Hello Server!");
|
|
|
|
|
console.log("websocket,已连接");
|
|
|
|
|
});
|
2022-05-05 19:48:27 +08:00
|
|
|
|
|
2022-05-18 17:25:43 +08:00
|
|
|
|
// 监听websocket消息
|
|
|
|
|
socket.addEventListener("message", async (event) => {
|
|
|
|
|
const data = JSON.parse(JSON.parse(event.data));
|
|
|
|
|
console.log(data);
|
|
|
|
|
// 会议信息更新时
|
|
|
|
|
if (data.type === "isRefreshMeeting") {
|
|
|
|
|
await store.dispatch("getMeetingInfo", store.getters.meetingId);
|
|
|
|
|
meetingContainerRef.value.style.background = ` url(${store.getters.templateBackgroundPic}) 0% 0% / cover no-repeat`;
|
|
|
|
|
templateId.value = store.getters.templateId;
|
|
|
|
|
setLayout(templateId.value);
|
|
|
|
|
setTextLabel();
|
|
|
|
|
}
|
|
|
|
|
// 开始签到时
|
|
|
|
|
else if (data.type === "isStartSign") {
|
|
|
|
|
console.log(data);
|
|
|
|
|
showSignDialog.value = true;
|
|
|
|
|
}
|
|
|
|
|
// 签到结束时
|
|
|
|
|
else if (data.type === "isEndSign") {
|
|
|
|
|
showSignDialog.value = false;
|
|
|
|
|
}
|
|
|
|
|
// 收到聊天消息时
|
|
|
|
|
else if (data.type === "isChat") {
|
2022-05-26 17:33:16 +08:00
|
|
|
|
console.log(JSON.parse(JSON.parse(JSON.parse(data.content).msg)));
|
2022-05-18 17:25:43 +08:00
|
|
|
|
messages.value.push({
|
2022-05-26 17:33:16 +08:00
|
|
|
|
...JSON.parse(JSON.parse(JSON.parse(data.content).msg)),
|
2022-05-18 17:25:43 +08:00
|
|
|
|
id: _.uniqueId(),
|
|
|
|
|
time: dayjs().format("YYYY-MM-DD HH:mm:ss"),
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
// 开始考试时
|
|
|
|
|
else if (data.type === "isStartExam") {
|
|
|
|
|
showExamDialog.value = true;
|
|
|
|
|
}
|
|
|
|
|
// 开始问卷时
|
|
|
|
|
else if (data.type === "isStartQuestionnaire") {
|
|
|
|
|
showQuestionnaireDialog.value = true;
|
|
|
|
|
}
|
|
|
|
|
// 会议结束时
|
|
|
|
|
else if (data.type === "isCloseMeeting") {
|
|
|
|
|
showExamDialog.value = false;
|
|
|
|
|
showQuestionnaireDialog.value = false;
|
|
|
|
|
ElMessageBox.alert("会议已结束");
|
|
|
|
|
socket.close();
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
socket.addEventListener("close", (event) => {
|
|
|
|
|
console.log(event, "close");
|
|
|
|
|
});
|
|
|
|
|
socket.addEventListener("error", (event) => {
|
|
|
|
|
console.log(event, "error");
|
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
initWebSocket();
|
2022-05-05 19:48:27 +08:00
|
|
|
|
/* 签到功能 */
|
|
|
|
|
// 提交签到
|
|
|
|
|
const showSignDialog = ref(false); //是否显示签到窗口
|
|
|
|
|
const submitSign = async () => {
|
|
|
|
|
await signMeeting({
|
|
|
|
|
meetingId: store.getters.meetingId,
|
|
|
|
|
signTime: dayjs().format("YYYY-MM-DD HH:mm:ss"),
|
|
|
|
|
account: joinAccount.value,
|
|
|
|
|
});
|
|
|
|
|
showSignDialog.value = false;
|
|
|
|
|
ElMessage.success("签到成功");
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/* 聊天功能 */
|
|
|
|
|
const messages = ref([]); // 消息列表
|
|
|
|
|
const editingMessage = ref(""); // 正在编辑的内容
|
|
|
|
|
// 发送消息
|
|
|
|
|
const sendMessage = () => {
|
2022-05-26 17:33:16 +08:00
|
|
|
|
console.log(
|
|
|
|
|
JSON.stringify(
|
|
|
|
|
JSON.stringify({
|
|
|
|
|
account: joinName.value,
|
|
|
|
|
msg: editingMessage.value,
|
|
|
|
|
})
|
|
|
|
|
)
|
|
|
|
|
);
|
|
|
|
|
socket.send(
|
|
|
|
|
JSON.stringify(
|
|
|
|
|
JSON.stringify({
|
|
|
|
|
account: joinName.value,
|
|
|
|
|
msg: editingMessage.value,
|
|
|
|
|
})
|
|
|
|
|
)
|
|
|
|
|
);
|
|
|
|
|
// socket.send(editingMessage.value);
|
2022-05-05 19:48:27 +08:00
|
|
|
|
messages.value.push({
|
|
|
|
|
id: _.uniqueId(),
|
2022-05-18 17:25:43 +08:00
|
|
|
|
account: joinName.value,
|
2022-05-05 19:48:27 +08:00
|
|
|
|
msg: editingMessage.value,
|
|
|
|
|
isMe: true,
|
|
|
|
|
time: dayjs().format("YYYY-MM-DD HH:mm:ss"),
|
|
|
|
|
});
|
|
|
|
|
editingMessage.value = "";
|
|
|
|
|
};
|
|
|
|
|
|
2022-05-18 17:25:43 +08:00
|
|
|
|
const leaveConference = () => {
|
|
|
|
|
meetingConfig.client.leaveMeeting();
|
|
|
|
|
};
|
|
|
|
|
window.addEventListener("beforeunload", leaveConference);
|
|
|
|
|
onUnmounted(() => {
|
|
|
|
|
window.removeEventListener("beforeunload", leaveConference);
|
|
|
|
|
});
|
|
|
|
|
|
2022-05-05 19:48:27 +08:00
|
|
|
|
// 是否显示考试和问卷弹窗
|
|
|
|
|
const showExamDialog = ref(false);
|
|
|
|
|
const showQuestionnaireDialog = ref(false);
|
|
|
|
|
</script>
|
|
|
|
|
<style scoped lang="scss">
|
|
|
|
|
#app-container {
|
2022-05-18 17:25:43 +08:00
|
|
|
|
width: 100%;
|
2022-05-05 19:48:27 +08:00
|
|
|
|
margin: 0 auto;
|
|
|
|
|
:deep(.text-tag) {
|
|
|
|
|
position: absolute;
|
|
|
|
|
z-index: 999;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
padding: 5px;
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
* {
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2022-05-18 17:25:43 +08:00
|
|
|
|
|
|
|
|
|
.row {
|
|
|
|
|
width: 100%;
|
|
|
|
|
display: flex;
|
|
|
|
|
}
|
2022-05-05 19:48:27 +08:00
|
|
|
|
.meeting-container {
|
|
|
|
|
position: relative;
|
2022-05-18 17:25:43 +08:00
|
|
|
|
width: 80%;
|
2022-05-05 19:48:27 +08:00
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
}
|
2022-05-18 17:25:43 +08:00
|
|
|
|
|
|
|
|
|
.chat-right {
|
|
|
|
|
width: 20%;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
.option-bar {
|
|
|
|
|
margin-top: 0;
|
|
|
|
|
margin: 5px;
|
|
|
|
|
}
|
|
|
|
|
:deep(.message-list) {
|
|
|
|
|
overflow-y: scroll;
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
// height: 80%;
|
|
|
|
|
flex: 1;
|
|
|
|
|
p {
|
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media screen and (max-width: 768px) {
|
|
|
|
|
.meeting-container {
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
.chat-right {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
}
|
2022-05-05 19:48:27 +08:00
|
|
|
|
#video-element {
|
2022-05-25 17:31:14 +08:00
|
|
|
|
// visibility: hidden;
|
2022-05-18 17:25:43 +08:00
|
|
|
|
// height: 600px;
|
2022-05-05 19:48:27 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tabs {
|
|
|
|
|
width: 100%;
|
|
|
|
|
.meeting-info {
|
|
|
|
|
:deep(p) {
|
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
2022-05-18 17:25:43 +08:00
|
|
|
|
// :deep(.el-tabs__content) {
|
|
|
|
|
// .chat {
|
|
|
|
|
// }
|
|
|
|
|
// }
|
2022-05-05 19:48:27 +08:00
|
|
|
|
}
|
2022-05-18 17:25:43 +08:00
|
|
|
|
.option-bar {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: space-around;
|
|
|
|
|
}
|
|
|
|
|
:deep(.zmwebsdk-MuiPaper-root) {
|
2022-05-05 19:48:27 +08:00
|
|
|
|
background: transparent;
|
|
|
|
|
box-shadow: 0 0;
|
|
|
|
|
}
|
2022-05-18 17:25:43 +08:00
|
|
|
|
|
|
|
|
|
:deep(.zmwebsdk-MuiToolbar-root) {
|
2022-05-05 19:48:27 +08:00
|
|
|
|
display: none;
|
|
|
|
|
}
|
2022-05-18 17:25:43 +08:00
|
|
|
|
:deep(.zmwebsdk-makeStyles-singleView-7) {
|
|
|
|
|
// background-color: transparent;
|
2022-05-05 19:48:27 +08:00
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
2022-05-29 13:30:19 +08:00
|
|
|
|
:deep(.zmwebsdk-MuiPaper-root.zmwebsdk-makeStyles-root-50.zmwebsdk-MuiPaper-elevation1.zmwebsdk-MuiPaper-rounded) {
|
|
|
|
|
width: 20%;
|
|
|
|
|
background: #ccc;
|
|
|
|
|
}
|
2022-05-18 17:25:43 +08:00
|
|
|
|
.fullscreen-btn {
|
|
|
|
|
position: absolute;
|
|
|
|
|
right: 0;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
}
|
2022-05-05 19:48:27 +08:00
|
|
|
|
</style>
|