fcr-ui-scene 3.4.3 → 3.4.4

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 (550) hide show
  1. package/lib/ scenes/base.d.ts +10 -0
  2. package/lib/ scenes/base.js +75 -0
  3. package/lib/ scenes/main-scene.d.ts +43 -0
  4. package/lib/ scenes/main-scene.js +368 -0
  5. package/lib/ scenes/waiting-scene.d.ts +31 -0
  6. package/lib/ scenes/waiting-scene.js +119 -0
  7. package/lib/base.js +3 -0
  8. package/lib/common/device-store.d.ts +2 -3
  9. package/lib/common/device-store.js +194 -174
  10. package/lib/common/device-stream-store.d.ts +7 -27
  11. package/lib/common/device-stream-store.js +176 -190
  12. package/lib/common/event-store.d.ts +13 -4
  13. package/lib/common/event-store.js +18 -7
  14. package/lib/common/remote-renderer.d.ts +15 -0
  15. package/lib/common/remote-renderer.js +138 -0
  16. package/lib/common/room-store.js +6 -6
  17. package/lib/common/security-store.d.ts +9 -19
  18. package/lib/common/security-store.js +39 -27
  19. package/lib/common/type.d.ts +8 -0
  20. package/lib/common/type.js +6 -0
  21. package/lib/electron/app.js +2 -0
  22. package/lib/electron/bootstrap-dev.js +2 -0
  23. package/lib/electron/bootstrap-sdk.js +2 -0
  24. package/lib/electron/bootstrap.d.ts +1 -0
  25. package/lib/electron/bootstrap.js +56 -0
  26. package/lib/electron/dev.d.ts +1 -0
  27. package/lib/electron/dev.js +51 -0
  28. package/lib/electron/injections.js +5 -0
  29. package/lib/electron/tools.js +4 -0
  30. package/lib/electron/window.js +2 -0
  31. package/lib/error-fallback.css +62 -0
  32. package/lib/error-fallback.d.ts +2 -0
  33. package/lib/error-fallback.js +19 -0
  34. package/lib/fragments/control-bar/cloud-recording-buttons.js +1 -1
  35. package/lib/fragments/control-bar/control-bar-store.d.ts +1 -45
  36. package/lib/fragments/control-bar/control-bar-store.js +83 -465
  37. package/lib/fragments/control-bar/device/index.js +3 -5
  38. package/lib/fragments/control-bar/index.css +10 -15
  39. package/lib/fragments/control-bar/index.js +0 -24
  40. package/lib/fragments/control-bar/meeting-details/meeting-detail.css +12 -31
  41. package/lib/fragments/control-bar/meeting-details/meeting-details.js +16 -117
  42. package/lib/fragments/control-bar/more-actions/index.css +0 -53
  43. package/lib/fragments/control-bar/more-actions/index.js +38 -73
  44. package/lib/fragments/control-bar/security-content/index.css +0 -75
  45. package/lib/fragments/control-bar/security-content/index.js +19 -105
  46. package/lib/fragments/control-bar/share-state-nav/index.js +1 -1
  47. package/lib/fragments/control-bar/view.js +8 -23
  48. package/lib/fragments/live-streaming/store.d.ts +1 -1
  49. package/lib/fragments/live-streaming/store.js +1 -1
  50. package/lib/fragments/live-streaming/view.js +2 -4
  51. package/lib/fragments/share-screen-selection/selection-store.d.ts +1 -1
  52. package/lib/fragments/share-screen-selection/selection-store.js +1 -1
  53. package/lib/fragments/share-screen-selection/view.js +20 -20
  54. package/lib/fragments/toolbar/components/eraser-picker.js +1 -1
  55. package/lib/fragments/toolbar/components/pen-picker.js +1 -1
  56. package/lib/fragments/toolbar/components/shape-picker.js +1 -1
  57. package/lib/fragments/toolbar/components/wrapper.js +1 -1
  58. package/lib/fragments/toolbar/hooks.js +1 -1
  59. package/lib/fragments/toolbar/store.d.ts +1 -1
  60. package/lib/modules/{interpreter → Interpreter}/constant.d.ts +4 -0
  61. package/lib/modules/{interpreter → Interpreter}/constant.js +45 -3
  62. package/lib/modules/Interpreter/context.d.ts +2 -0
  63. package/lib/modules/Interpreter/context.js +9 -0
  64. package/lib/modules/{interpreter → Interpreter}/interpreter-list/index.js +2 -2
  65. package/lib/modules/{interpreter → Interpreter}/interpreter-list/interpreter-item/components/pick-language/index.js +5 -2
  66. package/lib/modules/{interpreter → Interpreter}/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/index.js +2 -0
  67. package/lib/modules/{interpreter → Interpreter}/interpreter-list/interpreter-item/components/pick-user/index.js +4 -0
  68. package/lib/modules/{interpreter → Interpreter}/store.js +5 -0
  69. package/lib/modules/{interpreter → Interpreter}/utils.js +1 -0
  70. package/lib/modules/action-bar/action-bar-collapes-items.d.ts +1 -1
  71. package/lib/modules/action-bar/action-bar-collapes-items.js +11 -11
  72. package/lib/modules/action-bar/apps/useInterpreter.js +4 -2
  73. package/lib/modules/action-bar/chat/index.js +8 -8
  74. package/lib/modules/action-bar/components/apps/app-item/index.js +2 -0
  75. package/lib/modules/action-bar/components/apps/appitems.js +5 -2
  76. package/lib/modules/action-bar/components/apps/useAppItemOptions.js +1 -0
  77. package/lib/modules/action-bar/components/apps/useWidgetList.d.ts +7 -0
  78. package/lib/modules/action-bar/components/apps/useWidgetList.js +43 -0
  79. package/lib/modules/action-bar/components/collapse/index.js +4 -0
  80. package/lib/modules/action-bar/components/device/index.css +162 -0
  81. package/lib/modules/action-bar/components/device/index.d.ts +8 -0
  82. package/lib/modules/action-bar/components/device/index.js +611 -0
  83. package/lib/modules/action-bar/components/item/index.js +2 -0
  84. package/lib/modules/action-bar/components/item.d.ts +27 -0
  85. package/lib/modules/action-bar/components/item.js +164 -0
  86. package/lib/modules/action-bar/components/leave/assign-host.d.ts +8 -1
  87. package/lib/modules/action-bar/components/leave/assign-host.js +1 -1
  88. package/lib/modules/action-bar/components/leave/index.js +2 -0
  89. package/lib/modules/action-bar/components/leave/leave-meeting.d.ts +16 -1
  90. package/lib/modules/action-bar/components/more/poppover-content.js +4 -0
  91. package/lib/modules/action-bar/components/notification-bar/components/interpreter/index.js +1 -2
  92. package/lib/modules/action-bar/components/notification-bar/index.js +2 -0
  93. package/lib/modules/action-bar/components/trigger-input-language-room/fcr_translateswitch.png +0 -0
  94. package/lib/modules/action-bar/components/trigger-input-language-room/index.css +86 -0
  95. package/lib/modules/action-bar/components/trigger-input-language-room/index.d.ts +3 -0
  96. package/lib/modules/action-bar/components/trigger-input-language-room/index.js +215 -0
  97. package/lib/modules/action-bar/components/trigger-output-language/index.js +1 -2
  98. package/lib/modules/action-bar/components/trigger-output-language-room/constant.d.ts +10 -0
  99. package/lib/modules/action-bar/components/trigger-output-language-room/constant.js +8 -0
  100. package/lib/modules/action-bar/components/trigger-output-language-room/guide-tooltip/index.css +22 -0
  101. package/lib/modules/action-bar/components/trigger-output-language-room/guide-tooltip/index.d.ts +3 -0
  102. package/lib/modules/action-bar/components/trigger-output-language-room/guide-tooltip/index.js +75 -0
  103. package/lib/modules/action-bar/components/trigger-output-language-room/index.d.ts +8 -0
  104. package/lib/modules/action-bar/components/trigger-output-language-room/index.js +98 -0
  105. package/lib/modules/action-bar/components/trigger-output-language-room/trigger-language-room.d.ts +5 -0
  106. package/lib/modules/action-bar/components/trigger-output-language-room/trigger-language-room.js +66 -0
  107. package/lib/modules/action-bar/components/trigger-output-language-room/trigger-main-room.d.ts +5 -0
  108. package/lib/modules/action-bar/components/trigger-output-language-room/trigger-main-room.js +37 -0
  109. package/lib/modules/action-bar/components/trigger-output-language-room/useChangeOutputRoomTool.d.ts +12 -0
  110. package/lib/modules/action-bar/components/trigger-output-language-room/useChangeOutputRoomTool.js +138 -0
  111. package/lib/modules/action-bar/components/trigger-subscribe-language/index.js +3 -0
  112. package/lib/modules/action-bar/device/index.css +2 -7
  113. package/lib/modules/action-bar/device/index.js +25 -25
  114. package/lib/modules/action-bar/leave/assign-host.d.ts +0 -3
  115. package/lib/modules/action-bar/leave/assign-host.js +4 -2
  116. package/lib/modules/action-bar/leave/index.css +0 -10
  117. package/lib/modules/action-bar/leave/index.js +34 -84
  118. package/lib/modules/action-bar/leave/leave-meeting.d.ts +1 -13
  119. package/lib/modules/action-bar/leave/leave-meeting.js +19 -37
  120. package/lib/modules/action-bar/live-streaming/index.js +3 -3
  121. package/lib/modules/action-bar/more/index.js +5 -5
  122. package/lib/modules/action-bar/more/poppover-content.js +16 -37
  123. package/lib/modules/action-bar/notification-bar/components/interpreter/index.css +58 -0
  124. package/lib/modules/action-bar/notification-bar/components/interpreter/index.d.ts +8 -0
  125. package/lib/modules/action-bar/notification-bar/components/interpreter/index.js +100 -0
  126. package/lib/modules/action-bar/notification-bar/components/virtual-image/index.css +56 -0
  127. package/lib/modules/action-bar/notification-bar/components/virtual-image/index.d.ts +5 -0
  128. package/lib/modules/action-bar/notification-bar/components/virtual-image/index.js +33 -0
  129. package/lib/modules/action-bar/notification-bar/dome.png +0 -0
  130. package/lib/modules/action-bar/notification-bar/fcr_translateswitch.png +0 -0
  131. package/lib/modules/action-bar/notification-bar/index.css +74 -0
  132. package/lib/modules/action-bar/notification-bar/index.d.ts +2 -0
  133. package/lib/modules/action-bar/notification-bar/index.js +99 -0
  134. package/lib/modules/action-bar/participants/index.css +0 -12
  135. package/lib/modules/action-bar/participants/index.js +16 -23
  136. package/lib/modules/action-bar/record/index.js +4 -4
  137. package/lib/modules/action-bar/screen-share/index.js +5 -9
  138. package/lib/modules/action-bar/screen-share/submenu.js +26 -20
  139. package/lib/modules/action-bar/security/drop-menu.js +22 -137
  140. package/lib/modules/action-bar/security/index.js +5 -11
  141. package/lib/modules/action-bar/settings/index.js +4 -4
  142. package/lib/modules/action-bar/smaller.js +2 -2
  143. package/lib/modules/action-bar/store.js +6 -0
  144. package/lib/modules/action-bar/switch-output-language-room/index.js +2 -8
  145. package/lib/modules/action-bar/trigger-input-language-room/fcr_translateswitch.png +0 -0
  146. package/lib/modules/action-bar/trigger-input-language-room/index.css +86 -0
  147. package/lib/modules/action-bar/trigger-input-language-room/index.d.ts +15 -0
  148. package/lib/modules/action-bar/trigger-input-language-room/index.js +220 -0
  149. package/lib/modules/action-bar/trigger-output-language-room/constant.d.ts +10 -0
  150. package/lib/modules/action-bar/trigger-output-language-room/constant.js +8 -0
  151. package/lib/modules/action-bar/trigger-output-language-room/guide-tooltip/index.css +22 -0
  152. package/lib/modules/action-bar/trigger-output-language-room/guide-tooltip/index.d.ts +14 -0
  153. package/lib/modules/action-bar/trigger-output-language-room/guide-tooltip/index.js +75 -0
  154. package/lib/modules/action-bar/trigger-output-language-room/index.d.ts +4 -0
  155. package/lib/modules/action-bar/trigger-output-language-room/index.js +98 -0
  156. package/lib/modules/action-bar/trigger-output-language-room/trigger-language-room.d.ts +5 -0
  157. package/lib/modules/action-bar/trigger-output-language-room/trigger-language-room.js +66 -0
  158. package/lib/modules/action-bar/trigger-output-language-room/trigger-main-room.d.ts +5 -0
  159. package/lib/modules/action-bar/trigger-output-language-room/trigger-main-room.js +36 -0
  160. package/lib/modules/action-bar/trigger-output-language-room/useChangeOutputRoomTool.d.ts +12 -0
  161. package/lib/modules/action-bar/trigger-output-language-room/useChangeOutputRoomTool.js +138 -0
  162. package/lib/modules/audio-stream/index.js +3 -0
  163. package/lib/modules/chat/chat-bar/index.css +5 -0
  164. package/lib/modules/chat/chat-bar/index.js +16 -14
  165. package/lib/modules/chat/chat-room-store.js +4 -0
  166. package/lib/modules/chat/chat-select/index.css +6 -3
  167. package/lib/modules/chat/chat-select/index.js +15 -1
  168. package/lib/modules/chat/chat.js +7 -6
  169. package/lib/modules/chat/components/chat-bar/index.js +2 -0
  170. package/lib/modules/chat/components/chat-select/index.js +3 -0
  171. package/lib/modules/chat/components/chat-select/select-input/index.d.ts +7 -0
  172. package/lib/modules/chat/components/chat-select/select-input/index.js +35 -0
  173. package/lib/modules/chat/components/chat-select/select-item/index.d.ts +12 -0
  174. package/lib/modules/chat/components/chat-select/select-item/index.js +153 -0
  175. package/lib/modules/chat/components/chat-tabs/index.d.ts +2 -0
  176. package/lib/modules/chat/components/chat-tabs/index.js +61 -0
  177. package/lib/modules/chat/components/message-list/chat-empty/index.d.ts +2 -0
  178. package/lib/modules/chat/components/message-list/chat-empty/index.js +26 -0
  179. package/lib/modules/chat/components/message-list/history-unread-message-button/index.d.ts +7 -0
  180. package/lib/modules/chat/components/message-list/history-unread-message-button/index.js +55 -0
  181. package/lib/modules/chat/components/message-list/index.js +2 -0
  182. package/lib/modules/chat/components/message-list/message-item/index.d.ts +15 -0
  183. package/lib/modules/chat/components/message-list/message-item/index.js +279 -0
  184. package/lib/modules/chat/components/message-list/scroll-bottom-button/index.d.ts +9 -0
  185. package/lib/modules/chat/components/message-list/scroll-bottom-button/index.js +67 -0
  186. package/lib/modules/chat/message-list.js +4 -1
  187. package/lib/modules/chat/store.js +1 -0
  188. package/lib/modules/chat/view.js +4 -0
  189. package/lib/modules/components/device-control/components/audio-menu/index.js +1 -2
  190. package/lib/modules/components/device-control/components/video-menu/index.js +1 -2
  191. package/lib/modules/components/device-control/store.js +1 -0
  192. package/lib/modules/components/dialog-container/component/body.d.ts +7 -0
  193. package/lib/modules/components/dialog-container/component/body.js +46 -0
  194. package/lib/modules/components/dialog-container/index.css +78 -0
  195. package/lib/modules/components/dialog-container/index.d.ts +11 -0
  196. package/lib/modules/components/dialog-container/index.js +110 -0
  197. package/lib/modules/components/leave-meeting/store.js +2 -0
  198. package/lib/modules/components/member-window/components/member-actions/components/audio-control.d.ts +6 -0
  199. package/lib/modules/components/member-window/components/member-actions/components/audio-control.js +36 -0
  200. package/lib/modules/components/member-window/components/member-actions/components/icon-buttons/index.d.ts +40 -0
  201. package/lib/modules/components/member-window/components/member-actions/components/icon-buttons/index.js +170 -0
  202. package/lib/modules/components/member-window/components/member-actions/components/icon-status.d.ts +11 -0
  203. package/lib/modules/components/member-window/components/member-actions/components/icon-status.js +105 -0
  204. package/lib/modules/components/member-window/components/member-actions/components/layout/index.d.ts +9 -0
  205. package/lib/modules/components/member-window/components/member-actions/components/layout/index.js +42 -0
  206. package/lib/modules/components/member-window/components/member-actions/components/more-actions.d.ts +11 -0
  207. package/lib/modules/components/member-window/components/member-actions/components/more-actions.js +159 -0
  208. package/lib/modules/components/member-window/components/member-actions/components/share-status.d.ts +2 -0
  209. package/lib/modules/components/member-window/components/member-actions/components/share-status.js +32 -0
  210. package/lib/modules/components/member-window/components/member-actions/components/user-info.d.ts +16 -0
  211. package/lib/modules/components/member-window/components/member-actions/components/user-info.js +130 -0
  212. package/lib/modules/components/member-window/components/member-actions/components/user-tag.d.ts +12 -0
  213. package/lib/modules/components/member-window/components/member-actions/components/user-tag.js +57 -0
  214. package/lib/modules/components/member-window/components/member-actions/index.d.ts +3 -0
  215. package/lib/modules/components/member-window/components/member-actions/index.js +122 -0
  216. package/lib/modules/components/member-window/components/member-actions/libs/index.d.ts +2 -0
  217. package/lib/modules/components/member-window/components/member-actions/libs/index.js +24 -0
  218. package/lib/modules/components/member-window/components/member-actions/provider.d.ts +21 -0
  219. package/lib/modules/components/member-window/components/member-actions/provider.js +77 -0
  220. package/lib/modules/components/member-window/components/member-actions/store.d.ts +48 -0
  221. package/lib/modules/components/member-window/components/member-actions/store.js +306 -0
  222. package/lib/modules/components/member-window/components/member-board.d.ts +2 -0
  223. package/lib/modules/components/member-window/components/member-board.js +63 -0
  224. package/lib/modules/components/member-window/components/mic-volume.d.ts +2 -0
  225. package/lib/modules/components/member-window/components/mic-volume.js +23 -0
  226. package/lib/modules/components/member-window/components/video-player/components/local-video-player.d.ts +4 -0
  227. package/lib/modules/components/member-window/components/video-player/components/local-video-player.js +40 -0
  228. package/lib/modules/components/member-window/components/video-player/components/remote-video-player.d.ts +8 -0
  229. package/lib/modules/components/member-window/components/video-player/components/remote-video-player.js +62 -0
  230. package/lib/modules/components/member-window/components/video-player/index.d.ts +9 -0
  231. package/lib/modules/components/member-window/components/video-player/index.js +38 -0
  232. package/lib/modules/components/member-window/index.js +4 -0
  233. package/lib/modules/components/member-window/types.d.ts +78 -0
  234. package/lib/modules/components/member-window/types.js +6 -0
  235. package/lib/modules/components/security-menu/index.js +4 -1
  236. package/lib/modules/components/tab-frame/index.js +4 -0
  237. package/lib/modules/connection-gateway/components/phone/components/callinfo/index.js +1 -2
  238. package/lib/modules/connection-gateway/components/phone/index.js +1 -2
  239. package/lib/modules/connection-gateway/store.js +4 -0
  240. package/lib/modules/control-bar/components/more-actions/index.js +2 -0
  241. package/lib/modules/control-bar/index.js +2 -0
  242. package/lib/modules/control-bar/store.js +4 -0
  243. package/lib/modules/control-bar/view.js +2 -0
  244. package/lib/modules/device-pretest/settings/beauty.js +1 -2
  245. package/lib/modules/device-pretest/settings/virtual-background-setting.js +1 -2
  246. package/lib/modules/device-pretest/store.js +2 -0
  247. package/lib/modules/dialog/components/Interpreter/user-queue/index.css +36 -0
  248. package/lib/modules/dialog/components/Interpreter/user-queue/index.d.ts +3 -0
  249. package/lib/modules/dialog/components/Interpreter/user-queue/index.js +47 -0
  250. package/lib/modules/dialog/components/confirm/electron.d.ts +1 -1
  251. package/lib/modules/dialog/components/confirm/electron.js +68 -38
  252. package/lib/modules/dialog/components/connection-gateway/index.css +2 -0
  253. package/lib/modules/dialog/components/dialog-container/component/body.js +2 -0
  254. package/lib/modules/dialog/components/remove-admit-waiting-room/electron.js +3 -6
  255. package/lib/modules/dialog/components/remove-admit-waiting-room/index.d.ts +1 -1
  256. package/lib/modules/dialog/components/remove-admit-waiting-room/index.js +4 -14
  257. package/lib/modules/dialog/components/system-preference/assets/bg1.png +0 -0
  258. package/lib/modules/dialog/components/system-preference/assets/bg2.png +0 -0
  259. package/lib/modules/dialog/components/system-preference/assets/fcr_png_host.png +0 -0
  260. package/lib/modules/dialog/components/system-preference/index.js +2 -0
  261. package/lib/modules/dialog/components/widget/electron.d.ts +5 -0
  262. package/lib/modules/dialog/components/widget/electron.js +41 -0
  263. package/lib/modules/dialog/components/widget/index.d.ts +6 -0
  264. package/lib/modules/dialog/components/widget/index.js +41 -0
  265. package/lib/modules/dialog/hooks/useElectron.js +2 -0
  266. package/lib/modules/dialog/index.js +2 -0
  267. package/lib/modules/dialog/store.js +3 -0
  268. package/lib/modules/dialog/type.d.ts +84 -0
  269. package/lib/modules/dialog/type.js +6 -0
  270. package/lib/modules/dialog/view.js +1 -2
  271. package/lib/modules/event-confirm/store.js +3 -0
  272. package/lib/modules/event-confirm/view.js +5 -2
  273. package/lib/modules/event-toast/store.js +2 -0
  274. package/lib/modules/event-toast/view.js +1 -2
  275. package/lib/modules/invite/enums.js +0 -1
  276. package/lib/modules/invite/store.js +1 -1
  277. package/lib/modules/invite/voip-invite.js +3 -3
  278. package/lib/modules/layout/components/Carousel.js +1 -2
  279. package/lib/modules/layout/components/Gallery.js +2 -2
  280. package/lib/modules/layout/components/Layout.js +7 -4
  281. package/lib/modules/layout/components/index.js +1 -0
  282. package/lib/modules/layout/member-window/index.css +22 -9
  283. package/lib/modules/layout/member-window/index.d.ts +1 -1
  284. package/lib/modules/layout/member-window/index.js +27 -26
  285. package/lib/modules/layout/store.js +3 -0
  286. package/lib/modules/layout/type.js +0 -2
  287. package/lib/modules/layout/video-window-datasource.js +4 -0
  288. package/lib/modules/live-streaming/store.js +1 -0
  289. package/lib/modules/notification/context.d.ts +2 -0
  290. package/lib/modules/notification/context.js +9 -0
  291. package/lib/modules/notification/interpreter-status/index.js +1 -2
  292. package/lib/modules/offscreen-pulling/index.js +1 -0
  293. package/lib/modules/participant/attendee/index.css +0 -51
  294. package/lib/modules/participant/attendee/index.d.ts +8 -5
  295. package/lib/modules/participant/attendee/index.js +64 -15
  296. package/lib/modules/participant/attendee/participants-more-action.d.ts +18 -0
  297. package/lib/modules/participant/attendee/participants-more-action.js +278 -0
  298. package/lib/modules/participant/components/attendee/components/interpreter-tag/index.d.ts +3 -0
  299. package/lib/modules/participant/components/attendee/components/interpreter-tag/index.js +48 -0
  300. package/lib/modules/participant/components/attendee/index.js +3 -0
  301. package/lib/modules/participant/components/confirm-input/index.d.ts +6 -0
  302. package/lib/modules/participant/components/confirm-input/index.js +49 -0
  303. package/lib/modules/participant/components/drop-menu/index.js +3 -0
  304. package/lib/modules/participant/components/drop-menu/util.d.ts +5 -0
  305. package/lib/modules/participant/components/drop-menu/util.js +28 -0
  306. package/lib/modules/participant/components/participants/components/footer/components/buttons.d.ts +6 -0
  307. package/lib/modules/participant/components/participants/components/footer/components/buttons.js +52 -0
  308. package/lib/modules/participant/components/participants/components/footer/components/drop-menu/index.css +60 -0
  309. package/lib/modules/participant/components/participants/components/footer/components/drop-menu/index.d.ts +2 -0
  310. package/lib/modules/participant/components/participants/components/footer/components/drop-menu/index.js +166 -0
  311. package/lib/modules/participant/components/participants/components/footer/components/drop-menu/util.d.ts +5 -0
  312. package/lib/modules/participant/components/participants/components/footer/components/drop-menu/util.js +28 -0
  313. package/lib/modules/participant/components/participants/components/footer/components/footer/index.css +13 -0
  314. package/lib/modules/participant/components/participants/components/footer/components/footer/index.d.ts +5 -0
  315. package/lib/modules/participant/components/participants/components/footer/components/footer/index.js +242 -0
  316. package/lib/modules/participant/components/participants/components/footer/index.d.ts +5 -0
  317. package/lib/modules/participant/components/participants/components/footer/index.js +47 -0
  318. package/lib/modules/participant/components/participants/components/merge/index.d.ts +11 -0
  319. package/lib/modules/participant/components/participants/components/merge/index.js +49 -0
  320. package/lib/modules/participant/components/participants/components/participants/components/attendee/index.css +191 -0
  321. package/lib/modules/participant/components/participants/components/participants/components/attendee/index.d.ts +4 -0
  322. package/lib/modules/participant/components/participants/components/participants/components/attendee/index.js +204 -0
  323. package/lib/modules/participant/components/participants/components/participants/components/participants-more/index.css +49 -0
  324. package/lib/modules/participant/components/participants/components/participants/components/participants-more/index.d.ts +5 -0
  325. package/lib/modules/participant/components/participants/components/participants/components/participants-more/index.js +219 -0
  326. package/lib/modules/participant/components/participants/components/participants/components/user-row/index.d.ts +5 -0
  327. package/lib/modules/participant/components/participants/components/participants/components/user-row/index.js +70 -0
  328. package/lib/modules/participant/components/participants/components/participants/index.css +104 -0
  329. package/lib/modules/participant/components/participants/components/participants/index.d.ts +3 -0
  330. package/lib/modules/participant/components/participants/components/participants/index.js +110 -0
  331. package/lib/modules/participant/components/participants/components/render-tab/index.d.ts +2 -0
  332. package/lib/modules/participant/components/participants/components/render-tab/index.js +49 -0
  333. package/lib/modules/participant/components/participants/components/render-user/components/attendee/components/interpreter-tag/index.d.ts +3 -0
  334. package/lib/modules/participant/components/participants/components/render-user/components/attendee/components/interpreter-tag/index.js +48 -0
  335. package/lib/modules/participant/components/participants/components/render-user/components/attendee/components/microphone-indicator/index.d.ts +6 -0
  336. package/lib/modules/participant/components/participants/components/render-user/components/attendee/components/microphone-indicator/index.js +28 -0
  337. package/lib/modules/participant/components/participants/components/render-user/components/attendee/components/user-avatar/index.d.ts +7 -0
  338. package/lib/modules/participant/components/participants/components/render-user/components/attendee/components/user-avatar/index.js +39 -0
  339. package/lib/modules/participant/components/participants/components/render-user/components/attendee/index.css +69 -0
  340. package/lib/modules/participant/components/participants/components/render-user/components/attendee/index.d.ts +5 -0
  341. package/lib/modules/participant/components/participants/components/render-user/components/attendee/index.js +135 -0
  342. package/lib/modules/participant/components/participants/components/render-user/components/user-action/components/audio-button/index.d.ts +7 -0
  343. package/lib/modules/participant/components/participants/components/render-user/components/user-action/components/audio-button/index.js +31 -0
  344. package/lib/modules/participant/components/participants/components/render-user/components/user-action/components/move-actions-popover/index.d.ts +12 -0
  345. package/lib/modules/participant/components/participants/components/render-user/components/user-action/components/move-actions-popover/index.js +82 -0
  346. package/lib/modules/participant/components/participants/components/render-user/components/user-action/components/move-to-mainroom-button/index.d.ts +4 -0
  347. package/lib/modules/participant/components/participants/components/render-user/components/user-action/components/move-to-mainroom-button/index.js +26 -0
  348. package/lib/modules/participant/components/participants/components/render-user/components/user-action/index.d.ts +2 -0
  349. package/lib/modules/participant/components/participants/components/render-user/components/user-action/index.js +75 -0
  350. package/lib/modules/participant/components/participants/components/render-user/index.d.ts +5 -0
  351. package/lib/modules/participant/components/participants/components/render-user/index.js +21 -0
  352. package/lib/modules/participant/components/participants/index.js +1 -0
  353. package/lib/modules/participant/components/participants/render-tab/index.d.ts +2 -0
  354. package/lib/modules/participant/components/participants/render-tab/index.js +49 -0
  355. package/lib/modules/participant/components/participants/render-user/index.d.ts +5 -0
  356. package/lib/modules/participant/components/participants/render-user/index.js +21 -0
  357. package/lib/modules/participant/components/participants/types.d.ts +96 -0
  358. package/lib/modules/participant/components/participants/types.js +37 -0
  359. package/lib/modules/participant/components/user-action/audio-button/index.d.ts +7 -0
  360. package/lib/modules/participant/components/user-action/audio-button/index.js +31 -0
  361. package/lib/modules/participant/components/user-action/index.js +2 -0
  362. package/lib/modules/participant/components/user-action/move-actions-popover/index.d.ts +12 -0
  363. package/lib/modules/participant/components/user-action/move-actions-popover/index.js +82 -0
  364. package/lib/modules/participant/components/user-action/move-to-mainroom-button/index.d.ts +4 -0
  365. package/lib/modules/participant/components/user-action/move-to-mainroom-button/index.js +26 -0
  366. package/lib/modules/participant/index.js +2 -0
  367. package/lib/modules/participant/member-list-data-source.js +3 -0
  368. package/lib/modules/participant/room-control-drop-menu/index.css +0 -37
  369. package/lib/modules/participant/store.js +5 -0
  370. package/lib/modules/pc-audio-connect/store.js +1 -0
  371. package/lib/modules/phone-audio-connect/components/callinfo/index.js +1 -2
  372. package/lib/modules/phone-audio-connect/store.js +3 -0
  373. package/lib/modules/phone-audio-connect/view.js +1 -2
  374. package/lib/modules/setting/audio-settings/audio-settings.js +1 -1
  375. package/lib/modules/setting/minutes-settings/minutes-settings.js +1 -2
  376. package/lib/modules/setting/state/index.js +4 -0
  377. package/lib/modules/setting/store.js +8 -4
  378. package/lib/modules/setting/translate-settings/translate-settings.js +1 -1
  379. package/lib/modules/share-screen/components/selection/index.js +1 -1
  380. package/lib/modules/share-screen/selection/index.css +2 -0
  381. package/lib/modules/share-screen/selection/index.js +83 -97
  382. package/lib/modules/share-screen/store.js +4 -0
  383. package/lib/modules/sound-effect/index.js +1 -0
  384. package/lib/modules/state-bar/layout-config.js +1 -2
  385. package/lib/modules/state-bar/live-streaming-state.js +1 -0
  386. package/lib/modules/state-bar/store.js +1 -0
  387. package/lib/modules/video-window/components/deviceState/index.d.ts +7 -0
  388. package/lib/modules/video-window/components/deviceState/index.js +75 -0
  389. package/lib/modules/video-window/components/members/index.css +51 -0
  390. package/lib/modules/video-window/components/members/index.d.ts +2 -0
  391. package/lib/modules/video-window/components/members/index.js +130 -0
  392. package/lib/modules/video-window/components/speaking/index.css +86 -0
  393. package/lib/modules/video-window/components/speaking/index.d.ts +3 -0
  394. package/lib/modules/video-window/components/speaking/index.js +48 -0
  395. package/lib/modules/video-window/components/topControl/index.css +35 -0
  396. package/lib/modules/video-window/components/topControl/index.d.ts +3 -0
  397. package/lib/modules/video-window/components/topControl/index.js +79 -0
  398. package/lib/modules/video-window/members/index.js +1 -2
  399. package/lib/modules/video-window/store.js +4 -0
  400. package/lib/modules/video-window/topControl/index.js +2 -0
  401. package/lib/modules/whiteboard/components/switch-theme/index.js +2 -0
  402. package/lib/modules/whiteboard/components/switch-theme/item.js +1 -2
  403. package/lib/modules/whiteboard/components/toolbar/components/color-picker/components/panel.js +1 -2
  404. package/lib/modules/whiteboard/components/toolbar/components/color-picker/index.js +1 -2
  405. package/lib/modules/whiteboard/components/toolbar/components/extra-tool-picker.js +1 -1
  406. package/lib/modules/whiteboard/components/toolbar/components/move-handle.js +2 -0
  407. package/lib/modules/whiteboard/components/toolbar/components/pen-picker.js +1 -2
  408. package/lib/modules/whiteboard/components/toolbar/components/shape-picker.js +1 -2
  409. package/lib/modules/whiteboard/components/toolbar/hooks/index.js +2 -0
  410. package/lib/modules/whiteboard/components/toolbar/index.js +4 -1
  411. package/lib/modules/whiteboard/index.js +4 -0
  412. package/lib/modules/widget/index.css +17 -0
  413. package/lib/modules/widget/index.d.ts +10 -0
  414. package/lib/modules/widget/index.js +114 -0
  415. package/lib/modules/widget/sdk.d.ts +30 -0
  416. package/lib/modules/widget/sdk.js +221 -0
  417. package/lib/modules/widget/store.d.ts +14 -0
  418. package/lib/modules/widget/store.js +28 -0
  419. package/lib/modules/widget/type.d.ts +155 -0
  420. package/lib/modules/widget/type.js +6 -0
  421. package/lib/modules/widget/view.d.ts +2 -0
  422. package/lib/modules/widget/view.js +47 -0
  423. package/lib/modules/widget/web-widget.d.ts +29 -0
  424. package/lib/modules/widget/web-widget.js +234 -0
  425. package/lib/providers/ability-provider.d.ts +24 -0
  426. package/lib/providers/ability-provider.js +36 -0
  427. package/lib/providers/device-privilege-provider.js +2 -0
  428. package/lib/providers/device-provider.js +5 -0
  429. package/lib/providers/device-stream-provider.js +1 -0
  430. package/lib/providers/dialog-provider.js +2 -0
  431. package/lib/providers/event-provider.js +2 -0
  432. package/lib/providers/interpreter-provider.js +4 -0
  433. package/lib/providers/message-provider.js +2 -0
  434. package/lib/providers/phone-audio-provider.js +3 -0
  435. package/lib/providers/privilege-provider.js +4 -0
  436. package/lib/providers/renderer-provider.js +1 -0
  437. package/lib/providers/room-provider.js +3 -0
  438. package/lib/providers/screen-share-provider.js +1 -0
  439. package/lib/providers/widget-provider.d.ts +44 -0
  440. package/lib/providers/widget-provider.js +167 -0
  441. package/lib/scenes/base.d.ts +10 -0
  442. package/lib/scenes/base.js +75 -0
  443. package/lib/scenes/main-scene.js +2 -0
  444. package/lib/schema.d.ts +114 -0
  445. package/lib/schema.js +77 -0
  446. package/lib/shared-data-source/chat-data.js +2 -0
  447. package/lib/shared-data-source/interpreter.js +2 -0
  448. package/lib/shared-data-source/layout-data.js +4 -1
  449. package/lib/shared-data-source/member-data.d.ts +126 -0
  450. package/lib/shared-data-source/member-data.js +465 -0
  451. package/lib/shared-data-source/setting.js +2 -0
  452. package/lib/shared-data-source/video-window.js +4 -0
  453. package/lib/shared-data-source/waiting-room.js +1 -0
  454. package/lib/type.js +0 -14
  455. package/lib/ui-node.d.ts +25 -0
  456. package/lib/ui-node.js +156 -0
  457. package/lib/ui-scene.js +2 -0
  458. package/lib/utilities/constant.js +0 -7
  459. package/lib/utilities/logger.d.ts +8 -0
  460. package/lib/utilities/logger.js +42 -0
  461. package/lib/utilities/meeting-detail.js +26 -9
  462. package/lib/utilities/privilege.js +2 -0
  463. package/lib/utilities/renderer-event.js +2 -0
  464. package/lib/utilities/renderer.js +1 -0
  465. package/lib/utilities/setting-config-storage.js +2 -0
  466. package/lib/utilities/tools.js +3 -0
  467. package/lib/utilities/validate-params.d.ts +2 -0
  468. package/lib/utilities/validate-params.js +16 -0
  469. package/lib/widget-sdk.d.ts +2 -0
  470. package/lib/widget-sdk.js +13 -0
  471. package/package.json +5 -10
  472. /package/lib/modules/{interpreter → Interpreter}/action/add-btn/index.css +0 -0
  473. /package/lib/modules/{interpreter → Interpreter}/action/add-btn/index.d.ts +0 -0
  474. /package/lib/modules/{interpreter → Interpreter}/action/add-btn/index.js +0 -0
  475. /package/lib/modules/{interpreter → Interpreter}/action/delete-btn/index.css +0 -0
  476. /package/lib/modules/{interpreter → Interpreter}/action/delete-btn/index.d.ts +0 -0
  477. /package/lib/modules/{interpreter → Interpreter}/action/delete-btn/index.js +0 -0
  478. /package/lib/modules/{interpreter → Interpreter}/action/edit-btn/index.css +0 -0
  479. /package/lib/modules/{interpreter → Interpreter}/action/edit-btn/index.d.ts +0 -0
  480. /package/lib/modules/{interpreter → Interpreter}/action/edit-btn/index.js +0 -0
  481. /package/lib/modules/{interpreter → Interpreter}/action/switch-btn/index.css +0 -0
  482. /package/lib/modules/{interpreter → Interpreter}/action/switch-btn/index.d.ts +0 -0
  483. /package/lib/modules/{interpreter → Interpreter}/action/switch-btn/index.js +0 -0
  484. /package/lib/modules/{interpreter → Interpreter}/add-button/index.css +0 -0
  485. /package/lib/modules/{interpreter → Interpreter}/add-button/index.d.ts +0 -0
  486. /package/lib/modules/{interpreter → Interpreter}/add-button/index.js +0 -0
  487. /package/lib/modules/{interpreter → Interpreter}/config.d.ts +0 -0
  488. /package/lib/modules/{interpreter → Interpreter}/config.js +0 -0
  489. /package/lib/modules/{interpreter → Interpreter}/dialog-content/index.css +0 -0
  490. /package/lib/modules/{interpreter → Interpreter}/dialog-content/index.d.ts +0 -0
  491. /package/lib/modules/{interpreter → Interpreter}/dialog-content/index.js +0 -0
  492. /package/lib/modules/{interpreter → Interpreter}/footer/components/interpreter-btn/index.d.ts +0 -0
  493. /package/lib/modules/{interpreter → Interpreter}/footer/components/interpreter-btn/index.js +0 -0
  494. /package/lib/modules/{interpreter → Interpreter}/footer/components/set-btn/index.d.ts +0 -0
  495. /package/lib/modules/{interpreter → Interpreter}/footer/components/set-btn/index.js +0 -0
  496. /package/lib/modules/{interpreter → Interpreter}/footer/components/tooltip-wrapper/index.d.ts +0 -0
  497. /package/lib/modules/{interpreter → Interpreter}/footer/components/tooltip-wrapper/index.js +0 -0
  498. /package/lib/modules/{interpreter → Interpreter}/footer/index.css +0 -0
  499. /package/lib/modules/{interpreter → Interpreter}/footer/index.d.ts +0 -0
  500. /package/lib/modules/{interpreter → Interpreter}/footer/index.js +0 -0
  501. /package/lib/modules/{interpreter → Interpreter}/index.css +0 -0
  502. /package/lib/modules/{interpreter → Interpreter}/index.d.ts +0 -0
  503. /package/lib/modules/{interpreter → Interpreter}/index.js +0 -0
  504. /package/lib/modules/{interpreter → Interpreter}/interpreter-list/index.css +0 -0
  505. /package/lib/modules/{interpreter → Interpreter}/interpreter-list/index.d.ts +0 -0
  506. /package/lib/modules/{interpreter → Interpreter}/interpreter-list/interpreter-item/components/pick-language/index.css +0 -0
  507. /package/lib/modules/{interpreter → Interpreter}/interpreter-list/interpreter-item/components/pick-language/index.d.ts +0 -0
  508. /package/lib/modules/{interpreter → Interpreter}/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_ar.png +0 -0
  509. /package/lib/modules/{interpreter → Interpreter}/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_cn.png +0 -0
  510. /package/lib/modules/{interpreter → Interpreter}/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_de.png +0 -0
  511. /package/lib/modules/{interpreter → Interpreter}/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_en.png +0 -0
  512. /package/lib/modules/{interpreter → Interpreter}/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_es.png +0 -0
  513. /package/lib/modules/{interpreter → Interpreter}/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_fr.png +0 -0
  514. /package/lib/modules/{interpreter → Interpreter}/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_hi.png +0 -0
  515. /package/lib/modules/{interpreter → Interpreter}/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_id.png +0 -0
  516. /package/lib/modules/{interpreter → Interpreter}/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_it.png +0 -0
  517. /package/lib/modules/{interpreter → Interpreter}/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_jp.png +0 -0
  518. /package/lib/modules/{interpreter → Interpreter}/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_ko.png +0 -0
  519. /package/lib/modules/{interpreter → Interpreter}/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_ms.png +0 -0
  520. /package/lib/modules/{interpreter → Interpreter}/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_pt.png +0 -0
  521. /package/lib/modules/{interpreter → Interpreter}/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_ru.png +0 -0
  522. /package/lib/modules/{interpreter → Interpreter}/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_th.png +0 -0
  523. /package/lib/modules/{interpreter → Interpreter}/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_tr.png +0 -0
  524. /package/lib/modules/{interpreter → Interpreter}/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_vi.png +0 -0
  525. /package/lib/modules/{interpreter → Interpreter}/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/index.d.ts +0 -0
  526. /package/lib/modules/{interpreter → Interpreter}/interpreter-list/interpreter-item/components/pick-user/index.css +0 -0
  527. /package/lib/modules/{interpreter → Interpreter}/interpreter-list/interpreter-item/components/pick-user/index.d.ts +0 -0
  528. /package/lib/modules/{interpreter → Interpreter}/interpreter-list/interpreter-item/components/pick-user/option-Item.d.ts +0 -0
  529. /package/lib/modules/{interpreter → Interpreter}/interpreter-list/interpreter-item/components/pick-user/option-Item.js +0 -0
  530. /package/lib/modules/{interpreter → Interpreter}/interpreter-list/interpreter-item/index.css +0 -0
  531. /package/lib/modules/{interpreter → Interpreter}/interpreter-list/interpreter-item/index.d.ts +0 -0
  532. /package/lib/modules/{interpreter → Interpreter}/interpreter-list/interpreter-item/index.js +0 -0
  533. /package/lib/modules/{interpreter → Interpreter}/loading-wrapper/index.css +0 -0
  534. /package/lib/modules/{interpreter → Interpreter}/loading-wrapper/index.d.ts +0 -0
  535. /package/lib/modules/{interpreter → Interpreter}/loading-wrapper/index.js +0 -0
  536. /package/lib/modules/{interpreter → Interpreter}/store.d.ts +0 -0
  537. /package/lib/modules/{interpreter → Interpreter}/tooltip-wrapper/index.d.ts +0 -0
  538. /package/lib/modules/{interpreter → Interpreter}/tooltip-wrapper/index.js +0 -0
  539. /package/lib/modules/{interpreter → Interpreter}/type.d.ts +0 -0
  540. /package/lib/modules/{interpreter → Interpreter}/type.js +0 -0
  541. /package/lib/modules/{interpreter → Interpreter}/utils.d.ts +0 -0
  542. /package/lib/modules/{interpreter → Interpreter}/view.d.ts +0 -0
  543. /package/lib/modules/{interpreter → Interpreter}/view.js +0 -0
  544. /package/lib/modules/action-bar/{interpreter → Interpreter}/index.d.ts +0 -0
  545. /package/lib/modules/action-bar/{interpreter → Interpreter}/index.js +0 -0
  546. /package/lib/modules/dialog/components/{interpreter → Interpreter}/electron.d.ts +0 -0
  547. /package/lib/modules/dialog/components/{interpreter → Interpreter}/electron.js +0 -0
  548. /package/lib/modules/dialog/components/{interpreter → Interpreter}/index.css +0 -0
  549. /package/lib/modules/dialog/components/{interpreter → Interpreter}/index.d.ts +0 -0
  550. /package/lib/modules/dialog/components/{interpreter → Interpreter}/index.js +0 -0
@@ -61,16 +61,15 @@ var _constant = require("../../utilities/constant");
61
61
  var _type = require("agora-rte-sdk/lib/core/rtc/type");
62
62
  var _shareAudio = require("agora-ui-foundation/lib/components/room-screen-share-state-bar/share-audio");
63
63
  var _decorator = require("agora-foundation/lib/decorator");
64
- var _type2 = require("fcr-core/lib/type");
64
+ var _type2 = require("agora-edu-core/lib/type");
65
65
  var _rendererEvent = require("../../utilities/renderer-event");
66
66
  var _toast = require("agora-ui-foundation/lib/components/toast");
67
67
  var _platform = require("../../utilities/platform");
68
68
  var _i18n = require("agora-ui-foundation/lib/i18n");
69
69
  var _type3 = require("../../modules/action-bar/type");
70
70
  var _logger = require("agora-foundation/lib/logger");
71
- var _type4 = require("fcr-core/lib/room-control/type");
72
71
  var _ControlBarStore;
73
- var _initProto, _init_shareWithAudio, _init_shareAudioProcessingChannel, _init_currentShareId, _init_currentShareType, _init_isMuteAudio, _init_isMuteVideo, _init_currentCameraId, _init_currentMicrophoneId, _init_currentSpeakerId, _init_cameraList, _init_microphoneList, _init_speakerList, _init_localAudioVolume, _init_connectType, _init_cloudRecordingState, _init_localUserRole, _init_allowChangeSelfName, _init_allowChat, _init_allowJoinWithMuteAudio, _init_allowShareScreen, _init_allowBoardWrite, _init_allowUnmuteSelfVideo, _init_allowUnmuteSelfAudio, _init_isLockRoomEnabled, _init_isWaitingRoomEnabled, _init_isWaterMarkEnabled, _init_showSecurity, _init_isHost, _init_hasEnableStartScreenSharePermission, _init_hasPermissionToControlAllowSendAll, _init_hasEnableStartAudioPermission, _init_hasEnableChangeNamePermission, _init_hasEnableStartVideoPermission, _init_hasLockRoomPermission, _init_hasAllowWriteBoardPermission, _init_roomDuration, _init_startTime, _init_videoSteamingUrl, _init_videoStreamingKey, _init_playUrl, _init_isStartError, _init_liveStreamingState, _init_hasStartCloudRecordingPermission, _init_hasGetLiveStreamingUrlPermission, _init_hasStopLiveStreamingPermission, _init_hasStartLiveStreamingPermission, _init_hasWaitingRoomPermission, _init_hasWatermarkDisablePermission, _init_hasWatermarkEnablePermission, _init_allApplicationWindows, _init_phoneMicEnabled, _init_isMulti, _init_roomInfo, _init_userName, _init_inviteLink, _init_isShowMeetingDetailPortal, _init_meetingDetailPortalLeft, _init_meetingDetailPortalTop, _init_remoteUsers, _init_hasAssignHostBeforeLeavingPermission, _init_isPstnUser, _init_hasEndRoomPermission, _init_isLocked, _init_hiddenShareActionNav, _setHiddenShareActionNavDecs, _initControlBarDecs, _updateCurrentShareContentDecs, _setLiveStreamingStateDecs, _setRoomInfoDecs, _setStartScreenSharePermissionDecs, _setPermissionToControlAllowSendAllDecs, _setStartAudioPermissionDecs, _setChangeNamePermissionDecs, _setStartVideoPermissionDecs, _setLockRoomPermissionDecs, _setCloudRecordingStateDecs, _setLocalUserRoleDecs, _setShareWithAudioStateDecs, _setShareWithAudioStateOnlyDecs, _createNewShareDecs, _handlerStopShareDecs, _setShareAudioProcessingChannelDecs, _muteLocalAudioDecs, _setCurrentMicrophoneIdDecs, _setCurrentSpeakerIdDecs, _setMicrophoneListDecs, _setSpeakerListDecs, _setLocalAudioStateDecs, _setConnectTypeDecs, _setPhoneMicEnabledDecs, _handlerOpenAudioSettingDecs, _handlerMicrophoneDeviceChangeDecs, _handlerSpeakerDeviceChangeDecs, _muteLocalVideoDecs, _setLocalAudioVolumeDecs, _setCurrentCameraIdDecs, _setCameraListDecs, _setLocalVideoStateDecs, _handlerCameraDeviceChangeDecs, _setIsHostDecs, _setShowSecurityDecs, _setAllowChangeSelfNameDecs, _setAllowChatDecs, _setAllowJoinWithMuteAudioDecs, _setAllowShareScreenDecs, _setBoardWriteEnabledDecs, _updateBoardWriteEnabledDecs, _setHasAllowWriteBoardPermissionDecs, _setAllowUnmuteSelfVideoDecs, _setAllowUnmuteSelfAudioDecs, _setLockRoomEnabledDecs, _setWaitingRoomEnabledDecs, _setIsMultiDecs, _setWaterMarkEnabledDecs, _setHasWatermarkDisablePermissionDecs, _setHasWatermarkEnablePermissionDecs, _handleMoreClickDecs, _setShowMeetingDetailPortalDecs, _setMeetingDetailPortalPositionDecs, _setRemoteUsersDecs, _setHasAssignHostBeforeLeavingPermissionDecs, _setIsPstnUserDecs, _setHasEndRoomPermissionDecs, _setIsLockedDecs, _sendLeaveDecs, _keepPhoneAudioConnectionDecs, _sendEndDecs, _sendAssignDecs, _ref;
72
+ var _initProto, _init_shareWithAudio, _init_shareAudioProcessingChannel, _init_currentShareId, _init_currentShareType, _init_isMuteAudio, _init_isMuteVideo, _init_currentCameraId, _init_currentMicrophoneId, _init_currentSpeakerId, _init_cameraList, _init_microphoneList, _init_speakerList, _init_localAudioVolume, _init_connectType, _init_cloudRecordingState, _init_localUserRole, _init_allowChangeSelfName, _init_allowChat, _init_allowJoinWithMuteAudio, _init_allowShareScreen, _init_allowUnmuteSelfVideo, _init_allowUnmuteSelfAudio, _init_isLockRoomEnabled, _init_isWaitingRoomEnabled, _init_showSecurity, _init_isHost, _init_hasEnableStartScreenSharePermission, _init_hasPermissionToControlAllowSendAll, _init_hasEnableStartAudioPermission, _init_hasEnableChangeNamePermission, _init_hasEnableStartVideoPermission, _init_hasLockRoomPermission, _init_roomDuration, _init_startTime, _init_videoSteamingUrl, _init_videoStreamingKey, _init_playUrl, _init_isStartError, _init_liveStreamingState, _init_hasStartCloudRecordingPermission, _init_hasGetLiveStreamingUrlPermission, _init_hasStopLiveStreamingPermission, _init_hasStartLiveStreamingPermission, _init_allApplicationWindows, _init_phoneMicEnabled, _initControlBarDecs, _updateCurrentShareContentDecs, _setLiveStreamingStateDecs, _setStartScreenSharePermissionDecs, _setPermissionToControlAllowSendAllDecs, _setStartAudioPermissionDecs, _setChangeNamePermissionDecs, _setStartVideoPermissionDecs, _setLockRoomPermissionDecs, _setCloudRecordingStateDecs, _setLocalUserRoleDecs, _setShareWithAudioStateDecs, _setShareWithAudioStateOnlyDecs, _createNewShareDecs, _handlerStopShareDecs, _setShareAudioProcessingChannelDecs, _muteLocalAudioDecs, _setCurrentMicrophoneIdDecs, _setCurrentSpeakerIdDecs, _setMicrophoneListDecs, _setSpeakerListDecs, _setLocalAudioStateDecs, _setConnectTypeDecs, _setPhoneMicEnabledDecs, _handlerOpenAudioSettingDecs, _handlerMicrophoneDeviceChangeDecs, _handlerSpeakerDeviceChangeDecs, _muteLocalVideoDecs, _setLocalAudioVolumeDecs, _setCurrentCameraIdDecs, _setCameraListDecs, _setLocalVideoStateDecs, _handlerCameraDeviceChangeDecs, _setIsHostDecs, _setShowSecurityDecs, _setAllowChangeSelfNameDecs, _setAllowChatDecs, _setAllowJoinWithMuteAudioDecs, _setAllowShareScreenDecs, _setAllowUnmuteSelfVideoDecs, _setAllowUnmuteSelfAudioDecs, _setLockRoomEnabledDecs, _setWaitingRoomEnabledDecs, _handleMoreClickDecs, _ref;
74
73
  function _classPrivateFieldInitSpec(e, t, a) { _checkPrivateRedeclaration(e, t), t.set(e, a); }
75
74
  function _checkPrivateRedeclaration(e, t) { if (t.has(e)) throw new TypeError("Cannot initialize the same private elements twice on an object"); }
76
75
  function _classPrivateFieldSet(s, a, r) { return s.set(_assertClassBrand(s, a), r), r; }
@@ -126,26 +125,7 @@ var _p = /*#__PURE__*/new WeakMap();
126
125
  var _q = /*#__PURE__*/new WeakMap();
127
126
  var _r = /*#__PURE__*/new WeakMap();
128
127
  var _s = /*#__PURE__*/new WeakMap();
129
- var _t = /*#__PURE__*/new WeakMap();
130
- var _u = /*#__PURE__*/new WeakMap();
131
- var _v = /*#__PURE__*/new WeakMap();
132
- var _w = /*#__PURE__*/new WeakMap();
133
- var _x = /*#__PURE__*/new WeakMap();
134
- var _y = /*#__PURE__*/new WeakMap();
135
- var _z = /*#__PURE__*/new WeakMap();
136
- var _AA = /*#__PURE__*/new WeakMap();
137
- var _AB = /*#__PURE__*/new WeakMap();
138
- var _AC = /*#__PURE__*/new WeakMap();
139
- var _AD = /*#__PURE__*/new WeakMap();
140
- var _AE = /*#__PURE__*/new WeakMap();
141
- var _AF = /*#__PURE__*/new WeakMap();
142
- var _AG = /*#__PURE__*/new WeakMap();
143
- var _AH = /*#__PURE__*/new WeakMap();
144
- var _AI = /*#__PURE__*/new WeakMap();
145
- var _AJ = /*#__PURE__*/new WeakMap();
146
- var _AK = /*#__PURE__*/new WeakMap();
147
- var _AL = /*#__PURE__*/new WeakMap();
148
- _ref = (_setHiddenShareActionNavDecs = [_mobx.action, _mobx.action.bound], _initControlBarDecs = [_mobx.action, _mobx.action.bound], _updateCurrentShareContentDecs = [_mobx.action, _mobx.action.bound], _setLiveStreamingStateDecs = [_mobx.action, _mobx.action.bound], _setRoomInfoDecs = [_mobx.action, _mobx.action.bound], _setStartScreenSharePermissionDecs = [_mobx.action, _mobx.action.bound], _setPermissionToControlAllowSendAllDecs = [_mobx.action, _mobx.action.bound], _setStartAudioPermissionDecs = [_mobx.action, _mobx.action.bound], _setChangeNamePermissionDecs = [_mobx.action, _mobx.action.bound], _setStartVideoPermissionDecs = [_mobx.action, _mobx.action.bound], _setLockRoomPermissionDecs = [_mobx.action, _mobx.action.bound], _setCloudRecordingStateDecs = [_mobx.action, _mobx.action.bound], _setLocalUserRoleDecs = [_mobx.action, _mobx.action.bound], _setShareWithAudioStateDecs = [_mobx.action, _mobx.action.bound], _setShareWithAudioStateOnlyDecs = [_mobx.action, _mobx.action.bound], _createNewShareDecs = [_mobx.action, _mobx.action.bound], _handlerStopShareDecs = [_mobx.action, _mobx.action.bound], _setShareAudioProcessingChannelDecs = [_mobx.action, _mobx.action.bound], _muteLocalAudioDecs = [_mobx.action, _mobx.action.bound], _setCurrentMicrophoneIdDecs = [_mobx.action, _mobx.action.bound], _setCurrentSpeakerIdDecs = [_mobx.action, _mobx.action.bound], _setMicrophoneListDecs = [_mobx.action, _mobx.action.bound], _setSpeakerListDecs = [_mobx.action, _mobx.action.bound], _setLocalAudioStateDecs = [_mobx.action, _mobx.action.bound], _setConnectTypeDecs = [_mobx.action, _mobx.action.bound], _setPhoneMicEnabledDecs = [_mobx.action, _mobx.action.bound], _handlerOpenAudioSettingDecs = [_mobx.action, _mobx.action.bound], _handlerMicrophoneDeviceChangeDecs = [_mobx.action, _mobx.action.bound], _handlerSpeakerDeviceChangeDecs = [_mobx.action, _mobx.action.bound], _muteLocalVideoDecs = [_mobx.action, _mobx.action.bound], _setLocalAudioVolumeDecs = [_mobx.action, _mobx.action.bound], _setCurrentCameraIdDecs = [_mobx.action, _mobx.action.bound], _setCameraListDecs = [_mobx.action, _mobx.action.bound], _setLocalVideoStateDecs = [_mobx.action, _mobx.action.bound], _handlerCameraDeviceChangeDecs = [_mobx.action, _mobx.action.bound], _setIsHostDecs = [_mobx.action, _mobx.action.bound], _setShowSecurityDecs = [_mobx.action, _mobx.action.bound], _setAllowChangeSelfNameDecs = [_mobx.action, _mobx.action.bound], _setAllowChatDecs = [_mobx.action, _mobx.action.bound], _setAllowJoinWithMuteAudioDecs = [_mobx.action, _mobx.action.bound], _setAllowShareScreenDecs = [_mobx.action, _mobx.action.bound], _setBoardWriteEnabledDecs = [_mobx.action, _mobx.action.bound], _updateBoardWriteEnabledDecs = [_mobx.action, _mobx.action.bound], _setHasAllowWriteBoardPermissionDecs = [_mobx.action, _mobx.action.bound], _setAllowUnmuteSelfVideoDecs = [_mobx.action, _mobx.action.bound], _setAllowUnmuteSelfAudioDecs = [_mobx.action, _mobx.action.bound], _setLockRoomEnabledDecs = [_mobx.action, _mobx.action.bound], _setWaitingRoomEnabledDecs = [_mobx.action, _mobx.action.bound], _setIsMultiDecs = [_mobx.action, _mobx.action.bound], _setWaterMarkEnabledDecs = [_mobx.action, _mobx.action.bound], _setHasWatermarkDisablePermissionDecs = [_mobx.action, _mobx.action.bound], _setHasWatermarkEnablePermissionDecs = [_mobx.action, _mobx.action.bound], _handleMoreClickDecs = [_mobx.action, _mobx.action.bound], _setShowMeetingDetailPortalDecs = [_mobx.action, _mobx.action.bound], _setMeetingDetailPortalPositionDecs = [_mobx.action, _mobx.action.bound], _setRemoteUsersDecs = [_mobx.action, _mobx.action.bound], _setHasAssignHostBeforeLeavingPermissionDecs = [_mobx.action, _mobx.action.bound], _setIsPstnUserDecs = [_mobx.action, _mobx.action.bound], _setHasEndRoomPermissionDecs = [_mobx.action, _mobx.action.bound], _setIsLockedDecs = [_mobx.action, _mobx.action.bound], _sendLeaveDecs = [_mobx.action, _mobx.action.bound], _keepPhoneAudioConnectionDecs = [_mobx.action, _mobx.action.bound], _sendEndDecs = [_mobx.action, _mobx.action.bound], _sendAssignDecs = [_mobx.action, _mobx.action.bound], "logger");
128
+ _ref = (_initControlBarDecs = [_mobx.action, _mobx.action.bound], _updateCurrentShareContentDecs = [_mobx.action, _mobx.action.bound], _setLiveStreamingStateDecs = [_mobx.action, _mobx.action.bound], _setStartScreenSharePermissionDecs = [_mobx.action, _mobx.action.bound], _setPermissionToControlAllowSendAllDecs = [_mobx.action, _mobx.action.bound], _setStartAudioPermissionDecs = [_mobx.action, _mobx.action.bound], _setChangeNamePermissionDecs = [_mobx.action, _mobx.action.bound], _setStartVideoPermissionDecs = [_mobx.action, _mobx.action.bound], _setLockRoomPermissionDecs = [_mobx.action, _mobx.action.bound], _setCloudRecordingStateDecs = [_mobx.action, _mobx.action.bound], _setLocalUserRoleDecs = [_mobx.action, _mobx.action.bound], _setShareWithAudioStateDecs = [_mobx.action, _mobx.action.bound], _setShareWithAudioStateOnlyDecs = [_mobx.action, _mobx.action.bound], _createNewShareDecs = [_mobx.action, _mobx.action.bound], _handlerStopShareDecs = [_mobx.action, _mobx.action.bound], _setShareAudioProcessingChannelDecs = [_mobx.action, _mobx.action.bound], _muteLocalAudioDecs = [_mobx.action, _mobx.action.bound], _setCurrentMicrophoneIdDecs = [_mobx.action, _mobx.action.bound], _setCurrentSpeakerIdDecs = [_mobx.action, _mobx.action.bound], _setMicrophoneListDecs = [_mobx.action, _mobx.action.bound], _setSpeakerListDecs = [_mobx.action, _mobx.action.bound], _setLocalAudioStateDecs = [_mobx.action, _mobx.action.bound], _setConnectTypeDecs = [_mobx.action, _mobx.action.bound], _setPhoneMicEnabledDecs = [_mobx.action, _mobx.action.bound], _handlerOpenAudioSettingDecs = [_mobx.action, _mobx.action.bound], _handlerMicrophoneDeviceChangeDecs = [_mobx.action, _mobx.action.bound], _handlerSpeakerDeviceChangeDecs = [_mobx.action, _mobx.action.bound], _muteLocalVideoDecs = [_mobx.action, _mobx.action.bound], _setLocalAudioVolumeDecs = [_mobx.action, _mobx.action.bound], _setCurrentCameraIdDecs = [_mobx.action, _mobx.action.bound], _setCameraListDecs = [_mobx.action, _mobx.action.bound], _setLocalVideoStateDecs = [_mobx.action, _mobx.action.bound], _handlerCameraDeviceChangeDecs = [_mobx.action, _mobx.action.bound], _setIsHostDecs = [_mobx.action, _mobx.action.bound], _setShowSecurityDecs = [_mobx.action, _mobx.action.bound], _setAllowChangeSelfNameDecs = [_mobx.action, _mobx.action.bound], _setAllowChatDecs = [_mobx.action, _mobx.action.bound], _setAllowJoinWithMuteAudioDecs = [_mobx.action, _mobx.action.bound], _setAllowShareScreenDecs = [_mobx.action, _mobx.action.bound], _setAllowUnmuteSelfVideoDecs = [_mobx.action, _mobx.action.bound], _setAllowUnmuteSelfAudioDecs = [_mobx.action, _mobx.action.bound], _setLockRoomEnabledDecs = [_mobx.action, _mobx.action.bound], _setWaitingRoomEnabledDecs = [_mobx.action, _mobx.action.bound], _handleMoreClickDecs = [_mobx.action, _mobx.action.bound], "logger");
149
129
  var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
150
130
  function ControlBarStore() {
151
131
  (0, _classCallCheck2["default"])(this, ControlBarStore);
@@ -158,7 +138,7 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
158
138
  _classPrivateFieldInitSpec(this, _A, _init_shareWithAudio(this, false));
159
139
  _classPrivateFieldInitSpec(this, _B, _init_shareAudioProcessingChannel(this, _shareAudio.AudioProcessingChannel.MONO));
160
140
  _classPrivateFieldInitSpec(this, _C, _init_currentShareId(this, ''));
161
- _classPrivateFieldInitSpec(this, _D, _init_currentShareType(this, _type.AgoraRtcScreenCaptureType.SCREEN));
141
+ _classPrivateFieldInitSpec(this, _D, _init_currentShareType(this, _type.AgoraRtcScreenCaptureType.DISPLAY));
162
142
  _classPrivateFieldInitSpec(this, _E, _init_isMuteAudio(this, false));
163
143
  _classPrivateFieldInitSpec(this, _F, _init_isMuteVideo(this, false));
164
144
  _classPrivateFieldInitSpec(this, _G, _init_currentCameraId(this, ''));
@@ -176,54 +156,31 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
176
156
  _classPrivateFieldInitSpec(this, _R, _init_allowChat(this, false));
177
157
  _classPrivateFieldInitSpec(this, _S, _init_allowJoinWithMuteAudio(this, false));
178
158
  _classPrivateFieldInitSpec(this, _T, _init_allowShareScreen(this, false));
179
- _classPrivateFieldInitSpec(this, _U, _init_allowBoardWrite(this, false));
180
- _classPrivateFieldInitSpec(this, _V, _init_allowUnmuteSelfVideo(this, false));
181
- _classPrivateFieldInitSpec(this, _W, _init_allowUnmuteSelfAudio(this, false));
182
- _classPrivateFieldInitSpec(this, _X, _init_isLockRoomEnabled(this, false));
183
- _classPrivateFieldInitSpec(this, _Y, _init_isWaitingRoomEnabled(this, false));
184
- _classPrivateFieldInitSpec(this, _Z, _init_isWaterMarkEnabled(this, false));
185
- _classPrivateFieldInitSpec(this, _a, _init_showSecurity(this, false));
186
- _classPrivateFieldInitSpec(this, _b, _init_isHost(this, false));
187
- _classPrivateFieldInitSpec(this, _c, _init_hasEnableStartScreenSharePermission(this, false));
188
- _classPrivateFieldInitSpec(this, _d, _init_hasPermissionToControlAllowSendAll(this, false));
189
- _classPrivateFieldInitSpec(this, _e, _init_hasEnableStartAudioPermission(this, false));
190
- _classPrivateFieldInitSpec(this, _f, _init_hasEnableChangeNamePermission(this, false));
191
- _classPrivateFieldInitSpec(this, _g, _init_hasEnableStartVideoPermission(this, false));
192
- _classPrivateFieldInitSpec(this, _h, _init_hasLockRoomPermission(this, false));
193
- _classPrivateFieldInitSpec(this, _i, _init_hasAllowWriteBoardPermission(this, false));
194
- _classPrivateFieldInitSpec(this, _j, _init_roomDuration(this, 0));
195
- _classPrivateFieldInitSpec(this, _k, _init_startTime(this, 0));
196
- _classPrivateFieldInitSpec(this, _l, _init_videoSteamingUrl(this, ''));
197
- _classPrivateFieldInitSpec(this, _m, _init_videoStreamingKey(this, ''));
198
- _classPrivateFieldInitSpec(this, _n, _init_playUrl(this, ''));
199
- _classPrivateFieldInitSpec(this, _o, _init_isStartError(this, false));
200
- _classPrivateFieldInitSpec(this, _p, _init_liveStreamingState(this, _type2.FcrLiveStreamingState.STOPPED));
201
- _classPrivateFieldInitSpec(this, _q, _init_hasStartCloudRecordingPermission(this, false));
202
- _classPrivateFieldInitSpec(this, _r, _init_hasGetLiveStreamingUrlPermission(this, false));
203
- _classPrivateFieldInitSpec(this, _s, _init_hasStopLiveStreamingPermission(this, false));
204
- _classPrivateFieldInitSpec(this, _t, _init_hasStartLiveStreamingPermission(this, false));
205
- _classPrivateFieldInitSpec(this, _u, _init_hasWaitingRoomPermission(this, false));
206
- _classPrivateFieldInitSpec(this, _v, _init_hasWatermarkDisablePermission(this, false));
207
- _classPrivateFieldInitSpec(this, _w, _init_hasWatermarkEnablePermission(this, false));
208
- _classPrivateFieldInitSpec(this, _x, _init_allApplicationWindows(this, []));
209
- _classPrivateFieldInitSpec(this, _y, _init_phoneMicEnabled(this, false));
210
- _classPrivateFieldInitSpec(this, _z, _init_isMulti(this, false));
211
- _classPrivateFieldInitSpec(this, _AA, _init_roomInfo(this, {
212
- roomId: '',
213
- roomName: '',
214
- roomType: _type4.FcrRoomType.Mainroom
215
- }));
216
- _classPrivateFieldInitSpec(this, _AB, _init_userName(this, ''));
217
- _classPrivateFieldInitSpec(this, _AC, _init_inviteLink(this, ''));
218
- _classPrivateFieldInitSpec(this, _AD, _init_isShowMeetingDetailPortal(this, false));
219
- _classPrivateFieldInitSpec(this, _AE, _init_meetingDetailPortalLeft(this, 0));
220
- _classPrivateFieldInitSpec(this, _AF, _init_meetingDetailPortalTop(this, 0));
221
- _classPrivateFieldInitSpec(this, _AG, _init_remoteUsers(this, []));
222
- _classPrivateFieldInitSpec(this, _AH, _init_hasAssignHostBeforeLeavingPermission(this, false));
223
- _classPrivateFieldInitSpec(this, _AI, _init_isPstnUser(this, false));
224
- _classPrivateFieldInitSpec(this, _AJ, _init_hasEndRoomPermission(this, false));
225
- _classPrivateFieldInitSpec(this, _AK, _init_isLocked(this, false));
226
- _classPrivateFieldInitSpec(this, _AL, _init_hiddenShareActionNav(this, false));
159
+ _classPrivateFieldInitSpec(this, _U, _init_allowUnmuteSelfVideo(this, false));
160
+ _classPrivateFieldInitSpec(this, _V, _init_allowUnmuteSelfAudio(this, false));
161
+ _classPrivateFieldInitSpec(this, _W, _init_isLockRoomEnabled(this, false));
162
+ _classPrivateFieldInitSpec(this, _X, _init_isWaitingRoomEnabled(this, false));
163
+ _classPrivateFieldInitSpec(this, _Y, _init_showSecurity(this, false));
164
+ _classPrivateFieldInitSpec(this, _Z, _init_isHost(this, false));
165
+ _classPrivateFieldInitSpec(this, _a, _init_hasEnableStartScreenSharePermission(this, false));
166
+ _classPrivateFieldInitSpec(this, _b, _init_hasPermissionToControlAllowSendAll(this, false));
167
+ _classPrivateFieldInitSpec(this, _c, _init_hasEnableStartAudioPermission(this, false));
168
+ _classPrivateFieldInitSpec(this, _d, _init_hasEnableChangeNamePermission(this, false));
169
+ _classPrivateFieldInitSpec(this, _e, _init_hasEnableStartVideoPermission(this, false));
170
+ _classPrivateFieldInitSpec(this, _f, _init_hasLockRoomPermission(this, false));
171
+ _classPrivateFieldInitSpec(this, _g, _init_roomDuration(this, 0));
172
+ _classPrivateFieldInitSpec(this, _h, _init_startTime(this, 0));
173
+ _classPrivateFieldInitSpec(this, _i, _init_videoSteamingUrl(this, ''));
174
+ _classPrivateFieldInitSpec(this, _j, _init_videoStreamingKey(this, ''));
175
+ _classPrivateFieldInitSpec(this, _k, _init_playUrl(this, ''));
176
+ _classPrivateFieldInitSpec(this, _l, _init_isStartError(this, false));
177
+ _classPrivateFieldInitSpec(this, _m, _init_liveStreamingState(this, _type2.FcrLiveStreamingState.STOPPED));
178
+ _classPrivateFieldInitSpec(this, _n, _init_hasStartCloudRecordingPermission(this, false));
179
+ _classPrivateFieldInitSpec(this, _o, _init_hasGetLiveStreamingUrlPermission(this, false));
180
+ _classPrivateFieldInitSpec(this, _p, _init_hasStopLiveStreamingPermission(this, false));
181
+ _classPrivateFieldInitSpec(this, _q, _init_hasStartLiveStreamingPermission(this, false));
182
+ _classPrivateFieldInitSpec(this, _r, _init_allApplicationWindows(this, []));
183
+ _classPrivateFieldInitSpec(this, _s, _init_phoneMicEnabled(this, false));
227
184
  window.runtime.browserWindow.maximizable = false;
228
185
  window.runtime.browserWindow.setMaximizable(false);
229
186
  // window.runtime.browserWindow.fullScreenable = false;
@@ -394,7 +351,7 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
394
351
  _classPrivateFieldSet(_T, this, v);
395
352
  }
396
353
  }, {
397
- key: "allowBoardWrite",
354
+ key: "allowUnmuteSelfVideo",
398
355
  get: function get() {
399
356
  return _classPrivateFieldGet(_U, this);
400
357
  },
@@ -402,7 +359,7 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
402
359
  _classPrivateFieldSet(_U, this, v);
403
360
  }
404
361
  }, {
405
- key: "allowUnmuteSelfVideo",
362
+ key: "allowUnmuteSelfAudio",
406
363
  get: function get() {
407
364
  return _classPrivateFieldGet(_V, this);
408
365
  },
@@ -410,7 +367,7 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
410
367
  _classPrivateFieldSet(_V, this, v);
411
368
  }
412
369
  }, {
413
- key: "allowUnmuteSelfAudio",
370
+ key: "isLockRoomEnabled",
414
371
  get: function get() {
415
372
  return _classPrivateFieldGet(_W, this);
416
373
  },
@@ -418,7 +375,7 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
418
375
  _classPrivateFieldSet(_W, this, v);
419
376
  }
420
377
  }, {
421
- key: "isLockRoomEnabled",
378
+ key: "isWaitingRoomEnabled",
422
379
  get: function get() {
423
380
  return _classPrivateFieldGet(_X, this);
424
381
  },
@@ -426,7 +383,7 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
426
383
  _classPrivateFieldSet(_X, this, v);
427
384
  }
428
385
  }, {
429
- key: "isWaitingRoomEnabled",
386
+ key: "showSecurity",
430
387
  get: function get() {
431
388
  return _classPrivateFieldGet(_Y, this);
432
389
  },
@@ -434,7 +391,7 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
434
391
  _classPrivateFieldSet(_Y, this, v);
435
392
  }
436
393
  }, {
437
- key: "isWaterMarkEnabled",
394
+ key: "isHost",
438
395
  get: function get() {
439
396
  return _classPrivateFieldGet(_Z, this);
440
397
  },
@@ -442,7 +399,7 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
442
399
  _classPrivateFieldSet(_Z, this, v);
443
400
  }
444
401
  }, {
445
- key: "showSecurity",
402
+ key: "hasEnableStartScreenSharePermission",
446
403
  get: function get() {
447
404
  return _classPrivateFieldGet(_a, this);
448
405
  },
@@ -450,7 +407,7 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
450
407
  _classPrivateFieldSet(_a, this, v);
451
408
  }
452
409
  }, {
453
- key: "isHost",
410
+ key: "hasPermissionToControlAllowSendAll",
454
411
  get: function get() {
455
412
  return _classPrivateFieldGet(_b, this);
456
413
  },
@@ -458,7 +415,7 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
458
415
  _classPrivateFieldSet(_b, this, v);
459
416
  }
460
417
  }, {
461
- key: "hasEnableStartScreenSharePermission",
418
+ key: "hasEnableStartAudioPermission",
462
419
  get: function get() {
463
420
  return _classPrivateFieldGet(_c, this);
464
421
  },
@@ -466,7 +423,7 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
466
423
  _classPrivateFieldSet(_c, this, v);
467
424
  }
468
425
  }, {
469
- key: "hasPermissionToControlAllowSendAll",
426
+ key: "hasEnableChangeNamePermission",
470
427
  get: function get() {
471
428
  return _classPrivateFieldGet(_d, this);
472
429
  },
@@ -474,7 +431,7 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
474
431
  _classPrivateFieldSet(_d, this, v);
475
432
  }
476
433
  }, {
477
- key: "hasEnableStartAudioPermission",
434
+ key: "hasEnableStartVideoPermission",
478
435
  get: function get() {
479
436
  return _classPrivateFieldGet(_e, this);
480
437
  },
@@ -482,7 +439,7 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
482
439
  _classPrivateFieldSet(_e, this, v);
483
440
  }
484
441
  }, {
485
- key: "hasEnableChangeNamePermission",
442
+ key: "hasLockRoomPermission",
486
443
  get: function get() {
487
444
  return _classPrivateFieldGet(_f, this);
488
445
  },
@@ -490,7 +447,7 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
490
447
  _classPrivateFieldSet(_f, this, v);
491
448
  }
492
449
  }, {
493
- key: "hasEnableStartVideoPermission",
450
+ key: "roomDuration",
494
451
  get: function get() {
495
452
  return _classPrivateFieldGet(_g, this);
496
453
  },
@@ -498,7 +455,7 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
498
455
  _classPrivateFieldSet(_g, this, v);
499
456
  }
500
457
  }, {
501
- key: "hasLockRoomPermission",
458
+ key: "startTime",
502
459
  get: function get() {
503
460
  return _classPrivateFieldGet(_h, this);
504
461
  },
@@ -506,7 +463,7 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
506
463
  _classPrivateFieldSet(_h, this, v);
507
464
  }
508
465
  }, {
509
- key: "hasAllowWriteBoardPermission",
466
+ key: "videoSteamingUrl",
510
467
  get: function get() {
511
468
  return _classPrivateFieldGet(_i, this);
512
469
  },
@@ -514,7 +471,7 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
514
471
  _classPrivateFieldSet(_i, this, v);
515
472
  }
516
473
  }, {
517
- key: "roomDuration",
474
+ key: "videoStreamingKey",
518
475
  get: function get() {
519
476
  return _classPrivateFieldGet(_j, this);
520
477
  },
@@ -522,7 +479,7 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
522
479
  _classPrivateFieldSet(_j, this, v);
523
480
  }
524
481
  }, {
525
- key: "startTime",
482
+ key: "playUrl",
526
483
  get: function get() {
527
484
  return _classPrivateFieldGet(_k, this);
528
485
  },
@@ -530,7 +487,7 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
530
487
  _classPrivateFieldSet(_k, this, v);
531
488
  }
532
489
  }, {
533
- key: "videoSteamingUrl",
490
+ key: "isStartError",
534
491
  get: function get() {
535
492
  return _classPrivateFieldGet(_l, this);
536
493
  },
@@ -538,7 +495,7 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
538
495
  _classPrivateFieldSet(_l, this, v);
539
496
  }
540
497
  }, {
541
- key: "videoStreamingKey",
498
+ key: "liveStreamingState",
542
499
  get: function get() {
543
500
  return _classPrivateFieldGet(_m, this);
544
501
  },
@@ -546,7 +503,7 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
546
503
  _classPrivateFieldSet(_m, this, v);
547
504
  }
548
505
  }, {
549
- key: "playUrl",
506
+ key: "hasStartCloudRecordingPermission",
550
507
  get: function get() {
551
508
  return _classPrivateFieldGet(_n, this);
552
509
  },
@@ -554,7 +511,7 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
554
511
  _classPrivateFieldSet(_n, this, v);
555
512
  }
556
513
  }, {
557
- key: "isStartError",
514
+ key: "hasGetLiveStreamingUrlPermission",
558
515
  get: function get() {
559
516
  return _classPrivateFieldGet(_o, this);
560
517
  },
@@ -562,7 +519,7 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
562
519
  _classPrivateFieldSet(_o, this, v);
563
520
  }
564
521
  }, {
565
- key: "liveStreamingState",
522
+ key: "hasStopLiveStreamingPermission",
566
523
  get: function get() {
567
524
  return _classPrivateFieldGet(_p, this);
568
525
  },
@@ -570,7 +527,7 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
570
527
  _classPrivateFieldSet(_p, this, v);
571
528
  }
572
529
  }, {
573
- key: "hasStartCloudRecordingPermission",
530
+ key: "hasStartLiveStreamingPermission",
574
531
  get: function get() {
575
532
  return _classPrivateFieldGet(_q, this);
576
533
  },
@@ -578,7 +535,7 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
578
535
  _classPrivateFieldSet(_q, this, v);
579
536
  }
580
537
  }, {
581
- key: "hasGetLiveStreamingUrlPermission",
538
+ key: "allApplicationWindows",
582
539
  get: function get() {
583
540
  return _classPrivateFieldGet(_r, this);
584
541
  },
@@ -586,170 +543,13 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
586
543
  _classPrivateFieldSet(_r, this, v);
587
544
  }
588
545
  }, {
589
- key: "hasStopLiveStreamingPermission",
546
+ key: "phoneMicEnabled",
590
547
  get: function get() {
591
548
  return _classPrivateFieldGet(_s, this);
592
549
  },
593
550
  set: function set(v) {
594
551
  _classPrivateFieldSet(_s, this, v);
595
552
  }
596
- }, {
597
- key: "hasStartLiveStreamingPermission",
598
- get: function get() {
599
- return _classPrivateFieldGet(_t, this);
600
- },
601
- set: function set(v) {
602
- _classPrivateFieldSet(_t, this, v);
603
- }
604
- }, {
605
- key: "hasWaitingRoomPermission",
606
- get: function get() {
607
- return _classPrivateFieldGet(_u, this);
608
- },
609
- set: function set(v) {
610
- _classPrivateFieldSet(_u, this, v);
611
- }
612
- }, {
613
- key: "hasWatermarkDisablePermission",
614
- get: function get() {
615
- return _classPrivateFieldGet(_v, this);
616
- },
617
- set: function set(v) {
618
- _classPrivateFieldSet(_v, this, v);
619
- }
620
- }, {
621
- key: "hasWatermarkEnablePermission",
622
- get: function get() {
623
- return _classPrivateFieldGet(_w, this);
624
- },
625
- set: function set(v) {
626
- _classPrivateFieldSet(_w, this, v);
627
- }
628
- }, {
629
- key: "allApplicationWindows",
630
- get: function get() {
631
- return _classPrivateFieldGet(_x, this);
632
- },
633
- set: function set(v) {
634
- _classPrivateFieldSet(_x, this, v);
635
- }
636
- }, {
637
- key: "phoneMicEnabled",
638
- get: function get() {
639
- return _classPrivateFieldGet(_y, this);
640
- },
641
- set: function set(v) {
642
- _classPrivateFieldSet(_y, this, v);
643
- }
644
- }, {
645
- key: "isMulti",
646
- get: function get() {
647
- return _classPrivateFieldGet(_z, this);
648
- },
649
- set: function set(v) {
650
- _classPrivateFieldSet(_z, this, v);
651
- }
652
- }, {
653
- key: "roomInfo",
654
- get: function get() {
655
- return _classPrivateFieldGet(_AA, this);
656
- },
657
- set: function set(v) {
658
- _classPrivateFieldSet(_AA, this, v);
659
- }
660
- }, {
661
- key: "userName",
662
- get: function get() {
663
- return _classPrivateFieldGet(_AB, this);
664
- },
665
- set: function set(v) {
666
- _classPrivateFieldSet(_AB, this, v);
667
- }
668
- }, {
669
- key: "inviteLink",
670
- get: function get() {
671
- return _classPrivateFieldGet(_AC, this);
672
- },
673
- set: function set(v) {
674
- _classPrivateFieldSet(_AC, this, v);
675
- }
676
- }, {
677
- key: "isShowMeetingDetailPortal",
678
- get: function get() {
679
- return _classPrivateFieldGet(_AD, this);
680
- },
681
- set: function set(v) {
682
- _classPrivateFieldSet(_AD, this, v);
683
- }
684
- }, {
685
- key: "meetingDetailPortalLeft",
686
- get: function get() {
687
- return _classPrivateFieldGet(_AE, this);
688
- },
689
- set: function set(v) {
690
- _classPrivateFieldSet(_AE, this, v);
691
- }
692
- }, {
693
- key: "meetingDetailPortalTop",
694
- get: function get() {
695
- return _classPrivateFieldGet(_AF, this);
696
- },
697
- set: function set(v) {
698
- _classPrivateFieldSet(_AF, this, v);
699
- }
700
- }, {
701
- key: "remoteUsers",
702
- get: function get() {
703
- return _classPrivateFieldGet(_AG, this);
704
- },
705
- set: function set(v) {
706
- _classPrivateFieldSet(_AG, this, v);
707
- }
708
- }, {
709
- key: "hasAssignHostBeforeLeavingPermission",
710
- get: function get() {
711
- return _classPrivateFieldGet(_AH, this);
712
- },
713
- set: function set(v) {
714
- _classPrivateFieldSet(_AH, this, v);
715
- }
716
- }, {
717
- key: "isPstnUser",
718
- get: function get() {
719
- return _classPrivateFieldGet(_AI, this);
720
- },
721
- set: function set(v) {
722
- _classPrivateFieldSet(_AI, this, v);
723
- }
724
- }, {
725
- key: "hasEndRoomPermission",
726
- get: function get() {
727
- return _classPrivateFieldGet(_AJ, this);
728
- },
729
- set: function set(v) {
730
- _classPrivateFieldSet(_AJ, this, v);
731
- }
732
- }, {
733
- key: "isLocked",
734
- get: function get() {
735
- return _classPrivateFieldGet(_AK, this);
736
- },
737
- set: function set(v) {
738
- _classPrivateFieldSet(_AK, this, v);
739
- }
740
- }, {
741
- key: "hiddenShareActionNav",
742
- get: function get() {
743
- return _classPrivateFieldGet(_AL, this);
744
- },
745
- set: function set(v) {
746
- _classPrivateFieldSet(_AL, this, v);
747
- }
748
- }, {
749
- key: "setHiddenShareActionNav",
750
- value: function setHiddenShareActionNav(hiddenShareActionNav) {
751
- this.hiddenShareActionNav = hiddenShareActionNav;
752
- }
753
553
  }, {
754
554
  key: "initControlBar",
755
555
  value: function initControlBar(payload) {
@@ -757,12 +557,10 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
757
557
  this.currentShareId = payload.currentShareId;
758
558
  this.currentShareType = payload.currentShareType;
759
559
  this.setShareWithAudioState(payload.shareWithAudio);
760
- this.userName = payload.userName;
761
- this.inviteLink = payload.inviteLink;
762
560
  // room
763
- this.setRoomInfo(payload.roomInfo);
764
561
  this.setRoomDuration(payload.duration);
765
562
  this.setStartTime(payload.startTime);
563
+
766
564
  // Video
767
565
  this.setCameraList(payload.cameraList);
768
566
  this.setCurrentCameraId(payload.currentCameraId);
@@ -781,7 +579,6 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
781
579
  this.setAllowChat(payload.allowChat);
782
580
  this.setAllowJoinWithMuteAudio(payload.allowJoinWithMuteAudio);
783
581
  this.setAllowShareScreen(payload.allowShareScreen);
784
- this.setBoardWriteEnabled(payload.allowBoardWrite);
785
582
  this.setAllowUnmuteSelfVideo(payload.allowUnmuteSelfVideo);
786
583
  this.setAllowUnmuteSelfAudio(payload.allowUnmuteSelfAudio);
787
584
  this.setLockRoomEnabled(payload.isLockRoomEnabled);
@@ -790,7 +587,6 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
790
587
  this.setHasStartLiveStreamingPermission(payload.hasStartLiveStreamingPermission);
791
588
  this.setHasStopLiveStreamingPermission(payload.hasStopLiveStreamingPermission);
792
589
  this.setHasGetLiveStreamingUrlPermission(payload.hasGetLiveStreamingLinkPermission);
793
- this.setHasAllowWriteBoardPermission(payload.hasAllowWriteBoardPermission);
794
590
  this.setStartScreenSharePermission(payload.hasEnableStartScreenSharePermission);
795
591
  this.setPermissionToControlAllowSendAll(payload.hasPermissionToControlAllowSendAll);
796
592
  this.setStartAudioPermission(payload.hasEnableStartAudioPermission);
@@ -799,10 +595,6 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
799
595
  this.setLockRoomPermission(payload.hasLockRoomPermission);
800
596
  // live streaming
801
597
  this.setLiveStreamingState(payload.liveStreamingState);
802
- this.setHasWaitingRoomPermission(payload.hasWaitingRoomPermission);
803
- this.setWaterMarkEnabled(payload.isWaterMarkEnabled);
804
- this.setHasWatermarkEnablePermission(payload.hasWatermarkEnablePermission);
805
- this.setHasWatermarkDisablePermission(payload.hasWatermarkDisablePermission);
806
598
  this.setLiveStreamingInfo({
807
599
  videoSteamingUrl: payload.videoSteamingUrl,
808
600
  videoStreamingKey: payload.videoStreamingKey,
@@ -859,12 +651,6 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
859
651
  }
860
652
  });
861
653
  }
862
- }, {
863
- key: "password",
864
- get: function get() {
865
- var _this$roomInfo;
866
- return (_this$roomInfo = this.roomInfo) === null || _this$roomInfo === void 0 ? void 0 : _this$roomInfo.password;
867
- }
868
654
  }, {
869
655
  key: "hasSecurityPermission",
870
656
  get: function get() {
@@ -907,11 +693,6 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
907
693
  value: function setStartTime(startTime) {
908
694
  this.startTime = startTime;
909
695
  }
910
- }, {
911
- key: "setRoomInfo",
912
- value: function setRoomInfo(roomInfo) {
913
- this.roomInfo = roomInfo;
914
- }
915
696
  }, {
916
697
  key: "setRoomDuration",
917
698
  value: function setRoomDuration(duration) {
@@ -1070,7 +851,7 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
1070
851
  displayId: 1,
1071
852
  availTop: 0
1072
853
  };
1073
- if (currentShareType === _type.AgoraRtcScreenCaptureType.SCREEN) {
854
+ if (currentShareType === _type.AgoraRtcScreenCaptureType.DISPLAY) {
1074
855
  var display;
1075
856
  if ((0, _platform.isWindows)()) {
1076
857
  display = displays.find(function (display, index) {
@@ -1299,24 +1080,6 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
1299
1080
  }
1300
1081
  });
1301
1082
  }
1302
- }, {
1303
- key: "setBoardWriteEnabled",
1304
- value: function setBoardWriteEnabled(allow) {
1305
- this.allowBoardWrite = allow;
1306
- }
1307
- }, {
1308
- key: "updateBoardWriteEnabled",
1309
- value: function updateBoardWriteEnabled() {
1310
- (0, _rendererEvent.sendEvent)({
1311
- action: _constant.RendererEventAction.FRAGMENT_SET_ALLOW_BOARD_WRITE,
1312
- payload: {}
1313
- });
1314
- }
1315
- }, {
1316
- key: "setHasAllowWriteBoardPermission",
1317
- value: function setHasAllowWriteBoardPermission(allow) {
1318
- this.hasAllowWriteBoardPermission = allow;
1319
- }
1320
1083
  }, {
1321
1084
  key: "setAllowUnmuteSelfVideo",
1322
1085
  value: function setAllowUnmuteSelfVideo(allow) {
@@ -1367,54 +1130,11 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
1367
1130
  value: function setWaitingRoomEnabled(allow) {
1368
1131
  this.isWaitingRoomEnabled = allow;
1369
1132
  }
1370
- }, {
1371
- key: "setWaterMarkLineType",
1372
- value: function setWaterMarkLineType(lineType) {
1373
- (0, _rendererEvent.sendEvent)({
1374
- action: _constant.RendererEventAction.SET_WATERMARK_LINE_TYPE,
1375
- payload: {
1376
- lineType: lineType
1377
- }
1378
- });
1379
- }
1380
- }, {
1381
- key: "setAllowWaterMark",
1382
- value: function setAllowWaterMark() {
1383
- (0, _rendererEvent.sendEvent)({
1384
- action: _constant.RendererEventAction.SET_WATERMARK_ALLOW,
1385
- payload: {}
1386
- });
1387
- }
1388
- }, {
1389
- key: "setIsMulti",
1390
- value: function setIsMulti(isMulti) {
1391
- this.isMulti = isMulti;
1392
- }
1393
- }, {
1394
- key: "setWaterMarkEnabled",
1395
- value: function setWaterMarkEnabled(allow) {
1396
- this.isWaterMarkEnabled = allow;
1397
- }
1398
- }, {
1399
- key: "setHasWatermarkDisablePermission",
1400
- value: function setHasWatermarkDisablePermission(allow) {
1401
- this.hasWatermarkDisablePermission = allow;
1402
- }
1403
- }, {
1404
- key: "setHasWatermarkEnablePermission",
1405
- value: function setHasWatermarkEnablePermission(allow) {
1406
- this.hasWatermarkEnablePermission = allow;
1407
- }
1408
1133
  }, {
1409
1134
  key: "setHasStartCloudRecordingPermission",
1410
1135
  value: function setHasStartCloudRecordingPermission(allow) {
1411
1136
  this.hasStartCloudRecordingPermission = allow;
1412
1137
  }
1413
- }, {
1414
- key: "setHasWaitingRoomPermission",
1415
- value: function setHasWaitingRoomPermission(allow) {
1416
- this.hasWaitingRoomPermission = allow;
1417
- }
1418
1138
  }, {
1419
1139
  key: "setHasGetLiveStreamingUrlPermission",
1420
1140
  value: function setHasGetLiveStreamingUrlPermission(hasGetLiveStreamingUrlPermission) {
@@ -1433,12 +1153,6 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
1433
1153
  }, {
1434
1154
  key: "updateWaitingRoomEnabled",
1435
1155
  value: function updateWaitingRoomEnabled(allow) {
1436
- // 10ms后设置ignoreMouseEvents,防止点击事件穿透,直接设置无效
1437
- setTimeout(function () {
1438
- window.runtime.browserWindow.setIgnoreMouseEvents(true, {
1439
- forward: true
1440
- });
1441
- }, 10);
1442
1156
  (0, _rendererEvent.sendEvent)({
1443
1157
  action: _constant.RendererEventAction.FRAGMENT_SET_ENABLE_WAITING_ROOM,
1444
1158
  payload: {
@@ -1519,83 +1233,6 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
1519
1233
  y: y
1520
1234
  };
1521
1235
  }
1522
- }, {
1523
- key: "fetchLeavingRoomPropsAfterInit",
1524
- value: function fetchLeavingRoomPropsAfterInit() {
1525
- (0, _rendererEvent.sendEvent)({
1526
- action: _constant.RendererEventAction.REISSUE_CONTROLBAR_INFO,
1527
- payload: null
1528
- });
1529
- }
1530
- }, {
1531
- key: "setShowMeetingDetailPortal",
1532
- value: function setShowMeetingDetailPortal(show) {
1533
- this.isShowMeetingDetailPortal = show;
1534
- }
1535
- }, {
1536
- key: "setMeetingDetailPortalPosition",
1537
- value: function setMeetingDetailPortalPosition(left, top) {
1538
- this.meetingDetailPortalLeft = left;
1539
- this.meetingDetailPortalTop = top;
1540
- }
1541
- }, {
1542
- key: "setRemoteUsers",
1543
- value: function setRemoteUsers(remoteUsers) {
1544
- this.remoteUsers = remoteUsers;
1545
- }
1546
- }, {
1547
- key: "setHasAssignHostBeforeLeavingPermission",
1548
- value: function setHasAssignHostBeforeLeavingPermission(hasAssignHostBeforeLeavingPermission) {
1549
- this.hasAssignHostBeforeLeavingPermission = hasAssignHostBeforeLeavingPermission;
1550
- }
1551
- }, {
1552
- key: "setIsPstnUser",
1553
- value: function setIsPstnUser(isPstnUser) {
1554
- this.isPstnUser = isPstnUser;
1555
- }
1556
- }, {
1557
- key: "setHasEndRoomPermission",
1558
- value: function setHasEndRoomPermission(hasEndRoomPermission) {
1559
- this.hasEndRoomPermission = hasEndRoomPermission;
1560
- }
1561
- }, {
1562
- key: "setIsLocked",
1563
- value: function setIsLocked(isLocked) {
1564
- this.isLocked = isLocked;
1565
- }
1566
- }, {
1567
- key: "sendLeave",
1568
- value: function sendLeave() {
1569
- (0, _rendererEvent.sendEvent)({
1570
- action: _constant.RendererEventAction.LEAVE_ROOM,
1571
- payload: null
1572
- });
1573
- }
1574
- }, {
1575
- key: "keepPhoneAudioConnection",
1576
- value: function keepPhoneAudioConnection() {
1577
- (0, _rendererEvent.sendEvent)({
1578
- action: _constant.RendererEventAction.KEEP_PHONE_AUDIO_CONNECTION,
1579
- payload: null
1580
- });
1581
- }
1582
- }, {
1583
- key: "sendEnd",
1584
- value: function sendEnd() {
1585
- (0, _rendererEvent.sendEvent)({
1586
- action: _constant.RendererEventAction.END_ROOM,
1587
- payload: null
1588
- });
1589
- }
1590
- }, {
1591
- key: "sendAssign",
1592
- value: function sendAssign(user) {
1593
- (0, _rendererEvent.sendEvent)({
1594
- action: _constant.RendererEventAction.ASSIGN_HOST,
1595
- payload: user
1596
- });
1597
- this.handlerStopShare();
1598
- }
1599
1236
  }, {
1600
1237
  key: "showToast",
1601
1238
  value: function showToast(params) {
@@ -1610,7 +1247,7 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
1610
1247
  }]);
1611
1248
  }();
1612
1249
  _ControlBarStore = ControlBarStore;
1613
- var _applyDecs$e = (0, _slicedToArray2["default"])(_applyDecs(_ControlBarStore, [[_mobx.observable, 1, "shareWithAudio"], [_mobx.observable, 1, "shareAudioProcessingChannel"], [_mobx.observable, 1, "currentShareId"], [_mobx.observable, 1, "currentShareType"], [_mobx.observable, 1, "isMuteAudio"], [_mobx.observable, 1, "isMuteVideo"], [_mobx.observable, 1, "currentCameraId"], [_mobx.observable, 1, "currentMicrophoneId"], [_mobx.observable, 1, "currentSpeakerId"], [_mobx.observable, 1, "cameraList"], [_mobx.observable, 1, "microphoneList"], [_mobx.observable, 1, "speakerList"], [_mobx.observable, 1, "localAudioVolume"], [_mobx.observable, 1, "connectType"], [_mobx.observable, 1, "cloudRecordingState"], [_mobx.observable, 1, "localUserRole"], [_mobx.observable, 1, "allowChangeSelfName"], [_mobx.observable, 1, "allowChat"], [_mobx.observable, 1, "allowJoinWithMuteAudio"], [_mobx.observable, 1, "allowShareScreen"], [_mobx.observable, 1, "allowBoardWrite"], [_mobx.observable, 1, "allowUnmuteSelfVideo"], [_mobx.observable, 1, "allowUnmuteSelfAudio"], [_mobx.observable, 1, "isLockRoomEnabled"], [_mobx.observable, 1, "isWaitingRoomEnabled"], [_mobx.observable, 1, "isWaterMarkEnabled"], [_mobx.observable, 1, "showSecurity"], [_mobx.observable, 1, "isHost"], [_mobx.observable, 1, "hasEnableStartScreenSharePermission"], [_mobx.observable, 1, "hasPermissionToControlAllowSendAll"], [_mobx.observable, 1, "hasEnableStartAudioPermission"], [_mobx.observable, 1, "hasEnableChangeNamePermission"], [_mobx.observable, 1, "hasEnableStartVideoPermission"], [_mobx.observable, 1, "hasLockRoomPermission"], [_mobx.observable, 1, "hasAllowWriteBoardPermission"], [_mobx.observable, 1, "roomDuration"], [_mobx.observable, 1, "startTime"], [_mobx.observable, 1, "videoSteamingUrl"], [_mobx.observable, 1, "videoStreamingKey"], [_mobx.observable, 1, "playUrl"], [_mobx.observable, 1, "isStartError"], [_mobx.observable, 1, "liveStreamingState"], [_mobx.observable, 1, "hasStartCloudRecordingPermission"], [_mobx.observable, 1, "hasGetLiveStreamingUrlPermission"], [_mobx.observable, 1, "hasStopLiveStreamingPermission"], [_mobx.observable, 1, "hasStartLiveStreamingPermission"], [_mobx.observable, 1, "hasWaitingRoomPermission"], [_mobx.observable, 1, "hasWatermarkDisablePermission"], [_mobx.observable, 1, "hasWatermarkEnablePermission"], [_mobx.observable, 1, "allApplicationWindows"], [_mobx.observable, 1, "phoneMicEnabled"], [_mobx.observable, 1, "isMulti"], [_mobx.observable, 1, "roomInfo"], [_mobx.observable, 1, "userName"], [_mobx.observable, 1, "inviteLink"], [_mobx.observable, 1, "isShowMeetingDetailPortal"], [_mobx.observable, 1, "meetingDetailPortalLeft"], [_mobx.observable, 1, "meetingDetailPortalTop"], [_mobx.observable, 1, "remoteUsers"], [_mobx.observable, 1, "hasAssignHostBeforeLeavingPermission"], [_mobx.observable, 1, "isPstnUser"], [_mobx.observable, 1, "hasEndRoomPermission"], [_mobx.observable, 1, "isLocked"], [_mobx.observable, 1, "hiddenShareActionNav"], [_setHiddenShareActionNavDecs, 18, "setHiddenShareActionNav"], [_initControlBarDecs, 18, "initControlBar"], [_mobx.computed, 3, "password"], [_mobx.computed, 3, "hasSecurityPermission"], [_updateCurrentShareContentDecs, 18, "updateCurrentShareContent"], [_setLiveStreamingStateDecs, 18, "setLiveStreamingState"], [_setRoomInfoDecs, 18, "setRoomInfo"], [_setStartScreenSharePermissionDecs, 18, "setStartScreenSharePermission"], [_setPermissionToControlAllowSendAllDecs, 18, "setPermissionToControlAllowSendAll"], [_setStartAudioPermissionDecs, 18, "setStartAudioPermission"], [_setChangeNamePermissionDecs, 18, "setChangeNamePermission"], [_setStartVideoPermissionDecs, 18, "setStartVideoPermission"], [_setLockRoomPermissionDecs, 18, "setLockRoomPermission"], [_setCloudRecordingStateDecs, 18, "setCloudRecordingState"], [_decorator.bound, 2, "setApplicationWindows"], [_setLocalUserRoleDecs, 18, "setLocalUserRole"], [_setShareWithAudioStateDecs, 18, "setShareWithAudioState"], [_setShareWithAudioStateOnlyDecs, 18, "setShareWithAudioStateOnly"], [_createNewShareDecs, 18, "createNewShare"], [_handlerStopShareDecs, 18, "handlerStopShare"], [_setShareAudioProcessingChannelDecs, 18, "setShareAudioProcessingChannel"], [_muteLocalAudioDecs, 18, "muteLocalAudio"], [_setCurrentMicrophoneIdDecs, 18, "setCurrentMicrophoneId"], [_setCurrentSpeakerIdDecs, 18, "setCurrentSpeakerId"], [_setMicrophoneListDecs, 18, "setMicrophoneList"], [_setSpeakerListDecs, 18, "setSpeakerList"], [_setLocalAudioStateDecs, 18, "setLocalAudioState"], [_setConnectTypeDecs, 18, "setConnectType"], [_setPhoneMicEnabledDecs, 18, "setPhoneMicEnabled"], [_handlerOpenAudioSettingDecs, 18, "handlerOpenAudioSetting"], [_handlerMicrophoneDeviceChangeDecs, 18, "handlerMicrophoneDeviceChange"], [_handlerSpeakerDeviceChangeDecs, 18, "handlerSpeakerDeviceChange"], [_muteLocalVideoDecs, 18, "muteLocalVideo"], [_setLocalAudioVolumeDecs, 18, "setLocalAudioVolume"], [_setCurrentCameraIdDecs, 18, "setCurrentCameraId"], [_setCameraListDecs, 18, "setCameraList"], [_setLocalVideoStateDecs, 18, "setLocalVideoState"], [_handlerCameraDeviceChangeDecs, 18, "handlerCameraDeviceChange"], [_setIsHostDecs, 18, "setIsHost"], [_setShowSecurityDecs, 18, "setShowSecurity"], [_setAllowChangeSelfNameDecs, 18, "setAllowChangeSelfName"], [_decorator.bound, 2, "updateAllowChangeSelfName"], [_setAllowChatDecs, 18, "setAllowChat"], [_decorator.bound, 2, "updateAllowChat"], [_setAllowJoinWithMuteAudioDecs, 18, "setAllowJoinWithMuteAudio"], [_decorator.bound, 2, "updateAllowJoinWithMuteAudio"], [_setAllowShareScreenDecs, 18, "setAllowShareScreen"], [_decorator.bound, 2, "updateAllowShareScreen"], [_setBoardWriteEnabledDecs, 18, "setBoardWriteEnabled"], [_updateBoardWriteEnabledDecs, 18, "updateBoardWriteEnabled"], [_setHasAllowWriteBoardPermissionDecs, 18, "setHasAllowWriteBoardPermission"], [_setAllowUnmuteSelfVideoDecs, 18, "setAllowUnmuteSelfVideo"], [_decorator.bound, 2, "updateAllowUnmuteSelfVideo"], [_setAllowUnmuteSelfAudioDecs, 18, "setAllowUnmuteSelfAudio"], [_decorator.bound, 2, "updateAllowUnmuteSelfAudio"], [_setLockRoomEnabledDecs, 18, "setLockRoomEnabled"], [_decorator.bound, 2, "updateLockRoomEnabled"], [_setWaitingRoomEnabledDecs, 18, "setWaitingRoomEnabled"], [_decorator.bound, 2, "setWaterMarkLineType"], [_decorator.bound, 2, "setAllowWaterMark"], [_setIsMultiDecs, 18, "setIsMulti"], [_setWaterMarkEnabledDecs, 18, "setWaterMarkEnabled"], [_setHasWatermarkDisablePermissionDecs, 18, "setHasWatermarkDisablePermission"], [_setHasWatermarkEnablePermissionDecs, 18, "setHasWatermarkEnablePermission"], [_mobx.action, 2, "setHasStartCloudRecordingPermission"], [_mobx.action, 2, "setHasWaitingRoomPermission"], [_mobx.action, 2, "setHasGetLiveStreamingUrlPermission"], [_mobx.action, 2, "setHasStopLiveStreamingPermission"], [_mobx.action, 2, "setHasStartLiveStreamingPermission"], [_decorator.bound, 2, "updateWaitingRoomEnabled"], [_handleMoreClickDecs, 18, "handleMoreClick"], [_decorator.bound, 2, "startCloudRecording"], [_decorator.bound, 2, "pauseCloudRecording"], [_decorator.bound, 2, "resumeCloudRecording"], [_decorator.bound, 2, "stopCloudRecording"], [_decorator.bound, 2, "getCoordinate"], [_decorator.bound, 2, "fetchLeavingRoomPropsAfterInit"], [_setShowMeetingDetailPortalDecs, 18, "setShowMeetingDetailPortal"], [_setMeetingDetailPortalPositionDecs, 18, "setMeetingDetailPortalPosition"], [_setRemoteUsersDecs, 18, "setRemoteUsers"], [_setHasAssignHostBeforeLeavingPermissionDecs, 18, "setHasAssignHostBeforeLeavingPermission"], [_setIsPstnUserDecs, 18, "setIsPstnUser"], [_setHasEndRoomPermissionDecs, 18, "setHasEndRoomPermission"], [_setIsLockedDecs, 18, "setIsLocked"], [_sendLeaveDecs, 18, "sendLeave"], [_keepPhoneAudioConnectionDecs, 18, "keepPhoneAudioConnection"], [_sendEndDecs, 18, "sendEnd"], [_sendAssignDecs, 18, "sendAssign"]], []).e, 65);
1250
+ var _applyDecs$e = (0, _slicedToArray2["default"])(_applyDecs(_ControlBarStore, [[_mobx.observable, 1, "shareWithAudio"], [_mobx.observable, 1, "shareAudioProcessingChannel"], [_mobx.observable, 1, "currentShareId"], [_mobx.observable, 1, "currentShareType"], [_mobx.observable, 1, "isMuteAudio"], [_mobx.observable, 1, "isMuteVideo"], [_mobx.observable, 1, "currentCameraId"], [_mobx.observable, 1, "currentMicrophoneId"], [_mobx.observable, 1, "currentSpeakerId"], [_mobx.observable, 1, "cameraList"], [_mobx.observable, 1, "microphoneList"], [_mobx.observable, 1, "speakerList"], [_mobx.observable, 1, "localAudioVolume"], [_mobx.observable, 1, "connectType"], [_mobx.observable, 1, "cloudRecordingState"], [_mobx.observable, 1, "localUserRole"], [_mobx.observable, 1, "allowChangeSelfName"], [_mobx.observable, 1, "allowChat"], [_mobx.observable, 1, "allowJoinWithMuteAudio"], [_mobx.observable, 1, "allowShareScreen"], [_mobx.observable, 1, "allowUnmuteSelfVideo"], [_mobx.observable, 1, "allowUnmuteSelfAudio"], [_mobx.observable, 1, "isLockRoomEnabled"], [_mobx.observable, 1, "isWaitingRoomEnabled"], [_mobx.observable, 1, "showSecurity"], [_mobx.observable, 1, "isHost"], [_mobx.observable, 1, "hasEnableStartScreenSharePermission"], [_mobx.observable, 1, "hasPermissionToControlAllowSendAll"], [_mobx.observable, 1, "hasEnableStartAudioPermission"], [_mobx.observable, 1, "hasEnableChangeNamePermission"], [_mobx.observable, 1, "hasEnableStartVideoPermission"], [_mobx.observable, 1, "hasLockRoomPermission"], [_mobx.observable, 1, "roomDuration"], [_mobx.observable, 1, "startTime"], [_mobx.observable, 1, "videoSteamingUrl"], [_mobx.observable, 1, "videoStreamingKey"], [_mobx.observable, 1, "playUrl"], [_mobx.observable, 1, "isStartError"], [_mobx.observable, 1, "liveStreamingState"], [_mobx.observable, 1, "hasStartCloudRecordingPermission"], [_mobx.observable, 1, "hasGetLiveStreamingUrlPermission"], [_mobx.observable, 1, "hasStopLiveStreamingPermission"], [_mobx.observable, 1, "hasStartLiveStreamingPermission"], [_mobx.observable, 1, "allApplicationWindows"], [_mobx.observable, 1, "phoneMicEnabled"], [_initControlBarDecs, 18, "initControlBar"], [_mobx.computed, 3, "hasSecurityPermission"], [_updateCurrentShareContentDecs, 18, "updateCurrentShareContent"], [_setLiveStreamingStateDecs, 18, "setLiveStreamingState"], [_setStartScreenSharePermissionDecs, 18, "setStartScreenSharePermission"], [_setPermissionToControlAllowSendAllDecs, 18, "setPermissionToControlAllowSendAll"], [_setStartAudioPermissionDecs, 18, "setStartAudioPermission"], [_setChangeNamePermissionDecs, 18, "setChangeNamePermission"], [_setStartVideoPermissionDecs, 18, "setStartVideoPermission"], [_setLockRoomPermissionDecs, 18, "setLockRoomPermission"], [_setCloudRecordingStateDecs, 18, "setCloudRecordingState"], [_decorator.bound, 2, "setApplicationWindows"], [_setLocalUserRoleDecs, 18, "setLocalUserRole"], [_setShareWithAudioStateDecs, 18, "setShareWithAudioState"], [_setShareWithAudioStateOnlyDecs, 18, "setShareWithAudioStateOnly"], [_createNewShareDecs, 18, "createNewShare"], [_handlerStopShareDecs, 18, "handlerStopShare"], [_setShareAudioProcessingChannelDecs, 18, "setShareAudioProcessingChannel"], [_muteLocalAudioDecs, 18, "muteLocalAudio"], [_setCurrentMicrophoneIdDecs, 18, "setCurrentMicrophoneId"], [_setCurrentSpeakerIdDecs, 18, "setCurrentSpeakerId"], [_setMicrophoneListDecs, 18, "setMicrophoneList"], [_setSpeakerListDecs, 18, "setSpeakerList"], [_setLocalAudioStateDecs, 18, "setLocalAudioState"], [_setConnectTypeDecs, 18, "setConnectType"], [_setPhoneMicEnabledDecs, 18, "setPhoneMicEnabled"], [_handlerOpenAudioSettingDecs, 18, "handlerOpenAudioSetting"], [_handlerMicrophoneDeviceChangeDecs, 18, "handlerMicrophoneDeviceChange"], [_handlerSpeakerDeviceChangeDecs, 18, "handlerSpeakerDeviceChange"], [_muteLocalVideoDecs, 18, "muteLocalVideo"], [_setLocalAudioVolumeDecs, 18, "setLocalAudioVolume"], [_setCurrentCameraIdDecs, 18, "setCurrentCameraId"], [_setCameraListDecs, 18, "setCameraList"], [_setLocalVideoStateDecs, 18, "setLocalVideoState"], [_handlerCameraDeviceChangeDecs, 18, "handlerCameraDeviceChange"], [_setIsHostDecs, 18, "setIsHost"], [_setShowSecurityDecs, 18, "setShowSecurity"], [_setAllowChangeSelfNameDecs, 18, "setAllowChangeSelfName"], [_decorator.bound, 2, "updateAllowChangeSelfName"], [_setAllowChatDecs, 18, "setAllowChat"], [_decorator.bound, 2, "updateAllowChat"], [_setAllowJoinWithMuteAudioDecs, 18, "setAllowJoinWithMuteAudio"], [_decorator.bound, 2, "updateAllowJoinWithMuteAudio"], [_setAllowShareScreenDecs, 18, "setAllowShareScreen"], [_decorator.bound, 2, "updateAllowShareScreen"], [_setAllowUnmuteSelfVideoDecs, 18, "setAllowUnmuteSelfVideo"], [_decorator.bound, 2, "updateAllowUnmuteSelfVideo"], [_setAllowUnmuteSelfAudioDecs, 18, "setAllowUnmuteSelfAudio"], [_decorator.bound, 2, "updateAllowUnmuteSelfAudio"], [_setLockRoomEnabledDecs, 18, "setLockRoomEnabled"], [_decorator.bound, 2, "updateLockRoomEnabled"], [_setWaitingRoomEnabledDecs, 18, "setWaitingRoomEnabled"], [_mobx.action, 2, "setHasStartCloudRecordingPermission"], [_mobx.action, 2, "setHasGetLiveStreamingUrlPermission"], [_mobx.action, 2, "setHasStopLiveStreamingPermission"], [_mobx.action, 2, "setHasStartLiveStreamingPermission"], [_decorator.bound, 2, "updateWaitingRoomEnabled"], [_handleMoreClickDecs, 18, "handleMoreClick"], [_decorator.bound, 2, "startCloudRecording"], [_decorator.bound, 2, "pauseCloudRecording"], [_decorator.bound, 2, "resumeCloudRecording"], [_decorator.bound, 2, "stopCloudRecording"], [_decorator.bound, 2, "getCoordinate"]], []).e, 46);
1614
1251
  _init_shareWithAudio = _applyDecs$e[0];
1615
1252
  _init_shareAudioProcessingChannel = _applyDecs$e[1];
1616
1253
  _init_currentShareId = _applyDecs$e[2];
@@ -1631,48 +1268,29 @@ _init_allowChangeSelfName = _applyDecs$e[16];
1631
1268
  _init_allowChat = _applyDecs$e[17];
1632
1269
  _init_allowJoinWithMuteAudio = _applyDecs$e[18];
1633
1270
  _init_allowShareScreen = _applyDecs$e[19];
1634
- _init_allowBoardWrite = _applyDecs$e[20];
1635
- _init_allowUnmuteSelfVideo = _applyDecs$e[21];
1636
- _init_allowUnmuteSelfAudio = _applyDecs$e[22];
1637
- _init_isLockRoomEnabled = _applyDecs$e[23];
1638
- _init_isWaitingRoomEnabled = _applyDecs$e[24];
1639
- _init_isWaterMarkEnabled = _applyDecs$e[25];
1640
- _init_showSecurity = _applyDecs$e[26];
1641
- _init_isHost = _applyDecs$e[27];
1642
- _init_hasEnableStartScreenSharePermission = _applyDecs$e[28];
1643
- _init_hasPermissionToControlAllowSendAll = _applyDecs$e[29];
1644
- _init_hasEnableStartAudioPermission = _applyDecs$e[30];
1645
- _init_hasEnableChangeNamePermission = _applyDecs$e[31];
1646
- _init_hasEnableStartVideoPermission = _applyDecs$e[32];
1647
- _init_hasLockRoomPermission = _applyDecs$e[33];
1648
- _init_hasAllowWriteBoardPermission = _applyDecs$e[34];
1649
- _init_roomDuration = _applyDecs$e[35];
1650
- _init_startTime = _applyDecs$e[36];
1651
- _init_videoSteamingUrl = _applyDecs$e[37];
1652
- _init_videoStreamingKey = _applyDecs$e[38];
1653
- _init_playUrl = _applyDecs$e[39];
1654
- _init_isStartError = _applyDecs$e[40];
1655
- _init_liveStreamingState = _applyDecs$e[41];
1656
- _init_hasStartCloudRecordingPermission = _applyDecs$e[42];
1657
- _init_hasGetLiveStreamingUrlPermission = _applyDecs$e[43];
1658
- _init_hasStopLiveStreamingPermission = _applyDecs$e[44];
1659
- _init_hasStartLiveStreamingPermission = _applyDecs$e[45];
1660
- _init_hasWaitingRoomPermission = _applyDecs$e[46];
1661
- _init_hasWatermarkDisablePermission = _applyDecs$e[47];
1662
- _init_hasWatermarkEnablePermission = _applyDecs$e[48];
1663
- _init_allApplicationWindows = _applyDecs$e[49];
1664
- _init_phoneMicEnabled = _applyDecs$e[50];
1665
- _init_isMulti = _applyDecs$e[51];
1666
- _init_roomInfo = _applyDecs$e[52];
1667
- _init_userName = _applyDecs$e[53];
1668
- _init_inviteLink = _applyDecs$e[54];
1669
- _init_isShowMeetingDetailPortal = _applyDecs$e[55];
1670
- _init_meetingDetailPortalLeft = _applyDecs$e[56];
1671
- _init_meetingDetailPortalTop = _applyDecs$e[57];
1672
- _init_remoteUsers = _applyDecs$e[58];
1673
- _init_hasAssignHostBeforeLeavingPermission = _applyDecs$e[59];
1674
- _init_isPstnUser = _applyDecs$e[60];
1675
- _init_hasEndRoomPermission = _applyDecs$e[61];
1676
- _init_isLocked = _applyDecs$e[62];
1677
- _init_hiddenShareActionNav = _applyDecs$e[63];
1678
- _initProto = _applyDecs$e[64];
1271
+ _init_allowUnmuteSelfVideo = _applyDecs$e[20];
1272
+ _init_allowUnmuteSelfAudio = _applyDecs$e[21];
1273
+ _init_isLockRoomEnabled = _applyDecs$e[22];
1274
+ _init_isWaitingRoomEnabled = _applyDecs$e[23];
1275
+ _init_showSecurity = _applyDecs$e[24];
1276
+ _init_isHost = _applyDecs$e[25];
1277
+ _init_hasEnableStartScreenSharePermission = _applyDecs$e[26];
1278
+ _init_hasPermissionToControlAllowSendAll = _applyDecs$e[27];
1279
+ _init_hasEnableStartAudioPermission = _applyDecs$e[28];
1280
+ _init_hasEnableChangeNamePermission = _applyDecs$e[29];
1281
+ _init_hasEnableStartVideoPermission = _applyDecs$e[30];
1282
+ _init_hasLockRoomPermission = _applyDecs$e[31];
1283
+ _init_roomDuration = _applyDecs$e[32];
1284
+ _init_startTime = _applyDecs$e[33];
1285
+ _init_videoSteamingUrl = _applyDecs$e[34];
1286
+ _init_videoStreamingKey = _applyDecs$e[35];
1287
+ _init_playUrl = _applyDecs$e[36];
1288
+ _init_isStartError = _applyDecs$e[37];
1289
+ _init_liveStreamingState = _applyDecs$e[38];
1290
+ _init_hasStartCloudRecordingPermission = _applyDecs$e[39];
1291
+ _init_hasGetLiveStreamingUrlPermission = _applyDecs$e[40];
1292
+ _init_hasStopLiveStreamingPermission = _applyDecs$e[41];
1293
+ _init_hasStartLiveStreamingPermission = _applyDecs$e[42];
1294
+ _init_allApplicationWindows = _applyDecs$e[43];
1295
+ _init_phoneMicEnabled = _applyDecs$e[44];
1296
+ _initProto = _applyDecs$e[45];