fcr-ui-scene 3.1.1 → 3.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (372) hide show
  1. package/installer/icons/favicon.ico +0 -0
  2. package/installer/icons/favicon.png +0 -0
  3. package/installer/mac/entitlements.mac.plist +16 -0
  4. package/lib/base.d.ts +0 -1
  5. package/lib/base.js +16 -0
  6. package/lib/common/device-store.d.ts +4 -5
  7. package/lib/common/device-store.js +178 -86
  8. package/lib/common/device-stream-store.d.ts +3 -2
  9. package/lib/common/device-stream-store.js +94 -72
  10. package/lib/common/event-store.d.ts +20 -3
  11. package/lib/common/event-store.js +43 -5
  12. package/lib/common/security-store.d.ts +16 -16
  13. package/lib/common/security-store.js +278 -124
  14. package/lib/electron/app.js +13 -5
  15. package/lib/electron/bootstrap-dev.d.ts +1 -0
  16. package/lib/electron/bootstrap-dev.js +51 -0
  17. package/lib/electron/bootstrap-sdk.d.ts +1 -0
  18. package/lib/electron/bootstrap-sdk.js +56 -0
  19. package/lib/electron/bootstrap.d.ts +1 -0
  20. package/lib/electron/bootstrap.js +56 -0
  21. package/lib/electron/default-options.js +1 -1
  22. package/lib/electron/dev.d.ts +1 -0
  23. package/lib/electron/dev.js +51 -0
  24. package/lib/electron/injections.d.ts +3 -4
  25. package/lib/electron/injections.js +46 -33
  26. package/lib/electron/logger.d.ts +6 -0
  27. package/lib/electron/logger.js +66 -0
  28. package/lib/electron/main.js +15 -11
  29. package/lib/electron/plugins/meeting-state.d.ts +2 -0
  30. package/lib/electron/plugins/meeting-state.js +39 -0
  31. package/lib/electron/preload.js +2 -1
  32. package/lib/electron/tools.js +9 -0
  33. package/lib/electron/window.d.ts +1 -1
  34. package/lib/electron/window.js +14 -2
  35. package/lib/fragments/control-bar/context.d.ts +0 -1
  36. package/lib/fragments/control-bar/control-bar-store.d.ts +34 -1
  37. package/lib/fragments/control-bar/control-bar-store.js +394 -81
  38. package/lib/fragments/control-bar/device/index.js +12 -3
  39. package/lib/fragments/control-bar/index.css +15 -10
  40. package/lib/fragments/control-bar/index.js +19 -1
  41. package/lib/fragments/control-bar/meeting-details/meeting-detail.css +109 -0
  42. package/lib/fragments/control-bar/meeting-details/meeting-details-portal.d.ts +3 -0
  43. package/lib/fragments/control-bar/meeting-details/meeting-details-portal.js +60 -0
  44. package/lib/fragments/control-bar/meeting-details/meeting-details.d.ts +2 -0
  45. package/lib/fragments/control-bar/meeting-details/meeting-details.js +179 -0
  46. package/lib/fragments/control-bar/more-actions/index.css +53 -0
  47. package/lib/fragments/control-bar/more-actions/index.js +77 -37
  48. package/lib/fragments/control-bar/security-content/index.css +10 -0
  49. package/lib/fragments/control-bar/security-content/index.js +43 -18
  50. package/lib/fragments/control-bar/view.js +8 -2
  51. package/lib/fragments/live-streaming/context.d.ts +0 -1
  52. package/lib/fragments/live-streaming/store.js +27 -17
  53. package/lib/fragments/share-screen-selection/context.d.ts +0 -1
  54. package/lib/fragments/share-screen-selection/selection-store.d.ts +0 -1
  55. package/lib/fragments/share-screen-selection/selection-store.js +34 -33
  56. package/lib/fragments/share-screen-selection/view.js +7 -0
  57. package/lib/fragments/toolbar/components/color-picker/components/color.js +2 -0
  58. package/lib/fragments/toolbar/components/color-picker/components/panel.js +4 -0
  59. package/lib/fragments/toolbar/components/color-picker/components/picker.js +2 -0
  60. package/lib/fragments/toolbar/components/color-picker/index.js +5 -1
  61. package/lib/fragments/toolbar/components/color-picker.js +3 -1
  62. package/lib/fragments/toolbar/components/eraser-picker.js +4 -13
  63. package/lib/fragments/toolbar/components/extension-toolbar-item.js +5 -0
  64. package/lib/fragments/toolbar/components/extra-tool-picker.js +4 -0
  65. package/lib/fragments/toolbar/components/pen-picker.js +2 -0
  66. package/lib/fragments/toolbar/components/screen-capture-picker.js +2 -0
  67. package/lib/fragments/toolbar/components/shape-picker.js +2 -0
  68. package/lib/fragments/toolbar/hooks.d.ts +1 -1
  69. package/lib/fragments/toolbar/hooks.js +13 -8
  70. package/lib/fragments/toolbar/store.d.ts +4 -4
  71. package/lib/fragments/toolbar/store.js +20 -2
  72. package/lib/fragments/toolbar/view.js +2 -0
  73. package/lib/global.d.ts +1 -0
  74. package/lib/hooks/meeting-time.d.ts +2 -2
  75. package/lib/login-confirm-dialog.d.ts +12 -0
  76. package/lib/login-confirm-dialog.js +80 -0
  77. package/lib/modules/action-bar/action-bar-collapes-items.js +14 -5
  78. package/lib/modules/action-bar/chat/index.js +6 -6
  79. package/lib/modules/action-bar/context.d.ts +0 -1
  80. package/lib/modules/action-bar/device/index.css +7 -2
  81. package/lib/modules/action-bar/device/index.d.ts +2 -2
  82. package/lib/modules/action-bar/device/index.js +6 -4
  83. package/lib/modules/action-bar/index.css +63 -12
  84. package/lib/modules/action-bar/index.d.ts +3 -2
  85. package/lib/modules/action-bar/index.dev.js +8 -7
  86. package/lib/modules/action-bar/index.js +21 -0
  87. package/lib/modules/action-bar/item-placement.d.ts +1 -2
  88. package/lib/modules/action-bar/item.js +5 -0
  89. package/lib/modules/action-bar/leave/assign-host.d.ts +3 -1
  90. package/lib/modules/action-bar/leave/assign-host.js +7 -7
  91. package/lib/modules/action-bar/leave/index.js +35 -7
  92. package/lib/modules/action-bar/leave/leave-meeting.d.ts +11 -1
  93. package/lib/modules/action-bar/leave/leave-meeting.js +25 -16
  94. package/lib/modules/action-bar/more/poppover-content.d.ts +0 -1
  95. package/lib/modules/action-bar/more/poppover-content.js +14 -4
  96. package/lib/modules/action-bar/participants/index.css +12 -0
  97. package/lib/modules/action-bar/participants/index.js +21 -14
  98. package/lib/modules/action-bar/screen-share/index.js +5 -1
  99. package/lib/modules/action-bar/screen-share/submenu.js +17 -22
  100. package/lib/modules/action-bar/security/drop-menu.js +124 -14
  101. package/lib/modules/action-bar/security/index.js +1 -1
  102. package/lib/modules/action-bar/settings/index.js +1 -1
  103. package/lib/modules/action-bar/store.d.ts +45 -21
  104. package/lib/modules/action-bar/store.js +544 -134
  105. package/lib/modules/action-bar/view.js +65 -42
  106. package/lib/modules/audio-stream/index.js +12 -6
  107. package/lib/modules/chat/chat-bar/index.js +46 -27
  108. package/lib/modules/chat/chat-select/index.css +19 -4
  109. package/lib/modules/chat/chat-select/index.d.ts +0 -1
  110. package/lib/modules/chat/chat-select/index.js +29 -3
  111. package/lib/modules/chat/chat.d.ts +2 -3
  112. package/lib/modules/chat/chat.js +210 -107
  113. package/lib/modules/chat/contex.d.ts +0 -1
  114. package/lib/modules/chat/demo-wrapper.d.ts +0 -1
  115. package/lib/modules/chat/index.css +49 -0
  116. package/lib/modules/chat/index.d.ts +3 -3
  117. package/lib/modules/chat/index.dev.js +4 -4
  118. package/lib/modules/chat/index.js +32 -11
  119. package/lib/modules/chat/message-list.js +81 -49
  120. package/lib/modules/chat/store.d.ts +50 -4
  121. package/lib/modules/chat/store.js +303 -124
  122. package/lib/modules/chat/util.js +1 -1
  123. package/lib/modules/connection-gateway/components/phone/components/callinfo/index.js +2 -0
  124. package/lib/modules/connection-gateway/components/phone/index.js +2 -0
  125. package/lib/modules/connection-gateway/index.d.ts +3 -2
  126. package/lib/modules/connection-gateway/index.js +2 -0
  127. package/lib/modules/connection-gateway/store.d.ts +6 -4
  128. package/lib/modules/connection-gateway/store.js +46 -15
  129. package/lib/modules/device-pretest/audio-preview/microphone-detection.d.ts +1 -0
  130. package/lib/modules/device-pretest/audio-preview/microphone-detection.js +3 -2
  131. package/lib/modules/device-pretest/audio-preview/speaker-control.d.ts +0 -1
  132. package/lib/modules/device-pretest/audio-preview/speaker-control.js +1 -1
  133. package/lib/modules/device-pretest/context.d.ts +0 -1
  134. package/lib/modules/device-pretest/index.css +0 -4
  135. package/lib/modules/device-pretest/index.d.ts +0 -1
  136. package/lib/modules/device-pretest/index.js +2 -1
  137. package/lib/modules/device-pretest/settings/beauty.js +19 -6
  138. package/lib/modules/device-pretest/settings/video-effect.d.ts +0 -1
  139. package/lib/modules/device-pretest/settings/video-settings-basic.js +1 -0
  140. package/lib/modules/device-pretest/settings/virtual-background-setting.js +2 -0
  141. package/lib/modules/device-pretest/store.js +34 -19
  142. package/lib/modules/dialog/components/chat/electron.js +3 -2
  143. package/lib/modules/dialog/components/chat/index.js +1 -1
  144. package/lib/modules/dialog/components/confirm/electron.js +7 -5
  145. package/lib/modules/dialog/components/confirm/index.js +16 -2
  146. package/lib/modules/dialog/components/connection-gateway/electron.js +4 -2
  147. package/lib/modules/dialog/components/connection-gateway/index.css +0 -2
  148. package/lib/modules/dialog/components/device-setting/electron.d.ts +2 -0
  149. package/lib/modules/dialog/components/device-setting/electron.js +74 -0
  150. package/lib/modules/dialog/components/device-setting/index.css +26 -0
  151. package/lib/modules/dialog/components/device-setting/index.d.ts +4 -0
  152. package/lib/modules/dialog/components/device-setting/index.js +60 -0
  153. package/lib/modules/dialog/components/operation-waiting-room/electron.d.ts +5 -0
  154. package/lib/modules/dialog/components/operation-waiting-room/electron.js +89 -0
  155. package/lib/modules/dialog/components/operation-waiting-room/index.css +44 -0
  156. package/lib/modules/dialog/components/operation-waiting-room/index.d.ts +5 -0
  157. package/lib/modules/dialog/components/operation-waiting-room/index.js +156 -0
  158. package/lib/modules/dialog/components/participant/electron.js +8 -2
  159. package/lib/modules/dialog/components/remove-admit-waiting-room/electron.d.ts +5 -0
  160. package/lib/modules/dialog/components/remove-admit-waiting-room/electron.js +89 -0
  161. package/lib/modules/dialog/components/remove-admit-waiting-room/index.css +50 -0
  162. package/lib/modules/dialog/components/remove-admit-waiting-room/index.d.ts +5 -0
  163. package/lib/modules/dialog/components/remove-admit-waiting-room/index.js +90 -0
  164. package/lib/modules/dialog/components/share-screen-selection/index.js +1 -1
  165. package/lib/modules/dialog/components/whiteboard/index.js +2 -1
  166. package/lib/modules/dialog/context.d.ts +0 -1
  167. package/lib/modules/dialog/dialogs.d.ts +0 -2
  168. package/lib/modules/dialog/dialogs.js +62 -103
  169. package/lib/modules/dialog/index.css +7 -6
  170. package/lib/modules/dialog/index.d.ts +1 -1
  171. package/lib/modules/dialog/index.js +17 -0
  172. package/lib/modules/dialog/store.d.ts +6 -2
  173. package/lib/modules/dialog/store.js +52 -9
  174. package/lib/modules/dialog/view.js +2 -0
  175. package/lib/modules/event-notification/context.d.ts +2 -0
  176. package/lib/modules/event-notification/context.js +9 -0
  177. package/lib/modules/event-notification/index.css +58 -0
  178. package/lib/modules/event-notification/index.d.ts +13 -0
  179. package/lib/modules/event-notification/index.js +48 -0
  180. package/lib/modules/event-notification/store.d.ts +17 -0
  181. package/lib/modules/event-notification/store.js +133 -0
  182. package/lib/modules/event-notification/view.d.ts +5 -0
  183. package/lib/modules/event-notification/view.js +114 -0
  184. package/lib/modules/event-toast/context.d.ts +0 -1
  185. package/lib/modules/event-toast/store.js +16 -0
  186. package/lib/modules/invite/context.d.ts +0 -1
  187. package/lib/modules/invite/index.css +4 -4
  188. package/lib/modules/invite/index.d.ts +2 -2
  189. package/lib/modules/invite/pstn-invite.js +4 -1
  190. package/lib/modules/invite/store.d.ts +2 -2
  191. package/lib/modules/invite/store.js +27 -7
  192. package/lib/modules/invite/voip-invite.d.ts +0 -1
  193. package/lib/modules/invite/voip-invite.js +1 -1
  194. package/lib/modules/layout/components/Aside.d.ts +0 -1
  195. package/lib/modules/layout/components/Aside.js +4 -1
  196. package/lib/modules/layout/components/Carousel.js +6 -5
  197. package/lib/modules/layout/components/Gallery.js +16 -9
  198. package/lib/modules/layout/components/Layout.js +82 -57
  199. package/lib/modules/layout/components/index.css +42 -5
  200. package/lib/modules/layout/components/index.js +3 -0
  201. package/lib/modules/layout/context.d.ts +0 -1
  202. package/lib/modules/layout/index.css +30 -0
  203. package/lib/modules/layout/index.dev.js +11 -11
  204. package/lib/modules/layout/index.js +0 -6
  205. package/lib/modules/layout/member-window/index.css +5 -5
  206. package/lib/modules/layout/member-window/index.d.ts +7 -7
  207. package/lib/modules/layout/member-window/index.js +59 -13
  208. package/lib/modules/layout/store.d.ts +61 -50
  209. package/lib/modules/layout/store.js +517 -342
  210. package/lib/modules/layout/type.d.ts +2 -1
  211. package/lib/modules/layout/video-window-datasource.d.ts +14 -8
  212. package/lib/modules/layout/video-window-datasource.js +129 -78
  213. package/lib/modules/live-streaming/context.d.ts +0 -1
  214. package/lib/modules/live-streaming/index.d.ts +2 -2
  215. package/lib/modules/live-streaming/index.dev.js +5 -4
  216. package/lib/modules/live-streaming/store.d.ts +2 -2
  217. package/lib/modules/live-streaming/store.js +32 -11
  218. package/lib/modules/participant/attendee/index.d.ts +12 -3
  219. package/lib/modules/participant/attendee/index.js +142 -30
  220. package/lib/modules/participant/context.d.ts +0 -1
  221. package/lib/modules/participant/index.css +20 -0
  222. package/lib/modules/participant/index.d.ts +5 -2
  223. package/lib/modules/participant/index.dev.js +14 -12
  224. package/lib/modules/participant/index.js +27 -0
  225. package/lib/modules/participant/member-list-data-source.d.ts +3 -3
  226. package/lib/modules/participant/member-list-data-source.js +29 -3
  227. package/lib/modules/participant/room-control-drop-menu/index.css +37 -0
  228. package/lib/modules/participant/room-control-drop-menu/index.js +35 -1
  229. package/lib/modules/participant/store.d.ts +59 -34
  230. package/lib/modules/participant/store.js +541 -222
  231. package/lib/modules/participant/view.d.ts +6 -6
  232. package/lib/modules/participant/view.js +138 -34
  233. package/lib/modules/setting/audio-settings/audio-settings.js +16 -12
  234. package/lib/modules/setting/audio-settings/index.css +2 -2
  235. package/lib/modules/setting/context.d.ts +0 -1
  236. package/lib/modules/setting/general-settings/general-settings.js +2 -1
  237. package/lib/modules/setting/general-settings/index.css +2 -2
  238. package/lib/modules/setting/index.css +1 -5
  239. package/lib/modules/setting/index.d.ts +2 -2
  240. package/lib/modules/setting/index.dev.js +14 -12
  241. package/lib/modules/setting/index.js +16 -0
  242. package/lib/modules/setting/minutes-settings/index.css +65 -0
  243. package/lib/modules/setting/minutes-settings/minutes-settings.d.ts +4 -0
  244. package/lib/modules/setting/minutes-settings/minutes-settings.js +159 -0
  245. package/lib/modules/setting/state/index.css +0 -4
  246. package/lib/modules/setting/state/index.js +11 -1
  247. package/lib/modules/setting/storage-settings/storage-settings.js +1 -1
  248. package/lib/modules/setting/store.d.ts +7 -5
  249. package/lib/modules/setting/store.js +69 -46
  250. package/lib/modules/setting/translate-settings/index.css +45 -0
  251. package/lib/modules/setting/translate-settings/language-select.d.ts +12 -0
  252. package/lib/modules/setting/translate-settings/language-select.js +50 -0
  253. package/lib/modules/setting/translate-settings/translate-settings.d.ts +4 -0
  254. package/lib/modules/setting/translate-settings/translate-settings.js +139 -0
  255. package/lib/modules/setting/video-settings/index.css +15 -6
  256. package/lib/modules/setting/video-settings/video-settings-basic.js +3 -2
  257. package/lib/modules/setting/video-settings/video-settings.js +5 -1
  258. package/lib/modules/setting/view.js +34 -2
  259. package/lib/modules/share-screen/index.d.ts +4 -2
  260. package/lib/modules/share-screen/index.dev.js +17 -14
  261. package/lib/modules/share-screen/index.js +2 -0
  262. package/lib/modules/share-screen/selection/index.css +2 -0
  263. package/lib/modules/share-screen/selection/index.js +44 -6
  264. package/lib/modules/share-screen/share-state-bar/index.css +49 -11
  265. package/lib/modules/share-screen/share-state-bar/index.d.ts +0 -1
  266. package/lib/modules/share-screen/share-state-bar/index.js +51 -20
  267. package/lib/modules/share-screen/store.d.ts +23 -13
  268. package/lib/modules/share-screen/store.js +733 -606
  269. package/lib/modules/state-bar/context.d.ts +0 -1
  270. package/lib/modules/state-bar/index.css +2 -2
  271. package/lib/modules/state-bar/index.d.ts +2 -2
  272. package/lib/modules/state-bar/index.dev.js +12 -10
  273. package/lib/modules/state-bar/layout-config.js +2 -0
  274. package/lib/modules/state-bar/live-streaming-state.js +3 -0
  275. package/lib/modules/state-bar/meeting-detail.css +6 -4
  276. package/lib/modules/state-bar/meeting-details.js +29 -3
  277. package/lib/modules/state-bar/meeting-network-state.css +14 -3
  278. package/lib/modules/state-bar/meeting-network-state.js +10 -4
  279. package/lib/modules/state-bar/recording.js +9 -11
  280. package/lib/modules/state-bar/store.d.ts +7 -5
  281. package/lib/modules/state-bar/store.js +68 -8
  282. package/lib/modules/state-bar/view.js +4 -8
  283. package/lib/modules/video-window/context.d.ts +0 -1
  284. package/lib/modules/video-window/deviceState/index.d.ts +3 -3
  285. package/lib/modules/video-window/index.css +1 -0
  286. package/lib/modules/video-window/members/index.js +7 -4
  287. package/lib/modules/video-window/store.d.ts +5 -4
  288. package/lib/modules/video-window/store.js +49 -17
  289. package/lib/modules/video-window/topControl/index.js +7 -0
  290. package/lib/modules/video-window/view.js +2 -0
  291. package/lib/modules/waiting-room-layout/context.d.ts +2 -0
  292. package/lib/modules/waiting-room-layout/context.js +9 -0
  293. package/lib/modules/waiting-room-layout/index.css +71 -0
  294. package/lib/modules/waiting-room-layout/index.d.ts +8 -0
  295. package/lib/modules/waiting-room-layout/index.js +47 -0
  296. package/lib/modules/waiting-room-layout/store.d.ts +30 -0
  297. package/lib/modules/waiting-room-layout/store.js +189 -0
  298. package/lib/modules/waiting-room-layout/type.d.ts +0 -0
  299. package/lib/modules/waiting-room-layout/type.js +1 -0
  300. package/lib/modules/waiting-room-layout/view.d.ts +3 -0
  301. package/lib/modules/waiting-room-layout/view.js +67 -0
  302. package/lib/modules/whiteboard/app.js +2 -8
  303. package/lib/modules/whiteboard/components/control-bar/index.css +3 -0
  304. package/lib/modules/whiteboard/components/control-bar/store.d.ts +0 -1
  305. package/lib/modules/whiteboard/components/control-bar/store.js +29 -29
  306. package/lib/modules/whiteboard/components/loading/index.js +2 -2
  307. package/lib/modules/whiteboard/components/multi-window/index.js +8 -3
  308. package/lib/modules/whiteboard/components/pagination/store.d.ts +0 -1
  309. package/lib/modules/whiteboard/components/progress/electron.js +3 -2
  310. package/lib/modules/whiteboard/components/progress/style.css +4 -3
  311. package/lib/modules/whiteboard/components/switch-theme/index.css +4 -0
  312. package/lib/modules/whiteboard/components/switch-theme/index.d.ts +2 -1
  313. package/lib/modules/whiteboard/components/switch-theme/index.js +29 -17
  314. package/lib/modules/whiteboard/components/switch-theme/item.d.ts +1 -0
  315. package/lib/modules/whiteboard/components/switch-theme/item.js +11 -2
  316. package/lib/modules/whiteboard/components/switch-theme/libs.d.ts +2 -1
  317. package/lib/modules/whiteboard/components/switch-theme/libs.js +21 -20
  318. package/lib/modules/whiteboard/components/toolbar/components/color-picker/components/panel.js +2 -0
  319. package/lib/modules/whiteboard/components/toolbar/components/color-picker/index.js +3 -1
  320. package/lib/modules/whiteboard/components/toolbar/components/eraser-picker.js +11 -9
  321. package/lib/modules/whiteboard/components/toolbar/components/extra-tool-picker.js +4 -0
  322. package/lib/modules/whiteboard/components/toolbar/components/move-handle.js +5 -0
  323. package/lib/modules/whiteboard/components/toolbar/components/pen-picker.js +2 -0
  324. package/lib/modules/whiteboard/components/toolbar/components/shape-picker.js +18 -12
  325. package/lib/modules/whiteboard/components/toolbar/hooks/index.d.ts +3 -3
  326. package/lib/modules/whiteboard/components/toolbar/hooks/index.js +16 -11
  327. package/lib/modules/whiteboard/components/toolbar/index.js +9 -0
  328. package/lib/modules/whiteboard/components/toolbar/store.d.ts +8 -7
  329. package/lib/modules/whiteboard/components/toolbar/store.js +25 -4
  330. package/lib/modules/whiteboard/context.d.ts +7 -3
  331. package/lib/modules/whiteboard/context.js +6 -4
  332. package/lib/modules/whiteboard/index.d.ts +6 -8
  333. package/lib/modules/whiteboard/index.js +310 -255
  334. package/lib/modules/whiteboard/type.d.ts +4 -12
  335. package/lib/modules/whiteboard/type.js +6 -16
  336. package/lib/modules/whiteboard/utils.d.ts +1 -0
  337. package/lib/modules/whiteboard/utils.js +12 -1
  338. package/lib/plugins/browser-runtime-plugin.js +2 -1
  339. package/lib/plugins/module-dev-plugin.js +12 -10
  340. package/lib/plugins/multi-lang-plugin.d.ts +1 -5
  341. package/lib/plugins/multi-lang-plugin.js +2 -0
  342. package/lib/runtime.d.ts +3 -5
  343. package/lib/translations/enUS.d.ts +590 -0
  344. package/lib/translations/enUS.js +608 -6
  345. package/lib/translations/zhCN.d.ts +588 -0
  346. package/lib/translations/zhCN.js +604 -4
  347. package/lib/type.d.ts +6 -2
  348. package/lib/ui-manager.d.ts +7 -3
  349. package/lib/ui-manager.js +597 -143
  350. package/lib/ui-scene.d.ts +1 -0
  351. package/lib/ui-scene.js +32 -22
  352. package/lib/utilities/board-context.d.ts +0 -1
  353. package/lib/utilities/constant.d.ts +47 -5
  354. package/lib/utilities/constant.js +44 -1
  355. package/lib/utilities/copyText.js +1 -1
  356. package/lib/utilities/extract.js +26 -3
  357. package/lib/utilities/hooks.js +2 -0
  358. package/lib/utilities/parameters.js +2 -2
  359. package/lib/utilities/renderer-event.js +28 -0
  360. package/lib/utilities/renderer.d.ts +1 -0
  361. package/lib/utilities/renderer.js +15 -6
  362. package/lib/utilities/tools.js +5 -2
  363. package/lib/utilities/ui-resources.d.ts +2 -2
  364. package/lib/utilities/ui-resources.js +20 -3
  365. package/lib/utilities/video-track-render-context.d.ts +0 -1
  366. package/package.json +17 -16
  367. package/public/assets/fcr_defaultpage.png +0 -0
  368. package/public/assets/login_confirm.png +0 -0
  369. package/public/index.html +29 -11
  370. package/lib/modules/device-pretest/settings/index.css +0 -15
  371. package/lib/modules/participant/attendee/participants-more-action.d.ts +0 -18
  372. package/lib/modules/participant/attendee/participants-more-action.js +0 -275
@@ -14,6 +14,22 @@ require("core-js/modules/es.map.js");
14
14
  require("core-js/modules/es.object.create.js");
15
15
  require("core-js/modules/es.object.define-property.js");
16
16
  require("core-js/modules/es.object.get-own-property-descriptor.js");
17
+ require("core-js/modules/esnext.function.metadata.js");
18
+ require("core-js/modules/esnext.map.delete-all.js");
19
+ require("core-js/modules/esnext.map.emplace.js");
20
+ require("core-js/modules/esnext.map.every.js");
21
+ require("core-js/modules/esnext.map.filter.js");
22
+ require("core-js/modules/esnext.map.find.js");
23
+ require("core-js/modules/esnext.map.find-key.js");
24
+ require("core-js/modules/esnext.map.includes.js");
25
+ require("core-js/modules/esnext.map.key-of.js");
26
+ require("core-js/modules/esnext.map.map-keys.js");
27
+ require("core-js/modules/esnext.map.map-values.js");
28
+ require("core-js/modules/esnext.map.merge.js");
29
+ require("core-js/modules/esnext.map.reduce.js");
30
+ require("core-js/modules/esnext.map.some.js");
31
+ require("core-js/modules/esnext.map.update.js");
32
+ require("core-js/modules/esnext.symbol.metadata.js");
17
33
  var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
18
34
  var _typeof = require("@babel/runtime/helpers/typeof");
19
35
  Object.defineProperty(exports, "__esModule", {
@@ -29,6 +45,11 @@ require("core-js/modules/es.number.constructor.js");
29
45
  require("core-js/modules/es.object.to-string.js");
30
46
  require("core-js/modules/es.string.iterator.js");
31
47
  require("core-js/modules/es.weak-map.js");
48
+ require("core-js/modules/esnext.async-iterator.find.js");
49
+ require("core-js/modules/esnext.iterator.constructor.js");
50
+ require("core-js/modules/esnext.iterator.find.js");
51
+ require("core-js/modules/esnext.weak-map.delete-all.js");
52
+ require("core-js/modules/esnext.weak-map.emplace.js");
32
53
  require("core-js/modules/web.dom-collections.iterator.js");
33
54
  require("core-js/modules/web.timers.js");
34
55
  var _slicedToArray2 = _interopRequireDefault(require("@babel/runtime/helpers/slicedToArray"));
@@ -47,10 +68,11 @@ var _platform = require("../../utilities/platform");
47
68
  var _i18n = require("agora-ui-foundation/lib/i18n");
48
69
  var _type3 = require("../../modules/action-bar/type");
49
70
  var _logger = require("agora-foundation/lib/logger");
71
+ var _type4 = require("agora-edu-core/lib/room-control/type");
50
72
  var _ControlBarStore;
51
- 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;
52
- function _classPrivateFieldInitSpec(obj, privateMap, value) { _checkPrivateRedeclaration(obj, privateMap); privateMap.set(obj, value); }
53
- function _checkPrivateRedeclaration(obj, privateCollection) { if (privateCollection.has(obj)) { throw new TypeError("Cannot initialize the same private elements twice on an object"); } }
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_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_allApplicationWindows, _init_phoneMicEnabled, _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, _handleMoreClickDecs, _setShowMeetingDetailPortalDecs, _setMeetingDetailPortalPositionDecs, _setRemoteUsersDecs, _setHasAssignHostBeforeLeavingPermissionDecs, _setIsPstnUserDecs, _setHasEndRoomPermissionDecs, _setIsLockedDecs, _sendLeaveDecs, _keepPhoneAudioConnectionDecs, _sendEndDecs, _sendAssignDecs, _ref;
74
+ function _classPrivateFieldInitSpec(e, t, a) { _checkPrivateRedeclaration(e, t), t.set(e, a); }
75
+ function _checkPrivateRedeclaration(e, t) { if (t.has(e)) throw new TypeError("Cannot initialize the same private elements twice on an object"); }
54
76
  function _classPrivateFieldSet(s, a, r) { return s.set(_assertClassBrand(s, a), r), r; }
55
77
  function _classPrivateFieldGet(s, a) { return s.get(_assertClassBrand(s, a)); }
56
78
  function _assertClassBrand(e, t, n) { if ("function" == typeof e ? e === t : e.has(t)) return arguments.length < 3 ? t : n; throw new TypeError("Private element is not present on this object"); }
@@ -104,7 +126,22 @@ var _p = /*#__PURE__*/new WeakMap();
104
126
  var _q = /*#__PURE__*/new WeakMap();
105
127
  var _r = /*#__PURE__*/new WeakMap();
106
128
  var _s = /*#__PURE__*/new WeakMap();
107
- _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");
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
+ _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], _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");
108
145
  var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
109
146
  function ControlBarStore() {
110
147
  (0, _classCallCheck2["default"])(this, ControlBarStore);
@@ -135,31 +172,50 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
135
172
  _classPrivateFieldInitSpec(this, _R, _init_allowChat(this, false));
136
173
  _classPrivateFieldInitSpec(this, _S, _init_allowJoinWithMuteAudio(this, false));
137
174
  _classPrivateFieldInitSpec(this, _T, _init_allowShareScreen(this, false));
138
- _classPrivateFieldInitSpec(this, _U, _init_allowUnmuteSelfVideo(this, false));
139
- _classPrivateFieldInitSpec(this, _V, _init_allowUnmuteSelfAudio(this, false));
140
- _classPrivateFieldInitSpec(this, _W, _init_isLockRoomEnabled(this, false));
141
- _classPrivateFieldInitSpec(this, _X, _init_isWaitingRoomEnabled(this, false));
142
- _classPrivateFieldInitSpec(this, _Y, _init_showSecurity(this, false));
143
- _classPrivateFieldInitSpec(this, _Z, _init_isHost(this, false));
144
- _classPrivateFieldInitSpec(this, _a, _init_hasEnableStartScreenSharePermission(this, false));
145
- _classPrivateFieldInitSpec(this, _b, _init_hasPermissionToControlAllowSendAll(this, false));
146
- _classPrivateFieldInitSpec(this, _c, _init_hasEnableStartAudioPermission(this, false));
147
- _classPrivateFieldInitSpec(this, _d, _init_hasEnableChangeNamePermission(this, false));
148
- _classPrivateFieldInitSpec(this, _e, _init_hasEnableStartVideoPermission(this, false));
149
- _classPrivateFieldInitSpec(this, _f, _init_hasLockRoomPermission(this, false));
150
- _classPrivateFieldInitSpec(this, _g, _init_roomDuration(this, 0));
151
- _classPrivateFieldInitSpec(this, _h, _init_startTime(this, 0));
152
- _classPrivateFieldInitSpec(this, _i, _init_videoSteamingUrl(this, ''));
153
- _classPrivateFieldInitSpec(this, _j, _init_videoStreamingKey(this, ''));
154
- _classPrivateFieldInitSpec(this, _k, _init_playUrl(this, ''));
155
- _classPrivateFieldInitSpec(this, _l, _init_isStartError(this, false));
156
- _classPrivateFieldInitSpec(this, _m, _init_liveStreamingState(this, _type2.FcrLiveStreamingState.STOPPED));
157
- _classPrivateFieldInitSpec(this, _n, _init_hasStartCloudRecordingPermission(this, false));
158
- _classPrivateFieldInitSpec(this, _o, _init_hasGetLiveStreamingUrlPermission(this, false));
159
- _classPrivateFieldInitSpec(this, _p, _init_hasStopLiveStreamingPermission(this, false));
160
- _classPrivateFieldInitSpec(this, _q, _init_hasStartLiveStreamingPermission(this, false));
161
- _classPrivateFieldInitSpec(this, _r, _init_allApplicationWindows(this, []));
162
- _classPrivateFieldInitSpec(this, _s, _init_phoneMicEnabled(this, false));
175
+ _classPrivateFieldInitSpec(this, _U, _init_allowBoardWrite(this, false));
176
+ _classPrivateFieldInitSpec(this, _V, _init_allowUnmuteSelfVideo(this, false));
177
+ _classPrivateFieldInitSpec(this, _W, _init_allowUnmuteSelfAudio(this, false));
178
+ _classPrivateFieldInitSpec(this, _X, _init_isLockRoomEnabled(this, false));
179
+ _classPrivateFieldInitSpec(this, _Y, _init_isWaitingRoomEnabled(this, false));
180
+ _classPrivateFieldInitSpec(this, _Z, _init_showSecurity(this, false));
181
+ _classPrivateFieldInitSpec(this, _a, _init_isHost(this, false));
182
+ _classPrivateFieldInitSpec(this, _b, _init_hasEnableStartScreenSharePermission(this, false));
183
+ _classPrivateFieldInitSpec(this, _c, _init_hasPermissionToControlAllowSendAll(this, false));
184
+ _classPrivateFieldInitSpec(this, _d, _init_hasEnableStartAudioPermission(this, false));
185
+ _classPrivateFieldInitSpec(this, _e, _init_hasEnableChangeNamePermission(this, false));
186
+ _classPrivateFieldInitSpec(this, _f, _init_hasEnableStartVideoPermission(this, false));
187
+ _classPrivateFieldInitSpec(this, _g, _init_hasLockRoomPermission(this, false));
188
+ _classPrivateFieldInitSpec(this, _h, _init_hasAllowWriteBoardPermission(this, false));
189
+ _classPrivateFieldInitSpec(this, _i, _init_roomDuration(this, 0));
190
+ _classPrivateFieldInitSpec(this, _j, _init_startTime(this, 0));
191
+ _classPrivateFieldInitSpec(this, _k, _init_videoSteamingUrl(this, ''));
192
+ _classPrivateFieldInitSpec(this, _l, _init_videoStreamingKey(this, ''));
193
+ _classPrivateFieldInitSpec(this, _m, _init_playUrl(this, ''));
194
+ _classPrivateFieldInitSpec(this, _n, _init_isStartError(this, false));
195
+ _classPrivateFieldInitSpec(this, _o, _init_liveStreamingState(this, _type2.FcrLiveStreamingState.STOPPED));
196
+ _classPrivateFieldInitSpec(this, _p, _init_hasStartCloudRecordingPermission(this, false));
197
+ _classPrivateFieldInitSpec(this, _q, _init_hasGetLiveStreamingUrlPermission(this, false));
198
+ _classPrivateFieldInitSpec(this, _r, _init_hasStopLiveStreamingPermission(this, false));
199
+ _classPrivateFieldInitSpec(this, _s, _init_hasStartLiveStreamingPermission(this, false));
200
+ _classPrivateFieldInitSpec(this, _t, _init_hasWaitingRoomPermission(this, false));
201
+ _classPrivateFieldInitSpec(this, _u, _init_allApplicationWindows(this, []));
202
+ _classPrivateFieldInitSpec(this, _v, _init_phoneMicEnabled(this, false));
203
+ _classPrivateFieldInitSpec(this, _w, _init_roomInfo(this, {
204
+ roomId: '',
205
+ roomName: '',
206
+ roomType: _type4.FcrRoomType.Mainroom
207
+ }));
208
+ _classPrivateFieldInitSpec(this, _x, _init_userName(this, ''));
209
+ _classPrivateFieldInitSpec(this, _y, _init_inviteLink(this, ''));
210
+ _classPrivateFieldInitSpec(this, _z, _init_isShowMeetingDetailPortal(this, false));
211
+ _classPrivateFieldInitSpec(this, _AA, _init_meetingDetailPortalLeft(this, 0));
212
+ _classPrivateFieldInitSpec(this, _AB, _init_meetingDetailPortalTop(this, 0));
213
+ _classPrivateFieldInitSpec(this, _AC, _init_remoteUsers(this, []));
214
+ _classPrivateFieldInitSpec(this, _AD, _init_hasAssignHostBeforeLeavingPermission(this, false));
215
+ _classPrivateFieldInitSpec(this, _AE, _init_isPstnUser(this, false));
216
+ _classPrivateFieldInitSpec(this, _AF, _init_hasEndRoomPermission(this, false));
217
+ _classPrivateFieldInitSpec(this, _AG, _init_isLocked(this, false));
218
+ _classPrivateFieldInitSpec(this, _AH, _init_hiddenShareActionNav(this, false));
163
219
  window.runtime.browserWindow.maximizable = false;
164
220
  window.runtime.browserWindow.setMaximizable(false);
165
221
  // window.runtime.browserWindow.fullScreenable = false;
@@ -330,7 +386,7 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
330
386
  _classPrivateFieldSet(_T, this, v);
331
387
  }
332
388
  }, {
333
- key: "allowUnmuteSelfVideo",
389
+ key: "allowBoardWrite",
334
390
  get: function get() {
335
391
  return _classPrivateFieldGet(_U, this);
336
392
  },
@@ -338,7 +394,7 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
338
394
  _classPrivateFieldSet(_U, this, v);
339
395
  }
340
396
  }, {
341
- key: "allowUnmuteSelfAudio",
397
+ key: "allowUnmuteSelfVideo",
342
398
  get: function get() {
343
399
  return _classPrivateFieldGet(_V, this);
344
400
  },
@@ -346,7 +402,7 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
346
402
  _classPrivateFieldSet(_V, this, v);
347
403
  }
348
404
  }, {
349
- key: "isLockRoomEnabled",
405
+ key: "allowUnmuteSelfAudio",
350
406
  get: function get() {
351
407
  return _classPrivateFieldGet(_W, this);
352
408
  },
@@ -354,7 +410,7 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
354
410
  _classPrivateFieldSet(_W, this, v);
355
411
  }
356
412
  }, {
357
- key: "isWaitingRoomEnabled",
413
+ key: "isLockRoomEnabled",
358
414
  get: function get() {
359
415
  return _classPrivateFieldGet(_X, this);
360
416
  },
@@ -362,7 +418,7 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
362
418
  _classPrivateFieldSet(_X, this, v);
363
419
  }
364
420
  }, {
365
- key: "showSecurity",
421
+ key: "isWaitingRoomEnabled",
366
422
  get: function get() {
367
423
  return _classPrivateFieldGet(_Y, this);
368
424
  },
@@ -370,7 +426,7 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
370
426
  _classPrivateFieldSet(_Y, this, v);
371
427
  }
372
428
  }, {
373
- key: "isHost",
429
+ key: "showSecurity",
374
430
  get: function get() {
375
431
  return _classPrivateFieldGet(_Z, this);
376
432
  },
@@ -378,7 +434,7 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
378
434
  _classPrivateFieldSet(_Z, this, v);
379
435
  }
380
436
  }, {
381
- key: "hasEnableStartScreenSharePermission",
437
+ key: "isHost",
382
438
  get: function get() {
383
439
  return _classPrivateFieldGet(_a, this);
384
440
  },
@@ -386,7 +442,7 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
386
442
  _classPrivateFieldSet(_a, this, v);
387
443
  }
388
444
  }, {
389
- key: "hasPermissionToControlAllowSendAll",
445
+ key: "hasEnableStartScreenSharePermission",
390
446
  get: function get() {
391
447
  return _classPrivateFieldGet(_b, this);
392
448
  },
@@ -394,7 +450,7 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
394
450
  _classPrivateFieldSet(_b, this, v);
395
451
  }
396
452
  }, {
397
- key: "hasEnableStartAudioPermission",
453
+ key: "hasPermissionToControlAllowSendAll",
398
454
  get: function get() {
399
455
  return _classPrivateFieldGet(_c, this);
400
456
  },
@@ -402,7 +458,7 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
402
458
  _classPrivateFieldSet(_c, this, v);
403
459
  }
404
460
  }, {
405
- key: "hasEnableChangeNamePermission",
461
+ key: "hasEnableStartAudioPermission",
406
462
  get: function get() {
407
463
  return _classPrivateFieldGet(_d, this);
408
464
  },
@@ -410,7 +466,7 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
410
466
  _classPrivateFieldSet(_d, this, v);
411
467
  }
412
468
  }, {
413
- key: "hasEnableStartVideoPermission",
469
+ key: "hasEnableChangeNamePermission",
414
470
  get: function get() {
415
471
  return _classPrivateFieldGet(_e, this);
416
472
  },
@@ -418,7 +474,7 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
418
474
  _classPrivateFieldSet(_e, this, v);
419
475
  }
420
476
  }, {
421
- key: "hasLockRoomPermission",
477
+ key: "hasEnableStartVideoPermission",
422
478
  get: function get() {
423
479
  return _classPrivateFieldGet(_f, this);
424
480
  },
@@ -426,7 +482,7 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
426
482
  _classPrivateFieldSet(_f, this, v);
427
483
  }
428
484
  }, {
429
- key: "roomDuration",
485
+ key: "hasLockRoomPermission",
430
486
  get: function get() {
431
487
  return _classPrivateFieldGet(_g, this);
432
488
  },
@@ -434,7 +490,7 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
434
490
  _classPrivateFieldSet(_g, this, v);
435
491
  }
436
492
  }, {
437
- key: "startTime",
493
+ key: "hasAllowWriteBoardPermission",
438
494
  get: function get() {
439
495
  return _classPrivateFieldGet(_h, this);
440
496
  },
@@ -442,7 +498,7 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
442
498
  _classPrivateFieldSet(_h, this, v);
443
499
  }
444
500
  }, {
445
- key: "videoSteamingUrl",
501
+ key: "roomDuration",
446
502
  get: function get() {
447
503
  return _classPrivateFieldGet(_i, this);
448
504
  },
@@ -450,7 +506,7 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
450
506
  _classPrivateFieldSet(_i, this, v);
451
507
  }
452
508
  }, {
453
- key: "videoStreamingKey",
509
+ key: "startTime",
454
510
  get: function get() {
455
511
  return _classPrivateFieldGet(_j, this);
456
512
  },
@@ -458,7 +514,7 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
458
514
  _classPrivateFieldSet(_j, this, v);
459
515
  }
460
516
  }, {
461
- key: "playUrl",
517
+ key: "videoSteamingUrl",
462
518
  get: function get() {
463
519
  return _classPrivateFieldGet(_k, this);
464
520
  },
@@ -466,7 +522,7 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
466
522
  _classPrivateFieldSet(_k, this, v);
467
523
  }
468
524
  }, {
469
- key: "isStartError",
525
+ key: "videoStreamingKey",
470
526
  get: function get() {
471
527
  return _classPrivateFieldGet(_l, this);
472
528
  },
@@ -474,7 +530,7 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
474
530
  _classPrivateFieldSet(_l, this, v);
475
531
  }
476
532
  }, {
477
- key: "liveStreamingState",
533
+ key: "playUrl",
478
534
  get: function get() {
479
535
  return _classPrivateFieldGet(_m, this);
480
536
  },
@@ -482,7 +538,7 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
482
538
  _classPrivateFieldSet(_m, this, v);
483
539
  }
484
540
  }, {
485
- key: "hasStartCloudRecordingPermission",
541
+ key: "isStartError",
486
542
  get: function get() {
487
543
  return _classPrivateFieldGet(_n, this);
488
544
  },
@@ -490,7 +546,7 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
490
546
  _classPrivateFieldSet(_n, this, v);
491
547
  }
492
548
  }, {
493
- key: "hasGetLiveStreamingUrlPermission",
549
+ key: "liveStreamingState",
494
550
  get: function get() {
495
551
  return _classPrivateFieldGet(_o, this);
496
552
  },
@@ -498,7 +554,7 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
498
554
  _classPrivateFieldSet(_o, this, v);
499
555
  }
500
556
  }, {
501
- key: "hasStopLiveStreamingPermission",
557
+ key: "hasStartCloudRecordingPermission",
502
558
  get: function get() {
503
559
  return _classPrivateFieldGet(_p, this);
504
560
  },
@@ -506,7 +562,7 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
506
562
  _classPrivateFieldSet(_p, this, v);
507
563
  }
508
564
  }, {
509
- key: "hasStartLiveStreamingPermission",
565
+ key: "hasGetLiveStreamingUrlPermission",
510
566
  get: function get() {
511
567
  return _classPrivateFieldGet(_q, this);
512
568
  },
@@ -514,7 +570,7 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
514
570
  _classPrivateFieldSet(_q, this, v);
515
571
  }
516
572
  }, {
517
- key: "allApplicationWindows",
573
+ key: "hasStopLiveStreamingPermission",
518
574
  get: function get() {
519
575
  return _classPrivateFieldGet(_r, this);
520
576
  },
@@ -522,13 +578,138 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
522
578
  _classPrivateFieldSet(_r, this, v);
523
579
  }
524
580
  }, {
525
- key: "phoneMicEnabled",
581
+ key: "hasStartLiveStreamingPermission",
526
582
  get: function get() {
527
583
  return _classPrivateFieldGet(_s, this);
528
584
  },
529
585
  set: function set(v) {
530
586
  _classPrivateFieldSet(_s, this, v);
531
587
  }
588
+ }, {
589
+ key: "hasWaitingRoomPermission",
590
+ get: function get() {
591
+ return _classPrivateFieldGet(_t, this);
592
+ },
593
+ set: function set(v) {
594
+ _classPrivateFieldSet(_t, this, v);
595
+ }
596
+ }, {
597
+ key: "allApplicationWindows",
598
+ get: function get() {
599
+ return _classPrivateFieldGet(_u, this);
600
+ },
601
+ set: function set(v) {
602
+ _classPrivateFieldSet(_u, this, v);
603
+ }
604
+ }, {
605
+ key: "phoneMicEnabled",
606
+ get: function get() {
607
+ return _classPrivateFieldGet(_v, this);
608
+ },
609
+ set: function set(v) {
610
+ _classPrivateFieldSet(_v, this, v);
611
+ }
612
+ }, {
613
+ key: "roomInfo",
614
+ get: function get() {
615
+ return _classPrivateFieldGet(_w, this);
616
+ },
617
+ set: function set(v) {
618
+ _classPrivateFieldSet(_w, this, v);
619
+ }
620
+ }, {
621
+ key: "userName",
622
+ get: function get() {
623
+ return _classPrivateFieldGet(_x, this);
624
+ },
625
+ set: function set(v) {
626
+ _classPrivateFieldSet(_x, this, v);
627
+ }
628
+ }, {
629
+ key: "inviteLink",
630
+ get: function get() {
631
+ return _classPrivateFieldGet(_y, this);
632
+ },
633
+ set: function set(v) {
634
+ _classPrivateFieldSet(_y, this, v);
635
+ }
636
+ }, {
637
+ key: "isShowMeetingDetailPortal",
638
+ get: function get() {
639
+ return _classPrivateFieldGet(_z, this);
640
+ },
641
+ set: function set(v) {
642
+ _classPrivateFieldSet(_z, this, v);
643
+ }
644
+ }, {
645
+ key: "meetingDetailPortalLeft",
646
+ get: function get() {
647
+ return _classPrivateFieldGet(_AA, this);
648
+ },
649
+ set: function set(v) {
650
+ _classPrivateFieldSet(_AA, this, v);
651
+ }
652
+ }, {
653
+ key: "meetingDetailPortalTop",
654
+ get: function get() {
655
+ return _classPrivateFieldGet(_AB, this);
656
+ },
657
+ set: function set(v) {
658
+ _classPrivateFieldSet(_AB, this, v);
659
+ }
660
+ }, {
661
+ key: "remoteUsers",
662
+ get: function get() {
663
+ return _classPrivateFieldGet(_AC, this);
664
+ },
665
+ set: function set(v) {
666
+ _classPrivateFieldSet(_AC, this, v);
667
+ }
668
+ }, {
669
+ key: "hasAssignHostBeforeLeavingPermission",
670
+ get: function get() {
671
+ return _classPrivateFieldGet(_AD, this);
672
+ },
673
+ set: function set(v) {
674
+ _classPrivateFieldSet(_AD, this, v);
675
+ }
676
+ }, {
677
+ key: "isPstnUser",
678
+ get: function get() {
679
+ return _classPrivateFieldGet(_AE, this);
680
+ },
681
+ set: function set(v) {
682
+ _classPrivateFieldSet(_AE, this, v);
683
+ }
684
+ }, {
685
+ key: "hasEndRoomPermission",
686
+ get: function get() {
687
+ return _classPrivateFieldGet(_AF, this);
688
+ },
689
+ set: function set(v) {
690
+ _classPrivateFieldSet(_AF, this, v);
691
+ }
692
+ }, {
693
+ key: "isLocked",
694
+ get: function get() {
695
+ return _classPrivateFieldGet(_AG, this);
696
+ },
697
+ set: function set(v) {
698
+ _classPrivateFieldSet(_AG, this, v);
699
+ }
700
+ }, {
701
+ key: "hiddenShareActionNav",
702
+ get: function get() {
703
+ return _classPrivateFieldGet(_AH, this);
704
+ },
705
+ set: function set(v) {
706
+ _classPrivateFieldSet(_AH, this, v);
707
+ }
708
+ }, {
709
+ key: "setHiddenShareActionNav",
710
+ value: function setHiddenShareActionNav(hiddenShareActionNav) {
711
+ this.hiddenShareActionNav = hiddenShareActionNav;
712
+ }
532
713
  }, {
533
714
  key: "initControlBar",
534
715
  value: function initControlBar(payload) {
@@ -536,7 +717,10 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
536
717
  this.currentShareId = payload.currentShareId;
537
718
  this.currentShareType = payload.currentShareType;
538
719
  this.setShareWithAudioState(payload.shareWithAudio);
720
+ this.userName = payload.userName;
721
+ this.inviteLink = payload.inviteLink;
539
722
  // room
723
+ this.setRoomInfo(payload.roomInfo);
540
724
  this.setRoomDuration(payload.duration);
541
725
  this.setStartTime(payload.startTime);
542
726
 
@@ -558,6 +742,7 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
558
742
  this.setAllowChat(payload.allowChat);
559
743
  this.setAllowJoinWithMuteAudio(payload.allowJoinWithMuteAudio);
560
744
  this.setAllowShareScreen(payload.allowShareScreen);
745
+ this.setBoardWriteEnabled(payload.allowBoardWrite);
561
746
  this.setAllowUnmuteSelfVideo(payload.allowUnmuteSelfVideo);
562
747
  this.setAllowUnmuteSelfAudio(payload.allowUnmuteSelfAudio);
563
748
  this.setLockRoomEnabled(payload.isLockRoomEnabled);
@@ -566,6 +751,7 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
566
751
  this.setHasStartLiveStreamingPermission(payload.hasStartLiveStreamingPermission);
567
752
  this.setHasStopLiveStreamingPermission(payload.hasStopLiveStreamingPermission);
568
753
  this.setHasGetLiveStreamingUrlPermission(payload.hasGetLiveStreamingLinkPermission);
754
+ this.setHasAllowWriteBoardPermission(payload.hasAllowWriteBoardPermission);
569
755
  this.setStartScreenSharePermission(payload.hasEnableStartScreenSharePermission);
570
756
  this.setPermissionToControlAllowSendAll(payload.hasPermissionToControlAllowSendAll);
571
757
  this.setStartAudioPermission(payload.hasEnableStartAudioPermission);
@@ -574,6 +760,7 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
574
760
  this.setLockRoomPermission(payload.hasLockRoomPermission);
575
761
  // live streaming
576
762
  this.setLiveStreamingState(payload.liveStreamingState);
763
+ this.setHasWaitingRoomPermission(payload.hasWaitingRoomPermission);
577
764
  this.setLiveStreamingInfo({
578
765
  videoSteamingUrl: payload.videoSteamingUrl,
579
766
  videoStreamingKey: payload.videoStreamingKey,
@@ -672,6 +859,11 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
672
859
  value: function setStartTime(startTime) {
673
860
  this.startTime = startTime;
674
861
  }
862
+ }, {
863
+ key: "setRoomInfo",
864
+ value: function setRoomInfo(roomInfo) {
865
+ this.roomInfo = roomInfo;
866
+ }
675
867
  }, {
676
868
  key: "setRoomDuration",
677
869
  value: function setRoomDuration(duration) {
@@ -1059,6 +1251,24 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
1059
1251
  }
1060
1252
  });
1061
1253
  }
1254
+ }, {
1255
+ key: "setBoardWriteEnabled",
1256
+ value: function setBoardWriteEnabled(allow) {
1257
+ this.allowBoardWrite = allow;
1258
+ }
1259
+ }, {
1260
+ key: "updateBoardWriteEnabled",
1261
+ value: function updateBoardWriteEnabled() {
1262
+ (0, _rendererEvent.sendEvent)({
1263
+ action: _constant.RendererEventAction.FRAGMENT_SET_ALLOW_BOARD_WRITE,
1264
+ payload: {}
1265
+ });
1266
+ }
1267
+ }, {
1268
+ key: "setHasAllowWriteBoardPermission",
1269
+ value: function setHasAllowWriteBoardPermission(allow) {
1270
+ this.hasAllowWriteBoardPermission = allow;
1271
+ }
1062
1272
  }, {
1063
1273
  key: "setAllowUnmuteSelfVideo",
1064
1274
  value: function setAllowUnmuteSelfVideo(allow) {
@@ -1114,6 +1324,11 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
1114
1324
  value: function setHasStartCloudRecordingPermission(allow) {
1115
1325
  this.hasStartCloudRecordingPermission = allow;
1116
1326
  }
1327
+ }, {
1328
+ key: "setHasWaitingRoomPermission",
1329
+ value: function setHasWaitingRoomPermission(allow) {
1330
+ this.hasWaitingRoomPermission = allow;
1331
+ }
1117
1332
  }, {
1118
1333
  key: "setHasGetLiveStreamingUrlPermission",
1119
1334
  value: function setHasGetLiveStreamingUrlPermission(hasGetLiveStreamingUrlPermission) {
@@ -1132,6 +1347,12 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
1132
1347
  }, {
1133
1348
  key: "updateWaitingRoomEnabled",
1134
1349
  value: function updateWaitingRoomEnabled(allow) {
1350
+ // 10ms后设置ignoreMouseEvents,防止点击事件穿透,直接设置无效
1351
+ setTimeout(function () {
1352
+ window.runtime.browserWindow.setIgnoreMouseEvents(true, {
1353
+ forward: true
1354
+ });
1355
+ }, 10);
1135
1356
  (0, _rendererEvent.sendEvent)({
1136
1357
  action: _constant.RendererEventAction.FRAGMENT_SET_ENABLE_WAITING_ROOM,
1137
1358
  payload: {
@@ -1212,6 +1433,83 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
1212
1433
  y: y
1213
1434
  };
1214
1435
  }
1436
+ }, {
1437
+ key: "fetchLeavingRoomPropsAfterInit",
1438
+ value: function fetchLeavingRoomPropsAfterInit() {
1439
+ (0, _rendererEvent.sendEvent)({
1440
+ action: _constant.RendererEventAction.REISSUE_CONTROLBAR_INFO,
1441
+ payload: null
1442
+ });
1443
+ }
1444
+ }, {
1445
+ key: "setShowMeetingDetailPortal",
1446
+ value: function setShowMeetingDetailPortal(show) {
1447
+ this.isShowMeetingDetailPortal = show;
1448
+ }
1449
+ }, {
1450
+ key: "setMeetingDetailPortalPosition",
1451
+ value: function setMeetingDetailPortalPosition(left, top) {
1452
+ this.meetingDetailPortalLeft = left;
1453
+ this.meetingDetailPortalTop = top;
1454
+ }
1455
+ }, {
1456
+ key: "setRemoteUsers",
1457
+ value: function setRemoteUsers(remoteUsers) {
1458
+ this.remoteUsers = remoteUsers;
1459
+ }
1460
+ }, {
1461
+ key: "setHasAssignHostBeforeLeavingPermission",
1462
+ value: function setHasAssignHostBeforeLeavingPermission(hasAssignHostBeforeLeavingPermission) {
1463
+ this.hasAssignHostBeforeLeavingPermission = hasAssignHostBeforeLeavingPermission;
1464
+ }
1465
+ }, {
1466
+ key: "setIsPstnUser",
1467
+ value: function setIsPstnUser(isPstnUser) {
1468
+ this.isPstnUser = isPstnUser;
1469
+ }
1470
+ }, {
1471
+ key: "setHasEndRoomPermission",
1472
+ value: function setHasEndRoomPermission(hasEndRoomPermission) {
1473
+ this.hasEndRoomPermission = hasEndRoomPermission;
1474
+ }
1475
+ }, {
1476
+ key: "setIsLocked",
1477
+ value: function setIsLocked(isLocked) {
1478
+ this.isLocked = isLocked;
1479
+ }
1480
+ }, {
1481
+ key: "sendLeave",
1482
+ value: function sendLeave() {
1483
+ (0, _rendererEvent.sendEvent)({
1484
+ action: _constant.RendererEventAction.LEAVE_ROOM,
1485
+ payload: null
1486
+ });
1487
+ }
1488
+ }, {
1489
+ key: "keepPhoneAudioConnection",
1490
+ value: function keepPhoneAudioConnection() {
1491
+ (0, _rendererEvent.sendEvent)({
1492
+ action: _constant.RendererEventAction.KEEP_PHONE_AUDIO_CONNECTION,
1493
+ payload: null
1494
+ });
1495
+ }
1496
+ }, {
1497
+ key: "sendEnd",
1498
+ value: function sendEnd() {
1499
+ (0, _rendererEvent.sendEvent)({
1500
+ action: _constant.RendererEventAction.END_ROOM,
1501
+ payload: null
1502
+ });
1503
+ }
1504
+ }, {
1505
+ key: "sendAssign",
1506
+ value: function sendAssign(user) {
1507
+ (0, _rendererEvent.sendEvent)({
1508
+ action: _constant.RendererEventAction.ASSIGN_HOST,
1509
+ payload: user
1510
+ });
1511
+ this.handlerStopShare();
1512
+ }
1215
1513
  }, {
1216
1514
  key: "showToast",
1217
1515
  value: function showToast(params) {
@@ -1226,7 +1524,7 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
1226
1524
  }]);
1227
1525
  }();
1228
1526
  _ControlBarStore = ControlBarStore;
1229
- 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);
1527
+ 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, "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, "allApplicationWindows"], [_mobx.observable, 1, "phoneMicEnabled"], [_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, "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"], [_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, 61);
1230
1528
  _init_shareWithAudio = _applyDecs$e[0];
1231
1529
  _init_shareAudioProcessingChannel = _applyDecs$e[1];
1232
1530
  _init_currentShareId = _applyDecs$e[2];
@@ -1247,29 +1545,44 @@ _init_allowChangeSelfName = _applyDecs$e[16];
1247
1545
  _init_allowChat = _applyDecs$e[17];
1248
1546
  _init_allowJoinWithMuteAudio = _applyDecs$e[18];
1249
1547
  _init_allowShareScreen = _applyDecs$e[19];
1250
- _init_allowUnmuteSelfVideo = _applyDecs$e[20];
1251
- _init_allowUnmuteSelfAudio = _applyDecs$e[21];
1252
- _init_isLockRoomEnabled = _applyDecs$e[22];
1253
- _init_isWaitingRoomEnabled = _applyDecs$e[23];
1254
- _init_showSecurity = _applyDecs$e[24];
1255
- _init_isHost = _applyDecs$e[25];
1256
- _init_hasEnableStartScreenSharePermission = _applyDecs$e[26];
1257
- _init_hasPermissionToControlAllowSendAll = _applyDecs$e[27];
1258
- _init_hasEnableStartAudioPermission = _applyDecs$e[28];
1259
- _init_hasEnableChangeNamePermission = _applyDecs$e[29];
1260
- _init_hasEnableStartVideoPermission = _applyDecs$e[30];
1261
- _init_hasLockRoomPermission = _applyDecs$e[31];
1262
- _init_roomDuration = _applyDecs$e[32];
1263
- _init_startTime = _applyDecs$e[33];
1264
- _init_videoSteamingUrl = _applyDecs$e[34];
1265
- _init_videoStreamingKey = _applyDecs$e[35];
1266
- _init_playUrl = _applyDecs$e[36];
1267
- _init_isStartError = _applyDecs$e[37];
1268
- _init_liveStreamingState = _applyDecs$e[38];
1269
- _init_hasStartCloudRecordingPermission = _applyDecs$e[39];
1270
- _init_hasGetLiveStreamingUrlPermission = _applyDecs$e[40];
1271
- _init_hasStopLiveStreamingPermission = _applyDecs$e[41];
1272
- _init_hasStartLiveStreamingPermission = _applyDecs$e[42];
1273
- _init_allApplicationWindows = _applyDecs$e[43];
1274
- _init_phoneMicEnabled = _applyDecs$e[44];
1275
- _initProto = _applyDecs$e[45];
1548
+ _init_allowBoardWrite = _applyDecs$e[20];
1549
+ _init_allowUnmuteSelfVideo = _applyDecs$e[21];
1550
+ _init_allowUnmuteSelfAudio = _applyDecs$e[22];
1551
+ _init_isLockRoomEnabled = _applyDecs$e[23];
1552
+ _init_isWaitingRoomEnabled = _applyDecs$e[24];
1553
+ _init_showSecurity = _applyDecs$e[25];
1554
+ _init_isHost = _applyDecs$e[26];
1555
+ _init_hasEnableStartScreenSharePermission = _applyDecs$e[27];
1556
+ _init_hasPermissionToControlAllowSendAll = _applyDecs$e[28];
1557
+ _init_hasEnableStartAudioPermission = _applyDecs$e[29];
1558
+ _init_hasEnableChangeNamePermission = _applyDecs$e[30];
1559
+ _init_hasEnableStartVideoPermission = _applyDecs$e[31];
1560
+ _init_hasLockRoomPermission = _applyDecs$e[32];
1561
+ _init_hasAllowWriteBoardPermission = _applyDecs$e[33];
1562
+ _init_roomDuration = _applyDecs$e[34];
1563
+ _init_startTime = _applyDecs$e[35];
1564
+ _init_videoSteamingUrl = _applyDecs$e[36];
1565
+ _init_videoStreamingKey = _applyDecs$e[37];
1566
+ _init_playUrl = _applyDecs$e[38];
1567
+ _init_isStartError = _applyDecs$e[39];
1568
+ _init_liveStreamingState = _applyDecs$e[40];
1569
+ _init_hasStartCloudRecordingPermission = _applyDecs$e[41];
1570
+ _init_hasGetLiveStreamingUrlPermission = _applyDecs$e[42];
1571
+ _init_hasStopLiveStreamingPermission = _applyDecs$e[43];
1572
+ _init_hasStartLiveStreamingPermission = _applyDecs$e[44];
1573
+ _init_hasWaitingRoomPermission = _applyDecs$e[45];
1574
+ _init_allApplicationWindows = _applyDecs$e[46];
1575
+ _init_phoneMicEnabled = _applyDecs$e[47];
1576
+ _init_roomInfo = _applyDecs$e[48];
1577
+ _init_userName = _applyDecs$e[49];
1578
+ _init_inviteLink = _applyDecs$e[50];
1579
+ _init_isShowMeetingDetailPortal = _applyDecs$e[51];
1580
+ _init_meetingDetailPortalLeft = _applyDecs$e[52];
1581
+ _init_meetingDetailPortalTop = _applyDecs$e[53];
1582
+ _init_remoteUsers = _applyDecs$e[54];
1583
+ _init_hasAssignHostBeforeLeavingPermission = _applyDecs$e[55];
1584
+ _init_isPstnUser = _applyDecs$e[56];
1585
+ _init_hasEndRoomPermission = _applyDecs$e[57];
1586
+ _init_isLocked = _applyDecs$e[58];
1587
+ _init_hiddenShareActionNav = _applyDecs$e[59];
1588
+ _initProto = _applyDecs$e[60];