tuikit-atomicx-vue3 3.4.1 → 4.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (342) hide show
  1. package/.eslintrc.cjs +1 -0
  2. package/dist/baseComp/Modal/Modal.js +431 -23
  3. package/dist/chat/index.d.ts +18 -18
  4. package/dist/components/AudioSetting/AudioMediaControl.js +39 -41
  5. package/dist/components/AudioSetting/AudioSettingTab.js +10 -10
  6. package/dist/components/AudioSetting/MicrophoneSelect.js +8 -8
  7. package/dist/components/AudioSetting/SpeakerSelect.js +9 -9
  8. package/dist/components/AudioSettingPanel/i18n/en-US/index.d.ts +1 -0
  9. package/dist/components/AudioSettingPanel/i18n/en-US/index.js +2 -1
  10. package/dist/components/AudioSettingPanel/i18n/zh-CN/index.d.ts +1 -0
  11. package/dist/components/AudioSettingPanel/i18n/zh-CN/index.js +2 -1
  12. package/dist/components/AudioSettingPanel/index.js +81 -73
  13. package/dist/components/BarrageInput/BarrageInputH5.js +9 -9
  14. package/dist/components/BarrageInput/EmojiPicker/EmojiPicker.js +3 -3
  15. package/dist/components/BarrageInput/MessageInputState.d.ts +28 -0
  16. package/dist/components/BarrageInput/MessageInputState.js +82 -0
  17. package/dist/components/BarrageInput/TextEditor/CharacterCountExtension.js +1 -1
  18. package/dist/components/BarrageInput/TextEditor/EditorCore.js +2 -2
  19. package/dist/components/BarrageInput/TextEditor/index.js +7 -7
  20. package/dist/components/BarrageInput/type.d.ts +17 -0
  21. package/dist/components/BarrageInput/type.js +4 -0
  22. package/dist/components/BarrageInput/utils.d.ts +30 -0
  23. package/dist/components/BarrageInput/utils.js +41 -0
  24. package/dist/components/BarrageList/BarrageList.js +80 -110
  25. package/dist/components/BarrageList/BarrageList.vue.d.ts +0 -29
  26. package/dist/components/BarrageList/BarrageListH5.js +95 -122
  27. package/dist/components/BarrageList/BarrageListH5.vue.d.ts +0 -29
  28. package/dist/components/BarrageList/BarrageListState.d.ts +58 -0
  29. package/dist/components/BarrageList/BarrageListState.js +106 -0
  30. package/dist/components/BarrageList/Message/MessageLayout/MessageBubble/MessageBubble.js +16 -24
  31. package/dist/components/BarrageList/Message/MessageLayout/MessageBubble/MessageBubble.vue.d.ts +5 -5
  32. package/dist/components/BarrageList/Message/MessageLayout/MessageLayout.js +48 -73
  33. package/dist/components/BarrageList/Message/MessageLayout/MessageLayout.vue.d.ts +5 -7
  34. package/dist/components/BarrageList/Message/TextMessage/TextMessage.js +70 -76
  35. package/dist/components/BarrageList/Message/TextMessage/TextMessage.vue.d.ts +6 -6
  36. package/dist/components/BarrageList/Message/TextMessage/emoji.d.ts +5 -0
  37. package/dist/components/BarrageList/Message/TextMessage/emoji.js +134 -0
  38. package/dist/components/BarrageList/index.d.ts +0 -36
  39. package/dist/components/CameraButton/index.js +18 -19
  40. package/dist/components/CoGuestPanel/CoGuestPanel.js +60 -60
  41. package/dist/components/CoHostPanel/BattlePanel.js +25 -25
  42. package/dist/components/CoHostPanel/CoHostPanel.js +60 -55
  43. package/dist/components/CoHostPanel/ConfigSettingPanel.js +49 -55
  44. package/dist/components/CoHostPanel/ConnectionPanel.js +129 -120
  45. package/dist/components/CoHostPanel/RecommendHostList.js +39 -36
  46. package/dist/components/CoHostPanel/constants.d.ts +3 -0
  47. package/dist/components/CoHostPanel/constants.js +6 -0
  48. package/dist/components/CoHostPanel/i18n/en-US/index.d.ts +1 -0
  49. package/dist/components/CoHostPanel/i18n/en-US/index.js +2 -1
  50. package/dist/components/CoHostPanel/i18n/zh-CN/index.d.ts +1 -0
  51. package/dist/components/CoHostPanel/i18n/zh-CN/index.js +3 -2
  52. package/dist/components/LiveAudienceList/LiveAudienceList.js +44 -45
  53. package/dist/components/LiveAudienceList/LiveAudienceListH5.js +7 -7
  54. package/dist/components/LiveAudienceList/UserActionMenu.js +57 -64
  55. package/dist/components/LiveList/LiveList.js +23 -23
  56. package/dist/components/LiveList/LiveListH5.js +38 -38
  57. package/dist/components/LiveScenePanel/CameraSettingDialog.js +10 -10
  58. package/dist/components/LiveScenePanel/MaterialItem.js +15 -15
  59. package/dist/components/LiveScenePanel/index.js +4 -4
  60. package/dist/components/{LiveCoreView → LiveView}/CoreViewDecorate/BattleDecorate.js +58 -58
  61. package/dist/components/{LiveCoreView → LiveView}/CoreViewDecorate/BattleUserDecorate.js +56 -49
  62. package/dist/components/{LiveCoreView → LiveView}/CoreViewDecorate/CoHostDecorate.js +6 -6
  63. package/dist/components/{LiveCoreView → LiveView}/CoreViewDecorate/LiveCoreDecorate.js +1 -1
  64. package/dist/components/{LiveCoreView → LiveView}/DefaultStreamViewUI.js +46 -43
  65. package/dist/components/{LiveCoreView → LiveView}/PlayerControl/AudioControl.js +23 -23
  66. package/dist/components/LiveView/PlayerControl/MultiResolution.js +79 -0
  67. package/dist/components/LiveView/PlayerControl/MultiResolution.vue.d.ts +8 -0
  68. package/dist/components/LiveView/PlayerControl/PlayerControl.js +172 -0
  69. package/dist/components/LiveView/PlayerControl/PlayerControlState.js +263 -0
  70. package/dist/components/{LiveCoreView → LiveView}/PlayerControl/utils/domHelpers.d.ts +6 -0
  71. package/dist/components/LiveView/PlayerControl/utils/domHelpers.js +131 -0
  72. package/dist/components/{LiveCoreView/i18n/zh-CN → LiveView/i18n/en-US}/index.d.ts +3 -2
  73. package/dist/components/{LiveCoreView → LiveView}/i18n/en-US/index.js +4 -3
  74. package/dist/components/{LiveCoreView/i18n/en-US → LiveView/i18n/zh-CN}/index.d.ts +3 -2
  75. package/dist/components/{LiveCoreView → LiveView}/i18n/zh-CN/index.js +4 -3
  76. package/dist/components/LiveView/index.d.ts +79 -0
  77. package/dist/components/{LiveCoreView → LiveView}/index.js +44 -42
  78. package/dist/components/MessageInput/TextEditor/EditorCore.js +2 -2
  79. package/dist/components/MessageList/MessageList.vue.d.ts +2 -2
  80. package/dist/components/MessageList/index.d.ts +18 -18
  81. package/dist/components/MicButton/index.js +11 -11
  82. package/dist/components/StreamMixer/LocalMixer/MixerControl.js +12 -12
  83. package/dist/components/StreamMixer/LocalMixer/index.js +66 -63
  84. package/dist/components/StreamMixer/index.js +6 -6
  85. package/dist/components/StreamView/Layout/CustomLayout.js +8 -8
  86. package/dist/components/StreamView/Layout/FloatLayout.js +124 -127
  87. package/dist/components/StreamView/Layout/GridLayout.js +5 -5
  88. package/dist/components/StreamView/index.js +25 -33
  89. package/dist/components/StreamView/manager/mediaManager.js +54 -60
  90. package/dist/components/VideoSetting/CameraSelect.js +8 -8
  91. package/dist/components/VideoSetting/VideoMediaControl.js +10 -10
  92. package/dist/components/VideoSetting/VideoPreview.js +9 -9
  93. package/dist/components/VideoSetting/VideoProfile.js +6 -6
  94. package/dist/components/VideoSetting/VideoSettingTab.js +40 -39
  95. package/dist/components/VideoSettingPanel/CameraSelect.js +8 -8
  96. package/dist/components/VideoSettingPanel/VideoPreview.js +1 -1
  97. package/dist/components/VideoSettingPanel/VideoProfile.js +18 -18
  98. package/dist/hooks/useRoomEngine.js +6 -6
  99. package/dist/{index-D88ja_7_.js → index-BfIEeWMg.js} +1767 -1757
  100. package/dist/{index-D-KJvDvy.js → index-DTi1fL-x.js} +460 -457
  101. package/dist/index.js +177 -157
  102. package/dist/report/MetricsKey.d.ts +16 -0
  103. package/dist/report/MetricsKey.js +4 -0
  104. package/dist/report/dataReport.d.ts +12 -0
  105. package/dist/report/dataReport.js +45 -0
  106. package/dist/report/index.d.ts +4 -0
  107. package/dist/report/index.js +6 -0
  108. package/dist/rtc/index.d.ts +6 -81
  109. package/dist/rtc/index.js +53 -52
  110. package/dist/states/BarrageState/BarrageState.d.ts +74 -0
  111. package/dist/states/BarrageState/BarrageState.js +80 -0
  112. package/dist/states/BarrageState/index.d.ts +1 -0
  113. package/dist/states/BarrageState/index.js +5 -0
  114. package/dist/states/{BattleState.d.ts → BattleState/BattleState.d.ts} +10 -11
  115. package/dist/states/BattleState/BattleState.js +203 -0
  116. package/dist/states/BattleState/index.d.ts +1 -0
  117. package/dist/states/BattleState/index.js +4 -0
  118. package/dist/states/CoGuestState.d.ts +24 -94
  119. package/dist/states/CoGuestState.js +297 -189
  120. package/dist/states/CoHostState/CoHostState.d.ts +2 -2
  121. package/dist/states/CoHostState/CoHostState.js +135 -131
  122. package/dist/states/{DeviceState.d.ts → DeviceState/DeviceState.d.ts} +25 -13
  123. package/dist/states/DeviceState/DeviceState.js +314 -0
  124. package/dist/states/DeviceState/index.d.ts +1 -0
  125. package/dist/states/DeviceState/index.js +4 -0
  126. package/dist/states/LiveAudienceState.d.ts +3 -1
  127. package/dist/states/LiveAudienceState.js +106 -63
  128. package/dist/states/{LiveState/index.d.ts → LiveListState/LiveListState.d.ts} +13 -8
  129. package/dist/states/LiveListState/LiveListState.js +285 -0
  130. package/dist/states/LiveListState/index.d.ts +1 -0
  131. package/dist/states/LiveListState/index.js +4 -0
  132. package/dist/states/LiveMonitorState/api/http.js +147 -129
  133. package/dist/states/LiveMonitorState/index.js +67 -62
  134. package/dist/states/LiveSeatState/index.d.ts +46 -11
  135. package/dist/states/LiveSeatState/index.js +34 -15
  136. package/dist/states/LiveSeatState/seatEventManager.d.ts +2 -0
  137. package/dist/states/LiveSeatState/seatEventManager.js +63 -42
  138. package/dist/states/LiveSeatState/seatManager.d.ts +34 -5
  139. package/dist/states/LiveSeatState/seatManager.js +131 -29
  140. package/dist/states/LiveSeatState/store.d.ts +5 -5
  141. package/dist/states/LiveSeatState/store.js +12 -10
  142. package/dist/states/LiveSeatState/usePlayStream/RTCStreamManager.js +1 -1
  143. package/dist/states/LiveSeatState/usePlayStream/RTCStreamPlayer.js +1 -1
  144. package/dist/states/LiveSeatState/usePlayStream/index.js +30 -28
  145. package/dist/states/LoginState.js +39 -34
  146. package/dist/states/SeatStore.js +82 -83
  147. package/dist/states/{VideoMixerState.d.ts → VideoMixerState/VideoMixerState.d.ts} +1 -1
  148. package/dist/states/VideoMixerState/VideoMixerState.js +269 -0
  149. package/dist/states/VideoMixerState/index.d.ts +1 -0
  150. package/dist/states/VideoMixerState/index.js +4 -0
  151. package/dist/styles/index.css +1 -1
  152. package/dist/types/audience.d.ts +21 -0
  153. package/dist/types/audience.js +4 -1
  154. package/dist/types/battle.d.ts +75 -3
  155. package/dist/types/battle.js +5 -1
  156. package/dist/types/coGuest.d.ts +72 -5
  157. package/dist/types/coGuest.js +4 -2
  158. package/dist/types/device.d.ts +38 -17
  159. package/dist/types/device.js +10 -8
  160. package/dist/types/index.d.ts +2 -2
  161. package/dist/types/index.js +96 -80
  162. package/dist/types/live.d.ts +36 -21
  163. package/dist/types/live.js +6 -4
  164. package/dist/types/seat.d.ts +23 -4
  165. package/dist/types/seat.js +7 -1
  166. package/dist/utils/eventCenter.d.ts +88 -0
  167. package/dist/utils/eventCenter.js +161 -0
  168. package/package.json +2 -2
  169. package/src/components/AudioSetting/AudioMediaControl.vue +1 -3
  170. package/src/components/AudioSetting/AudioSettingTab.vue +1 -2
  171. package/src/components/AudioSetting/MicrophoneSelect.vue +1 -2
  172. package/src/components/AudioSetting/SpeakerSelect.vue +1 -2
  173. package/src/components/AudioSettingPanel/i18n/en-US/index.ts +1 -0
  174. package/src/components/AudioSettingPanel/i18n/zh-CN/index.ts +1 -0
  175. package/src/components/AudioSettingPanel/index.vue +4 -2
  176. package/src/components/BarrageInput/BarrageInputH5.vue +1 -1
  177. package/src/components/BarrageInput/EmojiPicker/EmojiPicker.vue +1 -1
  178. package/src/components/BarrageInput/MessageInputState.ts +160 -0
  179. package/src/components/BarrageInput/TextEditor/TextEditor.vue +1 -1
  180. package/src/components/BarrageInput/type.ts +26 -0
  181. package/src/components/BarrageInput/utils.ts +45 -0
  182. package/src/components/BarrageList/BarrageList.vue +61 -117
  183. package/src/components/BarrageList/BarrageListH5.vue +75 -159
  184. package/src/components/BarrageList/BarrageListState.ts +223 -0
  185. package/src/components/BarrageList/Message/MessageLayout/MessageBubble/MessageBubble.vue +8 -55
  186. package/src/components/BarrageList/Message/MessageLayout/MessageLayout.vue +19 -44
  187. package/src/components/BarrageList/Message/TextMessage/TextMessage.vue +69 -96
  188. package/src/components/BarrageList/Message/TextMessage/emoji.ts +132 -0
  189. package/src/components/CameraButton/index.vue +0 -1
  190. package/src/components/CoGuestPanel/CoGuestPanel.vue +16 -91
  191. package/src/components/CoHostPanel/BattlePanel.vue +4 -7
  192. package/src/components/CoHostPanel/CoHostPanel.vue +11 -3
  193. package/src/components/CoHostPanel/ConfigSettingPanel.vue +2 -8
  194. package/src/components/CoHostPanel/ConnectionPanel.vue +41 -37
  195. package/src/components/CoHostPanel/RecommendHostList.vue +12 -13
  196. package/src/components/CoHostPanel/constants.ts +3 -0
  197. package/src/components/CoHostPanel/i18n/en-US/index.ts +1 -0
  198. package/src/components/CoHostPanel/i18n/zh-CN/index.ts +2 -1
  199. package/src/components/LiveAudienceList/LiveAudienceList.vue +4 -5
  200. package/src/components/LiveAudienceList/LiveAudienceListH5.vue +2 -2
  201. package/src/components/LiveAudienceList/UserActionMenu.vue +7 -48
  202. package/src/components/LiveList/LiveList.vue +5 -5
  203. package/src/components/LiveList/LiveListH5.vue +6 -6
  204. package/src/components/LiveScenePanel/index.vue +2 -2
  205. package/src/components/{LiveCoreView → LiveView}/CoreViewDecorate/BattleDecorate.vue +10 -15
  206. package/src/components/{LiveCoreView → LiveView}/CoreViewDecorate/BattleUserDecorate.vue +30 -31
  207. package/src/components/{LiveCoreView → LiveView}/DefaultStreamViewUI.vue +5 -3
  208. package/src/components/{LiveCoreView → LiveView}/PlayerControl/AudioControl.vue +1 -1
  209. package/src/components/{LiveCoreView → LiveView}/PlayerControl/MultiResolution.vue +9 -3
  210. package/src/components/{LiveCoreView → LiveView}/PlayerControl/PlayerControl.vue +10 -2
  211. package/src/components/{LiveCoreView → LiveView}/PlayerControl/PlayerControlState.ts +233 -259
  212. package/src/components/{LiveCoreView → LiveView}/PlayerControl/utils/domHelpers.ts +64 -0
  213. package/src/components/{LiveCoreView → LiveView}/i18n/en-US/index.ts +3 -2
  214. package/src/components/{LiveCoreView → LiveView}/i18n/zh-CN/index.ts +3 -2
  215. package/src/components/{LiveCoreView → LiveView}/index.ts +5 -2
  216. package/src/components/{LiveCoreView → LiveView}/index.vue +3 -3
  217. package/src/components/MicButton/index.vue +3 -3
  218. package/src/components/StreamMixer/LocalMixer/index.vue +6 -8
  219. package/src/components/StreamMixer/index.vue +1 -1
  220. package/src/components/StreamView/Layout/CustomLayout.vue +2 -2
  221. package/src/components/StreamView/Layout/FloatLayout.vue +88 -83
  222. package/src/components/StreamView/index.vue +28 -14
  223. package/src/components/StreamView/manager/mediaManager.ts +38 -42
  224. package/src/components/VideoSetting/CameraSelect.vue +1 -2
  225. package/src/components/VideoSetting/VideoMediaControl.vue +1 -1
  226. package/src/components/VideoSetting/VideoPreview.vue +1 -2
  227. package/src/components/VideoSetting/VideoProfile.vue +1 -1
  228. package/src/components/VideoSetting/VideoSettingTab.vue +9 -5
  229. package/src/components/VideoSettingPanel/CameraSelect.vue +1 -2
  230. package/src/components/VideoSettingPanel/VideoProfile.vue +7 -7
  231. package/src/hooks/useRoomEngine.ts +1 -1
  232. package/src/report/MetricsKey.ts +16 -0
  233. package/src/report/dataReport.ts +55 -0
  234. package/src/report/index.ts +7 -0
  235. package/src/rtc/index.ts +8 -10
  236. package/src/types/audience.ts +27 -1
  237. package/src/types/battle.ts +87 -4
  238. package/src/types/coGuest.ts +87 -5
  239. package/src/types/device.ts +41 -16
  240. package/src/types/index.ts +2 -2
  241. package/src/types/live.ts +41 -22
  242. package/src/types/seat.ts +28 -4
  243. package/src/utils/eventCenter.ts +249 -0
  244. package/dist/DialogPortal-CvJcEAsn.js +0 -417
  245. package/dist/components/BarrageList/Message/FaceMessage/FaceMessage.js +0 -23
  246. package/dist/components/BarrageList/Message/FaceMessage/FaceMessage.vue.d.ts +0 -30
  247. package/dist/components/BarrageList/Message/FaceMessage/index.d.ts +0 -3
  248. package/dist/components/BarrageList/Message/FaceMessage/index.js +0 -4
  249. package/dist/components/BarrageList/Message/GroupTipMessage/GroupTipMessage.js +0 -4
  250. package/dist/components/BarrageList/Message/GroupTipMessage/GroupTipMessage.vue.d.ts +0 -16
  251. package/dist/components/BarrageList/Message/GroupTipMessage/index.d.ts +0 -3
  252. package/dist/components/BarrageList/Message/GroupTipMessage/index.js +0 -25
  253. package/dist/components/BarrageList/Message/ImageMessage/ImageMessage.js +0 -71
  254. package/dist/components/BarrageList/Message/ImageMessage/ImageMessage.vue.d.ts +0 -34
  255. package/dist/components/BarrageList/Message/ImageMessage/index.d.ts +0 -3
  256. package/dist/components/BarrageList/Message/ImageMessage/index.js +0 -4
  257. package/dist/components/BarrageList/Message/MergerMessage/MergerMessage.js +0 -9
  258. package/dist/components/BarrageList/Message/MergerMessage/MergerMessage.vue.d.ts +0 -2
  259. package/dist/components/BarrageList/Message/MergerMessage/index.d.ts +0 -3
  260. package/dist/components/BarrageList/Message/MergerMessage/index.js +0 -4
  261. package/dist/components/BarrageList/Message/MessageLayout/MessageMeta/MessageMeta.js +0 -40
  262. package/dist/components/BarrageList/Message/MessageLayout/MessageMeta/MessageMeta.vue.d.ts +0 -54
  263. package/dist/components/BarrageList/Message/MessageLayout/MessageMeta/MessageStatusIcon.js +0 -26
  264. package/dist/components/BarrageList/Message/MessageLayout/MessageMeta/MessageStatusIcon.vue.d.ts +0 -15
  265. package/dist/components/BarrageList/Message/MessageLayout/MessageMeta/index.d.ts +0 -3
  266. package/dist/components/BarrageList/Message/MessageLayout/MessageMeta/index.js +0 -4
  267. package/dist/components/BarrageList/Message/RecalledMessage/RecalledMessage.js +0 -41
  268. package/dist/components/BarrageList/Message/RecalledMessage/RecalledMessage.vue.d.ts +0 -35
  269. package/dist/components/BarrageList/Message/RecalledMessage/index.d.ts +0 -3
  270. package/dist/components/BarrageList/Message/RecalledMessage/index.js +0 -4
  271. package/dist/components/BarrageList/MessageForward/ForwardListItem.js +0 -45
  272. package/dist/components/BarrageList/MessageForward/ForwardListItem.vue.d.ts +0 -17
  273. package/dist/components/BarrageList/MessageForward/MessageForward.js +0 -203
  274. package/dist/components/BarrageList/MessageForward/MessageForward.vue.d.ts +0 -2
  275. package/dist/components/BarrageList/MessageForward/index.d.ts +0 -3
  276. package/dist/components/BarrageList/MessageForward/index.js +0 -4
  277. package/dist/components/LiveCoreView/PlayerControl/MultiResolution.js +0 -78
  278. package/dist/components/LiveCoreView/PlayerControl/MultiResolution.vue.d.ts +0 -2
  279. package/dist/components/LiveCoreView/PlayerControl/PlayerControl.js +0 -168
  280. package/dist/components/LiveCoreView/PlayerControl/PlayerControlState.js +0 -267
  281. package/dist/components/LiveCoreView/PlayerControl/utils/domHelpers.js +0 -99
  282. package/dist/components/LiveCoreView/index.d.ts +0 -4
  283. package/dist/components/StreamView/Layout/MixLayout.js +0 -89
  284. package/dist/components/StreamView/Layout/MixLayout.vue.d.ts +0 -31
  285. package/dist/states/BarrageListState/BarrageListState.d.ts +0 -26
  286. package/dist/states/BarrageListState/BarrageListState.js +0 -122
  287. package/dist/states/BarrageListState/index.d.ts +0 -1
  288. package/dist/states/BarrageListState/index.js +0 -4
  289. package/dist/states/BattleState.js +0 -117
  290. package/dist/states/DeviceState.js +0 -296
  291. package/dist/states/LiveState/index.js +0 -254
  292. package/dist/states/VideoMixerState.js +0 -260
  293. package/src/components/BarrageList/Message/FaceMessage/FaceMessage.vue +0 -43
  294. package/src/components/BarrageList/Message/FaceMessage/index.ts +0 -3
  295. package/src/components/BarrageList/Message/GroupTipMessage/GroupTipMessage.vue +0 -55
  296. package/src/components/BarrageList/Message/GroupTipMessage/index.ts +0 -3
  297. package/src/components/BarrageList/Message/ImageMessage/ImageMessage.vue +0 -181
  298. package/src/components/BarrageList/Message/ImageMessage/index.ts +0 -3
  299. package/src/components/BarrageList/Message/MergerMessage/MergerMessage.vue +0 -6
  300. package/src/components/BarrageList/Message/MergerMessage/index.ts +0 -3
  301. package/src/components/BarrageList/Message/MessageLayout/MessageMeta/MessageMeta.vue +0 -70
  302. package/src/components/BarrageList/Message/MessageLayout/MessageMeta/MessageStatusIcon.vue +0 -40
  303. package/src/components/BarrageList/Message/MessageLayout/MessageMeta/index.ts +0 -3
  304. package/src/components/BarrageList/Message/RecalledMessage/RecalledMessage.vue +0 -82
  305. package/src/components/BarrageList/Message/RecalledMessage/index.ts +0 -3
  306. package/src/components/BarrageList/MessageForward/ForwardListItem.vue +0 -67
  307. package/src/components/BarrageList/MessageForward/MessageForward.vue +0 -388
  308. package/src/components/BarrageList/MessageForward/index.ts +0 -3
  309. package/src/components/StreamView/Layout/MixLayout.vue +0 -144
  310. /package/dist/components/{LiveCoreView → LiveView}/CoreViewDecorate/BattleDecorate.vue.d.ts +0 -0
  311. /package/dist/components/{LiveCoreView → LiveView}/CoreViewDecorate/BattleUserDecorate.vue.d.ts +0 -0
  312. /package/dist/components/{LiveCoreView → LiveView}/CoreViewDecorate/CoHostDecorate.vue.d.ts +0 -0
  313. /package/dist/components/{LiveCoreView → LiveView}/CoreViewDecorate/LiveCoreDecorate.vue.d.ts +0 -0
  314. /package/dist/components/{LiveCoreView → LiveView}/DefaultStreamViewUI.vue.d.ts +0 -0
  315. /package/dist/components/{LiveCoreView → LiveView}/PlayerControl/AudioControl.vue.d.ts +0 -0
  316. /package/dist/components/{LiveCoreView → LiveView}/PlayerControl/PlayerControl.vue.d.ts +0 -0
  317. /package/dist/components/{LiveCoreView → LiveView}/PlayerControl/PlayerControlState.d.ts +0 -0
  318. /package/dist/components/{LiveCoreView → LiveView}/PlayerControl/index.d.ts +0 -0
  319. /package/dist/components/{LiveCoreView → LiveView}/PlayerControl/index.js +0 -0
  320. /package/dist/components/{LiveCoreView → LiveView}/PlayerControl/utils/deviceDetection.d.ts +0 -0
  321. /package/dist/components/{LiveCoreView → LiveView}/PlayerControl/utils/deviceDetection.js +0 -0
  322. /package/dist/components/{LiveCoreView → LiveView}/PlayerControl/utils/fullscreenManager.d.ts +0 -0
  323. /package/dist/components/{LiveCoreView → LiveView}/PlayerControl/utils/fullscreenManager.js +0 -0
  324. /package/dist/components/{LiveCoreView → LiveView}/i18n/index.d.ts +0 -0
  325. /package/dist/components/{LiveCoreView → LiveView}/i18n/index.js +0 -0
  326. /package/dist/components/{LiveCoreView → LiveView}/index.vue.d.ts +0 -0
  327. /package/src/components/{LiveCoreView → LiveView}/CoreViewDecorate/CoHostDecorate.vue +0 -0
  328. /package/src/components/{LiveCoreView → LiveView}/CoreViewDecorate/LiveCoreDecorate.vue +0 -0
  329. /package/src/components/{LiveCoreView → LiveView}/PlayerControl/PlayerControl.module.scss +0 -0
  330. /package/src/components/{LiveCoreView → LiveView}/PlayerControl/index.ts +0 -0
  331. /package/src/components/{LiveCoreView → LiveView}/PlayerControl/utils/deviceDetection.ts +0 -0
  332. /package/src/components/{LiveCoreView → LiveView}/PlayerControl/utils/fullscreenManager.ts +0 -0
  333. /package/src/components/{LiveCoreView → LiveView}/assets/img/defeat.png +0 -0
  334. /package/src/components/{LiveCoreView → LiveView}/assets/img/draw.png +0 -0
  335. /package/src/components/{LiveCoreView → LiveView}/assets/img/victory.png +0 -0
  336. /package/src/components/{LiveCoreView → LiveView}/assets/svg/BattleOrdinaryBadge.svg +0 -0
  337. /package/src/components/{LiveCoreView → LiveView}/assets/svg/BattleTopBadge.svg +0 -0
  338. /package/src/components/{LiveCoreView → LiveView}/assets/svg/blueBkg.svg +0 -0
  339. /package/src/components/{LiveCoreView → LiveView}/assets/svg/redBkg.svg +0 -0
  340. /package/src/components/{LiveCoreView → LiveView}/assets/svg/s.svg +0 -0
  341. /package/src/components/{LiveCoreView → LiveView}/assets/svg/v.svg +0 -0
  342. /package/src/components/{LiveCoreView → LiveView}/i18n/index.ts +0 -0
@@ -1,66 +1,73 @@
1
- import { defineComponent as I, ref as S, computed as m, onMounted as U, onUnmounted as V, createElementBlock as n, createCommentVNode as B, openBlock as s, Fragment as D, renderList as C, normalizeStyle as G, createElementVNode as i, normalizeClass as M, unref as p, toDisplayString as w } from "vue";
2
- import { useBattleState as T } from "../../../states/BattleState.js";
3
- import { useLiveState as Z } from "../../../states/LiveState/index.js";
4
- import { TUILiveBattleManagerEvents as c } from "@tencentcloud/tuiroom-engine-js";
1
+ import { defineComponent as S, ref as U, computed as g, watch as V, createElementBlock as l, createCommentVNode as m, openBlock as a, Fragment as L, renderList as D, normalizeStyle as C, unref as o, toDisplayString as p, createElementVNode as d, normalizeClass as E } from "vue";
2
+ import { useUIKit as G } from "@tencentcloud/uikit-base-component-vue3";
3
+ import { useCoHostState as k } from "../../../states/CoHostState/CoHostState.js";
4
+ import { useBattleState as M } from "../../../states/BattleState/BattleState.js";
5
+ import { useLiveListState as T } from "../../../states/LiveListState/LiveListState.js";
5
6
  import { CoHostLayoutTemplate as y } from "../../../types/coHost.js";
6
- import { _ as k } from "../../../_plugin-vue_export-helper-CHgC5LLL.js";
7
- const z = "data:image/svg+xml,%3csvg%20width='16'%20height='16'%20viewBox='0%200%2016%2016'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18421_20177)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M8%200.70166L14.9282%204.52622V12.1753L8%2015.9999L1.0718%2012.1753V4.52622L8%200.70166Z'%20fill='%23EF6428'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M8%200L14.9282%203.82456V11.4737L8%2015.2982L1.0718%2011.4737V3.82456L8%200Z'%20fill='url(%23paint0_linear_18421_20177)'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M7.99957%201.69971L13.3882%204.67437V10.6237L7.99957%2013.5983L2.61096%2010.6237V4.67437L7.99957%201.69971Z'%20fill='%23FFD37A'/%3e%3c/g%3e%3cdefs%3e%3clinearGradient%20id='paint0_linear_18421_20177'%20x1='0'%20y1='0'%20x2='0'%20y2='15.2982'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20stop-color='%23FFAE5F'/%3e%3cstop%20offset='1'%20stop-color='%23FF8C3C'/%3e%3c/linearGradient%3e%3cclipPath%20id='clip0_18421_20177'%3e%3crect%20width='16'%20height='16'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e", O = "data:image/svg+xml,%3csvg%20width='16'%20height='16'%20viewBox='0%200%2016%2016'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18421_20178)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M8%200.69458L14.9282%204.48401V12.0629L8%2015.8523L1.0718%2012.0629V4.48401L8%200.69458Z'%20fill='%237D9AC6'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M8%200L14.9282%203.78943V11.3683L8%2015.1577L1.0718%2011.3683V3.78943L8%200Z'%20fill='url(%23paint0_linear_18421_20178)'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M7.99957%201.68311L13.3882%204.63044V10.5251L7.99957%2013.4724L2.61096%2010.5251V4.63044L7.99957%201.68311Z'%20fill='url(%23paint1_linear_18421_20178)'/%3e%3c/g%3e%3cdefs%3e%3clinearGradient%20id='paint0_linear_18421_20178'%20x1='0'%20y1='0'%20x2='0'%20y2='15.1577'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20stop-color='%23E6F1FE'/%3e%3cstop%20offset='1'%20stop-color='%23B7C6E2'/%3e%3c/linearGradient%3e%3clinearGradient%20id='paint1_linear_18421_20178'%20x1='1.77734'%20y1='1.68311'%20x2='1.77734'%20y2='13.4724'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20stop-color='%23EDF6FF'/%3e%3cstop%20offset='1'%20stop-color='%23E1F0FF'/%3e%3c/linearGradient%3e%3cclipPath%20id='clip0_18421_20178'%3e%3crect%20width='16'%20height='16'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e", P = {
7
+ import { _ as Z } from "../../../_plugin-vue_export-helper-CHgC5LLL.js";
8
+ const z = "data:image/svg+xml,%3csvg%20width='16'%20height='16'%20viewBox='0%200%2016%2016'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18421_20177)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M8%200.70166L14.9282%204.52622V12.1753L8%2015.9999L1.0718%2012.1753V4.52622L8%200.70166Z'%20fill='%23EF6428'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M8%200L14.9282%203.82456V11.4737L8%2015.2982L1.0718%2011.4737V3.82456L8%200Z'%20fill='url(%23paint0_linear_18421_20177)'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M7.99957%201.69971L13.3882%204.67437V10.6237L7.99957%2013.5983L2.61096%2010.6237V4.67437L7.99957%201.69971Z'%20fill='%23FFD37A'/%3e%3c/g%3e%3cdefs%3e%3clinearGradient%20id='paint0_linear_18421_20177'%20x1='0'%20y1='0'%20x2='0'%20y2='15.2982'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20stop-color='%23FFAE5F'/%3e%3cstop%20offset='1'%20stop-color='%23FF8C3C'/%3e%3c/linearGradient%3e%3cclipPath%20id='clip0_18421_20177'%3e%3crect%20width='16'%20height='16'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e", O = "data:image/svg+xml,%3csvg%20width='16'%20height='16'%20viewBox='0%200%2016%2016'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18421_20178)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M8%200.69458L14.9282%204.48401V12.0629L8%2015.8523L1.0718%2012.0629V4.48401L8%200.69458Z'%20fill='%237D9AC6'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M8%200L14.9282%203.78943V11.3683L8%2015.1577L1.0718%2011.3683V3.78943L8%200Z'%20fill='url(%23paint0_linear_18421_20178)'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M7.99957%201.68311L13.3882%204.63044V10.5251L7.99957%2013.4724L2.61096%2010.5251V4.63044L7.99957%201.68311Z'%20fill='url(%23paint1_linear_18421_20178)'/%3e%3c/g%3e%3cdefs%3e%3clinearGradient%20id='paint0_linear_18421_20178'%20x1='0'%20y1='0'%20x2='0'%20y2='15.1577'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20stop-color='%23E6F1FE'/%3e%3cstop%20offset='1'%20stop-color='%23B7C6E2'/%3e%3c/linearGradient%3e%3clinearGradient%20id='paint1_linear_18421_20178'%20x1='1.77734'%20y1='1.68311'%20x2='1.77734'%20y2='13.4724'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20stop-color='%23EDF6FF'/%3e%3cstop%20offset='1'%20stop-color='%23E1F0FF'/%3e%3c/linearGradient%3e%3cclipPath%20id='clip0_18421_20178'%3e%3crect%20width='16'%20height='16'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e", H = {
8
9
  key: 0,
9
10
  class: "battle-user-decorate-container"
10
- }, A = {
11
+ }, P = {
11
12
  key: 0,
12
13
  class: "battle-decorate"
13
- }, H = ["src"], R = { class: "battle-level" }, W = { class: "battle-score-value" }, N = /* @__PURE__ */ I({
14
+ }, A = {
15
+ key: 0,
16
+ class: "battle-score-value"
17
+ }, R = ["src"], W = { class: "battle-level" }, N = { class: "battle-score-value" }, K = /* @__PURE__ */ S({
14
18
  __name: "BattleUserDecorate",
15
19
  props: {
16
20
  seatListWithRealSize: {}
17
21
  },
18
22
  setup(f) {
19
- const b = f, { currentLive: v } = Z(), { battleUsers: F, battleScore: d, subscribeEvent: h, unsubscribeEvent: _ } = T(), u = S(!1), x = m(() => {
20
- var o, l;
21
- const t = ((o = v.value) == null ? void 0 : o.layoutTemplate) === y.HostDynamicGrid && F.value.length > 2, r = ((l = v.value) == null ? void 0 : l.layoutTemplate) === y.HostDynamic1v6, e = t || r;
22
- return b.seatListWithRealSize.length > 0 && u.value && e;
23
- }), E = m(() => [...d.value.values()].sort((t, r) => r - t));
24
- function a(t) {
25
- return E.value.indexOf(d.value.get(t) || 0) + 1;
26
- }
27
- function g() {
28
- u.value = !0;
29
- }
30
- function L() {
31
- setTimeout(() => {
32
- u.value = !1;
33
- }, 5e3);
23
+ const { t: w } = G(), I = f, { currentLive: v } = T(), { connected: b } = k(), { currentBattleInfo: B, battleScore: s } = M(), u = U(!1), F = g(() => {
24
+ var c, r;
25
+ const e = ((c = v.value) == null ? void 0 : c.layoutTemplate) === y.HostDynamicGrid, n = ((r = v.value) == null ? void 0 : r.layoutTemplate) === y.HostDynamic1v6, t = e || n;
26
+ return I.seatListWithRealSize.length > 0 && u.value && t && b.value.length > 2;
27
+ }), x = g(() => [...s.value.values()].sort((e, n) => n - e));
28
+ function i(e) {
29
+ return x.value.indexOf(s.value.get(e) || 0) + 1;
34
30
  }
35
- return U(() => {
36
- h(c.onBattleStarted, g), h(c.onBattleEnded, L);
37
- }), V(() => {
38
- _(c.onBattleStarted, g), _(c.onBattleEnded, L);
39
- }), (t, r) => x.value ? (s(), n("div", P, [
40
- (s(!0), n(D, null, C(f.seatListWithRealSize, (e, o) => {
41
- var l;
42
- return s(), n("div", {
43
- key: `seat-${o}`,
44
- style: G(e.region)
31
+ let _ = null;
32
+ return V(() => {
33
+ var e;
34
+ return (e = B.value) == null ? void 0 : e.battleId;
35
+ }, (e) => {
36
+ if (e != null)
37
+ u.value = !0;
38
+ else {
39
+ if (_) return;
40
+ _ = setTimeout(() => {
41
+ u.value = !1;
42
+ }, 5e3);
43
+ }
44
+ }, { immediate: !0 }), (e, n) => F.value ? (a(), l("div", H, [
45
+ (a(!0), l(L, null, D(f.seatListWithRealSize, (t, c) => {
46
+ var r, h;
47
+ return a(), l("div", {
48
+ key: `seat-${c}`,
49
+ style: C(t.region)
45
50
  }, [
46
- a(e.userInfo.userId) > 0 ? (s(), n("div", A, [
47
- i("div", {
48
- class: M(["battle-badge-container", a(e.userInfo.userId) === 1 ? "top-badge" : "ordinary-badge"])
49
- }, [
50
- i("img", {
51
- src: a(e.userInfo.userId) === 1 ? p(z) : p(O),
52
- alt: "battle-badge",
53
- class: "battle-badge"
54
- }, null, 8, H),
55
- i("span", R, w(a(e.userInfo.userId)), 1)
56
- ], 2),
57
- i("span", W, w(((l = p(d)) == null ? void 0 : l.get(e.userInfo.userId)) || 0), 1)
58
- ])) : B("", !0)
51
+ i(t.userInfo.userId) > 0 ? (a(), l("div", P, [
52
+ (r = o(s)) != null && r.has(t.userInfo.userId) ? (a(), l(L, { key: 1 }, [
53
+ d("div", {
54
+ class: E(["battle-badge-container", i(t.userInfo.userId) === 1 ? "top-badge" : "ordinary-badge"])
55
+ }, [
56
+ d("img", {
57
+ src: i(t.userInfo.userId) === 1 ? o(z) : o(O),
58
+ alt: "battle-badge",
59
+ class: "battle-badge"
60
+ }, null, 8, R),
61
+ d("span", W, p(i(t.userInfo.userId)), 1)
62
+ ], 2),
63
+ d("span", N, p(((h = o(s)) == null ? void 0 : h.get(t.userInfo.userId)) || 0), 1)
64
+ ], 64)) : (a(), l("span", A, p(o(w)("Connecting")), 1))
65
+ ])) : m("", !0)
59
66
  ], 4);
60
67
  }), 128))
61
- ])) : B("", !0);
68
+ ])) : m("", !0);
62
69
  }
63
- }), X = /* @__PURE__ */ k(N, [["__scopeId", "data-v-643ef0a9"]]);
70
+ }), ee = /* @__PURE__ */ Z(K, [["__scopeId", "data-v-4b3dcf3b"]]);
64
71
  export {
65
- X as default
72
+ ee as default
66
73
  };
@@ -1,8 +1,8 @@
1
1
  import { defineComponent as D, ref as d, onUnmounted as S, watch as C, computed as I, createElementBlock as H, createCommentVNode as T, unref as e, openBlock as g, createElementVNode as r, createVNode as w, toDisplayString as f } from "vue";
2
2
  import { useUIKit as B, IconChevronRight as k } from "@tencentcloud/uikit-base-component-vue3";
3
- import { useBattleState as x } from "../../../states/BattleState.js";
4
- import { convertSecondsToHMS as N } from "../../../utils/utils.js";
5
- import { useCoHostState as y } from "../../../states/CoHostState/CoHostState.js";
3
+ import { convertSecondsToHMS as x } from "../../../utils/utils.js";
4
+ import { useCoHostState as N } from "../../../states/CoHostState/CoHostState.js";
5
+ import { useBattleState as y } from "../../../states/BattleState/BattleState.js";
6
6
  import { CoHostStatus as u } from "../../../types/coHost.js";
7
7
  import { _ as E } from "../../../_plugin-vue_export-helper-CHgC5LLL.js";
8
8
  const M = {
@@ -11,7 +11,7 @@ const M = {
11
11
  }, U = { class: "co-host-decorate-content" }, V = { class: "co-host-status" }, $ = { class: "co-host-time" }, b = /* @__PURE__ */ D({
12
12
  __name: "CoHostDecorate",
13
13
  setup(z) {
14
- const { coHostStatus: m } = y(), { currentBattleInfo: p } = x(), { t: _ } = B(), o = d(0), a = d(Date.now());
14
+ const { coHostStatus: m } = N(), { currentBattleInfo: p } = y(), { t: _ } = B(), o = d(0), a = d(Date.now());
15
15
  let n = null;
16
16
  S(() => {
17
17
  i();
@@ -33,7 +33,7 @@ const M = {
33
33
  const h = I(() => {
34
34
  if (o.value === 0)
35
35
  return "00:00";
36
- const t = Math.floor((a.value - o.value) / 1e3), { minutes: s, seconds: c } = N(t);
36
+ const t = Math.floor((a.value - o.value) / 1e3), { minutes: s, seconds: c } = x(t);
37
37
  return `${l(s)}:${l(c)}`;
38
38
  });
39
39
  return (t, s) => {
@@ -48,7 +48,7 @@ const M = {
48
48
  ])) : T("", !0);
49
49
  };
50
50
  }
51
- }), J = /* @__PURE__ */ E(b, [["__scopeId", "data-v-d6dae3fa"]]);
51
+ }), J = /* @__PURE__ */ E(b, [["__scopeId", "data-v-673defc5"]]);
52
52
  export {
53
53
  J as default
54
54
  };
@@ -29,7 +29,7 @@ const S = {
29
29
  ], 4)) : u("", !0)
30
30
  ], 64));
31
31
  }
32
- }), D = /* @__PURE__ */ z(W, [["__scopeId", "data-v-bd899db7"]]);
32
+ }), D = /* @__PURE__ */ z(W, [["__scopeId", "data-v-666d0e70"]]);
33
33
  export {
34
34
  D as default
35
35
  };
@@ -1,32 +1,32 @@
1
- import { defineComponent as U, ref as O, computed as u, watch as R, nextTick as N, onUnmounted as W, createElementBlock as r, openBlock as o, createCommentVNode as v, Fragment as B, createVNode as D, unref as l, createBlock as M, createElementVNode as E, toDisplayString as p } from "vue";
2
- import { useCoGuestState as G } from "../../states/CoGuestState.js";
3
- import w from "../Avatar/Avatar.js";
4
- import F from "../../baseComp/AudioIcon.js";
5
- import { useLiveSeatState as H } from "../../states/LiveSeatState/index.js";
6
- import { useUIKit as K } from "@tencentcloud/uikit-base-component-vue3";
1
+ import { defineComponent as O, ref as R, computed as u, watch as N, nextTick as W, onUnmounted as B, createElementBlock as r, openBlock as o, createCommentVNode as v, Fragment as D, createVNode as M, unref as l, createBlock as E, createElementVNode as w, toDisplayString as g } from "vue";
2
+ import { useCoGuestState as F } from "../../states/CoGuestState.js";
3
+ import H from "../Avatar/Avatar.js";
4
+ import G from "../../baseComp/AudioIcon.js";
5
+ import { useLiveSeatState as K } from "../../states/LiveSeatState/index.js";
6
+ import { useLoginState as T } from "../../states/LoginState.js";
7
+ import { useUIKit as j } from "@tencentcloud/uikit-base-component-vue3";
7
8
  import { DeviceStatus as k } from "../../types/device.js";
8
- import { CoGuestStatus as T } from "../../types/coGuest.js";
9
- import { _ as j } from "../../_plugin-vue_export-helper-CHgC5LLL.js";
10
- const q = { class: "stream-cover" }, J = {
9
+ import { _ as q } from "../../_plugin-vue_export-helper-CHgC5LLL.js";
10
+ const J = { class: "stream-cover" }, P = {
11
11
  key: 0,
12
12
  class: "no-video-container"
13
- }, P = {
13
+ }, Q = {
14
14
  key: 1,
15
15
  class: "mask"
16
- }, Q = {
16
+ }, X = {
17
17
  key: 1,
18
18
  class: "user-details"
19
- }, X = { class: "username" }, Y = {
19
+ }, Y = { class: "username" }, Z = {
20
20
  key: 1,
21
21
  class: "empty-position"
22
- }, Z = ["title"], $ = ["title"], S = /* @__PURE__ */ U({
22
+ }, $ = ["title"], S = ["title"], V = /* @__PURE__ */ O({
23
23
  __name: "DefaultStreamViewUI",
24
24
  props: {
25
25
  userInfo: {},
26
26
  streamViewInfoList: {}
27
27
  },
28
28
  setup(d) {
29
- const a = d, { t: h } = K(), i = O(null), { localCoGuestStatus: y } = G(), { speakingUsers: z, seatList: x } = H(), C = u(() => x.value.filter((e) => e.userInfo && e.userInfo.userId !== "")), g = u(() => {
29
+ const a = d, { t: f } = j(), i = R(null), { loginUserInfo: y } = T(), { connected: z } = F(), { speakingUsers: x, seatList: L } = K(), b = u(() => L.value.filter((e) => e.userInfo && e.userInfo.userId !== "")), p = u(() => {
30
30
  const e = a.streamViewInfoList.find((t) => {
31
31
  var n, s;
32
32
  return ((n = t.userInfo) == null ? void 0 : n.userId) === ((s = a.userInfo) == null ? void 0 : s.userId);
@@ -35,17 +35,17 @@ const q = { class: "stream-cover" }, J = {
35
35
  width: parseInt(e == null ? void 0 : e.region.width),
36
36
  height: parseInt(e == null ? void 0 : e.region.height)
37
37
  } : { width: 0, height: 0 };
38
- }), b = u(() => {
39
- const t = Math.min(g.value.width, g.value.height);
38
+ }), A = u(() => {
39
+ const t = Math.min(p.value.width, p.value.height);
40
40
  return t < 64 ? t - 10 : 54;
41
- }), f = u(() => {
41
+ }), h = u(() => {
42
42
  const e = a.streamViewInfoList.find((t) => {
43
43
  var n, s;
44
44
  return ((n = t.userInfo) == null ? void 0 : n.userId) === ((s = a.userInfo) == null ? void 0 : s.userId);
45
45
  });
46
46
  return e ? a.streamViewInfoList.filter((t) => {
47
- const n = t.region.zIndex > (e == null ? void 0 : e.region.zIndex), s = parseInt(t.region.left) > parseInt(e == null ? void 0 : e.region.left) && parseInt(t.region.left) < parseInt(e == null ? void 0 : e.region.left) + parseInt(e == null ? void 0 : e.region.width), L = parseInt(t.region.top) > parseInt(e == null ? void 0 : e.region.top) && parseInt(t.region.top) < parseInt(e == null ? void 0 : e.region.top) + parseInt(e == null ? void 0 : e.region.height);
48
- return n && s && L;
47
+ const n = t.region.zIndex > (e == null ? void 0 : e.region.zIndex), s = parseInt(t.region.left) > parseInt(e == null ? void 0 : e.region.left) && parseInt(t.region.left) < parseInt(e == null ? void 0 : e.region.left) + parseInt(e == null ? void 0 : e.region.width), C = parseInt(t.region.top) > parseInt(e == null ? void 0 : e.region.top) && parseInt(t.region.top) < parseInt(e == null ? void 0 : e.region.top) + parseInt(e == null ? void 0 : e.region.height);
48
+ return n && s && C;
49
49
  }).map((t) => ({
50
50
  left: parseInt(t.region.left) - parseInt(e == null ? void 0 : e.region.left),
51
51
  top: parseInt(t.region.top) - parseInt(e == null ? void 0 : e.region.top),
@@ -57,16 +57,16 @@ const q = { class: "stream-cover" }, J = {
57
57
  const e = i.value, t = e.getContext("2d");
58
58
  if (!t) return;
59
59
  const n = e.getBoundingClientRect();
60
- e.width = n.width, e.height = n.height, t.fillStyle = "#1F2024", t.fillRect(0, 0, e.width, e.height), f.value.forEach((s) => {
60
+ e.width = n.width, e.height = n.height, t.fillStyle = "#1F2024", t.fillRect(0, 0, e.width, e.height), h.value.forEach((s) => {
61
61
  t.clearRect(s.left, s.top, s.width, s.height);
62
62
  });
63
63
  };
64
64
  let c = null;
65
- R(() => f.value.length, async () => {
66
- f.value.length > 0 ? (await N(), i.value && (I(), c = new ResizeObserver(() => {
65
+ N(() => h.value.length, async () => {
66
+ h.value.length > 0 ? (await W(), i.value && (I(), c = new ResizeObserver(() => {
67
67
  I();
68
68
  }), c.observe(i.value))) : c && i.value && c.unobserve(i.value);
69
- }, { immediate: !0 }), W(() => {
69
+ }, { immediate: !0 }), B(() => {
70
70
  c && i.value && c.unobserve(i.value);
71
71
  });
72
72
  const m = u(() => {
@@ -75,50 +75,53 @@ const q = { class: "stream-cover" }, J = {
75
75
  }), _ = u(() => {
76
76
  var e;
77
77
  return ((e = a.userInfo) == null ? void 0 : e.microphoneStatus) === k.On;
78
- }), A = u(() => {
78
+ }), U = u(() => {
79
79
  var e;
80
80
  return ((e = a.userInfo) == null ? void 0 : e.cameraStatus) === k.On;
81
81
  });
82
- return (e, t) => (o(), r("div", q, [
83
- d.userInfo.userId ? (o(), r(B, { key: 0 }, [
84
- A.value ? v("", !0) : (o(), r("div", J, [
85
- f.value.length > 0 ? (o(), r("canvas", {
82
+ return (e, t) => (o(), r("div", J, [
83
+ d.userInfo.userId ? (o(), r(D, { key: 0 }, [
84
+ U.value ? v("", !0) : (o(), r("div", P, [
85
+ h.value.length > 0 ? (o(), r("canvas", {
86
86
  key: 0,
87
87
  ref_key: "canvasRef",
88
88
  ref: i,
89
89
  class: "canvas-mask"
90
- }, null, 512)) : (o(), r("div", P)),
91
- D(l(w), {
90
+ }, null, 512)) : (o(), r("div", Q)),
91
+ M(l(H), {
92
92
  class: "avatar",
93
- size: b.value,
93
+ size: A.value,
94
94
  src: d.userInfo.avatarUrl,
95
95
  alt: m.value
96
96
  }, null, 8, ["size", "src", "alt"])
97
97
  ])),
98
- C.value.length > 1 ? (o(), r("div", Q, [
99
- _.value ? v("", !0) : (o(), M(F, {
98
+ b.value.length > 1 ? (o(), r("div", X, [
99
+ _.value ? v("", !0) : (o(), E(G, {
100
100
  key: 0,
101
101
  class: "audio-icon",
102
102
  isMuted: !_.value,
103
- audioVolume: l(z).get(d.userInfo.userId) || 0
103
+ audioVolume: l(x).get(d.userInfo.userId) || 0
104
104
  }, null, 8, ["isMuted", "audioVolume"])),
105
- E("div", X, p(m.value), 1)
105
+ w("div", Y, g(m.value), 1)
106
106
  ])) : v("", !0)
107
107
  ], 64)) : v("", !0),
108
- d.userInfo.userId ? v("", !0) : (o(), r("div", Y, [
109
- l(y) === l(T).Connected ? (o(), r("span", {
108
+ d.userInfo.userId ? v("", !0) : (o(), r("div", Z, [
109
+ l(z).some((n) => {
110
+ var s;
111
+ return n.userId === ((s = l(y)) == null ? void 0 : s.userId);
112
+ }) ? (o(), r("span", {
110
113
  key: 0,
111
114
  class: "text",
112
- title: l(h)("Waiting for connection")
113
- }, p(l(h)("Waiting for connection")), 9, Z)) : (o(), r("span", {
115
+ title: l(f)("Waiting for connection")
116
+ }, g(l(f)("Waiting for connection")), 9, $)) : (o(), r("span", {
114
117
  key: 1,
115
118
  class: "text",
116
- title: l(h)("Waiting for connection")
117
- }, p(l(h)("Waiting for connection")), 9, $))
119
+ title: l(f)("Waiting for connection")
120
+ }, g(l(f)("Waiting for connection")), 9, S))
118
121
  ]))
119
122
  ]));
120
123
  }
121
- }), le = /* @__PURE__ */ j(S, [["__scopeId", "data-v-9237082b"]]);
124
+ }), ue = /* @__PURE__ */ q(V, [["__scopeId", "data-v-3615261b"]]);
122
125
  export {
123
- le as default
126
+ ue as default
124
127
  };
@@ -1,4 +1,4 @@
1
- import { defineComponent as K, ref as v, computed as y, onUnmounted as N, createElementBlock as j, openBlock as g, normalizeStyle as C, createElementVNode as n, withDirectives as q, unref as S, createBlock as D, normalizeClass as J, toDisplayString as Q, vShow as W, toRaw as X } from "vue";
1
+ import { defineComponent as K, ref as v, computed as y, onUnmounted as N, createElementBlock as j, openBlock as g, normalizeStyle as _, createElementVNode as n, withDirectives as q, unref as S, createBlock as D, normalizeClass as J, toDisplayString as Q, vShow as W, toRaw as X } from "vue";
2
2
  import { useUIKit as Z, IconSpeakerOff as ee, IconSpeakerOn as oe } from "@tencentcloud/uikit-base-component-vue3";
3
3
  import { isMobile as r } from "../../../utils/env.js";
4
4
  import { _ as te } from "../../../_plugin-vue_export-helper-CHgC5LLL.js";
@@ -10,15 +10,15 @@ const le = ["title"], ne = { class: "volume-slider-container" }, ue = { class: "
10
10
  },
11
11
  emits: ["volume-change", "muted-change"],
12
12
  setup(T, { emit: w }) {
13
- const o = T, m = w, { t: _ } = Z(), t = v({
13
+ const o = T, m = w, { t: V } = Z(), t = v({
14
14
  current: 1,
15
15
  previous: 1
16
- }), u = v(!1), l = v(!1), a = v(!1), V = v(), s = v(null), E = {
16
+ }), u = v(!1), l = v(!1), a = v(!1), E = v(), s = v(null), b = {
17
17
  PC: 500,
18
18
  // 0.5 seconds for PC
19
19
  MOBILE: 3e3
20
20
  // 3 seconds for mobile
21
- }, b = y(() => o.enableVolumeControl === !1 ? u.value ? 0 : 100 : Math.round(t.value.current * 100)), z = y(() => ({
21
+ }, C = y(() => o.enableVolumeControl === !1 ? u.value ? 0 : 100 : Math.round(t.value.current * 100)), z = y(() => ({
22
22
  width: `${o.iconSize || 20}px`,
23
23
  height: `${o.iconSize || 20}px`
24
24
  })), A = (e) => {
@@ -29,7 +29,7 @@ const le = ["title"], ne = { class: "volume-slider-container" }, ue = { class: "
29
29
  o.enableVolumeControl === !1 ? M() : r ? (l.value = !l.value, l.value ? i() : d()) : M();
30
30
  }, i = () => {
31
31
  d();
32
- const e = r ? E.MOBILE : E.PC;
32
+ const e = r ? b.MOBILE : b.PC;
33
33
  s.value = window.setTimeout(() => {
34
34
  o.enableVolumeControl && (l.value = !1);
35
35
  }, e);
@@ -44,41 +44,41 @@ const le = ["title"], ne = { class: "volume-slider-container" }, ue = { class: "
44
44
  return Math.max(0, Math.min(1, 1 - R / F));
45
45
  }, Y = () => {
46
46
  document.addEventListener("mousemove", f), document.addEventListener("mouseup", h), document.addEventListener("touchmove", f), document.addEventListener("touchend", h);
47
- }, L = () => {
48
- document.removeEventListener("mousemove", f), document.removeEventListener("mouseup", h), document.removeEventListener("touchmove", f), document.removeEventListener("touchend", h);
49
47
  }, k = () => {
48
+ document.removeEventListener("mousemove", f), document.removeEventListener("mouseup", h), document.removeEventListener("touchmove", f), document.removeEventListener("touchend", h);
49
+ }, L = () => {
50
50
  a.value = !0, o.enableVolumeControl && d(), Y();
51
51
  }, f = (e) => {
52
52
  if (!a.value) return;
53
53
  e.preventDefault();
54
54
  let c;
55
55
  e instanceof MouseEvent ? c = e.clientY : c = e.touches[0].clientY;
56
- const p = O(c, V.value);
56
+ const p = O(c, E.value);
57
57
  A(p);
58
58
  }, h = () => {
59
- a.value = !1, o.enableVolumeControl && l.value && i(), L();
59
+ a.value = !1, o.enableVolumeControl && l.value && i(), k();
60
60
  }, H = (e) => {
61
- o.enableVolumeControl !== !1 && (k(), e.preventDefault());
61
+ o.enableVolumeControl !== !1 && (L(), e.preventDefault());
62
62
  }, P = (e) => {
63
- o.enableVolumeControl !== !1 && (k(), e.preventDefault());
64
- }, U = () => {
65
- o.enableVolumeControl !== !1 && r && (l.value = !l.value, l.value ? i() : d());
63
+ o.enableVolumeControl !== !1 && (L(), e.preventDefault());
66
64
  }, $ = () => {
65
+ o.enableVolumeControl !== !1 && r && (l.value = !l.value, l.value ? i() : d());
66
+ }, U = () => {
67
67
  o.enableVolumeControl !== !1 && (r || d());
68
68
  }, G = () => {
69
69
  o.enableVolumeControl !== !1 && (r || a.value || i());
70
70
  };
71
71
  return N(() => {
72
- L(), s.value && clearTimeout(s.value);
72
+ k(), s.value && clearTimeout(s.value);
73
73
  }), (e, c) => (g(), j("div", {
74
74
  class: "audio-control",
75
- style: C(z.value),
75
+ style: _(z.value),
76
76
  onMouseenter: B,
77
77
  onMouseleave: x
78
78
  }, [
79
79
  n("span", {
80
80
  class: "control-btn volume-btn",
81
- title: u.value ? S(_)("Unmute") : S(_)("Mute"),
81
+ title: u.value ? S(V)("Open Speaker") : S(V)("Close Speaker"),
82
82
  onClick: I
83
83
  }, [
84
84
  u.value ? (g(), D(S(ee), {
@@ -92,38 +92,38 @@ const le = ["title"], ne = { class: "volume-slider-container" }, ue = { class: "
92
92
  q(n("div", ne, [
93
93
  n("div", {
94
94
  class: "volume-slider-wrapper",
95
- onMouseenter: $,
95
+ onMouseenter: U,
96
96
  onMouseleave: G
97
97
  }, [
98
98
  n("div", ue, [
99
99
  n("div", {
100
100
  ref_key: "volumeSliderElement",
101
- ref: V,
101
+ ref: E,
102
102
  class: "custom-volume-slider",
103
103
  onMousedown: H,
104
104
  onTouchstart: P,
105
- onClick: U
105
+ onClick: $
106
106
  }, [
107
107
  n("div", re, [
108
108
  n("div", {
109
109
  class: "slider-progress",
110
- style: C({ height: `${b.value}%` })
110
+ style: _({ height: `${C.value}%` })
111
111
  }, null, 4),
112
112
  n("div", {
113
113
  class: J(["slider-thumb", { "no-transition": a.value }]),
114
- style: C({ bottom: `${b.value}%` })
114
+ style: _({ bottom: `${C.value}%` })
115
115
  }, null, 6)
116
116
  ])
117
117
  ], 544)
118
118
  ]),
119
- n("div", ae, Q(b.value), 1)
119
+ n("div", ae, Q(C.value), 1)
120
120
  ], 32)
121
121
  ], 512), [
122
122
  [W, l.value]
123
123
  ])
124
124
  ], 36));
125
125
  }
126
- }), de = /* @__PURE__ */ te(se, [["__scopeId", "data-v-22bb0b88"]]);
126
+ }), de = /* @__PURE__ */ te(se, [["__scopeId", "data-v-7c1576e7"]]);
127
127
  export {
128
128
  de as default
129
129
  };
@@ -0,0 +1,79 @@
1
+ import { defineComponent as y, ref as L, onMounted as I, watch as S, withDirectives as f, createCommentVNode as M, unref as e, createElementBlock as d, openBlock as p, createElementVNode as v, Fragment as x, renderList as N, toDisplayString as _, vShow as V } from "vue";
2
+ import { useUIKit as B } from "@tencentcloud/uikit-base-component-vue3";
3
+ import D from "../../../directives/vClickOutside.js";
4
+ import { usePlayerControlState as E, Resolution as l } from "./PlayerControlState.js";
5
+ import { useLiveListState as O } from "../../../states/LiveListState/LiveListState.js";
6
+ import { _ as b } from "../../../_plugin-vue_export-helper-CHgC5LLL.js";
7
+ const z = {
8
+ key: 0,
9
+ class: "multi-resolution"
10
+ }, F = ["data-resolution"], K = /* @__PURE__ */ y({
11
+ __name: "MultiResolution",
12
+ emits: ["resolution-change"],
13
+ setup(U, { emit: h }) {
14
+ const { t: a } = B(), { currentLive: r } = O(), {
15
+ resolutionList: i,
16
+ currentResolution: u,
17
+ switchResolution: R,
18
+ initializeResolution: k
19
+ } = E(), C = h, c = {
20
+ [l.R360P]: "360P",
21
+ [l.R540P]: "540P",
22
+ [l.R720P]: "720P",
23
+ [l.R1080P]: "1080P"
24
+ }, s = L(!1), P = () => {
25
+ s.value = !1;
26
+ }, g = () => {
27
+ s.value = !s.value;
28
+ }, w = async (t) => {
29
+ var o;
30
+ t.stopPropagation();
31
+ const m = (o = t.target) == null ? void 0 : o.dataset.resolution;
32
+ if (m) {
33
+ const n = Number(m);
34
+ if (i.value.includes(n)) {
35
+ if (s.value = !1, n === u.value)
36
+ return;
37
+ await R(n), C("resolution-change", n);
38
+ }
39
+ }
40
+ };
41
+ return I(() => {
42
+ S(
43
+ () => {
44
+ var t;
45
+ return (t = r.value) == null ? void 0 : t.liveId;
46
+ },
47
+ async () => {
48
+ var t;
49
+ (t = r.value) != null && t.liveId && await k(r.value.liveId);
50
+ },
51
+ {
52
+ immediate: !0
53
+ }
54
+ );
55
+ }), (t, m) => e(i).length > 0 ? f((p(), d("span", z, [
56
+ f(v("span", {
57
+ class: "multi-resolution-list",
58
+ onClick: w
59
+ }, [
60
+ (p(!0), d(x, null, N(e(i), (o) => (p(), d("span", {
61
+ key: o,
62
+ class: "multi-resolution-item",
63
+ "data-resolution": o
64
+ }, _(e(a)(c[o])), 9, F))), 128))
65
+ ], 512), [
66
+ [V, s.value]
67
+ ]),
68
+ v("span", {
69
+ class: "current-resolution",
70
+ onClick: g
71
+ }, _(e(u) ? e(a)(c[e(u)]) : e(i).length > 0 ? e(a)(c[e(i)[0]]) : ""), 1)
72
+ ])), [
73
+ [e(D), P]
74
+ ]) : M("", !0);
75
+ }
76
+ }), Q = /* @__PURE__ */ b(K, [["__scopeId", "data-v-fae0c822"]]);
77
+ export {
78
+ Q as default
79
+ };
@@ -0,0 +1,8 @@
1
+ import { Resolution } from './PlayerControlState';
2
+
3
+ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
4
+ "resolution-change": (resolution: Resolution) => void;
5
+ }, string, import('vue').PublicProps, Readonly<{}> & Readonly<{
6
+ "onResolution-change"?: ((resolution: Resolution) => any) | undefined;
7
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
8
+ export default _default;