UeMap.vue 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. <template>
  2. <div class="ue-option" :ref="val => getVideoRef(val)"></div>
  3. </template>
  4. <script setup>
  5. import { onMounted, ref } from 'vue'
  6. import { useStateManageStore } from '@/store/stateManage'
  7. import { getAuth } from '../utils/ueMap.js'
  8. const stateManage = useStateManageStore()
  9. const getVideoRef = val => {
  10. stateManage.setVideoContainerRef(val)
  11. }
  12. // const handleViewScene = (sceneId: any) => {
  13. // stateManage.wsConnect(videoContainerRef, sceneId, 'VIEWONLY', localStorage.getItem('token'));
  14. // };
  15. function getData(url = '', token = '') {
  16. return new Promise((resolve, reject) => {
  17. // 创建 XMLHttpRequest 对象
  18. const xhr = new XMLHttpRequest()
  19. // 配置 GET 请求
  20. xhr.open('GET', url, true)
  21. // 如果提供了 token,设置 Authorization 头
  22. if (token) {
  23. xhr.setRequestHeader('Authorization', `Bearer ${token}`)
  24. }
  25. // 设置响应处理
  26. xhr.onload = () => {
  27. if (xhr.status >= 200 && xhr.status < 300) {
  28. resolve(JSON.parse(xhr.responseText)) // 请求成功,解析 JSON 响应
  29. } else {
  30. reject(`Error: ${xhr.status}`) // 请求失败
  31. }
  32. }
  33. // 设置错误处理
  34. xhr.onerror = () => reject('Request failed')
  35. // 发送 GET 请求
  36. xhr.send()
  37. })
  38. }
  39. async function getUEAuth() {
  40. try {
  41. await getAuth({ username: 'JKTest', password: '123456' }).then(res => {
  42. localStorage.setItem('token', res.access_token)
  43. init()
  44. })
  45. } catch (error) {
  46. console.error('获取 UE token 失败', error)
  47. }
  48. }
  49. function init() {
  50. const script = document.createElement('script')
  51. // script.src = '/pixel-streaming-client/peer-stream.js'; // 自定义元素文件的路径
  52. console.log(import.meta.env)
  53. script.src = './peer-stream.js' // 自定义元素文件的路径
  54. script.async = true
  55. script.onload = () => {
  56. console.log('PeerStream custom element script loaded')
  57. }
  58. document.body.appendChild(script)
  59. let token = localStorage.getItem('token')
  60. console.log(token, 'getItemToken')
  61. const fetchData = async () => {
  62. try {
  63. const sceneList = await getData(import.meta.env.VITE_SERVICE_API_URL + '/scenePermission', localStorage.getItem('token'))
  64. console.log(sceneList, 'sceneList')
  65. stateManage.fSceneList = sceneList[0] // 设置场景列表数据到状态
  66. console.log(stateManage.fSceneList, 'stateManage.fSceneList')
  67. stateManage.handleOperateScene()
  68. } catch (error) {
  69. alert(error)
  70. }
  71. }
  72. fetchData()
  73. }
  74. onMounted(() => {
  75. getUEAuth()
  76. })
  77. </script>
  78. <style lang="scss" scoped>
  79. .ue-option {
  80. position: absolute;
  81. top:0px;
  82. left: 0px;
  83. // z-index: 9992;
  84. // flex: 1;
  85. // height: 100%;
  86. // width: 100%;
  87. height: 1080px;
  88. width: 3840px;
  89. overflow: hidden;
  90. }
  91. </style>