|
@@ -1,192 +1,196 @@
|
|
|
<template>
|
|
|
- <div class="screen-box active">
|
|
|
- <div class="top">
|
|
|
- <img
|
|
|
- :src="parseImgUrl('taiguv1/envmonitor', 'active/screen_cast.svg')"
|
|
|
- alt=""
|
|
|
- />
|
|
|
- <div class="top-right">
|
|
|
- <div class="title">{{$t(`screen.投屏`)}}</div>
|
|
|
- <div class="status">{{$t(`screen.切换视频源`)}}</div>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- <div class="bottom">
|
|
|
- <div
|
|
|
- class="btn"
|
|
|
- :class="screenData.runStatus == 1 ? 'btn-active' : ''"
|
|
|
- @click="setScreenStatus('runStatus',1)"
|
|
|
- >
|
|
|
- {{$t(`screen.有线投屏`)}}
|
|
|
- </div>
|
|
|
- <div
|
|
|
- class="btn"
|
|
|
- :class="screenData.runStatus == 2 ? 'btn-active' : ''"
|
|
|
- @click="setScreenStatus('runStatus',2)"
|
|
|
- >
|
|
|
- {{$t(`screen.无线投屏`)}}
|
|
|
- </div>
|
|
|
- <div
|
|
|
- class="btn"
|
|
|
- :class="screenData.runStatus == 3 ? 'btn-active' : ''"
|
|
|
- v-if="['ROOM EOS', 'ROOM GAIA'].includes(roomInfo.name)"
|
|
|
- @click="setScreenStatus('runStatus',3)"
|
|
|
- >
|
|
|
- Teams Room
|
|
|
- </div>
|
|
|
- </div>
|
|
|
+ <div class="screen-box active">
|
|
|
+ <div class="top">
|
|
|
+ <img :src="parseImgUrl('taiguv1/envmonitor', 'active/screen_cast.svg')" alt="" />
|
|
|
+ <div class="top-right">
|
|
|
+ <div class="title">{{ $t(`screen.投屏`) }}</div>
|
|
|
+ <div class="status">{{ $t(`screen.切换视频源`) }}</div>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
+ <div class="bottom">
|
|
|
+ <div class="btn" :class="screenData.runStatus == 1 ? 'btn-active' : ''" @click="setScreenStatus('runStatus', 1)">
|
|
|
+ {{ $t(`screen.有线投屏`) }}
|
|
|
+ </div>
|
|
|
+ <div class="btn" :class="screenData.runStatus == 2 ? 'btn-active' : ''" @click="setScreenStatus('runStatus', 2)">
|
|
|
+ {{ $t(`screen.无线投屏`) }}
|
|
|
+ </div>
|
|
|
+ <div
|
|
|
+ class="btn"
|
|
|
+ :class="screenData.runStatus == 3 ? 'btn-active' : ''"
|
|
|
+ v-if="['ROOM EOS', 'ROOM GAIA'].includes(roomInfo.name)"
|
|
|
+ @click="setScreenStatus('runStatus', 3)">
|
|
|
+ Teams Room
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
</template>
|
|
|
|
|
|
<script setup>
|
|
|
-import useDeviceControl from '@/hooks/useDeviceControl';
|
|
|
-import { useStore } from '@/store';
|
|
|
-import { parseImgUrl } from "@/utils";
|
|
|
-import { computed, ref, watch } from 'vue';
|
|
|
-
|
|
|
+import useDeviceControl from "@/hooks/useDeviceControl"
|
|
|
+import { useStore } from "@/store"
|
|
|
+import { parseImgUrl } from "@/utils"
|
|
|
+import { computed, ref, watch } from "vue"
|
|
|
const store = useStore()
|
|
|
+let lastScreenType = null
|
|
|
+let lastScreenTypeTimer = null
|
|
|
|
|
|
-
|
|
|
-const emit = defineEmits(['getStatus'])
|
|
|
+const emit = defineEmits(["getStatus"])
|
|
|
const props = defineProps({
|
|
|
- screenStatus: {
|
|
|
- type: Object,
|
|
|
- default: () => { }
|
|
|
- },
|
|
|
- equipList: {
|
|
|
- type: Array,
|
|
|
- default: () => {
|
|
|
- return []
|
|
|
- }
|
|
|
- },
|
|
|
- roomInfo: {
|
|
|
- type: Object,
|
|
|
- default: () => { }
|
|
|
- },
|
|
|
+ screenStatus: {
|
|
|
+ type: Object,
|
|
|
+ default: () => {}
|
|
|
+ },
|
|
|
+ equipList: {
|
|
|
+ type: Array,
|
|
|
+ default: () => {
|
|
|
+ return []
|
|
|
+ }
|
|
|
+ },
|
|
|
+ roomInfo: {
|
|
|
+ type: Object,
|
|
|
+ default: () => {}
|
|
|
+ }
|
|
|
})
|
|
|
const allScreenStatus = computed(() => store.state.taiguv1.screenSwitchStatus)
|
|
|
const screenData = ref({
|
|
|
- runStatus: 2
|
|
|
+ runStatus: 2
|
|
|
})
|
|
|
watch(
|
|
|
- () => props.screenStatus,
|
|
|
- (newVal, oldVal) => {
|
|
|
- if (!newVal) {
|
|
|
- return
|
|
|
- }
|
|
|
- screenData.value = { ...newVal }
|
|
|
- },
|
|
|
- { deep: true } // 添加深度监听
|
|
|
-)
|
|
|
-watch(
|
|
|
- //
|
|
|
- () => props.roomInfo,
|
|
|
- { immediate: true } // 添加深度监听
|
|
|
+ () => props.screenStatus,
|
|
|
+ (newVal, oldVal) => {
|
|
|
+ if (!newVal) {
|
|
|
+ return
|
|
|
+ }
|
|
|
+ if (isNumber(lastScreenType) && newVal.runStatus == lastScreenType) {
|
|
|
+ lastScreenType = null
|
|
|
+ clearTimeout(lastScreenTypeTimer)
|
|
|
+ lastScreenTypeTimer = null
|
|
|
+ }
|
|
|
+ if (lastScreenType) {
|
|
|
+ screenData.value = { runStatus: lastScreenType }
|
|
|
+ } else {
|
|
|
+ screenData.value = { ...newVal }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ { deep: true } // 添加深度监听
|
|
|
)
|
|
|
+// watch(
|
|
|
+// //
|
|
|
+// () => props.roomInfo,
|
|
|
+// { immediate: true } // 添加深度监听
|
|
|
+// )
|
|
|
const deviceControl = useDeviceControl()
|
|
|
-
|
|
|
+const isNumber = value => {
|
|
|
+ return typeof value === "number" && !isNaN(value)
|
|
|
+}
|
|
|
const setScreenStatus = (type, value) => {
|
|
|
- if (value == screenData.value.runStatus) return;
|
|
|
- if (type == 'isOpen') {
|
|
|
- store.dispatch('taiguv1/setScreenStatus', {
|
|
|
- id: 'all',
|
|
|
- status: {
|
|
|
- loading: true,
|
|
|
- lastSwitchStatus: screenData.value.isOpen
|
|
|
- }
|
|
|
- })
|
|
|
- }
|
|
|
- screenData.value.runStatus = value
|
|
|
- const equipListFirst = props.equipList[0]
|
|
|
- equipListFirst.inCloudSet = value
|
|
|
+ if (value == screenData.value.runStatus) return
|
|
|
+ // if (type == "isOpen") {
|
|
|
+ // store.dispatch("taiguv1/setScreenStatus", {
|
|
|
+ // id: "all",
|
|
|
+ // status: {
|
|
|
+ // loading: true,
|
|
|
+ // lastSwitchStatus: screenData.value.isOpen
|
|
|
+ // }
|
|
|
+ // })
|
|
|
+ // }
|
|
|
+ lastScreenType = value
|
|
|
+ clearTimeout(lastScreenTypeTimer)
|
|
|
+ lastScreenTypeTimer = null
|
|
|
+ lastScreenTypeTimer = setTimeout(() => {
|
|
|
+ lastScreenType = null
|
|
|
+ lastScreenTypeTimer = null
|
|
|
+ }, 1000 * 30)
|
|
|
+ screenData.value.runStatus = value
|
|
|
+ const equipListFirst = props.equipList[0]
|
|
|
+ equipListFirst.inCloudSet = value
|
|
|
|
|
|
- const params = deviceControl.assemblyScreenCommand(screenData.value[type], type, props.equipList)
|
|
|
- deviceControl.sendCommands(params)
|
|
|
+ const params = deviceControl.assemblyScreenCommand(screenData.value[type], type, props.equipList)
|
|
|
+ deviceControl.sendCommands(params)
|
|
|
}
|
|
|
-
|
|
|
-
|
|
|
</script>
|
|
|
<style lang="scss" scoped>
|
|
|
.screen-box {
|
|
|
- box-sizing: border-box;
|
|
|
- padding: 16px;
|
|
|
- width: 100%;
|
|
|
- height: 100%;
|
|
|
- border-radius: 24px 24px 44px 24px;
|
|
|
- background-color: rgba(255, 255, 255, 0.2);
|
|
|
- -webkit-backdrop-filter: blur(40px);
|
|
|
- backdrop-filter: blur(40px);
|
|
|
- box-shadow: 0px 10px 20px 0px rgba(0, 20, 40, 0.1);
|
|
|
+ box-sizing: border-box;
|
|
|
+ padding: 16px;
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ border-radius: 24px 24px 44px 24px;
|
|
|
+ background-color: rgba(255, 255, 255, 0.2);
|
|
|
+ -webkit-backdrop-filter: blur(40px);
|
|
|
+ backdrop-filter: blur(40px);
|
|
|
+ box-shadow: 0px 10px 20px 0px rgba(0, 20, 40, 0.1);
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ justify-content: space-between;
|
|
|
+ .top {
|
|
|
display: flex;
|
|
|
- flex-direction: column;
|
|
|
- justify-content: space-between;
|
|
|
- .top {
|
|
|
- display: flex;
|
|
|
- img {
|
|
|
- width: 30px;
|
|
|
- height: 30px;
|
|
|
- margin-right: 8px;
|
|
|
- }
|
|
|
- .top-right {
|
|
|
- .title {
|
|
|
- //styleName: Chi/Body Large;
|
|
|
- font-family: PingFang SC;
|
|
|
- font-size: 16px;
|
|
|
- font-weight: 300;
|
|
|
- line-height: 22px;
|
|
|
- letter-spacing: 0.02em;
|
|
|
- color: rgba(255, 255, 255, 1);
|
|
|
- margin-bottom: 2px;
|
|
|
- }
|
|
|
- .status {
|
|
|
- //styleName: Chi/Body XS;
|
|
|
- font-family: PingFang SC;
|
|
|
- font-size: 11px;
|
|
|
- font-weight: 400;
|
|
|
- line-height: 15.4px;
|
|
|
- letter-spacing: 0.02em;
|
|
|
- color: rgba(255, 255, 255, 0.4);
|
|
|
- }
|
|
|
- }
|
|
|
+ img {
|
|
|
+ width: 30px;
|
|
|
+ height: 30px;
|
|
|
+ margin-right: 8px;
|
|
|
+ }
|
|
|
+ .top-right {
|
|
|
+ .title {
|
|
|
+ //styleName: Chi/Body Large;
|
|
|
+ font-family: PingFang SC;
|
|
|
+ font-size: 16px;
|
|
|
+ font-weight: 300;
|
|
|
+ line-height: 22px;
|
|
|
+ letter-spacing: 0.02em;
|
|
|
+ color: rgba(255, 255, 255, 1);
|
|
|
+ margin-bottom: 2px;
|
|
|
+ }
|
|
|
+ .status {
|
|
|
+ //styleName: Chi/Body XS;
|
|
|
+ font-family: PingFang SC;
|
|
|
+ font-size: 11px;
|
|
|
+ font-weight: 400;
|
|
|
+ line-height: 15.4px;
|
|
|
+ letter-spacing: 0.02em;
|
|
|
+ color: rgba(255, 255, 255, 0.4);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .bottom {
|
|
|
+ margin-top: 9px;
|
|
|
+ .btn {
|
|
|
+ box-sizing: border-box;
|
|
|
+ margin-bottom: 5px;
|
|
|
+ width: 128px;
|
|
|
+ border-radius: 60px;
|
|
|
+ height: 40px;
|
|
|
+ text-align: center;
|
|
|
+ font-family: PingFang SC;
|
|
|
+ font-size: 12px;
|
|
|
+ line-height: 40px;
|
|
|
+ font-weight: 400;
|
|
|
+ letter-spacing: 0.02em;
|
|
|
+ color: rgba(116, 128, 141, 1);
|
|
|
+ background: rgba(255, 255, 255, 0.4);
|
|
|
}
|
|
|
- .bottom {
|
|
|
- margin-top: 9px;
|
|
|
- .btn {
|
|
|
- box-sizing: border-box;
|
|
|
- margin-bottom: 5px;
|
|
|
- width: 128px;
|
|
|
- border-radius: 60px;
|
|
|
- height: 40px;
|
|
|
- text-align: center;
|
|
|
- font-family: PingFang SC;
|
|
|
- font-size: 12px;
|
|
|
- line-height: 40px;
|
|
|
- font-weight: 400;
|
|
|
- letter-spacing: 0.02em;
|
|
|
- color: rgba(116, 128, 141, 1);
|
|
|
- background: rgba(255, 255, 255, 0.4);
|
|
|
- }
|
|
|
- .btn-active {
|
|
|
- background: rgba(255, 255, 255, 0.8);
|
|
|
- color: rgba(0, 20, 40, 1);
|
|
|
- -webkit-backdrop-filter: blur(20px);
|
|
|
- backdrop-filter: blur(20px);
|
|
|
- }
|
|
|
+ .btn-active {
|
|
|
+ background: rgba(255, 255, 255, 0.8);
|
|
|
+ color: rgba(0, 20, 40, 1);
|
|
|
+ -webkit-backdrop-filter: blur(20px);
|
|
|
+ backdrop-filter: blur(20px);
|
|
|
}
|
|
|
+ }
|
|
|
}
|
|
|
.active {
|
|
|
- background: rgba(255, 255, 255, 0.8);
|
|
|
- // -webkit-backdrop-filter: blur(40px);
|
|
|
- // backdrop-filter: blur(40px);
|
|
|
- box-shadow: 0px 10px 20px 0px rgba(0, 20, 40, 0.1);
|
|
|
- .top {
|
|
|
- .top-right {
|
|
|
- .title {
|
|
|
- color: rgba(0, 20, 40, 1);
|
|
|
- }
|
|
|
- .status {
|
|
|
- color: rgba(116, 128, 141, 1);
|
|
|
- }
|
|
|
- }
|
|
|
+ background: rgba(255, 255, 255, 0.8);
|
|
|
+ // -webkit-backdrop-filter: blur(40px);
|
|
|
+ // backdrop-filter: blur(40px);
|
|
|
+ box-shadow: 0px 10px 20px 0px rgba(0, 20, 40, 0.1);
|
|
|
+ .top {
|
|
|
+ .top-right {
|
|
|
+ .title {
|
|
|
+ color: rgba(0, 20, 40, 1);
|
|
|
+ }
|
|
|
+ .status {
|
|
|
+ color: rgba(116, 128, 141, 1);
|
|
|
+ }
|
|
|
}
|
|
|
+ }
|
|
|
}
|
|
|
</style>
|