fcr-ui-scene 3.2.0 → 3.3.1

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 (356) hide show
  1. package/dist/electron/app.js +148 -0
  2. package/dist/electron/bootstrap-dev.js +51 -0
  3. package/dist/electron/bootstrap-sdk.js +56 -0
  4. package/dist/electron/default-options.js +25 -0
  5. package/dist/electron/env.js +13 -0
  6. package/dist/electron/index.js +20 -0
  7. package/dist/electron/injections.js +702 -0
  8. package/dist/electron/logger.js +66 -0
  9. package/dist/electron/main.js +67 -0
  10. package/dist/electron/plugins/meeting-state.js +39 -0
  11. package/dist/electron/plugins/screenshot.js +49 -0
  12. package/dist/electron/preload.js +36 -0
  13. package/dist/electron/tools.js +66 -0
  14. package/dist/electron/window.js +124 -0
  15. package/installer/icons/favicon.ico +0 -0
  16. package/installer/icons/favicon.png +0 -0
  17. package/installer/mac/entitlements.mac.plist +16 -0
  18. package/lib/common/device-store.d.ts +1 -1
  19. package/lib/common/device-store.js +11 -3
  20. package/lib/common/event-store.d.ts +17 -1
  21. package/lib/common/event-store.js +38 -5
  22. package/lib/common/room-store.d.ts +55 -0
  23. package/lib/common/room-store.js +395 -0
  24. package/lib/common/security-store.d.ts +14 -4
  25. package/lib/common/security-store.js +149 -30
  26. package/lib/creator.js +2 -0
  27. package/lib/electron/app.js +8 -0
  28. package/lib/electron/bootstrap-dev.d.ts +1 -0
  29. package/lib/electron/bootstrap-dev.js +51 -0
  30. package/lib/electron/bootstrap-sdk.d.ts +1 -0
  31. package/lib/electron/bootstrap-sdk.js +57 -0
  32. package/lib/electron/bootstrap.d.ts +1 -0
  33. package/lib/electron/bootstrap.js +56 -0
  34. package/lib/electron/default-options.js +1 -1
  35. package/lib/electron/dev.d.ts +1 -0
  36. package/lib/electron/dev.js +51 -0
  37. package/lib/electron/injections.d.ts +2 -1
  38. package/lib/electron/injections.js +6 -6
  39. package/lib/electron/main.js +4 -16
  40. package/lib/electron/plugins/meeting-state.d.ts +2 -0
  41. package/lib/electron/plugins/meeting-state.js +39 -0
  42. package/lib/electron/preload.js +2 -1
  43. package/lib/fragments/control-bar/control-bar-store.d.ts +34 -1
  44. package/lib/fragments/control-bar/control-bar-store.js +371 -79
  45. package/lib/fragments/control-bar/device/index.js +5 -3
  46. package/lib/fragments/control-bar/index.css +15 -10
  47. package/lib/fragments/control-bar/index.js +18 -0
  48. package/lib/fragments/control-bar/meeting-details/meeting-detail.css +109 -0
  49. package/lib/fragments/control-bar/meeting-details/meeting-details-portal.d.ts +3 -0
  50. package/lib/fragments/control-bar/meeting-details/meeting-details-portal.js +60 -0
  51. package/lib/fragments/control-bar/meeting-details/meeting-details.d.ts +2 -0
  52. package/lib/fragments/control-bar/meeting-details/meeting-details.js +179 -0
  53. package/lib/fragments/control-bar/more-actions/index.css +53 -0
  54. package/lib/fragments/control-bar/more-actions/index.js +72 -37
  55. package/lib/fragments/control-bar/security-content/index.css +10 -0
  56. package/lib/fragments/control-bar/security-content/index.js +40 -18
  57. package/lib/fragments/control-bar/view.js +8 -2
  58. package/lib/login-confirm-dialog.d.ts +12 -0
  59. package/lib/login-confirm-dialog.js +80 -0
  60. package/lib/modules/Interpreter/add-button/index.css +4 -0
  61. package/lib/modules/Interpreter/add-button/index.d.ts +11 -0
  62. package/lib/modules/Interpreter/add-button/index.js +41 -0
  63. package/lib/modules/Interpreter/config.d.ts +16 -0
  64. package/lib/modules/Interpreter/config.js +17 -0
  65. package/lib/modules/Interpreter/constant.d.ts +44 -0
  66. package/lib/modules/Interpreter/constant.js +60 -0
  67. package/lib/modules/Interpreter/context.d.ts +2 -0
  68. package/lib/modules/Interpreter/context.js +9 -0
  69. package/lib/modules/Interpreter/dialog-content/index.css +33 -0
  70. package/lib/modules/Interpreter/dialog-content/index.d.ts +8 -0
  71. package/lib/modules/Interpreter/dialog-content/index.js +34 -0
  72. package/lib/modules/Interpreter/footer/components/interpreter-btn/index.d.ts +5 -0
  73. package/lib/modules/Interpreter/footer/components/interpreter-btn/index.js +56 -0
  74. package/lib/modules/Interpreter/footer/components/set-btn/index.d.ts +5 -0
  75. package/lib/modules/Interpreter/footer/components/set-btn/index.js +46 -0
  76. package/lib/modules/Interpreter/footer/components/tooltip-wrapper/index.d.ts +6 -0
  77. package/lib/modules/Interpreter/footer/components/tooltip-wrapper/index.js +28 -0
  78. package/lib/modules/Interpreter/footer/index.css +10 -0
  79. package/lib/modules/Interpreter/footer/index.d.ts +3 -0
  80. package/lib/modules/Interpreter/footer/index.js +35 -0
  81. package/lib/modules/Interpreter/index.css +8 -0
  82. package/lib/modules/Interpreter/index.d.ts +21 -0
  83. package/lib/modules/Interpreter/index.js +110 -0
  84. package/lib/modules/Interpreter/interpreter-list/index.css +21 -0
  85. package/lib/modules/Interpreter/interpreter-list/index.d.ts +3 -0
  86. package/lib/modules/Interpreter/interpreter-list/index.js +65 -0
  87. package/lib/modules/Interpreter/interpreter-list/interpreter-item/components/pick-language/index.css +31 -0
  88. package/lib/modules/Interpreter/interpreter-list/interpreter-item/components/pick-language/index.d.ts +11 -0
  89. package/lib/modules/Interpreter/interpreter-list/interpreter-item/components/pick-language/index.js +141 -0
  90. package/lib/modules/Interpreter/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_ar.png +0 -0
  91. package/lib/modules/Interpreter/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_cn.png +0 -0
  92. package/lib/modules/Interpreter/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_de.png +0 -0
  93. package/lib/modules/Interpreter/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_en.png +0 -0
  94. package/lib/modules/Interpreter/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_es.png +0 -0
  95. package/lib/modules/Interpreter/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_fr.png +0 -0
  96. package/lib/modules/Interpreter/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_hi.png +0 -0
  97. package/lib/modules/Interpreter/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_id.png +0 -0
  98. package/lib/modules/Interpreter/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_it.png +0 -0
  99. package/lib/modules/Interpreter/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_jp.png +0 -0
  100. package/lib/modules/Interpreter/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_ko.png +0 -0
  101. package/lib/modules/Interpreter/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_ms.png +0 -0
  102. package/lib/modules/Interpreter/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_pt.png +0 -0
  103. package/lib/modules/Interpreter/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_ru.png +0 -0
  104. package/lib/modules/Interpreter/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_th.png +0 -0
  105. package/lib/modules/Interpreter/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_tr.png +0 -0
  106. package/lib/modules/Interpreter/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_vi.png +0 -0
  107. package/lib/modules/Interpreter/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/index.d.ts +11 -0
  108. package/lib/modules/Interpreter/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/index.js +119 -0
  109. package/lib/modules/Interpreter/interpreter-list/interpreter-item/components/pick-user/index.css +41 -0
  110. package/lib/modules/Interpreter/interpreter-list/interpreter-item/components/pick-user/index.d.ts +12 -0
  111. package/lib/modules/Interpreter/interpreter-list/interpreter-item/components/pick-user/index.js +118 -0
  112. package/lib/modules/Interpreter/interpreter-list/interpreter-item/index.css +34 -0
  113. package/lib/modules/Interpreter/interpreter-list/interpreter-item/index.d.ts +8 -0
  114. package/lib/modules/Interpreter/interpreter-list/interpreter-item/index.js +65 -0
  115. package/lib/modules/Interpreter/loading-wrapper/index.css +53 -0
  116. package/lib/modules/Interpreter/loading-wrapper/index.d.ts +6 -0
  117. package/lib/modules/Interpreter/loading-wrapper/index.js +28 -0
  118. package/lib/modules/Interpreter/store.d.ts +82 -0
  119. package/lib/modules/Interpreter/store.js +1382 -0
  120. package/lib/modules/Interpreter/view.d.ts +3 -0
  121. package/lib/modules/Interpreter/view.js +32 -0
  122. package/lib/modules/action-bar/Interpreter/index.d.ts +6 -0
  123. package/lib/modules/action-bar/Interpreter/index.js +44 -0
  124. package/lib/modules/action-bar/action-bar-collapes-items.js +5 -5
  125. package/lib/modules/action-bar/apps/appitems.d.ts +2 -0
  126. package/lib/modules/action-bar/apps/appitems.js +40 -0
  127. package/lib/modules/action-bar/apps/index.css +6 -0
  128. package/lib/modules/action-bar/apps/index.d.ts +4 -0
  129. package/lib/modules/action-bar/apps/index.js +58 -0
  130. package/lib/modules/action-bar/chat/index.js +5 -5
  131. package/lib/modules/action-bar/device/index.css +7 -2
  132. package/lib/modules/action-bar/device/index.js +4 -4
  133. package/lib/modules/action-bar/index.css +59 -12
  134. package/lib/modules/action-bar/index.d.ts +3 -2
  135. package/lib/modules/action-bar/index.dev.js +1 -1
  136. package/lib/modules/action-bar/index.js +21 -0
  137. package/lib/modules/action-bar/leave/assign-host.d.ts +3 -0
  138. package/lib/modules/action-bar/leave/assign-host.js +2 -4
  139. package/lib/modules/action-bar/leave/index.js +29 -6
  140. package/lib/modules/action-bar/leave/leave-meeting.d.ts +11 -0
  141. package/lib/modules/action-bar/leave/leave-meeting.js +25 -16
  142. package/lib/modules/action-bar/more/poppover-content.js +4 -4
  143. package/lib/modules/action-bar/participants/index.css +12 -0
  144. package/lib/modules/action-bar/participants/index.js +21 -14
  145. package/lib/modules/action-bar/screen-share/index.js +5 -1
  146. package/lib/modules/action-bar/screen-share/submenu.js +16 -22
  147. package/lib/modules/action-bar/security/drop-menu.js +90 -13
  148. package/lib/modules/action-bar/store.d.ts +38 -6
  149. package/lib/modules/action-bar/store.js +487 -95
  150. package/lib/modules/action-bar/switch-input-language-room/fcr_translateswitch.png +0 -0
  151. package/lib/modules/action-bar/switch-input-language-room/index.css +86 -0
  152. package/lib/modules/action-bar/switch-input-language-room/index.d.ts +17 -0
  153. package/lib/modules/action-bar/switch-input-language-room/index.js +145 -0
  154. package/lib/modules/action-bar/switch-output-language-room/drop-menu.d.ts +1 -0
  155. package/lib/modules/action-bar/switch-output-language-room/drop-menu.js +197 -0
  156. package/lib/modules/action-bar/switch-output-language-room/guide-tooltip/index.css +18 -0
  157. package/lib/modules/action-bar/switch-output-language-room/guide-tooltip/index.d.ts +8 -0
  158. package/lib/modules/action-bar/switch-output-language-room/guide-tooltip/index.js +59 -0
  159. package/lib/modules/action-bar/switch-output-language-room/index.d.ts +12 -0
  160. package/lib/modules/action-bar/switch-output-language-room/index.js +238 -0
  161. package/lib/modules/action-bar/switch-output-language-room/notification-bar/components/interpreter/index.css +54 -0
  162. package/lib/modules/action-bar/switch-output-language-room/notification-bar/components/interpreter/index.d.ts +8 -0
  163. package/lib/modules/action-bar/switch-output-language-room/notification-bar/components/interpreter/index.js +94 -0
  164. package/lib/modules/action-bar/switch-output-language-room/notification-bar/components/virtual-image/index.css +8 -0
  165. package/lib/modules/action-bar/switch-output-language-room/notification-bar/components/virtual-image/index.d.ts +4 -0
  166. package/lib/modules/action-bar/switch-output-language-room/notification-bar/components/virtual-image/index.js +31 -0
  167. package/lib/modules/action-bar/switch-output-language-room/notification-bar/dome.png +0 -0
  168. package/lib/modules/action-bar/switch-output-language-room/notification-bar/fcr_translateswitch.png +0 -0
  169. package/lib/modules/action-bar/switch-output-language-room/notification-bar/index.css +71 -0
  170. package/lib/modules/action-bar/switch-output-language-room/notification-bar/index.d.ts +2 -0
  171. package/lib/modules/action-bar/switch-output-language-room/notification-bar/index.js +82 -0
  172. package/lib/modules/action-bar/view.js +65 -42
  173. package/lib/modules/chat/chat-bar/index.js +39 -27
  174. package/lib/modules/chat/chat-select/index.css +14 -4
  175. package/lib/modules/chat/chat.d.ts +1 -2
  176. package/lib/modules/chat/chat.js +184 -105
  177. package/lib/modules/chat/index.css +49 -0
  178. package/lib/modules/chat/index.d.ts +2 -2
  179. package/lib/modules/chat/index.dev.js +1 -1
  180. package/lib/modules/chat/index.js +13 -8
  181. package/lib/modules/chat/message-list.js +59 -48
  182. package/lib/modules/chat/store.d.ts +48 -2
  183. package/lib/modules/chat/store.js +258 -45
  184. package/lib/modules/connection-gateway/index.d.ts +2 -1
  185. package/lib/modules/connection-gateway/store.d.ts +6 -3
  186. package/lib/modules/connection-gateway/store.js +5 -1
  187. package/lib/modules/device-pretest/audio-preview/speaker-control.js +1 -1
  188. package/lib/modules/device-pretest/index.css +0 -4
  189. package/lib/modules/device-pretest/settings/beauty.js +17 -6
  190. package/lib/modules/device-pretest/store.js +7 -11
  191. package/lib/modules/dialog/components/Interpreter/electron.d.ts +2 -0
  192. package/lib/modules/dialog/components/Interpreter/electron.js +72 -0
  193. package/lib/modules/dialog/components/Interpreter/index.css +30 -0
  194. package/lib/modules/dialog/components/Interpreter/index.d.ts +4 -0
  195. package/lib/modules/dialog/components/Interpreter/index.js +61 -0
  196. package/lib/modules/dialog/components/Interpreter/user-queue/index.css +36 -0
  197. package/lib/modules/dialog/components/Interpreter/user-queue/index.d.ts +3 -0
  198. package/lib/modules/dialog/components/Interpreter/user-queue/index.js +47 -0
  199. package/lib/modules/dialog/components/chat/electron.js +2 -1
  200. package/lib/modules/dialog/components/confirm/electron.js +5 -3
  201. package/lib/modules/dialog/components/connection-gateway/electron.js +3 -1
  202. package/lib/modules/dialog/components/connection-gateway/index.css +0 -2
  203. package/lib/modules/dialog/components/device-setting/electron.js +3 -1
  204. package/lib/modules/dialog/components/device-setting/index.css +0 -1
  205. package/lib/modules/dialog/components/operation-waiting-room/electron.d.ts +5 -0
  206. package/lib/modules/dialog/components/operation-waiting-room/electron.js +89 -0
  207. package/lib/modules/dialog/components/operation-waiting-room/index.css +44 -0
  208. package/lib/modules/dialog/components/operation-waiting-room/index.d.ts +5 -0
  209. package/lib/modules/dialog/components/operation-waiting-room/index.js +156 -0
  210. package/lib/modules/dialog/components/participant/electron.js +2 -1
  211. package/lib/modules/dialog/components/remove-admit-waiting-room/electron.d.ts +5 -0
  212. package/lib/modules/dialog/components/remove-admit-waiting-room/electron.js +89 -0
  213. package/lib/modules/dialog/components/remove-admit-waiting-room/index.css +50 -0
  214. package/lib/modules/dialog/components/remove-admit-waiting-room/index.d.ts +5 -0
  215. package/lib/modules/dialog/components/remove-admit-waiting-room/index.js +90 -0
  216. package/lib/modules/dialog/components/switch-language-channels/electron.d.ts +2 -0
  217. package/lib/modules/dialog/components/switch-language-channels/electron.js +72 -0
  218. package/lib/modules/dialog/components/switch-language-channels/index.css +30 -0
  219. package/lib/modules/dialog/components/switch-language-channels/index.d.ts +4 -0
  220. package/lib/modules/dialog/components/switch-language-channels/index.js +63 -0
  221. package/lib/modules/dialog/components/switch-language-channels/user-queue/index.css +36 -0
  222. package/lib/modules/dialog/components/switch-language-channels/user-queue/index.d.ts +3 -0
  223. package/lib/modules/dialog/components/switch-language-channels/user-queue/index.js +47 -0
  224. package/lib/modules/dialog/components/whiteboard/index.js +2 -1
  225. package/lib/modules/dialog/dialogs.js +17 -13
  226. package/lib/modules/dialog/index.css +2 -0
  227. package/lib/modules/dialog/store.d.ts +4 -0
  228. package/lib/modules/dialog/store.js +16 -2
  229. package/lib/modules/event-notification/context.d.ts +2 -0
  230. package/lib/modules/event-notification/context.js +9 -0
  231. package/lib/modules/event-notification/index.css +58 -0
  232. package/lib/modules/event-notification/index.d.ts +13 -0
  233. package/lib/modules/event-notification/index.js +48 -0
  234. package/lib/modules/event-notification/store.d.ts +17 -0
  235. package/lib/modules/event-notification/store.js +133 -0
  236. package/lib/modules/event-notification/view.d.ts +5 -0
  237. package/lib/modules/event-notification/view.js +114 -0
  238. package/lib/modules/invite/index.css +4 -4
  239. package/lib/modules/invite/pstn-invite.js +1 -0
  240. package/lib/modules/layout/components/Gallery.js +7 -1
  241. package/lib/modules/layout/components/Layout.js +82 -57
  242. package/lib/modules/layout/components/index.css +33 -6
  243. package/lib/modules/layout/index.css +30 -0
  244. package/lib/modules/layout/member-window/index.js +9 -3
  245. package/lib/modules/layout/store.d.ts +19 -2
  246. package/lib/modules/layout/store.js +177 -70
  247. package/lib/modules/layout/video-window-datasource.d.ts +1 -1
  248. package/lib/modules/layout/video-window-datasource.js +1 -1
  249. package/lib/modules/live-streaming/index.dev.js +1 -1
  250. package/lib/modules/notification/context.d.ts +2 -0
  251. package/lib/modules/notification/context.js +9 -0
  252. package/lib/modules/notification/index.css +58 -0
  253. package/lib/modules/notification/index.d.ts +15 -0
  254. package/lib/modules/notification/index.js +51 -0
  255. package/lib/modules/notification/interpreter-status/index.css +72 -0
  256. package/lib/modules/notification/interpreter-status/index.d.ts +3 -0
  257. package/lib/modules/notification/interpreter-status/index.js +59 -0
  258. package/lib/modules/notification/store.d.ts +16 -0
  259. package/lib/modules/notification/store.js +127 -0
  260. package/lib/modules/notification/view.d.ts +10 -0
  261. package/lib/modules/notification/view.js +116 -0
  262. package/lib/modules/participant/attendee/index.d.ts +12 -3
  263. package/lib/modules/participant/attendee/index.js +132 -30
  264. package/lib/modules/participant/index.css +20 -0
  265. package/lib/modules/participant/index.d.ts +5 -2
  266. package/lib/modules/participant/index.dev.js +1 -1
  267. package/lib/modules/participant/index.js +27 -0
  268. package/lib/modules/participant/room-control-drop-menu/index.css +37 -0
  269. package/lib/modules/participant/store.d.ts +30 -5
  270. package/lib/modules/participant/store.js +347 -74
  271. package/lib/modules/participant/view.js +133 -34
  272. package/lib/modules/setting/index.css +1 -5
  273. package/lib/modules/setting/index.dev.js +1 -1
  274. package/lib/modules/setting/store.d.ts +2 -2
  275. package/lib/modules/setting/store.js +3 -8
  276. package/lib/modules/setting/translate-settings/translate-settings.js +1 -1
  277. package/lib/modules/setting/video-settings/index.css +9 -6
  278. package/lib/modules/share-screen/index.d.ts +2 -0
  279. package/lib/modules/share-screen/index.dev.js +3 -2
  280. package/lib/modules/share-screen/selection/index.css +2 -0
  281. package/lib/modules/share-screen/store.d.ts +6 -3
  282. package/lib/modules/share-screen/store.js +170 -129
  283. package/lib/modules/state-bar/index.css +2 -2
  284. package/lib/modules/state-bar/index.d.ts +2 -2
  285. package/lib/modules/state-bar/index.dev.js +1 -1
  286. package/lib/modules/state-bar/meeting-detail.css +6 -4
  287. package/lib/modules/state-bar/meeting-details.js +32 -5
  288. package/lib/modules/state-bar/meeting-network-state.css +14 -3
  289. package/lib/modules/state-bar/meeting-network-state.js +10 -4
  290. package/lib/modules/state-bar/recording.js +3 -5
  291. package/lib/modules/state-bar/store.d.ts +5 -2
  292. package/lib/modules/state-bar/store.js +32 -5
  293. package/lib/modules/state-bar/view.js +7 -10
  294. package/lib/modules/video-window/index.css +1 -0
  295. package/lib/modules/video-window/store.d.ts +2 -2
  296. package/lib/modules/video-window/store.js +14 -11
  297. package/lib/modules/waiting-room-layout/context.d.ts +2 -0
  298. package/lib/modules/waiting-room-layout/context.js +9 -0
  299. package/lib/modules/waiting-room-layout/index.css +71 -0
  300. package/lib/modules/waiting-room-layout/index.d.ts +8 -0
  301. package/lib/modules/waiting-room-layout/index.js +47 -0
  302. package/lib/modules/waiting-room-layout/store.d.ts +30 -0
  303. package/lib/modules/waiting-room-layout/store.js +189 -0
  304. package/lib/modules/waiting-room-layout/type.d.ts +0 -0
  305. package/lib/modules/waiting-room-layout/type.js +1 -0
  306. package/lib/modules/waiting-room-layout/view.d.ts +3 -0
  307. package/lib/modules/waiting-room-layout/view.js +67 -0
  308. package/lib/modules/whiteboard/app.js +0 -6
  309. package/lib/modules/whiteboard/components/control-bar/index.css +3 -0
  310. package/lib/modules/whiteboard/components/multi-window/index.js +6 -1
  311. package/lib/modules/whiteboard/components/progress/electron.js +2 -1
  312. package/lib/modules/whiteboard/components/switch-theme/index.css +4 -0
  313. package/lib/modules/whiteboard/components/switch-theme/index.d.ts +2 -1
  314. package/lib/modules/whiteboard/components/switch-theme/index.js +20 -15
  315. package/lib/modules/whiteboard/components/switch-theme/item.d.ts +1 -0
  316. package/lib/modules/whiteboard/components/switch-theme/item.js +9 -2
  317. package/lib/modules/whiteboard/components/toolbar/components/shape-picker.js +14 -10
  318. package/lib/modules/whiteboard/components/toolbar/store.d.ts +1 -0
  319. package/lib/modules/whiteboard/components/toolbar/store.js +3 -0
  320. package/lib/modules/whiteboard/context.d.ts +4 -0
  321. package/lib/modules/whiteboard/context.js +4 -2
  322. package/lib/modules/whiteboard/index.js +22 -6
  323. package/lib/plugins/browser-runtime-plugin.js +4 -1
  324. package/lib/plugins/module-dev-plugin.js +8 -6
  325. package/lib/runtime.d.ts +2 -1
  326. package/lib/translations/enUS.d.ts +449 -6
  327. package/lib/translations/enUS.js +485 -32
  328. package/lib/translations/zhCN.d.ts +447 -6
  329. package/lib/translations/zhCN.js +468 -17
  330. package/lib/type.d.ts +6 -2
  331. package/lib/ui-manager.d.ts +7 -3
  332. package/lib/ui-manager.js +576 -139
  333. package/lib/ui-scene.d.ts +1 -0
  334. package/lib/ui-scene.js +26 -21
  335. package/lib/utilities/constant.d.ts +43 -4
  336. package/lib/utilities/constant.js +41 -1
  337. package/lib/utilities/parameters.js +2 -2
  338. package/lib/utilities/renderer.d.ts +1 -0
  339. package/lib/utilities/renderer.js +6 -2
  340. package/package.json +14 -14
  341. package/public/assets/fcr_defaultpage.png +0 -0
  342. package/public/assets/login_confirm.png +0 -0
  343. package/public/index.html +34 -11
  344. package/dist/132.js +0 -2
  345. package/dist/132.js.LICENSE.txt +0 -311
  346. package/dist/651.js +0 -2
  347. package/dist/651.js.LICENSE.txt +0 -1
  348. package/dist/73.js +0 -1
  349. package/dist/index.html +0 -13
  350. package/dist/main.da7c203ab32d15742cfe.css +0 -11760
  351. package/dist/main.js +0 -2
  352. package/dist/main.js.LICENSE.txt +0 -254
  353. package/dist/worker-entry.worker.js.LICENSE.txt +0 -13
  354. package/lib/modules/device-pretest/settings/index.css +0 -15
  355. package/lib/modules/participant/attendee/participants-more-action.d.ts +0 -18
  356. 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];