fcr-ui-scene 3.2.0 → 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 (219) 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/common/device-store.d.ts +1 -1
  5. package/lib/common/device-store.js +11 -3
  6. package/lib/common/event-store.d.ts +17 -1
  7. package/lib/common/event-store.js +38 -5
  8. package/lib/common/security-store.d.ts +14 -4
  9. package/lib/common/security-store.js +149 -30
  10. package/lib/electron/bootstrap-dev.d.ts +1 -0
  11. package/lib/electron/bootstrap-dev.js +51 -0
  12. package/lib/electron/bootstrap-sdk.d.ts +1 -0
  13. package/lib/electron/bootstrap-sdk.js +56 -0
  14. package/lib/electron/bootstrap.d.ts +1 -0
  15. package/lib/electron/bootstrap.js +56 -0
  16. package/lib/electron/default-options.js +1 -1
  17. package/lib/electron/dev.d.ts +1 -0
  18. package/lib/electron/dev.js +51 -0
  19. package/lib/electron/injections.d.ts +1 -1
  20. package/lib/electron/injections.js +3 -6
  21. package/lib/electron/main.js +4 -16
  22. package/lib/electron/plugins/meeting-state.d.ts +2 -0
  23. package/lib/electron/plugins/meeting-state.js +39 -0
  24. package/lib/electron/preload.js +1 -1
  25. package/lib/fragments/control-bar/control-bar-store.d.ts +34 -1
  26. package/lib/fragments/control-bar/control-bar-store.js +371 -79
  27. package/lib/fragments/control-bar/device/index.js +5 -3
  28. package/lib/fragments/control-bar/index.css +15 -10
  29. package/lib/fragments/control-bar/index.js +18 -0
  30. package/lib/fragments/control-bar/meeting-details/meeting-detail.css +109 -0
  31. package/lib/fragments/control-bar/meeting-details/meeting-details-portal.d.ts +3 -0
  32. package/lib/fragments/control-bar/meeting-details/meeting-details-portal.js +60 -0
  33. package/lib/fragments/control-bar/meeting-details/meeting-details.d.ts +2 -0
  34. package/lib/fragments/control-bar/meeting-details/meeting-details.js +179 -0
  35. package/lib/fragments/control-bar/more-actions/index.css +53 -0
  36. package/lib/fragments/control-bar/more-actions/index.js +72 -37
  37. package/lib/fragments/control-bar/security-content/index.css +10 -0
  38. package/lib/fragments/control-bar/security-content/index.js +40 -18
  39. package/lib/fragments/control-bar/view.js +8 -2
  40. package/lib/login-confirm-dialog.d.ts +12 -0
  41. package/lib/login-confirm-dialog.js +80 -0
  42. package/lib/modules/action-bar/action-bar-collapes-items.js +5 -5
  43. package/lib/modules/action-bar/chat/index.js +5 -5
  44. package/lib/modules/action-bar/device/index.css +7 -2
  45. package/lib/modules/action-bar/device/index.js +4 -4
  46. package/lib/modules/action-bar/index.css +59 -12
  47. package/lib/modules/action-bar/index.d.ts +3 -2
  48. package/lib/modules/action-bar/index.dev.js +1 -1
  49. package/lib/modules/action-bar/index.js +21 -0
  50. package/lib/modules/action-bar/leave/assign-host.d.ts +3 -0
  51. package/lib/modules/action-bar/leave/assign-host.js +2 -4
  52. package/lib/modules/action-bar/leave/index.js +29 -6
  53. package/lib/modules/action-bar/leave/leave-meeting.d.ts +11 -0
  54. package/lib/modules/action-bar/leave/leave-meeting.js +25 -16
  55. package/lib/modules/action-bar/more/poppover-content.js +4 -4
  56. package/lib/modules/action-bar/participants/index.css +12 -0
  57. package/lib/modules/action-bar/participants/index.js +21 -14
  58. package/lib/modules/action-bar/screen-share/index.js +5 -1
  59. package/lib/modules/action-bar/screen-share/submenu.js +16 -22
  60. package/lib/modules/action-bar/security/drop-menu.js +90 -13
  61. package/lib/modules/action-bar/store.d.ts +38 -6
  62. package/lib/modules/action-bar/store.js +487 -95
  63. package/lib/modules/action-bar/view.js +65 -42
  64. package/lib/modules/chat/chat-bar/index.js +39 -27
  65. package/lib/modules/chat/chat-select/index.css +14 -4
  66. package/lib/modules/chat/chat.d.ts +1 -2
  67. package/lib/modules/chat/chat.js +184 -105
  68. package/lib/modules/chat/index.css +49 -0
  69. package/lib/modules/chat/index.d.ts +2 -2
  70. package/lib/modules/chat/index.dev.js +1 -1
  71. package/lib/modules/chat/index.js +13 -8
  72. package/lib/modules/chat/message-list.js +59 -48
  73. package/lib/modules/chat/store.d.ts +48 -2
  74. package/lib/modules/chat/store.js +258 -45
  75. package/lib/modules/connection-gateway/index.d.ts +2 -1
  76. package/lib/modules/connection-gateway/store.d.ts +6 -3
  77. package/lib/modules/connection-gateway/store.js +5 -1
  78. package/lib/modules/device-pretest/audio-preview/speaker-control.js +1 -1
  79. package/lib/modules/device-pretest/index.css +0 -4
  80. package/lib/modules/device-pretest/settings/beauty.js +17 -6
  81. package/lib/modules/device-pretest/store.js +7 -11
  82. package/lib/modules/dialog/components/chat/electron.js +2 -1
  83. package/lib/modules/dialog/components/confirm/electron.js +5 -3
  84. package/lib/modules/dialog/components/connection-gateway/electron.js +3 -1
  85. package/lib/modules/dialog/components/connection-gateway/index.css +0 -2
  86. package/lib/modules/dialog/components/device-setting/electron.js +3 -1
  87. package/lib/modules/dialog/components/device-setting/index.css +0 -1
  88. package/lib/modules/dialog/components/operation-waiting-room/electron.d.ts +5 -0
  89. package/lib/modules/dialog/components/operation-waiting-room/electron.js +89 -0
  90. package/lib/modules/dialog/components/operation-waiting-room/index.css +44 -0
  91. package/lib/modules/dialog/components/operation-waiting-room/index.d.ts +5 -0
  92. package/lib/modules/dialog/components/operation-waiting-room/index.js +156 -0
  93. package/lib/modules/dialog/components/participant/electron.js +2 -1
  94. package/lib/modules/dialog/components/remove-admit-waiting-room/electron.d.ts +5 -0
  95. package/lib/modules/dialog/components/remove-admit-waiting-room/electron.js +89 -0
  96. package/lib/modules/dialog/components/remove-admit-waiting-room/index.css +50 -0
  97. package/lib/modules/dialog/components/remove-admit-waiting-room/index.d.ts +5 -0
  98. package/lib/modules/dialog/components/remove-admit-waiting-room/index.js +90 -0
  99. package/lib/modules/dialog/components/whiteboard/index.js +2 -1
  100. package/lib/modules/dialog/dialogs.js +17 -13
  101. package/lib/modules/dialog/index.css +2 -0
  102. package/lib/modules/dialog/store.d.ts +4 -0
  103. package/lib/modules/dialog/store.js +16 -2
  104. package/lib/modules/event-notification/context.d.ts +2 -0
  105. package/lib/modules/event-notification/context.js +9 -0
  106. package/lib/modules/event-notification/index.css +58 -0
  107. package/lib/modules/event-notification/index.d.ts +13 -0
  108. package/lib/modules/event-notification/index.js +48 -0
  109. package/lib/modules/event-notification/store.d.ts +17 -0
  110. package/lib/modules/event-notification/store.js +133 -0
  111. package/lib/modules/event-notification/view.d.ts +5 -0
  112. package/lib/modules/event-notification/view.js +114 -0
  113. package/lib/modules/invite/index.css +4 -4
  114. package/lib/modules/invite/pstn-invite.js +1 -0
  115. package/lib/modules/layout/components/Gallery.js +7 -1
  116. package/lib/modules/layout/components/Layout.js +82 -57
  117. package/lib/modules/layout/components/index.css +33 -6
  118. package/lib/modules/layout/index.css +30 -0
  119. package/lib/modules/layout/member-window/index.js +9 -3
  120. package/lib/modules/layout/store.d.ts +19 -2
  121. package/lib/modules/layout/store.js +177 -70
  122. package/lib/modules/layout/video-window-datasource.d.ts +1 -1
  123. package/lib/modules/layout/video-window-datasource.js +1 -1
  124. package/lib/modules/live-streaming/index.dev.js +1 -1
  125. package/lib/modules/participant/attendee/index.d.ts +12 -3
  126. package/lib/modules/participant/attendee/index.js +132 -30
  127. package/lib/modules/participant/index.css +20 -0
  128. package/lib/modules/participant/index.d.ts +5 -2
  129. package/lib/modules/participant/index.dev.js +1 -1
  130. package/lib/modules/participant/index.js +27 -0
  131. package/lib/modules/participant/room-control-drop-menu/index.css +37 -0
  132. package/lib/modules/participant/store.d.ts +30 -5
  133. package/lib/modules/participant/store.js +347 -74
  134. package/lib/modules/participant/view.js +133 -34
  135. package/lib/modules/setting/index.css +1 -5
  136. package/lib/modules/setting/index.dev.js +1 -1
  137. package/lib/modules/setting/store.d.ts +2 -2
  138. package/lib/modules/setting/store.js +3 -8
  139. package/lib/modules/setting/translate-settings/translate-settings.js +1 -1
  140. package/lib/modules/setting/video-settings/index.css +9 -6
  141. package/lib/modules/share-screen/index.d.ts +2 -0
  142. package/lib/modules/share-screen/index.dev.js +3 -2
  143. package/lib/modules/share-screen/selection/index.css +2 -0
  144. package/lib/modules/share-screen/store.d.ts +6 -3
  145. package/lib/modules/share-screen/store.js +170 -129
  146. package/lib/modules/state-bar/index.css +2 -2
  147. package/lib/modules/state-bar/index.d.ts +2 -2
  148. package/lib/modules/state-bar/index.dev.js +1 -1
  149. package/lib/modules/state-bar/meeting-detail.css +6 -4
  150. package/lib/modules/state-bar/meeting-details.js +29 -3
  151. package/lib/modules/state-bar/meeting-network-state.css +14 -3
  152. package/lib/modules/state-bar/meeting-network-state.js +10 -4
  153. package/lib/modules/state-bar/recording.js +3 -5
  154. package/lib/modules/state-bar/store.d.ts +4 -2
  155. package/lib/modules/state-bar/store.js +18 -3
  156. package/lib/modules/state-bar/view.js +1 -6
  157. package/lib/modules/video-window/index.css +1 -0
  158. package/lib/modules/video-window/store.d.ts +2 -2
  159. package/lib/modules/video-window/store.js +14 -11
  160. package/lib/modules/waiting-room-layout/context.d.ts +2 -0
  161. package/lib/modules/waiting-room-layout/context.js +9 -0
  162. package/lib/modules/waiting-room-layout/index.css +71 -0
  163. package/lib/modules/waiting-room-layout/index.d.ts +8 -0
  164. package/lib/modules/waiting-room-layout/index.js +47 -0
  165. package/lib/modules/waiting-room-layout/store.d.ts +30 -0
  166. package/lib/modules/waiting-room-layout/store.js +189 -0
  167. package/lib/modules/waiting-room-layout/type.d.ts +0 -0
  168. package/lib/modules/waiting-room-layout/type.js +1 -0
  169. package/lib/modules/waiting-room-layout/view.d.ts +3 -0
  170. package/lib/modules/waiting-room-layout/view.js +67 -0
  171. package/lib/modules/whiteboard/app.js +0 -6
  172. package/lib/modules/whiteboard/components/control-bar/index.css +3 -0
  173. package/lib/modules/whiteboard/components/multi-window/index.js +6 -1
  174. package/lib/modules/whiteboard/components/progress/electron.js +2 -1
  175. package/lib/modules/whiteboard/components/switch-theme/index.css +4 -0
  176. package/lib/modules/whiteboard/components/switch-theme/index.d.ts +2 -1
  177. package/lib/modules/whiteboard/components/switch-theme/index.js +20 -15
  178. package/lib/modules/whiteboard/components/switch-theme/item.d.ts +1 -0
  179. package/lib/modules/whiteboard/components/switch-theme/item.js +9 -2
  180. package/lib/modules/whiteboard/components/toolbar/components/shape-picker.js +14 -10
  181. package/lib/modules/whiteboard/components/toolbar/store.d.ts +1 -0
  182. package/lib/modules/whiteboard/components/toolbar/store.js +3 -0
  183. package/lib/modules/whiteboard/context.d.ts +4 -0
  184. package/lib/modules/whiteboard/context.js +4 -2
  185. package/lib/modules/whiteboard/index.js +22 -6
  186. package/lib/plugins/browser-runtime-plugin.js +1 -1
  187. package/lib/plugins/module-dev-plugin.js +8 -6
  188. package/lib/runtime.d.ts +1 -1
  189. package/lib/translations/enUS.d.ts +449 -6
  190. package/lib/translations/enUS.js +485 -32
  191. package/lib/translations/zhCN.d.ts +447 -6
  192. package/lib/translations/zhCN.js +468 -17
  193. package/lib/type.d.ts +6 -2
  194. package/lib/ui-manager.d.ts +7 -3
  195. package/lib/ui-manager.js +576 -139
  196. package/lib/ui-scene.d.ts +1 -0
  197. package/lib/ui-scene.js +26 -21
  198. package/lib/utilities/constant.d.ts +43 -4
  199. package/lib/utilities/constant.js +41 -1
  200. package/lib/utilities/parameters.js +2 -2
  201. package/lib/utilities/renderer.d.ts +1 -0
  202. package/lib/utilities/renderer.js +6 -2
  203. package/package.json +14 -14
  204. package/public/assets/fcr_defaultpage.png +0 -0
  205. package/public/assets/login_confirm.png +0 -0
  206. package/public/index.html +29 -11
  207. package/dist/132.js +0 -2
  208. package/dist/132.js.LICENSE.txt +0 -311
  209. package/dist/651.js +0 -2
  210. package/dist/651.js.LICENSE.txt +0 -1
  211. package/dist/73.js +0 -1
  212. package/dist/index.html +0 -13
  213. package/dist/main.da7c203ab32d15742cfe.css +0 -11760
  214. package/dist/main.js +0 -2
  215. package/dist/main.js.LICENSE.txt +0 -254
  216. package/dist/worker-entry.worker.js.LICENSE.txt +0 -13
  217. package/lib/modules/device-pretest/settings/index.css +0 -15
  218. package/lib/modules/participant/attendee/participants-more-action.d.ts +0 -18
  219. package/lib/modules/participant/attendee/participants-more-action.js +0 -278
@@ -68,8 +68,9 @@ 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("agora-edu-core/lib/room-control/type");
71
72
  var _ControlBarStore;
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;
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;
73
74
  function _classPrivateFieldInitSpec(e, t, a) { _checkPrivateRedeclaration(e, t), t.set(e, a); }
74
75
  function _checkPrivateRedeclaration(e, t) { if (t.has(e)) throw new TypeError("Cannot initialize the same private elements twice on an object"); }
75
76
  function _classPrivateFieldSet(s, a, r) { return s.set(_assertClassBrand(s, a), r), r; }
@@ -125,7 +126,22 @@ var _p = /*#__PURE__*/new WeakMap();
125
126
  var _q = /*#__PURE__*/new WeakMap();
126
127
  var _r = /*#__PURE__*/new WeakMap();
127
128
  var _s = /*#__PURE__*/new WeakMap();
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");
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");
129
145
  var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
130
146
  function ControlBarStore() {
131
147
  (0, _classCallCheck2["default"])(this, ControlBarStore);
@@ -156,31 +172,50 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
156
172
  _classPrivateFieldInitSpec(this, _R, _init_allowChat(this, false));
157
173
  _classPrivateFieldInitSpec(this, _S, _init_allowJoinWithMuteAudio(this, false));
158
174
  _classPrivateFieldInitSpec(this, _T, _init_allowShareScreen(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));
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));
184
219
  window.runtime.browserWindow.maximizable = false;
185
220
  window.runtime.browserWindow.setMaximizable(false);
186
221
  // window.runtime.browserWindow.fullScreenable = false;
@@ -351,7 +386,7 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
351
386
  _classPrivateFieldSet(_T, this, v);
352
387
  }
353
388
  }, {
354
- key: "allowUnmuteSelfVideo",
389
+ key: "allowBoardWrite",
355
390
  get: function get() {
356
391
  return _classPrivateFieldGet(_U, this);
357
392
  },
@@ -359,7 +394,7 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
359
394
  _classPrivateFieldSet(_U, this, v);
360
395
  }
361
396
  }, {
362
- key: "allowUnmuteSelfAudio",
397
+ key: "allowUnmuteSelfVideo",
363
398
  get: function get() {
364
399
  return _classPrivateFieldGet(_V, this);
365
400
  },
@@ -367,7 +402,7 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
367
402
  _classPrivateFieldSet(_V, this, v);
368
403
  }
369
404
  }, {
370
- key: "isLockRoomEnabled",
405
+ key: "allowUnmuteSelfAudio",
371
406
  get: function get() {
372
407
  return _classPrivateFieldGet(_W, this);
373
408
  },
@@ -375,7 +410,7 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
375
410
  _classPrivateFieldSet(_W, this, v);
376
411
  }
377
412
  }, {
378
- key: "isWaitingRoomEnabled",
413
+ key: "isLockRoomEnabled",
379
414
  get: function get() {
380
415
  return _classPrivateFieldGet(_X, this);
381
416
  },
@@ -383,7 +418,7 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
383
418
  _classPrivateFieldSet(_X, this, v);
384
419
  }
385
420
  }, {
386
- key: "showSecurity",
421
+ key: "isWaitingRoomEnabled",
387
422
  get: function get() {
388
423
  return _classPrivateFieldGet(_Y, this);
389
424
  },
@@ -391,7 +426,7 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
391
426
  _classPrivateFieldSet(_Y, this, v);
392
427
  }
393
428
  }, {
394
- key: "isHost",
429
+ key: "showSecurity",
395
430
  get: function get() {
396
431
  return _classPrivateFieldGet(_Z, this);
397
432
  },
@@ -399,7 +434,7 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
399
434
  _classPrivateFieldSet(_Z, this, v);
400
435
  }
401
436
  }, {
402
- key: "hasEnableStartScreenSharePermission",
437
+ key: "isHost",
403
438
  get: function get() {
404
439
  return _classPrivateFieldGet(_a, this);
405
440
  },
@@ -407,7 +442,7 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
407
442
  _classPrivateFieldSet(_a, this, v);
408
443
  }
409
444
  }, {
410
- key: "hasPermissionToControlAllowSendAll",
445
+ key: "hasEnableStartScreenSharePermission",
411
446
  get: function get() {
412
447
  return _classPrivateFieldGet(_b, this);
413
448
  },
@@ -415,7 +450,7 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
415
450
  _classPrivateFieldSet(_b, this, v);
416
451
  }
417
452
  }, {
418
- key: "hasEnableStartAudioPermission",
453
+ key: "hasPermissionToControlAllowSendAll",
419
454
  get: function get() {
420
455
  return _classPrivateFieldGet(_c, this);
421
456
  },
@@ -423,7 +458,7 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
423
458
  _classPrivateFieldSet(_c, this, v);
424
459
  }
425
460
  }, {
426
- key: "hasEnableChangeNamePermission",
461
+ key: "hasEnableStartAudioPermission",
427
462
  get: function get() {
428
463
  return _classPrivateFieldGet(_d, this);
429
464
  },
@@ -431,7 +466,7 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
431
466
  _classPrivateFieldSet(_d, this, v);
432
467
  }
433
468
  }, {
434
- key: "hasEnableStartVideoPermission",
469
+ key: "hasEnableChangeNamePermission",
435
470
  get: function get() {
436
471
  return _classPrivateFieldGet(_e, this);
437
472
  },
@@ -439,7 +474,7 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
439
474
  _classPrivateFieldSet(_e, this, v);
440
475
  }
441
476
  }, {
442
- key: "hasLockRoomPermission",
477
+ key: "hasEnableStartVideoPermission",
443
478
  get: function get() {
444
479
  return _classPrivateFieldGet(_f, this);
445
480
  },
@@ -447,7 +482,7 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
447
482
  _classPrivateFieldSet(_f, this, v);
448
483
  }
449
484
  }, {
450
- key: "roomDuration",
485
+ key: "hasLockRoomPermission",
451
486
  get: function get() {
452
487
  return _classPrivateFieldGet(_g, this);
453
488
  },
@@ -455,7 +490,7 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
455
490
  _classPrivateFieldSet(_g, this, v);
456
491
  }
457
492
  }, {
458
- key: "startTime",
493
+ key: "hasAllowWriteBoardPermission",
459
494
  get: function get() {
460
495
  return _classPrivateFieldGet(_h, this);
461
496
  },
@@ -463,7 +498,7 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
463
498
  _classPrivateFieldSet(_h, this, v);
464
499
  }
465
500
  }, {
466
- key: "videoSteamingUrl",
501
+ key: "roomDuration",
467
502
  get: function get() {
468
503
  return _classPrivateFieldGet(_i, this);
469
504
  },
@@ -471,7 +506,7 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
471
506
  _classPrivateFieldSet(_i, this, v);
472
507
  }
473
508
  }, {
474
- key: "videoStreamingKey",
509
+ key: "startTime",
475
510
  get: function get() {
476
511
  return _classPrivateFieldGet(_j, this);
477
512
  },
@@ -479,7 +514,7 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
479
514
  _classPrivateFieldSet(_j, this, v);
480
515
  }
481
516
  }, {
482
- key: "playUrl",
517
+ key: "videoSteamingUrl",
483
518
  get: function get() {
484
519
  return _classPrivateFieldGet(_k, this);
485
520
  },
@@ -487,7 +522,7 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
487
522
  _classPrivateFieldSet(_k, this, v);
488
523
  }
489
524
  }, {
490
- key: "isStartError",
525
+ key: "videoStreamingKey",
491
526
  get: function get() {
492
527
  return _classPrivateFieldGet(_l, this);
493
528
  },
@@ -495,7 +530,7 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
495
530
  _classPrivateFieldSet(_l, this, v);
496
531
  }
497
532
  }, {
498
- key: "liveStreamingState",
533
+ key: "playUrl",
499
534
  get: function get() {
500
535
  return _classPrivateFieldGet(_m, this);
501
536
  },
@@ -503,7 +538,7 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
503
538
  _classPrivateFieldSet(_m, this, v);
504
539
  }
505
540
  }, {
506
- key: "hasStartCloudRecordingPermission",
541
+ key: "isStartError",
507
542
  get: function get() {
508
543
  return _classPrivateFieldGet(_n, this);
509
544
  },
@@ -511,7 +546,7 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
511
546
  _classPrivateFieldSet(_n, this, v);
512
547
  }
513
548
  }, {
514
- key: "hasGetLiveStreamingUrlPermission",
549
+ key: "liveStreamingState",
515
550
  get: function get() {
516
551
  return _classPrivateFieldGet(_o, this);
517
552
  },
@@ -519,7 +554,7 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
519
554
  _classPrivateFieldSet(_o, this, v);
520
555
  }
521
556
  }, {
522
- key: "hasStopLiveStreamingPermission",
557
+ key: "hasStartCloudRecordingPermission",
523
558
  get: function get() {
524
559
  return _classPrivateFieldGet(_p, this);
525
560
  },
@@ -527,7 +562,7 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
527
562
  _classPrivateFieldSet(_p, this, v);
528
563
  }
529
564
  }, {
530
- key: "hasStartLiveStreamingPermission",
565
+ key: "hasGetLiveStreamingUrlPermission",
531
566
  get: function get() {
532
567
  return _classPrivateFieldGet(_q, this);
533
568
  },
@@ -535,7 +570,7 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
535
570
  _classPrivateFieldSet(_q, this, v);
536
571
  }
537
572
  }, {
538
- key: "allApplicationWindows",
573
+ key: "hasStopLiveStreamingPermission",
539
574
  get: function get() {
540
575
  return _classPrivateFieldGet(_r, this);
541
576
  },
@@ -543,13 +578,138 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
543
578
  _classPrivateFieldSet(_r, this, v);
544
579
  }
545
580
  }, {
546
- key: "phoneMicEnabled",
581
+ key: "hasStartLiveStreamingPermission",
547
582
  get: function get() {
548
583
  return _classPrivateFieldGet(_s, this);
549
584
  },
550
585
  set: function set(v) {
551
586
  _classPrivateFieldSet(_s, this, v);
552
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
+ }
553
713
  }, {
554
714
  key: "initControlBar",
555
715
  value: function initControlBar(payload) {
@@ -557,7 +717,10 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
557
717
  this.currentShareId = payload.currentShareId;
558
718
  this.currentShareType = payload.currentShareType;
559
719
  this.setShareWithAudioState(payload.shareWithAudio);
720
+ this.userName = payload.userName;
721
+ this.inviteLink = payload.inviteLink;
560
722
  // room
723
+ this.setRoomInfo(payload.roomInfo);
561
724
  this.setRoomDuration(payload.duration);
562
725
  this.setStartTime(payload.startTime);
563
726
 
@@ -579,6 +742,7 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
579
742
  this.setAllowChat(payload.allowChat);
580
743
  this.setAllowJoinWithMuteAudio(payload.allowJoinWithMuteAudio);
581
744
  this.setAllowShareScreen(payload.allowShareScreen);
745
+ this.setBoardWriteEnabled(payload.allowBoardWrite);
582
746
  this.setAllowUnmuteSelfVideo(payload.allowUnmuteSelfVideo);
583
747
  this.setAllowUnmuteSelfAudio(payload.allowUnmuteSelfAudio);
584
748
  this.setLockRoomEnabled(payload.isLockRoomEnabled);
@@ -587,6 +751,7 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
587
751
  this.setHasStartLiveStreamingPermission(payload.hasStartLiveStreamingPermission);
588
752
  this.setHasStopLiveStreamingPermission(payload.hasStopLiveStreamingPermission);
589
753
  this.setHasGetLiveStreamingUrlPermission(payload.hasGetLiveStreamingLinkPermission);
754
+ this.setHasAllowWriteBoardPermission(payload.hasAllowWriteBoardPermission);
590
755
  this.setStartScreenSharePermission(payload.hasEnableStartScreenSharePermission);
591
756
  this.setPermissionToControlAllowSendAll(payload.hasPermissionToControlAllowSendAll);
592
757
  this.setStartAudioPermission(payload.hasEnableStartAudioPermission);
@@ -595,6 +760,7 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
595
760
  this.setLockRoomPermission(payload.hasLockRoomPermission);
596
761
  // live streaming
597
762
  this.setLiveStreamingState(payload.liveStreamingState);
763
+ this.setHasWaitingRoomPermission(payload.hasWaitingRoomPermission);
598
764
  this.setLiveStreamingInfo({
599
765
  videoSteamingUrl: payload.videoSteamingUrl,
600
766
  videoStreamingKey: payload.videoStreamingKey,
@@ -693,6 +859,11 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
693
859
  value: function setStartTime(startTime) {
694
860
  this.startTime = startTime;
695
861
  }
862
+ }, {
863
+ key: "setRoomInfo",
864
+ value: function setRoomInfo(roomInfo) {
865
+ this.roomInfo = roomInfo;
866
+ }
696
867
  }, {
697
868
  key: "setRoomDuration",
698
869
  value: function setRoomDuration(duration) {
@@ -1080,6 +1251,24 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
1080
1251
  }
1081
1252
  });
1082
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
+ }
1083
1272
  }, {
1084
1273
  key: "setAllowUnmuteSelfVideo",
1085
1274
  value: function setAllowUnmuteSelfVideo(allow) {
@@ -1135,6 +1324,11 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
1135
1324
  value: function setHasStartCloudRecordingPermission(allow) {
1136
1325
  this.hasStartCloudRecordingPermission = allow;
1137
1326
  }
1327
+ }, {
1328
+ key: "setHasWaitingRoomPermission",
1329
+ value: function setHasWaitingRoomPermission(allow) {
1330
+ this.hasWaitingRoomPermission = allow;
1331
+ }
1138
1332
  }, {
1139
1333
  key: "setHasGetLiveStreamingUrlPermission",
1140
1334
  value: function setHasGetLiveStreamingUrlPermission(hasGetLiveStreamingUrlPermission) {
@@ -1153,6 +1347,12 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
1153
1347
  }, {
1154
1348
  key: "updateWaitingRoomEnabled",
1155
1349
  value: function updateWaitingRoomEnabled(allow) {
1350
+ // 10ms后设置ignoreMouseEvents,防止点击事件穿透,直接设置无效
1351
+ setTimeout(function () {
1352
+ window.runtime.browserWindow.setIgnoreMouseEvents(true, {
1353
+ forward: true
1354
+ });
1355
+ }, 10);
1156
1356
  (0, _rendererEvent.sendEvent)({
1157
1357
  action: _constant.RendererEventAction.FRAGMENT_SET_ENABLE_WAITING_ROOM,
1158
1358
  payload: {
@@ -1233,6 +1433,83 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
1233
1433
  y: y
1234
1434
  };
1235
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
+ }
1236
1513
  }, {
1237
1514
  key: "showToast",
1238
1515
  value: function showToast(params) {
@@ -1247,7 +1524,7 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
1247
1524
  }]);
1248
1525
  }();
1249
1526
  _ControlBarStore = ControlBarStore;
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);
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);
1251
1528
  _init_shareWithAudio = _applyDecs$e[0];
1252
1529
  _init_shareAudioProcessingChannel = _applyDecs$e[1];
1253
1530
  _init_currentShareId = _applyDecs$e[2];
@@ -1268,29 +1545,44 @@ _init_allowChangeSelfName = _applyDecs$e[16];
1268
1545
  _init_allowChat = _applyDecs$e[17];
1269
1546
  _init_allowJoinWithMuteAudio = _applyDecs$e[18];
1270
1547
  _init_allowShareScreen = _applyDecs$e[19];
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];
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];