fcr-ui-scene 3.5.1 → 3.6.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 (379) hide show
  1. package/lib/creator.d.ts +14 -0
  2. package/lib/creator.js +239 -14
  3. package/lib/electron/app.js +0 -21
  4. package/lib/electron/bootstrap-sdk.js +136 -7
  5. package/lib/electron/injections.d.ts +19 -7
  6. package/lib/electron/injections.js +206 -77
  7. package/lib/electron/ipc/ipc.d.ts +26 -0
  8. package/lib/electron/ipc/ipc.js +137 -0
  9. package/lib/electron/ipc/type.d.ts +11 -0
  10. package/lib/electron/ipc/type.js +19 -0
  11. package/lib/electron/logger.js +1 -1
  12. package/lib/electron/main.js +1 -1
  13. package/lib/electron/plugins/meeting-state.d.ts +1 -0
  14. package/lib/electron/plugins/meeting-state.js +3 -3
  15. package/lib/electron/plugins/screenshot.js +2 -2
  16. package/lib/electron/preload.js +67 -5
  17. package/lib/electron/window.js +0 -2
  18. package/lib/global.css +21 -0
  19. package/lib/modules/action-bar/components/apps/index.js +1 -0
  20. package/lib/modules/action-bar/components/apps/useWidgetList.js +1 -1
  21. package/lib/modules/action-bar/components/item/index.d.ts +2 -0
  22. package/lib/modules/action-bar/components/item/index.js +4 -2
  23. package/lib/modules/action-bar/components/leave/index.js +1 -0
  24. package/lib/modules/action-bar/components/more/index.js +1 -0
  25. package/lib/modules/action-bar/components/record/index.js +43 -106
  26. package/lib/modules/action-bar/components/record/popover.d.ts +4 -0
  27. package/lib/modules/action-bar/components/record/popover.js +57 -0
  28. package/lib/modules/action-bar/components/record/stop-record-dialog.js +1 -0
  29. package/lib/modules/action-bar/components/screen-share/index.js +15 -3
  30. package/lib/modules/action-bar/components/screen-share/submenu.js +2 -2
  31. package/lib/modules/action-bar/components/security/index.js +2 -1
  32. package/lib/modules/action-bar/components/smaller/index.js +1 -1
  33. package/lib/modules/action-bar/components/trigger-output-language/index.js +17 -22
  34. package/lib/modules/action-bar/components/trigger-subscribe-language/index.js +2 -1
  35. package/lib/modules/action-bar/index.css +3 -2
  36. package/lib/modules/action-bar/index.js +2 -1
  37. package/lib/modules/action-bar/store.d.ts +5 -0
  38. package/lib/modules/action-bar/store.js +30 -12
  39. package/lib/modules/action-bar/types.d.ts +1 -0
  40. package/lib/modules/chat/chat-room-store.js +1 -1
  41. package/lib/modules/chat/components/chat-bar/index.d.ts +1 -1
  42. package/lib/modules/chat/components/chat-bar/index.js +5 -3
  43. package/lib/modules/chat/components/chat-select/select-item/index.js +1 -1
  44. package/lib/modules/chat/components/message-list/index.js +1 -2
  45. package/lib/modules/chat/components/message-list/message-item/index.d.ts +0 -1
  46. package/lib/modules/chat/components/message-list/message-item/index.js +9 -10
  47. package/lib/modules/chat/index.css +24 -0
  48. package/lib/modules/chat/view.js +13 -3
  49. package/lib/modules/components/device-control/components/carmera/index.js +4 -5
  50. package/lib/modules/components/device-control/components/microphone/index.js +4 -5
  51. package/lib/modules/components/device-control/index.css +6 -3
  52. package/lib/modules/components/leave-meeting/components/assign-host.js +26 -4
  53. package/lib/modules/components/leave-meeting/components/index.css +35 -0
  54. package/lib/modules/components/leave-meeting/index.js +1 -0
  55. package/lib/modules/components/leave-meeting/store.js +25 -67
  56. package/lib/modules/components/member-window/components/member-actions/components/audio-control.js +3 -2
  57. package/lib/modules/components/member-window/components/member-actions/components/icon-buttons/index.js +1 -1
  58. package/lib/modules/components/member-window/components/member-actions/components/icon-status.js +10 -9
  59. package/lib/modules/components/member-window/components/member-actions/components/more-actions.js +2 -2
  60. package/lib/modules/components/member-window/components/member-actions/components/user-info.js +1 -1
  61. package/lib/modules/components/member-window/components/member-actions/index.js +2 -2
  62. package/lib/modules/components/member-window/components/video-player/components/remote-video-player.js +3 -14
  63. package/lib/modules/components/member-window/index.css +18 -7
  64. package/lib/modules/components/member-window/types.d.ts +1 -1
  65. package/lib/modules/components/security-menu/index.css +2 -2
  66. package/lib/modules/components/security-menu/index.js +80 -28
  67. package/lib/modules/components/tab-frame/index.css +1 -1
  68. package/lib/modules/control-bar/components/meeting-details/index.css +1 -1
  69. package/lib/modules/control-bar/components/meeting-details/index.js +15 -9
  70. package/lib/modules/control-bar/components/more-actions/index.js +3 -21
  71. package/lib/modules/control-bar/components/share-state-nav/index.js +4 -20
  72. package/lib/modules/control-bar/index.d.ts +2 -0
  73. package/lib/modules/control-bar/index.js +3 -1
  74. package/lib/modules/control-bar/store.d.ts +11 -2
  75. package/lib/modules/control-bar/store.js +103 -95
  76. package/lib/modules/control-bar/view.js +1 -6
  77. package/lib/modules/device-pretest/audio-preview/speaker-detection.js +1 -1
  78. package/lib/modules/dialog/components/chat/electron.d.ts +1 -3
  79. package/lib/modules/dialog/components/chat/index.js +24 -17
  80. package/lib/modules/dialog/components/confirm-leave-meeting/index.d.ts +6 -0
  81. package/lib/modules/dialog/components/confirm-leave-meeting/index.js +86 -0
  82. package/lib/modules/dialog/components/control-bar/index.d.ts +1 -2
  83. package/lib/modules/dialog/components/control-bar/index.js +5 -17
  84. package/lib/modules/dialog/components/dialog-container/component/body.d.ts +1 -0
  85. package/lib/modules/dialog/components/dialog-container/component/body.js +4 -2
  86. package/lib/modules/dialog/components/dialog-container/index.css +2 -1
  87. package/lib/modules/dialog/components/dialog-container/index.d.ts +1 -0
  88. package/lib/modules/dialog/components/dialog-container/index.js +3 -1
  89. package/lib/modules/dialog/components/participant/index.d.ts +0 -1
  90. package/lib/modules/dialog/components/participant/index.js +15 -24
  91. package/lib/modules/dialog/components/pre-setting/electron.d.ts +2 -0
  92. package/lib/modules/dialog/components/pre-setting/electron.js +51 -0
  93. package/lib/modules/dialog/components/pre-setting/index.css +26 -0
  94. package/lib/modules/dialog/components/pre-setting/index.d.ts +6 -0
  95. package/lib/modules/dialog/components/pre-setting/index.js +38 -0
  96. package/lib/modules/dialog/components/pre-setting-container/component/body.d.ts +8 -0
  97. package/lib/modules/dialog/components/pre-setting-container/component/body.js +80 -0
  98. package/lib/modules/dialog/components/pre-setting-container/index.css +82 -0
  99. package/lib/modules/dialog/components/pre-setting-container/index.d.ts +18 -0
  100. package/lib/modules/dialog/components/pre-setting-container/index.js +117 -0
  101. package/lib/modules/dialog/components/rename/index.d.ts +4 -0
  102. package/lib/modules/dialog/components/rename/index.js +72 -0
  103. package/lib/modules/dialog/components/video-window/index.js +18 -16
  104. package/lib/modules/dialog/components/widget/electron.d.ts +2 -1
  105. package/lib/modules/dialog/components/widget/electron.js +3 -2
  106. package/lib/modules/dialog/components/widget/index.d.ts +2 -1
  107. package/lib/modules/dialog/components/widget/index.js +4 -6
  108. package/lib/modules/dialog/dialogs.d.ts +1 -0
  109. package/lib/modules/dialog/dialogs.js +3 -2
  110. package/lib/modules/dialog/hooks/useElectron.d.ts +2 -0
  111. package/lib/modules/dialog/hooks/useElectron.js +11 -13
  112. package/lib/modules/dialog/index.d.ts +2 -0
  113. package/lib/modules/dialog/index.js +2 -1
  114. package/lib/modules/dialog/store.d.ts +8 -3
  115. package/lib/modules/dialog/store.js +38 -26
  116. package/lib/modules/dialog/type.d.ts +1 -0
  117. package/lib/modules/dialog/view.js +2 -1
  118. package/lib/modules/event-confirm/index.d.ts +2 -0
  119. package/lib/modules/event-confirm/index.js +2 -1
  120. package/lib/modules/event-confirm/store.d.ts +9 -1
  121. package/lib/modules/event-confirm/store.js +94 -8
  122. package/lib/modules/event-confirm/view.js +55 -46
  123. package/lib/modules/{sound-effect → event-sound}/index.d.ts +3 -2
  124. package/lib/modules/{sound-effect → event-sound}/index.js +9 -5
  125. package/lib/modules/event-toast/store.js +2 -0
  126. package/lib/modules/interpreter/dialog-content/index.js +4 -1
  127. package/lib/modules/interpreter/index.d.ts +2 -0
  128. package/lib/modules/interpreter/index.js +2 -1
  129. package/lib/modules/interpreter/interpreter-list/interpreter-item/components/pick-language/index.js +3 -0
  130. package/lib/modules/interpreter/store.d.ts +2 -2
  131. package/lib/modules/interpreter/store.js +30 -24
  132. package/lib/modules/interpreter/type.d.ts +2 -0
  133. package/lib/modules/invite/components/pstn-invite.js +3 -9
  134. package/lib/modules/invite/components/voip-invite.css +26 -0
  135. package/lib/modules/invite/components/voip-invite.d.ts +1 -0
  136. package/lib/modules/invite/components/voip-invite.js +8 -11
  137. package/lib/modules/invite/index.css +16 -3
  138. package/lib/modules/invite/index.d.ts +2 -1
  139. package/lib/modules/invite/index.js +2 -1
  140. package/lib/modules/invite/store.d.ts +5 -1
  141. package/lib/modules/invite/store.js +8 -1
  142. package/lib/modules/layout/components/Carousel.d.ts +1 -1
  143. package/lib/modules/layout/components/Carousel.js +16 -118
  144. package/lib/modules/layout/components/CommonVideoRenderer.d.ts +13 -0
  145. package/lib/modules/layout/components/CommonVideoRenderer.js +214 -0
  146. package/lib/modules/layout/components/Gallery.d.ts +1 -0
  147. package/lib/modules/layout/components/Gallery.js +62 -205
  148. package/lib/modules/layout/components/index.css +17 -34
  149. package/lib/modules/layout/index.d.ts +2 -0
  150. package/lib/modules/layout/index.js +2 -1
  151. package/lib/modules/layout/store.d.ts +5 -2
  152. package/lib/modules/layout/store.js +47 -39
  153. package/lib/modules/layout/type.d.ts +4 -0
  154. package/lib/modules/layout/type.js +6 -1
  155. package/lib/modules/live-streaming/store.d.ts +1 -0
  156. package/lib/modules/live-streaming/store.js +19 -8
  157. package/lib/modules/participant/components/confirm-input/index.d.ts +4 -4
  158. package/lib/modules/participant/components/confirm-input/index.js +74 -6
  159. package/lib/modules/participant/components/participants/components/footer/components/drop-menu/index.css +27 -3
  160. package/lib/modules/participant/components/participants/components/footer/components/footer/index.css +4 -0
  161. package/lib/modules/participant/components/participants/components/footer/components/footer/index.js +3 -2
  162. package/lib/modules/participant/components/participants/components/participants/components/attendee/index.css +4 -3
  163. package/lib/modules/participant/components/participants/components/participants/components/attendee/index.js +1 -0
  164. package/lib/modules/participant/components/participants/components/participants/components/participants-more/index.css +9 -1
  165. package/lib/modules/participant/components/participants/components/participants/components/participants-more/index.js +1 -1
  166. package/lib/modules/participant/components/participants/components/participants/index.css +1 -0
  167. package/lib/modules/participant/components/participants/components/render-user/components/attendee/index.css +18 -0
  168. package/lib/modules/participant/components/participants/components/render-user/components/attendee/index.js +12 -5
  169. package/lib/modules/participant/components/participants/components/render-user/components/user-action/components/move-actions-popover/index.js +1 -8
  170. package/lib/modules/participant/index.css +6 -0
  171. package/lib/modules/participant/index.d.ts +1 -0
  172. package/lib/modules/participant/index.js +9 -0
  173. package/lib/modules/participant/store.d.ts +6 -0
  174. package/lib/modules/participant/store.js +130 -96
  175. package/lib/modules/pc-audio-connect/store.js +1 -1
  176. package/lib/modules/phone-audio-connect/index.d.ts +2 -0
  177. package/lib/modules/phone-audio-connect/index.js +2 -1
  178. package/lib/modules/phone-audio-connect/store.d.ts +4 -1
  179. package/lib/modules/phone-audio-connect/store.js +4 -2
  180. package/lib/modules/setting/audio-settings/audio-settings.js +70 -48
  181. package/lib/modules/setting/audio-settings/index.css +23 -6
  182. package/lib/modules/setting/general-settings/general-settings.d.ts +1 -2
  183. package/lib/modules/setting/general-settings/general-settings.js +111 -37
  184. package/lib/modules/setting/general-settings/index.css +15 -0
  185. package/lib/modules/setting/index.d.ts +4 -1
  186. package/lib/modules/setting/index.js +7 -4
  187. package/lib/modules/setting/state/index.js +1 -1
  188. package/lib/modules/setting/store.d.ts +24 -11
  189. package/lib/modules/setting/store.js +203 -142
  190. package/lib/modules/setting/video-settings/index.css +13 -2
  191. package/lib/modules/setting/video-settings/video-settings-basic.js +18 -27
  192. package/lib/modules/setting/video-settings/video-settings.d.ts +0 -2
  193. package/lib/modules/setting/video-settings/video-settings.js +3 -2
  194. package/lib/modules/setting/view.d.ts +11 -2
  195. package/lib/modules/setting/view.js +93 -71
  196. package/lib/modules/share-screen/components/selection/index.js +6 -2
  197. package/lib/modules/share-screen/index.d.ts +4 -1
  198. package/lib/modules/share-screen/index.js +3 -1
  199. package/lib/modules/share-screen/store.d.ts +15 -5
  200. package/lib/modules/share-screen/store.js +105 -59
  201. package/lib/modules/share-screen/view.js +1 -1
  202. package/lib/modules/state-bar/index.css +4 -2
  203. package/lib/modules/state-bar/index.d.ts +2 -0
  204. package/lib/modules/state-bar/index.js +2 -1
  205. package/lib/modules/state-bar/layout-config.js +1 -0
  206. package/lib/modules/state-bar/live-streaming-state.js +1 -0
  207. package/lib/modules/state-bar/meeting-detail.css +10 -1
  208. package/lib/modules/state-bar/meeting-details.js +42 -26
  209. package/lib/modules/state-bar/meeting-network-state.css +8 -0
  210. package/lib/modules/state-bar/meeting-time.js +9 -20
  211. package/lib/modules/state-bar/store.d.ts +5 -1
  212. package/lib/modules/state-bar/store.js +10 -3
  213. package/lib/modules/state-bar/view.js +17 -6
  214. package/lib/modules/video-window/components/members/index.js +0 -3
  215. package/lib/modules/waiting-room-layout/index.css +13 -0
  216. package/lib/modules/waiting-room-layout/index.d.ts +2 -1
  217. package/lib/modules/waiting-room-layout/index.js +2 -1
  218. package/lib/modules/waiting-room-layout/store.d.ts +12 -1
  219. package/lib/modules/waiting-room-layout/store.js +42 -6
  220. package/lib/modules/waiting-room-layout/view.js +22 -5
  221. package/lib/modules/whiteboard/components/control-bar/index.css +1 -1
  222. package/lib/modules/whiteboard/components/switch-theme/libs.d.ts +1 -1
  223. package/lib/modules/whiteboard/components/switch-theme/libs.js +3 -1
  224. package/lib/modules/whiteboard/components/toolbar/ style.css +1 -0
  225. package/lib/modules/whiteboard/components/toolbar/components/color-picker/components/panel.js +1 -0
  226. package/lib/modules/whiteboard/components/toolbar/components/color-picker/components/picker.js +1 -0
  227. package/lib/modules/whiteboard/components/toolbar/components/eraser-picker.js +3 -14
  228. package/lib/modules/whiteboard/components/toolbar/components/expansion/index.d.ts +1 -0
  229. package/lib/modules/whiteboard/components/toolbar/components/expansion/index.js +83 -0
  230. package/lib/modules/whiteboard/components/toolbar/components/extra-tool-picker.js +2 -2
  231. package/lib/modules/whiteboard/components/toolbar/components/history.js +3 -3
  232. package/lib/modules/whiteboard/components/toolbar/components/item/index.d.ts +1 -0
  233. package/lib/modules/whiteboard/components/toolbar/components/item/index.js +42 -0
  234. package/lib/modules/whiteboard/components/toolbar/components/pen-picker.js +2 -2
  235. package/lib/modules/whiteboard/components/toolbar/components/screen-capture-picker.js +2 -2
  236. package/lib/modules/whiteboard/components/toolbar/components/shape-picker.js +3 -3
  237. package/lib/modules/whiteboard/components/toolbar/hooks/index.js +6 -6
  238. package/lib/modules/whiteboard/components/toolbar/index.js +9 -113
  239. package/lib/modules/whiteboard/components/toolbar/store.d.ts +18 -0
  240. package/lib/modules/whiteboard/components/toolbar/store.js +276 -83
  241. package/lib/modules/whiteboard/context.d.ts +1 -2
  242. package/lib/modules/whiteboard/index.d.ts +1 -14
  243. package/lib/modules/whiteboard/index.js +131 -426
  244. package/lib/modules/whiteboard/view.js +12 -10
  245. package/lib/modules/widget/sdk.js +2 -1
  246. package/lib/object-manager.d.ts +8 -0
  247. package/lib/object-manager.js +75 -0
  248. package/lib/plugins/browser-runtime-plugin.js +19 -14
  249. package/lib/providers/ability-provider.d.ts +8 -0
  250. package/lib/providers/ability-provider.js +14 -0
  251. package/lib/providers/device-privilege-provider.d.ts +1 -0
  252. package/lib/providers/device-privilege-provider.js +53 -75
  253. package/lib/providers/device-provider.d.ts +18 -8
  254. package/lib/providers/device-provider.js +397 -209
  255. package/lib/providers/device-stream-provider.js +0 -4
  256. package/lib/providers/dialog-provider.d.ts +1 -0
  257. package/lib/providers/dialog-provider.js +4 -18
  258. package/lib/providers/event-provider.js +45 -2
  259. package/lib/providers/interpreter-provider.d.ts +4 -0
  260. package/lib/providers/interpreter-provider.js +166 -137
  261. package/lib/providers/message-provider.js +44 -2
  262. package/lib/providers/privilege-provider.d.ts +33 -0
  263. package/lib/providers/privilege-provider.js +120 -45
  264. package/lib/providers/room-provider.d.ts +12 -10
  265. package/lib/providers/room-provider.js +162 -262
  266. package/lib/providers/screen-share-provider.d.ts +4 -0
  267. package/lib/providers/screen-share-provider.js +3 -6
  268. package/lib/providers/widget-provider.js +6 -4
  269. package/lib/runtime.d.ts +20 -8
  270. package/lib/scenes/main-scene.d.ts +2 -0
  271. package/lib/scenes/main-scene.js +95 -37
  272. package/lib/scenes/waiting-scene.js +16 -13
  273. package/lib/schema.d.ts +55 -32
  274. package/lib/schema.js +23 -9
  275. package/lib/shared-data-source/config.d.ts +6 -2
  276. package/lib/shared-data-source/config.js +81 -10
  277. package/lib/shared-data-source/member-data.d.ts +16 -20
  278. package/lib/shared-data-source/member-data.js +121 -110
  279. package/lib/shared-data-source/screen-share-data-source.d.ts +37 -0
  280. package/lib/shared-data-source/screen-share-data-source.js +134 -0
  281. package/lib/shared-data-source/security-data.d.ts +1 -0
  282. package/lib/shared-data-source/security-data.js +3 -5
  283. package/lib/shared-data-source/setting.d.ts +1 -0
  284. package/lib/shared-data-source/setting.js +33 -17
  285. package/lib/shared-data-source/video-window.d.ts +3 -3
  286. package/lib/shared-data-source/video-window.js +55 -38
  287. package/lib/translations/enUS.d.ts +48 -1
  288. package/lib/translations/enUS.js +101 -17
  289. package/lib/translations/zhCN.d.ts +48 -1
  290. package/lib/translations/zhCN.js +88 -4
  291. package/lib/type.d.ts +40 -20
  292. package/lib/type.js +14 -1
  293. package/lib/ui-manager.d.ts +11 -9
  294. package/lib/ui-manager.js +118 -29
  295. package/lib/ui-scene.d.ts +7 -4
  296. package/lib/ui-scene.js +111 -128
  297. package/lib/utilities/constant.d.ts +3 -1
  298. package/lib/utilities/constant.js +2 -0
  299. package/lib/utilities/copyText.js +15 -11
  300. package/lib/utilities/default-config.d.ts +2 -0
  301. package/lib/utilities/default-config.js +11 -5
  302. package/lib/utilities/i18n-common-data.d.ts +2 -0
  303. package/lib/utilities/i18n-common-data.js +15 -0
  304. package/lib/utilities/logger.d.ts +0 -1
  305. package/lib/utilities/logger.js +3 -4
  306. package/lib/utilities/renderer.d.ts +0 -9
  307. package/lib/utilities/renderer.js +1 -70
  308. package/lib/utilities/screen.js +3 -1
  309. package/lib/utilities/setting-config-storage.d.ts +6 -1
  310. package/lib/utilities/setting-config-storage.js +21 -4
  311. package/lib/utilities/tools.d.ts +7 -6
  312. package/lib/utilities/tools.js +56 -44
  313. package/lib/utilities/ui-resources.d.ts +6 -0
  314. package/lib/utilities/ui-resources.js +47 -9
  315. package/lib/waiting-room-control-manager.d.ts +4 -4
  316. package/lib/waiting-room-control-manager.js +29 -9
  317. package/package.json +6 -6
  318. package/public/assets/browser/images/default1.jpg +0 -0
  319. package/public/assets/browser/images/default2.jpg +0 -0
  320. package/public/assets/browser/images/default3.jpg +0 -0
  321. package/public/assets/browser/images/default4.jpg +0 -0
  322. package/public/assets/browser/images/default5.jpg +0 -0
  323. package/public/assets/browser/images/default6.jpg +0 -0
  324. package/public/assets/browser/images/default7.jpg +0 -0
  325. package/public/assets/browser/sound_effects/pretest.mp3 +0 -0
  326. package/public/assets/browser/sound_effects/recording_started.mp3 +0 -0
  327. package/public/assets/browser/sound_effects/remote_user_joined.mp3 +0 -0
  328. package/public/assets/browser/sound_effects/speaker_test.mp3 +0 -0
  329. package/public/assets/browser/videos/default8.mp4 +0 -0
  330. package/public/assets/browser/videos/default9.mp4 +0 -0
  331. package/public/assets/electron/images/default1.jpg +0 -0
  332. package/public/assets/electron/images/default2.jpg +0 -0
  333. package/public/assets/electron/sound_effects/pretest.mp3 +0 -0
  334. package/public/assets/electron/videos/default8.mp4 +0 -0
  335. package/public/index.html +103 -82
  336. package/lib/hooks/meeting-time.d.ts +0 -15
  337. package/lib/hooks/meeting-time.js +0 -92
  338. package/lib/login-confirm-dialog.d.ts +0 -13
  339. package/lib/login-confirm-dialog.js +0 -85
  340. package/lib/modules/action-bar/components/apps/appitems.d.ts +0 -3
  341. package/lib/modules/action-bar/components/apps/appitems.js +0 -45
  342. package/lib/modules/components/member-window/components/member-board.d.ts +0 -2
  343. package/lib/modules/components/member-window/components/member-board.js +0 -63
  344. package/lib/modules/dialog/components/system-preference/bg1.png +0 -0
  345. package/lib/modules/dialog/components/system-preference/bg2.png +0 -0
  346. package/lib/modules/dialog/types/index.d.ts +0 -70
  347. package/lib/modules/participant/components/attendee/components/microphone-indicator/index.d.ts +0 -6
  348. package/lib/modules/participant/components/attendee/components/microphone-indicator/index.js +0 -28
  349. package/lib/modules/participant/components/attendee/components/user-avatar/index.d.ts +0 -7
  350. package/lib/modules/participant/components/attendee/components/user-avatar/index.js +0 -39
  351. package/lib/modules/participant/components/attendee/index.css +0 -69
  352. package/lib/modules/participant/components/attendee/index.d.ts +0 -4
  353. package/lib/modules/participant/components/attendee/index.js +0 -337
  354. package/lib/modules/participant/components/drop-menu/index.css +0 -60
  355. package/lib/modules/participant/components/drop-menu/index.d.ts +0 -2
  356. package/lib/modules/participant/components/drop-menu/index.js +0 -189
  357. package/lib/modules/participant/components/footer/buttons.d.ts +0 -6
  358. package/lib/modules/participant/components/footer/buttons.js +0 -52
  359. package/lib/modules/participant/components/footer/index.d.ts +0 -4
  360. package/lib/modules/participant/components/footer/index.js +0 -37
  361. package/lib/modules/participant/components/merge/index.d.ts +0 -11
  362. package/lib/modules/participant/components/merge/index.js +0 -49
  363. package/lib/modules/participant/components/rename/index.d.ts +0 -4
  364. package/lib/modules/participant/components/rename/index.js +0 -45
  365. package/lib/modules/participant/components/user-action/index.d.ts +0 -17
  366. package/lib/modules/participant/components/user-action/index.js +0 -169
  367. package/lib/modules/video-window/deviceState/index.d.ts +0 -16
  368. package/lib/modules/video-window/deviceState/index.js +0 -75
  369. package/lib/modules/video-window/members/index.css +0 -51
  370. package/lib/modules/video-window/members/index.d.ts +0 -2
  371. package/lib/modules/video-window/members/index.js +0 -157
  372. package/lib/modules/video-window/speaking/index.css +0 -69
  373. package/lib/modules/video-window/speaking/index.d.ts +0 -3
  374. package/lib/modules/video-window/speaking/index.js +0 -57
  375. package/lib/modules/video-window/topControl/index.css +0 -35
  376. package/lib/modules/video-window/topControl/index.d.ts +0 -3
  377. package/lib/modules/video-window/topControl/index.js +0 -92
  378. /package/lib/modules/{sound-effect → event-sound}/sound-effect-player.d.ts +0 -0
  379. /package/lib/modules/{sound-effect → event-sound}/sound-effect-player.js +0 -0
@@ -28,6 +28,7 @@ require("core-js/modules/es.array.for-each.js");
28
28
  require("core-js/modules/es.array.iterator.js");
29
29
  require("core-js/modules/es.array.map.js");
30
30
  require("core-js/modules/es.array.push.js");
31
+ require("core-js/modules/es.array.slice.js");
31
32
  require("core-js/modules/es.array.some.js");
32
33
  require("core-js/modules/es.array.sort.js");
33
34
  require("core-js/modules/es.array.unshift.js");
@@ -94,8 +95,13 @@ require("core-js/modules/esnext.weak-map.emplace.js");
94
95
  require("core-js/modules/web.dom-collections.for-each.js");
95
96
  require("core-js/modules/web.dom-collections.iterator.js");
96
97
  require("core-js/modules/web.timers.js");
98
+ require("core-js/modules/web.url.js");
99
+ require("core-js/modules/web.url.to-json.js");
100
+ require("core-js/modules/web.url-search-params.js");
101
+ require("core-js/modules/web.url-search-params.delete.js");
102
+ require("core-js/modules/web.url-search-params.has.js");
103
+ require("core-js/modules/web.url-search-params.size.js");
97
104
  var _slicedToArray2 = _interopRequireDefault(require("@babel/runtime/helpers/slicedToArray"));
98
- var _toConsumableArray2 = _interopRequireDefault(require("@babel/runtime/helpers/toConsumableArray"));
99
105
  var _asyncToGenerator2 = _interopRequireDefault(require("@babel/runtime/helpers/asyncToGenerator"));
100
106
  var _classCallCheck2 = _interopRequireDefault(require("@babel/runtime/helpers/classCallCheck"));
101
107
  var _createClass2 = _interopRequireDefault(require("@babel/runtime/helpers/createClass"));
@@ -111,9 +117,10 @@ var _mobx = require("mobx");
111
117
  var _virtualBackdoundResources = require("../modules/device-pretest/assets/virtual-backdound-resources");
112
118
  var _type2 = require("../type");
113
119
  var _tools = require("../utilities/tools");
120
+ var _store = require("../modules/setting/store");
114
121
  var _logger = require("../utilities/logger");
115
122
  var _FcrUIDeviceProviderImpl;
116
- var _initProto, _init__microphoneDeviceId, _init__speakerDeviceId, _init_currentIsMirror, _init_showForceOpenEffectDialog, _init_cameraId, _init_microphoneId, _init_speakerId, _init_cameraEnabled, _init_showCameraPreview, _init_microphoneEnabled, _init_cameraList, _init_microphoneList, _init_microphoneVolumeLevel, _init_speakerList, _init_isLocalMirrorEnabled, _init_isLocalEditBeautyOptions, _init_speakerVolumeLevel, _init_speakerVolume, _init_microphoneVolume, _init_virtualBackgroundName, _init_enableBeauty, _init_beautyKey, _init_beautyOptions, _init_virtualBackgroundList, _init_soundEffectList, _init_microphoneDetecting, _init_speakerDetecting, _init_connectType, _init_isMainRoomAudioOff, _startPlayLocalVideoDecs, _stopPlayLocalVideoDecs, _startSpeakerTestDecs, _stopSpeakerTestDecs, _setCurrentIsMirrorDecs, _toggleLocalMirrorPreviewDecs, _setBeautyOptionsDecs, _handleCancelForceOpenVideoEffectDecs, _handleForceOpenVideoEffectDecs, _setCameraEnabledDecs, _setMicrophoneEnabledDecs, _toggleLocalMirrorDecs, _resetMirrorDecs, _startMicrophoneTestDecs, _stopMicrophoneTestDecs, _enableVirtualBackgroundDecs, _setEditBeautyKeyDecs, _enableBeautyEffectDecs, _setCameraIdDecs, _setSpeakerIdDecs, _setMicrophoneIdDecs, _setSpeakerVolumeDecs, _setMicrophoneVolumeDecs, _downloadUiResourcesDecs, _setConnectTypeDecs, _updateVirtualBackgroundListDecs, _handleSpeakerTestVolumeIndicationUpdatedDecs, _handleSpeakerVolumeUpdatedDecs, _handleMicrophoneVolumeIndicationUpdatedDecs, _handleSpeakerAddedDecs, _handleSpeakerRemovedDecs, _handleSpeakerListUpdatedDecs, _setMainRoomAudioOffDecs, _ref;
123
+ var _initProto, _init__microphoneDeviceId, _init__speakerDeviceId, _init_currentIsMirror, _init_showForceOpenEffectDialog, _init_cameraId, _init_microphoneId, _init_speakerId, _init_cameraEnabled, _init_showCameraPreview, _init_microphoneEnabled, _init_cameraList, _init_microphoneList, _init_microphoneVolumeLevel, _init_speakerList, _init_isLocalMirrorEnabled, _init_isLocalEditBeautyOptions, _init_speakerVolumeLevel, _init_speakerVolume, _init_microphoneVolume, _init_virtualBackgroundName, _init_enableBeauty, _init_beautyKey, _init_beautyOptions, _init_virtualBackgroundList, _init_soundEffectList, _init_microphoneDetecting, _init_speakerDetecting, _init_connectType, _init_isMainRoomAudioOff, _startPlayLocalVideoDecs, _stopPlayLocalVideoDecs, _startSpeakerTestDecs, _stopSpeakerTestDecs, _setCurrentIsMirrorDecs, _toggleLocalMirrorPreviewDecs, _setBeautyOptionsDecs, _handleCancelForceOpenVideoEffectDecs, _handleForceOpenVideoEffectDecs, _setCameraEnabledDecs, _setMicrophoneEnabledDecs, _toggleLocalMirrorDecs, _resetMirrorDecs, _startMicrophoneTestDecs, _stopMicrophoneTestDecs, _enableVirtualBackgroundDecs, _setEditBeautyKeyDecs, _enableBeautyEffectDecs, _setCameraIdDecs, _setSpeakerIdDecs, _setMicrophoneIdDecs, _setSpeakerVolumeDecs, _setMicrophoneVolumeDecs, _loadUiResourcesDecs, _setConnectTypeDecs, _updateVirtualBackgroundListDecs, _handleSpeakerTestVolumeIndicationUpdatedDecs, _handleSpeakerVolumeUpdatedDecs, _handleMicrophoneVolumeIndicationUpdatedDecs, _handleSpeakerAddedDecs, _handleSpeakerRemovedDecs, _handleSpeakerListUpdatedDecs, _setMainRoomAudioOffDecs, _ref;
117
124
  function _classPrivateFieldInitSpec(e, t, a) { _checkPrivateRedeclaration(e, t), t.set(e, a); }
118
125
  function _checkPrivateRedeclaration(e, t) { if (t.has(e)) throw new TypeError("Cannot initialize the same private elements twice on an object"); }
119
126
  function _classPrivateFieldSet(s, a, r) { return s.set(_assertClassBrand(s, a), r), r; }
@@ -155,9 +162,9 @@ var _Z = /*#__PURE__*/new WeakMap();
155
162
  var _a = /*#__PURE__*/new WeakMap();
156
163
  var _b = /*#__PURE__*/new WeakMap();
157
164
  var _c = /*#__PURE__*/new WeakMap();
158
- _ref = (_startPlayLocalVideoDecs = [_mobx.action, _mobx.action.bound], _stopPlayLocalVideoDecs = [_mobx.action, _mobx.action.bound], _startSpeakerTestDecs = [_mobx.action, _mobx.action.bound], _stopSpeakerTestDecs = [_mobx.action, _mobx.action.bound], _setCurrentIsMirrorDecs = [_mobx.action, _mobx.action.bound], _toggleLocalMirrorPreviewDecs = [_mobx.action, _mobx.action.bound], _setBeautyOptionsDecs = [_mobx.action, _mobx.action.bound], _handleCancelForceOpenVideoEffectDecs = [_mobx.action, _mobx.action.bound], _handleForceOpenVideoEffectDecs = [_mobx.action, _mobx.action.bound], _setCameraEnabledDecs = [_mobx.action, _mobx.action.bound], _setMicrophoneEnabledDecs = [_mobx.action, _mobx.action.bound], _toggleLocalMirrorDecs = [_mobx.action, _mobx.action.bound], _resetMirrorDecs = [_mobx.action, _mobx.action.bound], _startMicrophoneTestDecs = [_mobx.action, _mobx.action.bound], _stopMicrophoneTestDecs = [_mobx.action, _mobx.action.bound], _enableVirtualBackgroundDecs = [_mobx.action, _mobx.action.bound], _setEditBeautyKeyDecs = [_mobx.action, _mobx.action.bound], _enableBeautyEffectDecs = [_mobx.action, _mobx.action.bound], _setCameraIdDecs = [_mobx.action, _mobx.action.bound], _setSpeakerIdDecs = [_mobx.action, _mobx.action.bound], _setMicrophoneIdDecs = [_mobx.action, _mobx.action.bound], _setSpeakerVolumeDecs = [_mobx.action, _mobx.action.bound], _setMicrophoneVolumeDecs = [_mobx.action, _mobx.action.bound], _downloadUiResourcesDecs = [_mobx.action, _mobx.action.bound], _setConnectTypeDecs = [_mobx.action, _mobx.action.bound], _updateVirtualBackgroundListDecs = [_mobx.action, _mobx.action.bound], _handleSpeakerTestVolumeIndicationUpdatedDecs = [_mobx.action, _mobx.action.bound], _handleSpeakerVolumeUpdatedDecs = [_mobx.action, _mobx.action.bound], _handleMicrophoneVolumeIndicationUpdatedDecs = [_mobx.action, _mobx.action.bound], _handleSpeakerAddedDecs = [_mobx.action, _mobx.action.bound], _handleSpeakerRemovedDecs = [_mobx.action, _mobx.action.bound], _handleSpeakerListUpdatedDecs = [_mobx.action, _mobx.action.bound], _setMainRoomAudioOffDecs = [_mobx.action, _mobx.action.bound], "logger");
165
+ _ref = (_startPlayLocalVideoDecs = [_mobx.action, _mobx.action.bound], _stopPlayLocalVideoDecs = [_mobx.action, _mobx.action.bound], _startSpeakerTestDecs = [_mobx.action, _mobx.action.bound], _stopSpeakerTestDecs = [_mobx.action, _mobx.action.bound], _setCurrentIsMirrorDecs = [_mobx.action, _mobx.action.bound], _toggleLocalMirrorPreviewDecs = [_mobx.action, _mobx.action.bound], _setBeautyOptionsDecs = [_mobx.action, _mobx.action.bound], _handleCancelForceOpenVideoEffectDecs = [_mobx.action, _mobx.action.bound], _handleForceOpenVideoEffectDecs = [_mobx.action, _mobx.action.bound], _setCameraEnabledDecs = [_mobx.action, _mobx.action.bound], _setMicrophoneEnabledDecs = [_mobx.action, _mobx.action.bound], _toggleLocalMirrorDecs = [_mobx.action, _mobx.action.bound], _resetMirrorDecs = [_mobx.action, _mobx.action.bound], _startMicrophoneTestDecs = [_mobx.action, _mobx.action.bound], _stopMicrophoneTestDecs = [_mobx.action, _mobx.action.bound], _enableVirtualBackgroundDecs = [_mobx.action, _mobx.action.bound], _setEditBeautyKeyDecs = [_mobx.action, _mobx.action.bound], _enableBeautyEffectDecs = [_mobx.action, _mobx.action.bound], _setCameraIdDecs = [_mobx.action, _mobx.action.bound], _setSpeakerIdDecs = [_mobx.action, _mobx.action.bound], _setMicrophoneIdDecs = [_mobx.action, _mobx.action.bound], _setSpeakerVolumeDecs = [_mobx.action, _mobx.action.bound], _setMicrophoneVolumeDecs = [_mobx.action, _mobx.action.bound], _loadUiResourcesDecs = [_mobx.action, _mobx.action.bound], _setConnectTypeDecs = [_mobx.action, _mobx.action.bound], _updateVirtualBackgroundListDecs = [_mobx.action, _mobx.action.bound], _handleSpeakerTestVolumeIndicationUpdatedDecs = [_mobx.action, _mobx.action.bound], _handleSpeakerVolumeUpdatedDecs = [_mobx.action, _mobx.action.bound], _handleMicrophoneVolumeIndicationUpdatedDecs = [_mobx.action, _mobx.action.bound], _handleSpeakerAddedDecs = [_mobx.action, _mobx.action.bound], _handleSpeakerRemovedDecs = [_mobx.action, _mobx.action.bound], _handleSpeakerListUpdatedDecs = [_mobx.action, _mobx.action.bound], _setMainRoomAudioOffDecs = [_mobx.action, _mobx.action.bound], "logger");
159
166
  var FcrUIDeviceProviderImpl = exports.FcrUIDeviceProviderImpl = /*#__PURE__*/function () {
160
- function FcrUIDeviceProviderImpl(_eventProvider, _mediaControl, _mediaConfig) {
167
+ function FcrUIDeviceProviderImpl(_eventProvider, _mediaControl, _mediaConfig, _localStorageProvider) {
161
168
  var _this = this;
162
169
  (0, _classCallCheck2["default"])(this, FcrUIDeviceProviderImpl);
163
170
  (0, _defineProperty2["default"])(this, _ref, (_initProto(this), (0, _logger.createLogger)({
@@ -227,6 +234,7 @@ var FcrUIDeviceProviderImpl = exports.FcrUIDeviceProviderImpl = /*#__PURE__*/fun
227
234
  this._eventProvider = _eventProvider;
228
235
  this._mediaControl = _mediaControl;
229
236
  this._mediaConfig = _mediaConfig;
237
+ this._localStorageProvider = _localStorageProvider;
230
238
  this._listeners.push((0, _mobx.reaction)(function () {
231
239
  return _this.cameraId;
232
240
  }, this._handleCameraChanged));
@@ -240,9 +248,22 @@ var FcrUIDeviceProviderImpl = exports.FcrUIDeviceProviderImpl = /*#__PURE__*/fun
240
248
  onSpeakerTestVolumeIndicationUpdated: this._handleSpeakerTestVolumeIndicationUpdated,
241
249
  onSelectedSpeakerVolumeUpdated: this._handleSpeakerVolumeUpdated
242
250
  });
243
- (0, _mobx.runInAction)(function () {
244
- _this.speakerVolume = _this._mediaControl.getSelectedSpeakerVolume();
245
- });
251
+
252
+ // runInAction(() => {
253
+ // this.speakerVolume = this._mediaControl.getSelectedSpeakerVolume();
254
+
255
+ // const value = this._localStorageProvider.read(SETTING_KEY);
256
+ // if (value) {
257
+ // const speakerVolume = value.speakerVolume ?? this.speakerVolume;
258
+ // const microphoneVolume = value.microphoneVolume ?? this.microphoneVolume;
259
+ // const isLocalMirrorEnabled = value.isLocalMirrorEnabled ?? this.isLocalMirrorEnabled;
260
+ // const editBeautyKey = value.editBeautyKey ?? this.beautyKey;
261
+ // this.setEditBeautyKey(editBeautyKey);
262
+ // this.setSpeakerVolume(speakerVolume);
263
+ // this.toggleLocalMirror(isLocalMirrorEnabled);
264
+ // this.setMicrophoneVolume(microphoneVolume);
265
+ // }
266
+ // });
246
267
  }
247
268
  return (0, _createClass2["default"])(FcrUIDeviceProviderImpl, [{
248
269
  key: "_microphoneDeviceId",
@@ -625,6 +646,11 @@ var FcrUIDeviceProviderImpl = exports.FcrUIDeviceProviderImpl = /*#__PURE__*/fun
625
646
  get: function get() {
626
647
  return this._isAudioConnected;
627
648
  }
649
+ }, {
650
+ key: "shouldEnableMicBeforeSession",
651
+ get: function get() {
652
+ return !this._mediaConfig.microphoneExpectedOff && this._mediaConfig.autoConnectAudio;
653
+ }
628
654
  }, {
629
655
  key: "getScreenTrack",
630
656
  value: function getScreenTrack(id) {
@@ -665,35 +691,76 @@ var FcrUIDeviceProviderImpl = exports.FcrUIDeviceProviderImpl = /*#__PURE__*/fun
665
691
  get: function get() {
666
692
  return this._mediaControl.getMicrophoneTrack(this._microphoneDeviceId);
667
693
  }
694
+ }, {
695
+ key: "_initLocalSetting",
696
+ value: function _initLocalSetting() {
697
+ this.speakerVolume = this._mediaControl.getSelectedSpeakerVolume();
698
+ var value = this._localStorageProvider.read(_store.SETTING_KEY);
699
+ if (value) {
700
+ var _value$speakerVolume, _value$microphoneVolu, _value$isLocalMirrorE, _value$editBeautyKey;
701
+ var _speakerVolume = (_value$speakerVolume = value.speakerVolume) !== null && _value$speakerVolume !== void 0 ? _value$speakerVolume : this.speakerVolume;
702
+ var _microphoneVolume = (_value$microphoneVolu = value.microphoneVolume) !== null && _value$microphoneVolu !== void 0 ? _value$microphoneVolu : this.microphoneVolume;
703
+ var _isLocalMirrorEnabled = (_value$isLocalMirrorE = value.isLocalMirrorEnabled) !== null && _value$isLocalMirrorE !== void 0 ? _value$isLocalMirrorE : this.isLocalMirrorEnabled;
704
+ var editBeautyKey = (_value$editBeautyKey = value.editBeautyKey) !== null && _value$editBeautyKey !== void 0 ? _value$editBeautyKey : this.beautyKey;
705
+ this.setEditBeautyKey(editBeautyKey);
706
+ this.setSpeakerVolume(_speakerVolume);
707
+ this.toggleLocalMirror(_isLocalMirrorEnabled);
708
+ this.setMicrophoneVolume(_microphoneVolume);
709
+ }
710
+ }
668
711
  }, {
669
712
  key: "init",
670
713
  value: function () {
671
714
  var _init = (0, _asyncToGenerator2["default"])(/*#__PURE__*/_regenerator["default"].mark(function _callee5() {
672
715
  var _this2 = this;
716
+ var res;
673
717
  return _regenerator["default"].wrap(function _callee5$(_context5) {
674
718
  while (1) switch (_context5.prev = _context5.next) {
675
719
  case 0:
676
- return _context5.abrupt("return", Promise.allSettled([this._mediaControl.getCameraList().then(function (list) {
720
+ _context5.next = 2;
721
+ return Promise.allSettled([this._mediaControl.getCameraList().then(function (list) {
677
722
  (0, _mobx.runInAction)(function () {
678
723
  _this2.logger.info('[FcrDeviceStore] init camera list:', list);
679
724
  _this2.cameraList = list;
680
725
  if (_this2.cameraList.length > 0) {
681
726
  var _cameraId = _this2.cameraList[0].deviceId;
682
- _this2.logger.info('[FcrDeviceStore] select default camera id:', _cameraId);
683
- _this2.setCameraId(_cameraId);
727
+ var defaultCameraDeviceId = _this2._getDefaultDeviceId({
728
+ initValue: _cameraId,
729
+ localKey: 'cameraDeviceId',
730
+ list: _this2.cameraList
731
+ });
732
+ _this2.logger.info('[FcrDeviceStore] select default camera id:', defaultCameraDeviceId);
733
+ _this2.setCameraId(defaultCameraDeviceId);
734
+ var localSetting = _this2._localStorageProvider.read(_store.SETTING_KEY);
735
+ if (localSetting) {
736
+ var _localSetting$enableB, _localSetting$beautyO;
737
+ if (localSetting.enable) {
738
+ _this2.enableVirtualBackground(localSetting.enable, localSetting.source);
739
+ }
740
+ var _enableBeauty = (_localSetting$enableB = localSetting.enableBeauty) !== null && _localSetting$enableB !== void 0 ? _localSetting$enableB : _this2.enableBeauty;
741
+ var _beautyOptions = (_localSetting$beautyO = localSetting.beautyOptions) !== null && _localSetting$beautyO !== void 0 ? _localSetting$beautyO : _this2.beautyOptions;
742
+ _this2.enableBeautyEffect(_enableBeauty);
743
+ _this2.setBeautyOptions(_beautyOptions);
744
+ }
684
745
  }
685
746
  });
686
747
  }), this._getMicrophoneList().then(/*#__PURE__*/function () {
687
748
  var _ref2 = (0, _asyncToGenerator2["default"])(/*#__PURE__*/_regenerator["default"].mark(function _callee3(microphoneList) {
749
+ var defaultMicrophoneDeviceId;
688
750
  return _regenerator["default"].wrap(function _callee3$(_context3) {
689
751
  while (1) switch (_context3.prev = _context3.next) {
690
752
  case 0:
691
753
  _this2.microphoneList = microphoneList;
692
754
  _this2.logger.info('[FcrDeviceStore] init microphone list:', microphoneList);
693
755
  // 默认跟随系统
694
- _context3.next = 4;
695
- return _this2.setMicrophoneId(DEFAULT_DEVICE_ID);
696
- case 4:
756
+ defaultMicrophoneDeviceId = _this2._getDefaultDeviceId({
757
+ initValue: DEFAULT_DEVICE_ID,
758
+ localKey: 'microphoneDeviceId',
759
+ list: _this2.microphoneList
760
+ });
761
+ _context3.next = 5;
762
+ return _this2.setMicrophoneId(defaultMicrophoneDeviceId);
763
+ case 5:
697
764
  case "end":
698
765
  return _context3.stop();
699
766
  }
@@ -704,15 +771,21 @@ var FcrUIDeviceProviderImpl = exports.FcrUIDeviceProviderImpl = /*#__PURE__*/fun
704
771
  };
705
772
  }()), this._getSpeakerList().then(/*#__PURE__*/function () {
706
773
  var _ref3 = (0, _asyncToGenerator2["default"])(/*#__PURE__*/_regenerator["default"].mark(function _callee4(speakerList) {
774
+ var defaultSpeakerDeviceId;
707
775
  return _regenerator["default"].wrap(function _callee4$(_context4) {
708
776
  while (1) switch (_context4.prev = _context4.next) {
709
777
  case 0:
710
778
  _this2.speakerList = speakerList;
711
779
  _this2.logger.info('[FcrDeviceStore] init speaker list:', speakerList);
712
780
  // 默认跟随系统
713
- _context4.next = 4;
714
- return _this2.setSpeakerId(DEFAULT_DEVICE_ID);
715
- case 4:
781
+ defaultSpeakerDeviceId = _this2._getDefaultDeviceId({
782
+ initValue: DEFAULT_DEVICE_ID,
783
+ localKey: 'speakerDeviceId',
784
+ list: _this2.speakerList
785
+ });
786
+ _context4.next = 5;
787
+ return _this2.setSpeakerId(defaultSpeakerDeviceId);
788
+ case 5:
716
789
  case "end":
717
790
  return _context4.stop();
718
791
  }
@@ -721,8 +794,12 @@ var FcrUIDeviceProviderImpl = exports.FcrUIDeviceProviderImpl = /*#__PURE__*/fun
721
794
  return function (_x2) {
722
795
  return _ref3.apply(this, arguments);
723
796
  };
724
- }())]));
725
- case 1:
797
+ }())]);
798
+ case 2:
799
+ res = _context5.sent;
800
+ this._initLocalSetting();
801
+ return _context5.abrupt("return", res);
802
+ case 5:
726
803
  case "end":
727
804
  return _context5.stop();
728
805
  }
@@ -1029,8 +1106,12 @@ var FcrUIDeviceProviderImpl = exports.FcrUIDeviceProviderImpl = /*#__PURE__*/fun
1029
1106
  value: function setNoiseLevel(level) {
1030
1107
  if (!this._microphoneDeviceId) return;
1031
1108
  var microphoneAudioTrack = this._mediaControl.getMicrophoneTrack(this._microphoneDeviceId);
1032
- microphoneAudioTrack.getAudioEffectEnhancer().enableAiDenoiser();
1033
- microphoneAudioTrack.getAudioEffectEnhancer().setAiDenoiseLevel(level);
1109
+ if (level === _type2.FcrUIAiDenoiseLevel.CLOSE) {
1110
+ microphoneAudioTrack.getAudioEffectEnhancer().disableAiDenoiser();
1111
+ } else {
1112
+ microphoneAudioTrack.getAudioEffectEnhancer().enableAiDenoiser();
1113
+ microphoneAudioTrack.getAudioEffectEnhancer().setAiDenoiseLevel(level);
1114
+ }
1034
1115
  }
1035
1116
  }, {
1036
1117
  key: "setCameraId",
@@ -1208,83 +1289,164 @@ var FcrUIDeviceProviderImpl = exports.FcrUIDeviceProviderImpl = /*#__PURE__*/fun
1208
1289
  this.showCameraPreview = enable;
1209
1290
  }
1210
1291
  }, {
1211
- key: "downloadUiResources",
1292
+ key: "loadUiResources",
1212
1293
  value: function () {
1213
- var _downloadUiResources = (0, _asyncToGenerator2["default"])(/*#__PURE__*/_regenerator["default"].mark(function _callee8(uiResource) {
1214
- var _uiResource$virtualBa,
1215
- _this8 = this,
1216
- _uiResource$virtualBa2,
1217
- _uiResource$soundEffe;
1294
+ var _loadUiResources = (0, _asyncToGenerator2["default"])(/*#__PURE__*/_regenerator["default"].mark(function _callee8(uiResource) {
1295
+ var _this8 = this;
1296
+ var _uiResource$virtualBa, _uiResource$virtualBa2, _uiResource$soundEffe, images, videos, soundEffects, newList, imageInfoList, videoInfoList, _uiResource$virtualBa3, _uiResource$virtualBa4, _uiResource$soundEffe2, _images, _videos, _soundEffects, handleResourceReady;
1218
1297
  return _regenerator["default"].wrap(function _callee8$(_context8) {
1219
1298
  while (1) switch (_context8.prev = _context8.next) {
1220
1299
  case 0:
1221
- Promise.all([// images
1222
- uiResource === null || uiResource === void 0 || (_uiResource$virtualBa = uiResource.virtualBackgroundImages) === null || _uiResource$virtualBa === void 0 ? void 0 : _uiResource$virtualBa.map(function (url) {
1223
- if ((0, _tools.isPngOrJpg)(url) && !(0, _env.isElectron)()) {
1224
- (0, _mobx.runInAction)(function () {
1225
- _this8.virtualBackgroundList.push({
1226
- url: url,
1227
- name: (0, _tools.getFileNameWithoutExtension)(url),
1228
- path: url,
1229
- type: _virtualBackdoundResources.VirtualOption.IMG
1230
- });
1231
- _this8._updateVirtualBackgroundList(_this8.virtualBackgroundList);
1232
- });
1233
- } else if ((0, _tools.isResourceZipUrl)(url) && (0, _env.isElectron)()) {
1234
- return _this8._fetchZipAndUnzip(url, 'image');
1235
- }
1236
- return Promise.resolve();
1237
- }), // videos
1238
- uiResource === null || uiResource === void 0 || (_uiResource$virtualBa2 = uiResource.virtualBackgroundVideos) === null || _uiResource$virtualBa2 === void 0 ? void 0 : _uiResource$virtualBa2.map(function (url) {
1239
- if ((0, _tools.isMp4)(url) && !(0, _env.isElectron)()) {
1240
- (0, _mobx.runInAction)(function () {
1241
- _this8.virtualBackgroundList.push({
1242
- url: url,
1243
- name: (0, _tools.getFileNameWithoutExtension)(url),
1244
- path: url,
1245
- type: _virtualBackdoundResources.VirtualOption.VIDEO
1246
- });
1247
- _this8._updateVirtualBackgroundList(_this8.virtualBackgroundList);
1300
+ if ((0, _env.isElectron)()) {
1301
+ _context8.next = 12;
1302
+ break;
1303
+ }
1304
+ images = (uiResource === null || uiResource === void 0 || (_uiResource$virtualBa = uiResource.virtualBackgroundImages) === null || _uiResource$virtualBa === void 0 ? void 0 : _uiResource$virtualBa.filter(function (url) {
1305
+ return (0, _tools.isPngOrJpg)(url);
1306
+ })) || [];
1307
+ videos = (uiResource === null || uiResource === void 0 || (_uiResource$virtualBa2 = uiResource.virtualBackgroundVideos) === null || _uiResource$virtualBa2 === void 0 ? void 0 : _uiResource$virtualBa2.filter(function (url) {
1308
+ return (0, _tools.isMp4)(url);
1309
+ })) || [];
1310
+ soundEffects = (uiResource === null || uiResource === void 0 || (_uiResource$soundEffe = uiResource.soundEffectAudios) === null || _uiResource$soundEffe === void 0 ? void 0 : _uiResource$soundEffe.filter(function (url) {
1311
+ return (0, _tools.isMp3OrWav)(url);
1312
+ })) || [];
1313
+ newList = this.virtualBackgroundList.slice();
1314
+ imageInfoList = images.map(function (url) {
1315
+ return {
1316
+ url: url,
1317
+ name: (0, _tools.getFileNameWithoutExtension)(url),
1318
+ path: url,
1319
+ type: _virtualBackdoundResources.VirtualOption.IMG
1320
+ };
1321
+ }) || [];
1322
+ newList = newList.concat(imageInfoList);
1323
+ videoInfoList = videos.map(function (url) {
1324
+ return {
1325
+ url: url,
1326
+ name: (0, _tools.getFileNameWithoutExtension)(url),
1327
+ path: url,
1328
+ type: _virtualBackdoundResources.VirtualOption.VIDEO
1329
+ };
1330
+ }) || [];
1331
+ newList = newList.concat(videoInfoList);
1332
+ (0, _mobx.runInAction)(function () {
1333
+ _this8._updateVirtualBackgroundList(newList);
1334
+ var soundEffectInfoList = soundEffects.map(function (url) {
1335
+ return {
1336
+ url: url,
1337
+ md5Url: (0, _imports.md5)(url)
1338
+ };
1339
+ }) || [];
1340
+ soundEffectInfoList.forEach(function (item) {
1341
+ _this8.soundEffectList.set((0, _tools.getFileNameWithoutExtension)(item.url), item);
1342
+ });
1343
+ });
1344
+ _context8.next = 21;
1345
+ break;
1346
+ case 12:
1347
+ _context8.next = 14;
1348
+ return this._loadBuiltinResources();
1349
+ case 14:
1350
+ _images = (uiResource === null || uiResource === void 0 || (_uiResource$virtualBa3 = uiResource.virtualBackgroundImages) === null || _uiResource$virtualBa3 === void 0 ? void 0 : _uiResource$virtualBa3.filter(function (url) {
1351
+ return (0, _tools.isZipUrl)(url);
1352
+ })) || [];
1353
+ _videos = (uiResource === null || uiResource === void 0 || (_uiResource$virtualBa4 = uiResource.virtualBackgroundVideos) === null || _uiResource$virtualBa4 === void 0 ? void 0 : _uiResource$virtualBa4.filter(function (url) {
1354
+ return (0, _tools.isZipUrl)(url);
1355
+ })) || [];
1356
+ _soundEffects = (uiResource === null || uiResource === void 0 || (_uiResource$soundEffe2 = uiResource.soundEffectAudios) === null || _uiResource$soundEffe2 === void 0 ? void 0 : _uiResource$soundEffe2.filter(function (url) {
1357
+ return (0, _tools.isZipUrl)(url);
1358
+ })) || [];
1359
+ handleResourceReady = function handleResourceReady(filePathList, type) {
1360
+ if (type === 'image' || type === 'video') {
1361
+ var list = _this8.virtualBackgroundList.slice();
1362
+ var resourceType = type === 'image' ? _virtualBackdoundResources.VirtualOption.IMG : _virtualBackdoundResources.VirtualOption.VIDEO;
1363
+ list = filePathList.map(function (resource) {
1364
+ return {
1365
+ name: (0, _tools.getFileNameWithoutExtension)(resource),
1366
+ path: resource,
1367
+ type: resourceType,
1368
+ url: URL.createObjectURL(window.runtime.fileToBlob(resource, type))
1369
+ };
1248
1370
  });
1249
- } else if ((0, _tools.isResourceZipUrl)(url) && (0, _env.isElectron)()) {
1250
- return _this8._fetchZipAndUnzip(url, 'video');
1251
- }
1252
- return Promise.resolve();
1253
- }), // sound effect audios
1254
- uiResource === null || uiResource === void 0 || (_uiResource$soundEffe = uiResource.soundEffectAudios) === null || _uiResource$soundEffe === void 0 ? void 0 : _uiResource$soundEffe.map(function (url) {
1255
- if ((0, _tools.isMp3OrWav)(url) && !(0, _env.isElectron)()) {
1256
- (0, _mobx.runInAction)(function () {
1257
- _this8.soundEffectList.set((0, _tools.getFileNameWithoutExtension)(url), {
1258
- url: url,
1259
- md5Url: (0, _imports.md5)(url)
1371
+ var _newList = _this8.virtualBackgroundList.concat(list);
1372
+ _this8._updateVirtualBackgroundList(_newList);
1373
+ } else if (type === 'audio') {
1374
+ filePathList.forEach(function (resource) {
1375
+ var key = (0, _tools.getFileNameWithoutExtension)(resource);
1376
+ _this8.soundEffectList.set(key, {
1377
+ md5Url: resource,
1378
+ url: URL.createObjectURL(window.runtime.fileToBlob(resource, type))
1260
1379
  });
1261
1380
  });
1262
- } else if ((0, _tools.isResourceZipUrl)(url) && (0, _env.isElectron)()) {
1263
- return _this8._fetchZipAndUnzip(url, 'audio');
1264
1381
  }
1265
- return Promise.resolve();
1266
- })]);
1267
- case 1:
1382
+ };
1383
+ this.loadZipResources(_images, 'image', handleResourceReady);
1384
+ this.loadZipResources(_videos, 'video', handleResourceReady);
1385
+ this.loadZipResources(_soundEffects, 'audio', handleResourceReady);
1386
+ case 21:
1268
1387
  case "end":
1269
1388
  return _context8.stop();
1270
1389
  }
1271
- }, _callee8);
1390
+ }, _callee8, this);
1391
+ }));
1392
+ function loadUiResources(_x5) {
1393
+ return _loadUiResources.apply(this, arguments);
1394
+ }
1395
+ return loadUiResources;
1396
+ }()
1397
+ }, {
1398
+ key: "loadZipResources",
1399
+ value: function () {
1400
+ var _loadZipResources = (0, _asyncToGenerator2["default"])(/*#__PURE__*/_regenerator["default"].mark(function _callee10(zipUrls, type, callback) {
1401
+ var _this9 = this;
1402
+ var ps;
1403
+ return _regenerator["default"].wrap(function _callee10$(_context10) {
1404
+ while (1) switch (_context10.prev = _context10.next) {
1405
+ case 0:
1406
+ ps = zipUrls.map(/*#__PURE__*/function () {
1407
+ var _ref4 = (0, _asyncToGenerator2["default"])(/*#__PURE__*/_regenerator["default"].mark(function _callee9(url) {
1408
+ var filePathList;
1409
+ return _regenerator["default"].wrap(function _callee9$(_context9) {
1410
+ while (1) switch (_context9.prev = _context9.next) {
1411
+ case 0:
1412
+ _context9.next = 2;
1413
+ return _this9._fetchZipAndUnzip(url, type);
1414
+ case 2:
1415
+ filePathList = _context9.sent;
1416
+ callback(filePathList, type);
1417
+ case 4:
1418
+ case "end":
1419
+ return _context9.stop();
1420
+ }
1421
+ }, _callee9);
1422
+ }));
1423
+ return function (_x9) {
1424
+ return _ref4.apply(this, arguments);
1425
+ };
1426
+ }());
1427
+ _context10.next = 3;
1428
+ return Promise.allSettled(ps);
1429
+ case 3:
1430
+ case "end":
1431
+ return _context10.stop();
1432
+ }
1433
+ }, _callee10);
1272
1434
  }));
1273
- function downloadUiResources(_x5) {
1274
- return _downloadUiResources.apply(this, arguments);
1435
+ function loadZipResources(_x6, _x7, _x8) {
1436
+ return _loadZipResources.apply(this, arguments);
1275
1437
  }
1276
- return downloadUiResources;
1438
+ return loadZipResources;
1277
1439
  }()
1278
1440
  }, {
1279
1441
  key: "release",
1280
1442
  value: function release() {
1281
- var _this9 = this,
1443
+ var _this10 = this,
1282
1444
  _this$_cameraVideoTra3,
1283
1445
  _this$_microphoneAudi8;
1284
1446
  if (this._localVideoViewSet.size > 0) {
1285
1447
  this._localVideoViewSet.forEach(function (view) {
1286
- var _this9$_cameraVideoTr;
1287
- (_this9$_cameraVideoTr = _this9._cameraVideoTrack) === null || _this9$_cameraVideoTr === void 0 || _this9$_cameraVideoTr.stopPreview(view);
1448
+ var _this10$_cameraVideoT;
1449
+ (_this10$_cameraVideoT = _this10._cameraVideoTrack) === null || _this10$_cameraVideoT === void 0 || _this10$_cameraVideoT.stopPreview(view);
1288
1450
  });
1289
1451
  this._localVideoViewSet.clear();
1290
1452
  }
@@ -1293,44 +1455,6 @@ var FcrUIDeviceProviderImpl = exports.FcrUIDeviceProviderImpl = /*#__PURE__*/fun
1293
1455
  (_this$_microphoneAudi8 = this._microphoneAudioTrack) === null || _this$_microphoneAudi8 === void 0 || _this$_microphoneAudi8.stop();
1294
1456
  this._microphoneAudioTrack = undefined;
1295
1457
  }
1296
- }, {
1297
- key: "_fileToUiData",
1298
- value: function () {
1299
- var _fileToUiData2 = (0, _asyncToGenerator2["default"])(/*#__PURE__*/_regenerator["default"].mark(function _callee9(resource, type) {
1300
- return _regenerator["default"].wrap(function _callee9$(_context9) {
1301
- while (1) switch (_context9.prev = _context9.next) {
1302
- case 0:
1303
- if (!(typeof resource !== 'string')) {
1304
- _context9.next = 2;
1305
- break;
1306
- }
1307
- return _context9.abrupt("return");
1308
- case 2:
1309
- if (type === 'image' && (0, _tools.isPngOrJpg)(resource) || type === 'video' && (0, _tools.isMp4)(resource)) {
1310
- this._updateVirtualBackgroundList([].concat((0, _toConsumableArray2["default"])(this.virtualBackgroundList), [{
1311
- name: (0, _tools.getFileNameWithoutExtension)(resource),
1312
- path: resource,
1313
- type: type === 'image' ? _virtualBackdoundResources.VirtualOption.IMG : _virtualBackdoundResources.VirtualOption.VIDEO,
1314
- url: window.runtime.fileToBase64(resource, type)
1315
- }]));
1316
- }
1317
- if (type === 'audio' && (0, _tools.isMp3OrWav)(resource)) {
1318
- this.soundEffectList.set((0, _tools.getFileNameWithoutExtension)(resource), {
1319
- url: window.runtime.fileToBase64(resource, type),
1320
- md5Url: resource
1321
- });
1322
- }
1323
- case 4:
1324
- case "end":
1325
- return _context9.stop();
1326
- }
1327
- }, _callee9, this);
1328
- }));
1329
- function _fileToUiData(_x6, _x7) {
1330
- return _fileToUiData2.apply(this, arguments);
1331
- }
1332
- return _fileToUiData;
1333
- }()
1334
1458
  }, {
1335
1459
  key: "setConnectType",
1336
1460
  value: function setConnectType(connectType) {
@@ -1339,34 +1463,20 @@ var FcrUIDeviceProviderImpl = exports.FcrUIDeviceProviderImpl = /*#__PURE__*/fun
1339
1463
  }, {
1340
1464
  key: "_fetchZipAndUnzip",
1341
1465
  value: function () {
1342
- var _fetchZipAndUnzip2 = (0, _asyncToGenerator2["default"])(/*#__PURE__*/_regenerator["default"].mark(function _callee10(url, type) {
1343
- var _this10 = this;
1344
- var md5Url, resource;
1345
- return _regenerator["default"].wrap(function _callee10$(_context10) {
1346
- while (1) switch (_context10.prev = _context10.next) {
1466
+ var _fetchZipAndUnzip2 = (0, _asyncToGenerator2["default"])(/*#__PURE__*/_regenerator["default"].mark(function _callee11(url, type) {
1467
+ var md5Url;
1468
+ return _regenerator["default"].wrap(function _callee11$(_context11) {
1469
+ while (1) switch (_context11.prev = _context11.next) {
1347
1470
  case 0:
1348
- if ((0, _tools.isResourceZipUrl)(url)) {
1349
- _context10.next = 2;
1350
- break;
1351
- }
1352
- return _context10.abrupt("return", []);
1353
- case 2:
1354
1471
  md5Url = (0, _imports.md5)(url);
1355
- _context10.next = 5;
1356
- return window.runtime.getResourceByFileType(url, md5Url, type);
1357
- case 5:
1358
- resource = _context10.sent;
1359
- resource.forEach(function (item) {
1360
- _this10._fileToUiData(item, type);
1361
- });
1362
- return _context10.abrupt("return", []);
1363
- case 8:
1472
+ return _context11.abrupt("return", window.runtime.getResourceByFileType(url, md5Url, type));
1473
+ case 2:
1364
1474
  case "end":
1365
- return _context10.stop();
1475
+ return _context11.stop();
1366
1476
  }
1367
- }, _callee10);
1477
+ }, _callee11);
1368
1478
  }));
1369
- function _fetchZipAndUnzip(_x8, _x9) {
1479
+ function _fetchZipAndUnzip(_x10, _x11) {
1370
1480
  return _fetchZipAndUnzip2.apply(this, arguments);
1371
1481
  }
1372
1482
  return _fetchZipAndUnzip;
@@ -1429,23 +1539,23 @@ var FcrUIDeviceProviderImpl = exports.FcrUIDeviceProviderImpl = /*#__PURE__*/fun
1429
1539
  }, {
1430
1540
  key: "_handleCameraListUpdated",
1431
1541
  value: function () {
1432
- var _handleCameraListUpdated2 = (0, _asyncToGenerator2["default"])(/*#__PURE__*/_regenerator["default"].mark(function _callee11() {
1542
+ var _handleCameraListUpdated2 = (0, _asyncToGenerator2["default"])(/*#__PURE__*/_regenerator["default"].mark(function _callee12() {
1433
1543
  var _this12 = this;
1434
1544
  var cameraList, currentDeviceExist, _cameraEnabled, deviceId, _deviceId;
1435
- return _regenerator["default"].wrap(function _callee11$(_context11) {
1436
- while (1) switch (_context11.prev = _context11.next) {
1545
+ return _regenerator["default"].wrap(function _callee12$(_context12) {
1546
+ while (1) switch (_context12.prev = _context12.next) {
1437
1547
  case 0:
1438
- _context11.next = 2;
1548
+ _context12.next = 2;
1439
1549
  return this._mediaControl.getCameraList();
1440
1550
  case 2:
1441
- cameraList = _context11.sent;
1551
+ cameraList = _context12.sent;
1442
1552
  (0, _mobx.runInAction)(function () {
1443
1553
  _this12.cameraList = cameraList;
1444
1554
  });
1445
1555
  currentDeviceExist = false;
1446
1556
  if (this.cameraId) {
1447
- currentDeviceExist = this.cameraList.some(function (_ref4) {
1448
- var deviceId = _ref4.deviceId;
1557
+ currentDeviceExist = this.cameraList.some(function (_ref5) {
1558
+ var deviceId = _ref5.deviceId;
1449
1559
  return _this12.cameraId === deviceId;
1450
1560
  });
1451
1561
  _cameraEnabled = this.cameraEnabled;
@@ -1473,9 +1583,9 @@ var FcrUIDeviceProviderImpl = exports.FcrUIDeviceProviderImpl = /*#__PURE__*/fun
1473
1583
  this._observable.notifyObservers('onCameraListUpdated', this.cameraList);
1474
1584
  case 8:
1475
1585
  case "end":
1476
- return _context11.stop();
1586
+ return _context12.stop();
1477
1587
  }
1478
- }, _callee11, this);
1588
+ }, _callee12, this);
1479
1589
  }));
1480
1590
  function _handleCameraListUpdated() {
1481
1591
  return _handleCameraListUpdated2.apply(this, arguments);
@@ -1485,19 +1595,19 @@ var FcrUIDeviceProviderImpl = exports.FcrUIDeviceProviderImpl = /*#__PURE__*/fun
1485
1595
  }, {
1486
1596
  key: "_handleMicrophoneAdded",
1487
1597
  value: function () {
1488
- var _handleMicrophoneAdded2 = (0, _asyncToGenerator2["default"])(/*#__PURE__*/_regenerator["default"].mark(function _callee12() {
1489
- return _regenerator["default"].wrap(function _callee12$(_context12) {
1490
- while (1) switch (_context12.prev = _context12.next) {
1598
+ var _handleMicrophoneAdded2 = (0, _asyncToGenerator2["default"])(/*#__PURE__*/_regenerator["default"].mark(function _callee13() {
1599
+ return _regenerator["default"].wrap(function _callee13$(_context13) {
1600
+ while (1) switch (_context13.prev = _context13.next) {
1491
1601
  case 0:
1492
- _context12.next = 2;
1602
+ _context13.next = 2;
1493
1603
  return this._handleMicrophoneListUpdated();
1494
1604
  case 2:
1495
1605
  this._observable.notifyObservers('onMicrophoneListUpdated', this.microphoneList);
1496
1606
  case 3:
1497
1607
  case "end":
1498
- return _context12.stop();
1608
+ return _context13.stop();
1499
1609
  }
1500
- }, _callee12, this);
1610
+ }, _callee13, this);
1501
1611
  }));
1502
1612
  function _handleMicrophoneAdded() {
1503
1613
  return _handleMicrophoneAdded2.apply(this, arguments);
@@ -1507,13 +1617,13 @@ var FcrUIDeviceProviderImpl = exports.FcrUIDeviceProviderImpl = /*#__PURE__*/fun
1507
1617
  }, {
1508
1618
  key: "_handleMicrophoneRemoved",
1509
1619
  value: function () {
1510
- var _handleMicrophoneRemoved2 = (0, _asyncToGenerator2["default"])(/*#__PURE__*/_regenerator["default"].mark(function _callee13() {
1620
+ var _handleMicrophoneRemoved2 = (0, _asyncToGenerator2["default"])(/*#__PURE__*/_regenerator["default"].mark(function _callee14() {
1511
1621
  var _this13 = this;
1512
1622
  var currentDeviceExist;
1513
- return _regenerator["default"].wrap(function _callee13$(_context13) {
1514
- while (1) switch (_context13.prev = _context13.next) {
1623
+ return _regenerator["default"].wrap(function _callee14$(_context14) {
1624
+ while (1) switch (_context14.prev = _context14.next) {
1515
1625
  case 0:
1516
- _context13.next = 2;
1626
+ _context14.next = 2;
1517
1627
  return this._handleMicrophoneListUpdated();
1518
1628
  case 2:
1519
1629
  // 如何设备移除了,应该切到跟随系统
@@ -1521,19 +1631,19 @@ var FcrUIDeviceProviderImpl = exports.FcrUIDeviceProviderImpl = /*#__PURE__*/fun
1521
1631
  return item.deviceId === _this13._microphoneDeviceId;
1522
1632
  });
1523
1633
  if (currentDeviceExist) {
1524
- _context13.next = 7;
1634
+ _context14.next = 7;
1525
1635
  break;
1526
1636
  }
1527
1637
  this.logger.info('[FcrDeviceStore] current microphone does not exist in microphone list, switch to follow system');
1528
- _context13.next = 7;
1638
+ _context14.next = 7;
1529
1639
  return this.setMicrophoneId(DEFAULT_DEVICE_ID);
1530
1640
  case 7:
1531
1641
  this._observable.notifyObservers('onMicrophoneListUpdated', this.microphoneList);
1532
1642
  case 8:
1533
1643
  case "end":
1534
- return _context13.stop();
1644
+ return _context14.stop();
1535
1645
  }
1536
- }, _callee13, this);
1646
+ }, _callee14, this);
1537
1647
  }));
1538
1648
  function _handleMicrophoneRemoved() {
1539
1649
  return _handleMicrophoneRemoved2.apply(this, arguments);
@@ -1543,16 +1653,16 @@ var FcrUIDeviceProviderImpl = exports.FcrUIDeviceProviderImpl = /*#__PURE__*/fun
1543
1653
  }, {
1544
1654
  key: "_handleMicrophoneListUpdated",
1545
1655
  value: function () {
1546
- var _handleMicrophoneListUpdated2 = (0, _asyncToGenerator2["default"])(/*#__PURE__*/_regenerator["default"].mark(function _callee14() {
1656
+ var _handleMicrophoneListUpdated2 = (0, _asyncToGenerator2["default"])(/*#__PURE__*/_regenerator["default"].mark(function _callee15() {
1547
1657
  var _this14 = this;
1548
1658
  var microphoneList;
1549
- return _regenerator["default"].wrap(function _callee14$(_context14) {
1550
- while (1) switch (_context14.prev = _context14.next) {
1659
+ return _regenerator["default"].wrap(function _callee15$(_context15) {
1660
+ while (1) switch (_context15.prev = _context15.next) {
1551
1661
  case 0:
1552
- _context14.next = 2;
1662
+ _context15.next = 2;
1553
1663
  return this._getMicrophoneList();
1554
1664
  case 2:
1555
- microphoneList = _context14.sent;
1665
+ microphoneList = _context15.sent;
1556
1666
  // 如果选择了跟随系统,浏览器下设备变更时需要更新 track 以保证当前设备 track 正确
1557
1667
  if (this.followSystemMicrophoneDevice) {
1558
1668
  this._refreshMicrophoneTrack();
@@ -1562,9 +1672,9 @@ var FcrUIDeviceProviderImpl = exports.FcrUIDeviceProviderImpl = /*#__PURE__*/fun
1562
1672
  });
1563
1673
  case 5:
1564
1674
  case "end":
1565
- return _context14.stop();
1675
+ return _context15.stop();
1566
1676
  }
1567
- }, _callee14, this);
1677
+ }, _callee15, this);
1568
1678
  }));
1569
1679
  function _handleMicrophoneListUpdated() {
1570
1680
  return _handleMicrophoneListUpdated2.apply(this, arguments);
@@ -1593,19 +1703,19 @@ var FcrUIDeviceProviderImpl = exports.FcrUIDeviceProviderImpl = /*#__PURE__*/fun
1593
1703
  }, {
1594
1704
  key: "_handleSpeakerAdded",
1595
1705
  value: function () {
1596
- var _handleSpeakerAdded2 = (0, _asyncToGenerator2["default"])(/*#__PURE__*/_regenerator["default"].mark(function _callee15() {
1597
- return _regenerator["default"].wrap(function _callee15$(_context15) {
1598
- while (1) switch (_context15.prev = _context15.next) {
1706
+ var _handleSpeakerAdded2 = (0, _asyncToGenerator2["default"])(/*#__PURE__*/_regenerator["default"].mark(function _callee16() {
1707
+ return _regenerator["default"].wrap(function _callee16$(_context16) {
1708
+ while (1) switch (_context16.prev = _context16.next) {
1599
1709
  case 0:
1600
- _context15.next = 2;
1710
+ _context16.next = 2;
1601
1711
  return this._handleSpeakerListUpdated();
1602
1712
  case 2:
1603
1713
  this._observable.notifyObservers('onSpeakerListUpdated', this.speakerList);
1604
1714
  case 3:
1605
1715
  case "end":
1606
- return _context15.stop();
1716
+ return _context16.stop();
1607
1717
  }
1608
- }, _callee15, this);
1718
+ }, _callee16, this);
1609
1719
  }));
1610
1720
  function _handleSpeakerAdded() {
1611
1721
  return _handleSpeakerAdded2.apply(this, arguments);
@@ -1615,13 +1725,13 @@ var FcrUIDeviceProviderImpl = exports.FcrUIDeviceProviderImpl = /*#__PURE__*/fun
1615
1725
  }, {
1616
1726
  key: "_handleSpeakerRemoved",
1617
1727
  value: function () {
1618
- var _handleSpeakerRemoved2 = (0, _asyncToGenerator2["default"])(/*#__PURE__*/_regenerator["default"].mark(function _callee16() {
1728
+ var _handleSpeakerRemoved2 = (0, _asyncToGenerator2["default"])(/*#__PURE__*/_regenerator["default"].mark(function _callee17() {
1619
1729
  var _this15 = this;
1620
1730
  var currentDeviceExist;
1621
- return _regenerator["default"].wrap(function _callee16$(_context16) {
1622
- while (1) switch (_context16.prev = _context16.next) {
1731
+ return _regenerator["default"].wrap(function _callee17$(_context17) {
1732
+ while (1) switch (_context17.prev = _context17.next) {
1623
1733
  case 0:
1624
- _context16.next = 2;
1734
+ _context17.next = 2;
1625
1735
  return this._handleSpeakerListUpdated();
1626
1736
  case 2:
1627
1737
  // 如何设备移除了,应该切到跟随系统
@@ -1629,19 +1739,19 @@ var FcrUIDeviceProviderImpl = exports.FcrUIDeviceProviderImpl = /*#__PURE__*/fun
1629
1739
  return item.deviceId === _this15._speakerDeviceId;
1630
1740
  });
1631
1741
  if (currentDeviceExist) {
1632
- _context16.next = 7;
1742
+ _context17.next = 7;
1633
1743
  break;
1634
1744
  }
1635
1745
  this.logger.info('[FcrDeviceStore] current speaker does not exist in speaker list, switch to follow system');
1636
- _context16.next = 7;
1746
+ _context17.next = 7;
1637
1747
  return this.setSpeakerId(DEFAULT_DEVICE_ID);
1638
1748
  case 7:
1639
1749
  this._observable.notifyObservers('onSpeakerListUpdated', this.speakerList);
1640
1750
  case 8:
1641
1751
  case "end":
1642
- return _context16.stop();
1752
+ return _context17.stop();
1643
1753
  }
1644
- }, _callee16, this);
1754
+ }, _callee17, this);
1645
1755
  }));
1646
1756
  function _handleSpeakerRemoved() {
1647
1757
  return _handleSpeakerRemoved2.apply(this, arguments);
@@ -1651,24 +1761,24 @@ var FcrUIDeviceProviderImpl = exports.FcrUIDeviceProviderImpl = /*#__PURE__*/fun
1651
1761
  }, {
1652
1762
  key: "_handleSpeakerListUpdated",
1653
1763
  value: function () {
1654
- var _handleSpeakerListUpdated2 = (0, _asyncToGenerator2["default"])(/*#__PURE__*/_regenerator["default"].mark(function _callee17() {
1764
+ var _handleSpeakerListUpdated2 = (0, _asyncToGenerator2["default"])(/*#__PURE__*/_regenerator["default"].mark(function _callee18() {
1655
1765
  var _this16 = this;
1656
1766
  var speakerList;
1657
- return _regenerator["default"].wrap(function _callee17$(_context17) {
1658
- while (1) switch (_context17.prev = _context17.next) {
1767
+ return _regenerator["default"].wrap(function _callee18$(_context18) {
1768
+ while (1) switch (_context18.prev = _context18.next) {
1659
1769
  case 0:
1660
- _context17.next = 2;
1770
+ _context18.next = 2;
1661
1771
  return this._getSpeakerList();
1662
1772
  case 2:
1663
- speakerList = _context17.sent;
1773
+ speakerList = _context18.sent;
1664
1774
  (0, _mobx.runInAction)(function () {
1665
1775
  _this16.speakerList = speakerList;
1666
1776
  });
1667
1777
  case 4:
1668
1778
  case "end":
1669
- return _context17.stop();
1779
+ return _context18.stop();
1670
1780
  }
1671
- }, _callee17, this);
1781
+ }, _callee18, this);
1672
1782
  }));
1673
1783
  function _handleSpeakerListUpdated() {
1674
1784
  return _handleSpeakerListUpdated2.apply(this, arguments);
@@ -1678,19 +1788,19 @@ var FcrUIDeviceProviderImpl = exports.FcrUIDeviceProviderImpl = /*#__PURE__*/fun
1678
1788
  }, {
1679
1789
  key: "_getMicrophoneList",
1680
1790
  value: function () {
1681
- var _getMicrophoneList2 = (0, _asyncToGenerator2["default"])(/*#__PURE__*/_regenerator["default"].mark(function _callee18() {
1791
+ var _getMicrophoneList2 = (0, _asyncToGenerator2["default"])(/*#__PURE__*/_regenerator["default"].mark(function _callee19() {
1682
1792
  var defaultDevice, list, defaultIdDevice;
1683
- return _regenerator["default"].wrap(function _callee18$(_context18) {
1684
- while (1) switch (_context18.prev = _context18.next) {
1793
+ return _regenerator["default"].wrap(function _callee19$(_context19) {
1794
+ while (1) switch (_context19.prev = _context19.next) {
1685
1795
  case 0:
1686
- _context18.next = 2;
1796
+ _context19.next = 2;
1687
1797
  return this._mediaControl.getSystemSelectedMicrophone();
1688
1798
  case 2:
1689
- defaultDevice = _context18.sent;
1690
- _context18.next = 5;
1799
+ defaultDevice = _context19.sent;
1800
+ _context19.next = 5;
1691
1801
  return this._mediaControl.getMicrophoneList();
1692
1802
  case 5:
1693
- list = _context18.sent;
1803
+ list = _context19.sent;
1694
1804
  list.forEach(function (item) {
1695
1805
  var results = /^default \((.*)\)$/.exec(item.deviceName);
1696
1806
  if (results && results.length > 1) {
@@ -1721,12 +1831,12 @@ var FcrUIDeviceProviderImpl = exports.FcrUIDeviceProviderImpl = /*#__PURE__*/fun
1721
1831
  reason1: (0, _i18n.transI18n)('fmt_device_label_speaker_default')
1722
1832
  });
1723
1833
  }
1724
- return _context18.abrupt("return", list);
1834
+ return _context19.abrupt("return", list);
1725
1835
  case 12:
1726
1836
  case "end":
1727
- return _context18.stop();
1837
+ return _context19.stop();
1728
1838
  }
1729
- }, _callee18, this);
1839
+ }, _callee19, this);
1730
1840
  }));
1731
1841
  function _getMicrophoneList() {
1732
1842
  return _getMicrophoneList2.apply(this, arguments);
@@ -1736,19 +1846,19 @@ var FcrUIDeviceProviderImpl = exports.FcrUIDeviceProviderImpl = /*#__PURE__*/fun
1736
1846
  }, {
1737
1847
  key: "_getSpeakerList",
1738
1848
  value: function () {
1739
- var _getSpeakerList2 = (0, _asyncToGenerator2["default"])(/*#__PURE__*/_regenerator["default"].mark(function _callee19() {
1849
+ var _getSpeakerList2 = (0, _asyncToGenerator2["default"])(/*#__PURE__*/_regenerator["default"].mark(function _callee20() {
1740
1850
  var defaultDevice, list, defaultIdDevice;
1741
- return _regenerator["default"].wrap(function _callee19$(_context19) {
1742
- while (1) switch (_context19.prev = _context19.next) {
1851
+ return _regenerator["default"].wrap(function _callee20$(_context20) {
1852
+ while (1) switch (_context20.prev = _context20.next) {
1743
1853
  case 0:
1744
- _context19.next = 2;
1854
+ _context20.next = 2;
1745
1855
  return this._mediaControl.getSystemSelectedSpeaker();
1746
1856
  case 2:
1747
- defaultDevice = _context19.sent;
1748
- _context19.next = 5;
1857
+ defaultDevice = _context20.sent;
1858
+ _context20.next = 5;
1749
1859
  return this._mediaControl.getSpeakerList();
1750
1860
  case 5:
1751
- list = _context19.sent;
1861
+ list = _context20.sent;
1752
1862
  list.forEach(function (item) {
1753
1863
  var results = /^default \((.*)\)$/.exec(item.deviceName);
1754
1864
  if (results && results.length > 1) {
@@ -1778,12 +1888,12 @@ var FcrUIDeviceProviderImpl = exports.FcrUIDeviceProviderImpl = /*#__PURE__*/fun
1778
1888
  reason1: (0, _i18n.transI18n)('fmt_device_label_speaker_default')
1779
1889
  });
1780
1890
  }
1781
- return _context19.abrupt("return", list);
1891
+ return _context20.abrupt("return", list);
1782
1892
  case 12:
1783
1893
  case "end":
1784
- return _context19.stop();
1894
+ return _context20.stop();
1785
1895
  }
1786
- }, _callee19, this);
1896
+ }, _callee20, this);
1787
1897
  }));
1788
1898
  function _getSpeakerList() {
1789
1899
  return _getSpeakerList2.apply(this, arguments);
@@ -1795,10 +1905,88 @@ var FcrUIDeviceProviderImpl = exports.FcrUIDeviceProviderImpl = /*#__PURE__*/fun
1795
1905
  value: function setMainRoomAudioOff(enable) {
1796
1906
  this.isMainRoomAudioOff = enable;
1797
1907
  }
1908
+ }, {
1909
+ key: "_getDefaultDeviceId",
1910
+ value: function _getDefaultDeviceId(_ref6) {
1911
+ var initValue = _ref6.initValue,
1912
+ localKey = _ref6.localKey,
1913
+ list = _ref6.list;
1914
+ var localSetting = this._localStorageProvider.read(_store.SETTING_KEY);
1915
+ var defaultValue = initValue;
1916
+ if (localSetting && localSetting[localKey]) {
1917
+ var _list$find$deviceId, _list$find;
1918
+ defaultValue = (_list$find$deviceId = (_list$find = list.find(function (item) {
1919
+ return item.deviceId === localSetting[localKey];
1920
+ })) === null || _list$find === void 0 ? void 0 : _list$find.deviceId) !== null && _list$find$deviceId !== void 0 ? _list$find$deviceId : defaultValue;
1921
+ }
1922
+ return defaultValue;
1923
+ }
1924
+ }, {
1925
+ key: "_loadBuiltinResources",
1926
+ value: function () {
1927
+ var _loadBuiltinResources2 = (0, _asyncToGenerator2["default"])(/*#__PURE__*/_regenerator["default"].mark(function _callee21() {
1928
+ var _window$runtime,
1929
+ _this17 = this;
1930
+ var _yield$window$runtime, virtualBackgroundImages, virtualBackgroundVideos, soundEffects, newVirtualBackgroundList, images, videos, sounds;
1931
+ return _regenerator["default"].wrap(function _callee21$(_context21) {
1932
+ while (1) switch (_context21.prev = _context21.next) {
1933
+ case 0:
1934
+ _context21.next = 2;
1935
+ return (_window$runtime = window.runtime) === null || _window$runtime === void 0 ? void 0 : _window$runtime.loadBuiltinResources();
1936
+ case 2:
1937
+ _yield$window$runtime = _context21.sent;
1938
+ virtualBackgroundImages = _yield$window$runtime.virtualBackgroundImages;
1939
+ virtualBackgroundVideos = _yield$window$runtime.virtualBackgroundVideos;
1940
+ soundEffects = _yield$window$runtime.soundEffects;
1941
+ newVirtualBackgroundList = this.virtualBackgroundList.slice();
1942
+ images = virtualBackgroundImages.map(function (item) {
1943
+ return {
1944
+ name: (0, _tools.getFileNameWithoutExtension)(item),
1945
+ path: item,
1946
+ type: _virtualBackdoundResources.VirtualOption.IMG,
1947
+ url: URL.createObjectURL(window.runtime.fileToBlob(item, 'image'))
1948
+ };
1949
+ });
1950
+ videos = virtualBackgroundVideos.map(function (item) {
1951
+ return {
1952
+ name: (0, _tools.getFileNameWithoutExtension)(item),
1953
+ path: item,
1954
+ type: _virtualBackdoundResources.VirtualOption.VIDEO,
1955
+ url: URL.createObjectURL(window.runtime.fileToBlob(item, 'video'))
1956
+ };
1957
+ });
1958
+ sounds = soundEffects.map(function (item) {
1959
+ return {
1960
+ url: URL.createObjectURL(window.runtime.fileToBlob(item, 'audio')),
1961
+ md5Url: item
1962
+ };
1963
+ });
1964
+ this.logger.info('load builtin image ui resources:', (0, _imports.jsonstring)(images));
1965
+ this.logger.info('load builtin video ui resources:', (0, _imports.jsonstring)(videos));
1966
+ this.logger.info('load builtin sound ui resources:', (0, _imports.jsonstring)(sounds));
1967
+ newVirtualBackgroundList = newVirtualBackgroundList.concat(images);
1968
+ newVirtualBackgroundList = newVirtualBackgroundList.concat(videos);
1969
+ (0, _mobx.runInAction)(function () {
1970
+ _this17._updateVirtualBackgroundList(newVirtualBackgroundList);
1971
+ sounds.forEach(function (item) {
1972
+ _this17.soundEffectList.set((0, _tools.getFileNameWithoutExtension)(item.url), item);
1973
+ });
1974
+ });
1975
+ case 16:
1976
+ case "end":
1977
+ return _context21.stop();
1978
+ }
1979
+ }, _callee21, this);
1980
+ }));
1981
+ function _loadBuiltinResources() {
1982
+ return _loadBuiltinResources2.apply(this, arguments);
1983
+ }
1984
+ return _loadBuiltinResources;
1985
+ }()
1798
1986
  }]);
1799
1987
  }();
1800
1988
  _FcrUIDeviceProviderImpl = FcrUIDeviceProviderImpl;
1801
- var _applyDecs$e = (0, _slicedToArray2["default"])(_applyDecs(_FcrUIDeviceProviderImpl, [[_mobx.observable, 1, "_microphoneDeviceId"], [_mobx.observable, 1, "_speakerDeviceId"], [_mobx.observable, 1, "currentIsMirror"], [_mobx.observable, 1, "showForceOpenEffectDialog"], [_mobx.observable, 1, "cameraId"], [_mobx.observable, 1, "microphoneId"], [_mobx.observable, 1, "speakerId"], [_mobx.observable, 1, "cameraEnabled"], [_mobx.observable, 1, "showCameraPreview"], [_mobx.observable, 1, "microphoneEnabled"], [_mobx.observable, 1, "cameraList"], [_mobx.observable, 1, "microphoneList"], [_mobx.observable, 1, "microphoneVolumeLevel"], [_mobx.observable, 1, "speakerList"], [_mobx.observable, 1, "isLocalMirrorEnabled"], [_mobx.observable, 1, "isLocalEditBeautyOptions"], [_mobx.observable, 1, "speakerVolumeLevel"], [_mobx.observable, 1, "speakerVolume"], [_mobx.observable, 1, "microphoneVolume"], [_mobx.observable, 1, "virtualBackgroundName"], [_mobx.observable, 1, "enableBeauty"], [_mobx.observable, 1, "beautyKey"], [_mobx.observable, 1, "beautyOptions"], [_mobx.observable, 1, "virtualBackgroundList"], [_mobx.observable, 1, "soundEffectList"], [_mobx.observable, 1, "microphoneDetecting"], [_mobx.observable, 1, "speakerDetecting"], [_mobx.observable, 1, "connectType"], [_mobx.observable, 1, "isMainRoomAudioOff"], [_imports.bound, 2, "connectAudio"], [_imports.bound, 2, "disconnectAudio"], [_startPlayLocalVideoDecs, 18, "startPlayLocalVideo"], [_stopPlayLocalVideoDecs, 18, "stopPlayLocalVideo"], [_startSpeakerTestDecs, 18, "startSpeakerTest"], [_stopSpeakerTestDecs, 18, "stopSpeakerTest"], [_setCurrentIsMirrorDecs, 18, "setCurrentIsMirror"], [_toggleLocalMirrorPreviewDecs, 18, "toggleLocalMirrorPreview"], [_setBeautyOptionsDecs, 18, "setBeautyOptions"], [_handleCancelForceOpenVideoEffectDecs, 18, "handleCancelForceOpenVideoEffect"], [_handleForceOpenVideoEffectDecs, 18, "handleForceOpenVideoEffect"], [_imports.bound, 2, "setVideoOrientation"], [_setCameraEnabledDecs, 18, "setCameraEnabled"], [_setMicrophoneEnabledDecs, 18, "setMicrophoneEnabled"], [_toggleLocalMirrorDecs, 18, "toggleLocalMirror"], [_resetMirrorDecs, 18, "resetMirror"], [_startMicrophoneTestDecs, 18, "startMicrophoneTest"], [_stopMicrophoneTestDecs, 18, "stopMicrophoneTest"], [_enableVirtualBackgroundDecs, 18, "enableVirtualBackground"], [_setEditBeautyKeyDecs, 18, "setEditBeautyKey"], [_enableBeautyEffectDecs, 18, "enableBeautyEffect"], [_setCameraIdDecs, 18, "setCameraId"], [_setSpeakerIdDecs, 18, "setSpeakerId"], [_setMicrophoneIdDecs, 18, "setMicrophoneId"], [_setSpeakerVolumeDecs, 18, "setSpeakerVolume"], [_setMicrophoneVolumeDecs, 18, "setMicrophoneVolume"], [_downloadUiResourcesDecs, 18, "downloadUiResources"], [_setConnectTypeDecs, 18, "setConnectType"], [_updateVirtualBackgroundListDecs, 18, "_updateVirtualBackgroundList"], [_handleSpeakerTestVolumeIndicationUpdatedDecs, 18, "_handleSpeakerTestVolumeIndicationUpdated"], [_handleSpeakerVolumeUpdatedDecs, 18, "_handleSpeakerVolumeUpdated"], [_handleMicrophoneVolumeIndicationUpdatedDecs, 18, "_handleMicrophoneVolumeIndicationUpdated"], [_imports.bound, 2, "_handleCameraChanged"], [_imports.bound, 2, "toggleLocalCameraPreview"], [_imports.bound, 2, "_handleCameraListUpdated"], [_imports.bound, 2, "_handleMicrophoneAdded"], [_imports.bound, 2, "_handleMicrophoneRemoved"], [_imports.bound, 2, "_handleMicrophoneListUpdated"], [_handleSpeakerAddedDecs, 18, "_handleSpeakerAdded"], [_handleSpeakerRemovedDecs, 18, "_handleSpeakerRemoved"], [_handleSpeakerListUpdatedDecs, 18, "_handleSpeakerListUpdated"], [_setMainRoomAudioOffDecs, 18, "setMainRoomAudioOff"]], []).e, 30);
1989
+ var _applyDecs$e = (0, _slicedToArray2["default"])(_applyDecs(_FcrUIDeviceProviderImpl, [[_mobx.observable, 1, "_microphoneDeviceId"], [_mobx.observable, 1, "_speakerDeviceId"], [_mobx.observable, 1, "currentIsMirror"], [_mobx.observable, 1, "showForceOpenEffectDialog"], [_mobx.observable, 1, "cameraId"], [_mobx.observable, 1, "microphoneId"], [_mobx.observable, 1, "speakerId"], [_mobx.observable, 1, "cameraEnabled"], [_mobx.observable, 1, "showCameraPreview"], [_mobx.observable, 1, "microphoneEnabled"], [_mobx.observable, 1, "cameraList"], [_mobx.observable, 1, "microphoneList"], [_mobx.observable, 1, "microphoneVolumeLevel"], [_mobx.observable, 1, "speakerList"], [_mobx.observable, 1, "isLocalMirrorEnabled"], [_mobx.observable, 1, "isLocalEditBeautyOptions"], [_mobx.observable, 1, "speakerVolumeLevel"], [_mobx.observable, 1, "speakerVolume"], [_mobx.observable, 1, "microphoneVolume"], [_mobx.observable, 1, "virtualBackgroundName"], [_mobx.observable, 1, "enableBeauty"], [_mobx.observable, 1, "beautyKey"], [_mobx.observable, 1, "beautyOptions"], [_mobx.observable, 1, "virtualBackgroundList"], [_mobx.observable, 1, "soundEffectList"], [_mobx.observable, 1, "microphoneDetecting"], [_mobx.observable, 1, "speakerDetecting"], [_mobx.observable, 1, "connectType"], [_mobx.observable, 1, "isMainRoomAudioOff"], [_imports.bound, 2, "connectAudio"], [_imports.bound, 2, "disconnectAudio"], [_startPlayLocalVideoDecs, 18, "startPlayLocalVideo"], [_stopPlayLocalVideoDecs, 18, "stopPlayLocalVideo"], [_startSpeakerTestDecs, 18, "startSpeakerTest"], [_stopSpeakerTestDecs, 18, "stopSpeakerTest"], [_setCurrentIsMirrorDecs, 18, "setCurrentIsMirror"], [_toggleLocalMirrorPreviewDecs, 18, "toggleLocalMirrorPreview"], [_setBeautyOptionsDecs, 18, "setBeautyOptions"], [_handleCancelForceOpenVideoEffectDecs, 18, "handleCancelForceOpenVideoEffect"], [_handleForceOpenVideoEffectDecs, 18, "handleForceOpenVideoEffect"], [_imports.bound, 2, "setVideoOrientation"], [_setCameraEnabledDecs, 18, "setCameraEnabled"], [_setMicrophoneEnabledDecs, 18, "setMicrophoneEnabled"], [_toggleLocalMirrorDecs, 18, "toggleLocalMirror"], [_resetMirrorDecs, 18, "resetMirror"], [_startMicrophoneTestDecs, 18, "startMicrophoneTest"], [_stopMicrophoneTestDecs, 18, "stopMicrophoneTest"], [_enableVirtualBackgroundDecs, 18, "enableVirtualBackground"], [_setEditBeautyKeyDecs, 18, "setEditBeautyKey"], [_enableBeautyEffectDecs, 18, "enableBeautyEffect"], [_setCameraIdDecs, 18, "setCameraId"], [_setSpeakerIdDecs, 18, "setSpeakerId"], [_setMicrophoneIdDecs, 18, "setMicrophoneId"], [_setSpeakerVolumeDecs, 18, "setSpeakerVolume"], [_setMicrophoneVolumeDecs, 18, "setMicrophoneVolume"], [_loadUiResourcesDecs, 18, "loadUiResources"], [_setConnectTypeDecs, 18, "setConnectType"], [_updateVirtualBackgroundListDecs, 18, "_updateVirtualBackgroundList"], [_handleSpeakerTestVolumeIndicationUpdatedDecs, 18, "_handleSpeakerTestVolumeIndicationUpdated"], [_handleSpeakerVolumeUpdatedDecs, 18, "_handleSpeakerVolumeUpdated"], [_handleMicrophoneVolumeIndicationUpdatedDecs, 18, "_handleMicrophoneVolumeIndicationUpdated"], [_imports.bound, 2, "_handleCameraChanged"], [_imports.bound, 2, "toggleLocalCameraPreview"], [_imports.bound, 2, "_handleCameraListUpdated"], [_imports.bound, 2, "_handleMicrophoneAdded"], [_imports.bound, 2, "_handleMicrophoneRemoved"], [_imports.bound, 2, "_handleMicrophoneListUpdated"], [_handleSpeakerAddedDecs, 18, "_handleSpeakerAdded"], [_handleSpeakerRemovedDecs, 18, "_handleSpeakerRemoved"], [_handleSpeakerListUpdatedDecs, 18, "_handleSpeakerListUpdated"], [_setMainRoomAudioOffDecs, 18, "setMainRoomAudioOff"]], []).e, 30);
1802
1990
  _init__microphoneDeviceId = _applyDecs$e[0];
1803
1991
  _init__speakerDeviceId = _applyDecs$e[1];
1804
1992
  _init_currentIsMirror = _applyDecs$e[2];