fcr-ui-scene 3.5.0 → 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.
- package/installer/icons/icon.png +0 -0
- package/lib/base.js +3 -0
- package/lib/creator.d.ts +14 -0
- package/lib/creator.js +239 -14
- package/lib/electron/app.js +2 -21
- package/lib/electron/bootstrap-dev.js +2 -0
- package/lib/electron/bootstrap-sdk.js +138 -7
- package/lib/electron/injections.d.ts +19 -7
- package/lib/electron/injections.js +211 -77
- package/lib/electron/ipc/ipc.d.ts +26 -0
- package/lib/electron/ipc/ipc.js +137 -0
- package/lib/electron/ipc/type.d.ts +11 -0
- package/lib/electron/ipc/type.js +19 -0
- package/lib/electron/logger.js +1 -1
- package/lib/electron/main.js +1 -1
- package/lib/electron/plugins/meeting-state.d.ts +1 -0
- package/lib/electron/plugins/meeting-state.js +3 -3
- package/lib/electron/plugins/screenshot.js +2 -2
- package/lib/electron/preload.js +67 -5
- package/lib/electron/tools.js +4 -0
- package/lib/electron/window.js +2 -2
- package/lib/global.css +21 -0
- package/lib/modules/action-bar/components/apps/app-item/index.js +2 -0
- package/lib/modules/action-bar/components/apps/app-list.js +5 -2
- package/lib/modules/action-bar/components/apps/index.js +1 -0
- package/lib/modules/action-bar/components/apps/useAppItemOptions.js +1 -0
- package/lib/modules/action-bar/components/apps/useWidgetList.js +2 -3
- package/lib/modules/action-bar/components/collapse/index.js +4 -0
- package/lib/modules/action-bar/components/item/index.d.ts +2 -0
- package/lib/modules/action-bar/components/item/index.js +6 -2
- package/lib/modules/action-bar/components/leave/index.js +3 -0
- package/lib/modules/action-bar/components/more/index.js +1 -0
- package/lib/modules/action-bar/components/more/poppover-content.js +4 -0
- package/lib/modules/action-bar/components/notification-bar/components/interpreter/index.js +1 -2
- package/lib/modules/action-bar/components/notification-bar/index.js +2 -0
- package/lib/modules/action-bar/components/record/index.js +43 -106
- package/lib/modules/action-bar/components/record/popover.d.ts +4 -0
- package/lib/modules/action-bar/components/record/popover.js +57 -0
- package/lib/modules/action-bar/components/record/stop-record-dialog.js +1 -0
- package/lib/modules/action-bar/components/screen-share/index.js +15 -3
- package/lib/modules/action-bar/components/screen-share/submenu.js +4 -2
- package/lib/modules/action-bar/components/security/index.js +2 -1
- package/lib/modules/action-bar/components/smaller/index.js +1 -1
- package/lib/modules/action-bar/components/trigger-output-language/index.js +22 -24
- package/lib/modules/action-bar/components/trigger-subscribe-language/index.js +5 -1
- package/lib/modules/action-bar/index.css +3 -2
- package/lib/modules/action-bar/index.js +2 -1
- package/lib/modules/action-bar/store.d.ts +5 -0
- package/lib/modules/action-bar/store.js +34 -12
- package/lib/modules/action-bar/types.d.ts +1 -0
- package/lib/modules/audio-stream/index.js +3 -0
- package/lib/modules/chat/chat-room-store.js +5 -1
- package/lib/modules/chat/components/chat-bar/index.d.ts +1 -1
- package/lib/modules/chat/components/chat-bar/index.js +7 -3
- package/lib/modules/chat/components/chat-select/index.js +1 -0
- package/lib/modules/chat/components/chat-select/select-item/index.js +6 -3
- package/lib/modules/chat/components/message-list/index.js +2 -2
- package/lib/modules/chat/components/message-list/message-item/index.d.ts +0 -1
- package/lib/modules/chat/components/message-list/message-item/index.js +11 -10
- package/lib/modules/chat/index.css +24 -0
- package/lib/modules/chat/store.js +1 -0
- package/lib/modules/chat/view.js +17 -3
- package/lib/modules/components/device-control/components/audio-menu/index.js +1 -2
- package/lib/modules/components/device-control/components/carmera/index.js +4 -5
- package/lib/modules/components/device-control/components/microphone/index.js +4 -5
- package/lib/modules/components/device-control/components/video-menu/index.js +1 -2
- package/lib/modules/components/device-control/index.css +6 -3
- package/lib/modules/components/device-control/store.js +1 -0
- package/lib/modules/components/leave-meeting/components/assign-host.js +26 -4
- package/lib/modules/components/leave-meeting/components/index.css +35 -0
- package/lib/modules/components/leave-meeting/index.js +1 -0
- package/lib/modules/components/leave-meeting/store.js +27 -67
- package/lib/modules/components/member-window/components/member-actions/components/audio-control.js +3 -2
- package/lib/modules/components/member-window/components/member-actions/components/icon-buttons/index.js +1 -1
- package/lib/modules/components/member-window/components/member-actions/components/icon-status.js +10 -9
- package/lib/modules/components/member-window/components/member-actions/components/more-actions.js +2 -2
- package/lib/modules/components/member-window/components/member-actions/components/user-info.js +2 -1
- package/lib/modules/components/member-window/components/member-actions/index.js +3 -2
- package/lib/modules/components/member-window/components/video-player/components/remote-video-player.js +3 -14
- package/lib/modules/components/member-window/components/video-player/index.js +2 -0
- package/lib/modules/components/member-window/index.css +18 -7
- package/lib/modules/components/member-window/types.d.ts +1 -1
- package/lib/modules/components/security-menu/index.css +2 -2
- package/lib/modules/components/security-menu/index.js +84 -29
- package/lib/modules/components/tab-frame/index.css +1 -1
- package/lib/modules/components/tab-frame/index.js +4 -0
- package/lib/modules/connection-gateway/components/phone/components/callinfo/index.js +1 -2
- package/lib/modules/connection-gateway/components/phone/index.js +1 -2
- package/lib/modules/connection-gateway/store.js +4 -0
- package/lib/modules/control-bar/components/meeting-details/index.css +1 -1
- package/lib/modules/control-bar/components/meeting-details/index.js +16 -10
- package/lib/modules/control-bar/components/more-actions/index.js +5 -21
- package/lib/modules/control-bar/components/share-state-nav/index.js +4 -20
- package/lib/modules/control-bar/index.d.ts +2 -0
- package/lib/modules/control-bar/index.js +5 -1
- package/lib/modules/control-bar/store.d.ts +11 -2
- package/lib/modules/control-bar/store.js +104 -95
- package/lib/modules/control-bar/view.js +4 -7
- package/lib/modules/device-pretest/audio-preview/speaker-detection.js +1 -1
- package/lib/modules/device-pretest/settings/beauty.js +1 -2
- package/lib/modules/device-pretest/settings/virtual-background-setting.js +1 -2
- package/lib/modules/device-pretest/store.js +2 -0
- package/lib/modules/dialog/components/chat/electron.d.ts +1 -3
- package/lib/modules/dialog/components/chat/index.js +24 -17
- package/lib/modules/dialog/components/confirm-leave-meeting/index.d.ts +6 -0
- package/lib/modules/dialog/components/confirm-leave-meeting/index.js +86 -0
- package/lib/modules/dialog/components/control-bar/index.d.ts +2 -3
- package/lib/modules/dialog/components/control-bar/index.js +35 -48
- package/lib/modules/dialog/components/dialog-container/component/body.d.ts +1 -0
- package/lib/modules/dialog/components/dialog-container/component/body.js +6 -2
- package/lib/modules/dialog/components/dialog-container/index.css +2 -1
- package/lib/modules/dialog/components/dialog-container/index.d.ts +1 -0
- package/lib/modules/dialog/components/dialog-container/index.js +3 -1
- package/lib/modules/dialog/components/participant/index.d.ts +0 -1
- package/lib/modules/dialog/components/participant/index.js +15 -24
- package/lib/modules/dialog/components/pre-setting/electron.js +51 -0
- package/lib/modules/dialog/components/pre-setting/index.css +26 -0
- package/lib/modules/dialog/components/pre-setting/index.d.ts +6 -0
- package/lib/modules/dialog/components/pre-setting/index.js +38 -0
- package/lib/modules/dialog/components/pre-setting-container/component/body.d.ts +8 -0
- package/lib/modules/dialog/components/pre-setting-container/component/body.js +80 -0
- package/lib/modules/dialog/components/pre-setting-container/index.css +82 -0
- package/lib/modules/dialog/components/pre-setting-container/index.d.ts +18 -0
- package/lib/modules/dialog/components/pre-setting-container/index.js +117 -0
- package/lib/modules/dialog/components/rename/index.d.ts +4 -0
- package/lib/modules/dialog/components/rename/index.js +72 -0
- package/lib/modules/dialog/components/system-preference/index.js +5 -2
- package/lib/modules/dialog/components/video-window/index.js +20 -16
- package/lib/modules/dialog/components/widget/electron.d.ts +2 -1
- package/lib/modules/dialog/components/widget/electron.js +3 -2
- package/lib/modules/dialog/components/widget/index.d.ts +2 -1
- package/lib/modules/dialog/components/widget/index.js +4 -6
- package/lib/modules/dialog/dialogs.d.ts +1 -0
- package/lib/modules/dialog/dialogs.js +3 -2
- package/lib/modules/dialog/hooks/useElectron.d.ts +2 -0
- package/lib/modules/dialog/hooks/useElectron.js +42 -38
- package/lib/modules/dialog/index.d.ts +2 -0
- package/lib/modules/dialog/index.js +4 -1
- package/lib/modules/dialog/store.d.ts +8 -3
- package/lib/modules/dialog/store.js +42 -26
- package/lib/modules/dialog/type.d.ts +1 -0
- package/lib/modules/dialog/view.js +3 -3
- package/lib/modules/event-confirm/index.d.ts +2 -0
- package/lib/modules/event-confirm/index.js +2 -1
- package/lib/modules/event-confirm/store.d.ts +9 -1
- package/lib/modules/event-confirm/store.js +97 -8
- package/lib/modules/event-confirm/view.js +60 -48
- package/lib/modules/{sound-effect → event-sound}/index.d.ts +3 -2
- package/lib/modules/{sound-effect → event-sound}/index.js +10 -5
- package/lib/modules/event-toast/store.js +4 -0
- package/lib/modules/event-toast/view.js +1 -2
- package/lib/modules/interpreter/dialog-content/index.js +4 -1
- package/lib/modules/interpreter/index.d.ts +2 -0
- package/lib/modules/interpreter/index.js +2 -1
- package/lib/modules/interpreter/interpreter-list/index.js +2 -2
- package/lib/modules/interpreter/interpreter-list/interpreter-item/components/pick-language/index.js +8 -2
- package/lib/modules/interpreter/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/index.js +2 -0
- package/lib/modules/interpreter/interpreter-list/interpreter-item/components/pick-user/index.js +4 -0
- package/lib/modules/interpreter/store.d.ts +2 -2
- package/lib/modules/interpreter/store.js +35 -24
- package/lib/modules/interpreter/type.d.ts +2 -0
- package/lib/modules/invite/components/pstn-invite.js +3 -9
- package/lib/modules/invite/components/voip-invite.css +26 -0
- package/lib/modules/invite/components/voip-invite.d.ts +1 -0
- package/lib/modules/invite/components/voip-invite.js +8 -11
- package/lib/modules/invite/enums.js +0 -1
- package/lib/modules/invite/index.css +16 -3
- package/lib/modules/invite/index.d.ts +2 -1
- package/lib/modules/invite/index.js +2 -1
- package/lib/modules/invite/store.d.ts +5 -1
- package/lib/modules/invite/store.js +9 -2
- package/lib/modules/layout/components/Carousel.d.ts +1 -1
- package/lib/modules/layout/components/Carousel.js +16 -119
- package/lib/modules/layout/components/CommonVideoRenderer.d.ts +13 -0
- package/lib/modules/layout/components/CommonVideoRenderer.js +214 -0
- package/lib/modules/layout/components/Gallery.d.ts +1 -0
- package/lib/modules/layout/components/Gallery.js +63 -206
- package/lib/modules/layout/components/index.css +17 -34
- package/lib/modules/layout/components/index.js +1 -0
- package/lib/modules/layout/index.d.ts +2 -0
- package/lib/modules/layout/index.js +2 -1
- package/lib/modules/layout/store.d.ts +5 -2
- package/lib/modules/layout/store.js +51 -39
- package/lib/modules/layout/type.d.ts +4 -0
- package/lib/modules/layout/type.js +6 -3
- package/lib/modules/live-streaming/store.d.ts +1 -0
- package/lib/modules/live-streaming/store.js +20 -8
- package/lib/modules/notification/interpreter-status/index.js +1 -2
- package/lib/modules/offscreen-pulling/index.js +1 -0
- package/lib/modules/participant/components/confirm-input/index.d.ts +4 -4
- package/lib/modules/participant/components/confirm-input/index.js +74 -6
- package/lib/modules/participant/components/participants/components/footer/components/drop-menu/index.css +27 -3
- package/lib/modules/participant/components/participants/components/footer/components/drop-menu/index.js +3 -0
- package/lib/modules/participant/components/participants/components/footer/components/footer/index.css +4 -0
- package/lib/modules/participant/components/participants/components/footer/components/footer/index.js +3 -2
- package/lib/modules/participant/components/participants/components/participants/components/attendee/index.css +4 -3
- package/lib/modules/participant/components/participants/components/participants/components/attendee/index.js +3 -0
- package/lib/modules/participant/components/participants/components/participants/components/participants-more/index.css +9 -1
- package/lib/modules/participant/components/participants/components/participants/components/participants-more/index.js +3 -1
- package/lib/modules/participant/components/participants/components/participants/components/user-row/index.js +2 -0
- package/lib/modules/participant/components/participants/components/participants/index.css +1 -0
- package/lib/modules/participant/components/participants/components/participants/index.js +2 -0
- package/lib/modules/participant/components/participants/components/render-user/components/attendee/components/interpreter-tag/index.js +1 -0
- package/lib/modules/participant/components/participants/components/render-user/components/attendee/index.css +18 -0
- package/lib/modules/participant/components/participants/components/render-user/components/attendee/index.js +14 -5
- package/lib/modules/participant/components/participants/components/render-user/components/user-action/components/move-actions-popover/index.js +1 -8
- package/lib/modules/participant/index.css +6 -0
- package/lib/modules/participant/index.d.ts +1 -0
- package/lib/modules/participant/index.js +11 -0
- package/lib/modules/participant/member-list-data-source.js +3 -0
- package/lib/modules/participant/store.d.ts +6 -1
- package/lib/modules/participant/store.js +139 -106
- package/lib/modules/pc-audio-connect/store.js +2 -1
- package/lib/modules/phone-audio-connect/components/callinfo/index.js +1 -2
- package/lib/modules/phone-audio-connect/index.d.ts +2 -0
- package/lib/modules/phone-audio-connect/index.js +2 -1
- package/lib/modules/phone-audio-connect/store.d.ts +4 -1
- package/lib/modules/phone-audio-connect/store.js +7 -2
- package/lib/modules/phone-audio-connect/view.js +1 -2
- package/lib/modules/setting/audio-settings/audio-settings.js +71 -49
- package/lib/modules/setting/audio-settings/index.css +23 -6
- package/lib/modules/setting/general-settings/general-settings.d.ts +1 -2
- package/lib/modules/setting/general-settings/general-settings.js +111 -37
- package/lib/modules/setting/general-settings/index.css +15 -0
- package/lib/modules/setting/index.d.ts +4 -1
- package/lib/modules/setting/index.js +7 -4
- package/lib/modules/setting/minutes-settings/minutes-settings.js +1 -2
- package/lib/modules/setting/state/index.js +5 -1
- package/lib/modules/setting/store.d.ts +24 -11
- package/lib/modules/setting/store.js +211 -146
- package/lib/modules/setting/translate-settings/translate-settings.js +1 -1
- package/lib/modules/setting/video-settings/index.css +13 -2
- package/lib/modules/setting/video-settings/video-settings-basic.js +18 -27
- package/lib/modules/setting/video-settings/video-settings.d.ts +0 -2
- package/lib/modules/setting/video-settings/video-settings.js +3 -2
- package/lib/modules/setting/view.d.ts +11 -2
- package/lib/modules/setting/view.js +93 -71
- package/lib/modules/share-screen/components/selection/index.js +7 -3
- package/lib/modules/share-screen/index.d.ts +4 -1
- package/lib/modules/share-screen/index.js +3 -1
- package/lib/modules/share-screen/store.d.ts +15 -5
- package/lib/modules/share-screen/store.js +127 -71
- package/lib/modules/share-screen/view.js +1 -1
- package/lib/modules/state-bar/index.css +4 -2
- package/lib/modules/state-bar/index.d.ts +2 -0
- package/lib/modules/state-bar/index.js +2 -1
- package/lib/modules/state-bar/layout-config.js +2 -2
- package/lib/modules/state-bar/live-streaming-state.js +2 -0
- package/lib/modules/state-bar/meeting-detail.css +10 -1
- package/lib/modules/state-bar/meeting-details.js +43 -26
- package/lib/modules/state-bar/meeting-network-state.css +8 -0
- package/lib/modules/state-bar/meeting-time.js +9 -20
- package/lib/modules/state-bar/store.d.ts +6 -2
- package/lib/modules/state-bar/store.js +12 -4
- package/lib/modules/state-bar/view.js +17 -6
- package/lib/modules/video-window/components/members/index.js +1 -5
- package/lib/modules/video-window/components/topControl/index.js +2 -0
- package/lib/modules/video-window/store.js +4 -0
- package/lib/modules/waiting-room-layout/index.css +13 -0
- package/lib/modules/waiting-room-layout/index.d.ts +2 -1
- package/lib/modules/waiting-room-layout/index.js +2 -1
- package/lib/modules/waiting-room-layout/store.d.ts +12 -1
- package/lib/modules/waiting-room-layout/store.js +42 -6
- package/lib/modules/waiting-room-layout/view.js +22 -5
- package/lib/modules/whiteboard/components/control-bar/index.css +1 -1
- package/lib/modules/whiteboard/components/switch-theme/index.js +2 -0
- package/lib/modules/whiteboard/components/switch-theme/item.js +1 -2
- package/lib/modules/whiteboard/components/switch-theme/libs.d.ts +1 -1
- package/lib/modules/whiteboard/components/switch-theme/libs.js +3 -1
- package/lib/modules/whiteboard/components/toolbar/ style.css +1 -0
- package/lib/modules/whiteboard/components/toolbar/components/color-picker/components/panel.js +2 -2
- package/lib/modules/whiteboard/components/toolbar/components/color-picker/components/picker.js +1 -0
- package/lib/modules/whiteboard/components/toolbar/components/color-picker/index.js +1 -2
- package/lib/modules/whiteboard/components/toolbar/components/eraser-picker.js +3 -14
- package/lib/modules/whiteboard/components/toolbar/components/extra-tool-picker.js +3 -3
- package/lib/modules/whiteboard/components/toolbar/components/history.js +3 -3
- package/lib/modules/whiteboard/components/toolbar/components/move-handle.js +2 -0
- package/lib/modules/whiteboard/components/toolbar/components/pen-picker.js +3 -4
- package/lib/modules/whiteboard/components/toolbar/components/screen-capture-picker.js +2 -2
- package/lib/modules/whiteboard/components/toolbar/components/shape-picker.js +4 -5
- package/lib/modules/whiteboard/components/toolbar/hooks/index.js +8 -6
- package/lib/modules/whiteboard/components/toolbar/index.js +10 -111
- package/lib/modules/whiteboard/components/toolbar/store.d.ts +18 -0
- package/lib/modules/whiteboard/components/toolbar/store.js +276 -83
- package/lib/modules/whiteboard/context.d.ts +1 -2
- package/lib/modules/whiteboard/index.d.ts +1 -14
- package/lib/modules/whiteboard/index.js +135 -426
- package/lib/modules/whiteboard/view.js +12 -10
- package/lib/modules/widget/sdk.js +2 -1
- package/lib/object-manager.d.ts +8 -0
- package/lib/object-manager.js +75 -0
- package/lib/plugins/browser-runtime-plugin.js +19 -14
- package/lib/providers/ability-provider.d.ts +8 -0
- package/lib/providers/ability-provider.js +14 -0
- package/lib/providers/device-privilege-provider.d.ts +1 -0
- package/lib/providers/device-privilege-provider.js +55 -75
- package/lib/providers/device-provider.d.ts +18 -8
- package/lib/providers/device-provider.js +402 -209
- package/lib/providers/device-stream-provider.js +3 -4
- package/lib/providers/dialog-provider.d.ts +1 -0
- package/lib/providers/dialog-provider.js +4 -16
- package/lib/providers/event-provider.js +47 -2
- package/lib/providers/interpreter-provider.d.ts +4 -0
- package/lib/providers/interpreter-provider.js +169 -137
- package/lib/providers/message-provider.js +46 -2
- package/lib/providers/phone-audio-provider.js +3 -0
- package/lib/providers/privilege-provider.d.ts +33 -0
- package/lib/providers/privilege-provider.js +124 -45
- package/lib/providers/renderer-provider.js +1 -0
- package/lib/providers/room-provider.d.ts +12 -10
- package/lib/providers/room-provider.js +164 -261
- package/lib/providers/screen-share-provider.d.ts +4 -0
- package/lib/providers/screen-share-provider.js +6 -6
- package/lib/providers/widget-provider.js +7 -4
- package/lib/runtime.d.ts +20 -8
- package/lib/scenes/main-scene.d.ts +2 -0
- package/lib/scenes/main-scene.js +97 -37
- package/lib/scenes/waiting-scene.js +16 -13
- package/lib/schema.d.ts +55 -32
- package/lib/schema.js +23 -9
- package/lib/shared-data-source/chat-data.js +2 -0
- package/lib/shared-data-source/config.d.ts +6 -2
- package/lib/shared-data-source/config.js +81 -10
- package/lib/shared-data-source/interpreter.js +2 -0
- package/lib/shared-data-source/layout-data.js +4 -1
- package/lib/shared-data-source/member-data.d.ts +16 -20
- package/lib/shared-data-source/member-data.js +125 -126
- package/lib/shared-data-source/pin-data.js +1 -0
- package/lib/shared-data-source/screen-share-data-source.d.ts +37 -0
- package/lib/{modules/components/toast/store.js → shared-data-source/screen-share-data-source.js} +69 -84
- package/lib/shared-data-source/security-data.d.ts +1 -0
- package/lib/shared-data-source/security-data.js +4 -5
- package/lib/shared-data-source/setting.d.ts +1 -0
- package/lib/shared-data-source/setting.js +35 -17
- package/lib/shared-data-source/video-window.d.ts +3 -3
- package/lib/shared-data-source/video-window.js +59 -38
- package/lib/shared-data-source/waiting-room.js +2 -0
- package/lib/translations/enUS.d.ts +48 -1
- package/lib/translations/enUS.js +65 -17
- package/lib/translations/zhCN.d.ts +49 -1
- package/lib/translations/zhCN.js +54 -5
- package/lib/type.d.ts +40 -20
- package/lib/type.js +14 -15
- package/lib/ui-manager.d.ts +11 -9
- package/lib/ui-manager.js +118 -29
- package/lib/ui-scene.d.ts +7 -4
- package/lib/ui-scene.js +112 -128
- package/lib/utilities/constant.d.ts +5 -2
- package/lib/utilities/constant.js +3 -7
- package/lib/utilities/copyText.js +15 -11
- package/lib/utilities/default-config.d.ts +2 -0
- package/lib/utilities/default-config.js +11 -5
- package/lib/utilities/i18n-common-data.d.ts +2 -0
- package/lib/utilities/i18n-common-data.js +15 -0
- package/lib/utilities/logger.d.ts +0 -1
- package/lib/utilities/logger.js +4 -4
- package/lib/utilities/privilege.js +2 -0
- package/lib/utilities/renderer-event.js +2 -0
- package/lib/utilities/renderer.d.ts +1 -9
- package/lib/utilities/renderer.js +3 -68
- package/lib/utilities/screen.js +3 -1
- package/lib/utilities/setting-config-storage.d.ts +6 -1
- package/lib/utilities/setting-config-storage.js +23 -4
- package/lib/utilities/tools.d.ts +7 -6
- package/lib/utilities/tools.js +58 -43
- package/lib/utilities/ui-resources.d.ts +6 -0
- package/lib/utilities/ui-resources.js +47 -9
- package/lib/waiting-room-control-manager.d.ts +4 -4
- package/lib/waiting-room-control-manager.js +31 -9
- package/package.json +6 -6
- package/public/assets/browser/images/default1.jpg +0 -0
- package/public/assets/browser/images/default2.jpg +0 -0
- package/public/assets/browser/images/default3.jpg +0 -0
- package/public/assets/browser/images/default4.jpg +0 -0
- package/public/assets/browser/images/default5.jpg +0 -0
- package/public/assets/browser/images/default6.jpg +0 -0
- package/public/assets/browser/images/default7.jpg +0 -0
- package/public/assets/browser/sound_effects/pretest.mp3 +0 -0
- package/public/assets/browser/sound_effects/recording_started.mp3 +0 -0
- package/public/assets/browser/sound_effects/remote_user_joined.mp3 +0 -0
- package/public/assets/browser/sound_effects/speaker_test.mp3 +0 -0
- package/public/assets/browser/videos/default8.mp4 +0 -0
- package/public/assets/browser/videos/default9.mp4 +0 -0
- package/public/assets/electron/images/default1.jpg +0 -0
- package/public/assets/electron/images/default2.jpg +0 -0
- package/public/assets/electron/sound_effects/pretest.mp3 +0 -0
- package/public/assets/electron/videos/default8.mp4 +0 -0
- package/public/index.html +104 -83
- package/lib/common/device-store.d.ts +0 -149
- package/lib/common/device-store.js +0 -1551
- package/lib/common/device-stream-store.d.ts +0 -51
- package/lib/common/device-stream-store.js +0 -546
- package/lib/common/event-store.d.ts +0 -135
- package/lib/common/event-store.js +0 -280
- package/lib/common/room-store.d.ts +0 -58
- package/lib/common/room-store.js +0 -402
- package/lib/common/security-store.d.ts +0 -131
- package/lib/common/security-store.js +0 -957
- package/lib/fragments/base.d.ts +0 -10
- package/lib/fragments/base.js +0 -44
- package/lib/fragments/control-bar/cloud-recording-buttons.d.ts +0 -1
- package/lib/fragments/control-bar/cloud-recording-buttons.js +0 -67
- package/lib/fragments/control-bar/context.d.ts +0 -2
- package/lib/fragments/control-bar/context.js +0 -9
- package/lib/fragments/control-bar/control-bar-store.d.ts +0 -196
- package/lib/fragments/control-bar/control-bar-store.js +0 -1678
- package/lib/fragments/control-bar/device/index.d.ts +0 -31
- package/lib/fragments/control-bar/device/index.js +0 -212
- package/lib/fragments/control-bar/index.css +0 -281
- package/lib/fragments/control-bar/index.d.ts +0 -26
- package/lib/fragments/control-bar/index.js +0 -257
- package/lib/fragments/control-bar/meeting-details/meeting-detail.css +0 -128
- package/lib/fragments/control-bar/meeting-details/meeting-details-portal.d.ts +0 -3
- package/lib/fragments/control-bar/meeting-details/meeting-details-portal.js +0 -60
- package/lib/fragments/control-bar/meeting-details/meeting-details.d.ts +0 -2
- package/lib/fragments/control-bar/meeting-details/meeting-details.js +0 -280
- package/lib/fragments/control-bar/more-actions/index.css +0 -72
- package/lib/fragments/control-bar/more-actions/index.d.ts +0 -7
- package/lib/fragments/control-bar/more-actions/index.js +0 -299
- package/lib/fragments/control-bar/security-content/index.css +0 -99
- package/lib/fragments/control-bar/security-content/index.d.ts +0 -2
- package/lib/fragments/control-bar/security-content/index.js +0 -234
- package/lib/fragments/control-bar/share-state-nav/index.css +0 -70
- package/lib/fragments/control-bar/share-state-nav/index.d.ts +0 -10
- package/lib/fragments/control-bar/share-state-nav/index.js +0 -134
- package/lib/fragments/control-bar/stop-live-streaming/index.d.ts +0 -1
- package/lib/fragments/control-bar/stop-live-streaming/index.js +0 -82
- package/lib/fragments/control-bar/transfer-position-icon/index.d.ts +0 -11
- package/lib/fragments/control-bar/transfer-position-icon/index.js +0 -46
- package/lib/fragments/control-bar/view.d.ts +0 -1
- package/lib/fragments/control-bar/view.js +0 -336
- package/lib/fragments/live-streaming/context.d.ts +0 -2
- package/lib/fragments/live-streaming/context.js +0 -9
- package/lib/fragments/live-streaming/index.css +0 -11
- package/lib/fragments/live-streaming/index.d.ts +0 -11
- package/lib/fragments/live-streaming/index.js +0 -79
- package/lib/fragments/live-streaming/store.d.ts +0 -21
- package/lib/fragments/live-streaming/store.js +0 -238
- package/lib/fragments/live-streaming/view.d.ts +0 -2
- package/lib/fragments/live-streaming/view.js +0 -46
- package/lib/fragments/share-screen-selection/context.d.ts +0 -2
- package/lib/fragments/share-screen-selection/context.js +0 -9
- package/lib/fragments/share-screen-selection/index.css +0 -66
- package/lib/fragments/share-screen-selection/index.d.ts +0 -9
- package/lib/fragments/share-screen-selection/index.js +0 -94
- package/lib/fragments/share-screen-selection/open-mic-tips.d.ts +0 -9
- package/lib/fragments/share-screen-selection/open-mic-tips.js +0 -55
- package/lib/fragments/share-screen-selection/selection-store.d.ts +0 -35
- package/lib/fragments/share-screen-selection/selection-store.js +0 -352
- package/lib/fragments/share-screen-selection/tips.css +0 -33
- package/lib/fragments/share-screen-selection/view.d.ts +0 -9
- package/lib/fragments/share-screen-selection/view.js +0 -262
- package/lib/fragments/toolbar/components/color-picker/components/color.d.ts +0 -5
- package/lib/fragments/toolbar/components/color-picker/components/color.js +0 -56
- package/lib/fragments/toolbar/components/color-picker/components/panel.d.ts +0 -1
- package/lib/fragments/toolbar/components/color-picker/components/panel.js +0 -118
- package/lib/fragments/toolbar/components/color-picker/components/picker.d.ts +0 -1
- package/lib/fragments/toolbar/components/color-picker/components/picker.js +0 -77
- package/lib/fragments/toolbar/components/color-picker/index.d.ts +0 -2
- package/lib/fragments/toolbar/components/color-picker/index.js +0 -57
- package/lib/fragments/toolbar/components/color-picker.d.ts +0 -2
- package/lib/fragments/toolbar/components/color-picker.js +0 -129
- package/lib/fragments/toolbar/components/eraser-picker.d.ts +0 -4
- package/lib/fragments/toolbar/components/eraser-picker.js +0 -75
- package/lib/fragments/toolbar/components/extra-tool-picker.d.ts +0 -1
- package/lib/fragments/toolbar/components/extra-tool-picker.js +0 -64
- package/lib/fragments/toolbar/components/fold-icon.d.ts +0 -2
- package/lib/fragments/toolbar/components/fold-icon.js +0 -41
- package/lib/fragments/toolbar/components/history.d.ts +0 -2
- package/lib/fragments/toolbar/components/history.js +0 -46
- package/lib/fragments/toolbar/components/pen-picker.d.ts +0 -4
- package/lib/fragments/toolbar/components/pen-picker.js +0 -134
- package/lib/fragments/toolbar/components/screen-capture-picker.d.ts +0 -4
- package/lib/fragments/toolbar/components/screen-capture-picker.js +0 -86
- package/lib/fragments/toolbar/components/shape-picker.d.ts +0 -4
- package/lib/fragments/toolbar/components/shape-picker.js +0 -148
- package/lib/fragments/toolbar/components/transfer-position-icon/index.d.ts +0 -11
- package/lib/fragments/toolbar/components/transfer-position-icon/index.js +0 -46
- package/lib/fragments/toolbar/components/wrapper.d.ts +0 -1
- package/lib/fragments/toolbar/components/wrapper.js +0 -138
- package/lib/fragments/toolbar/hooks.d.ts +0 -16
- package/lib/fragments/toolbar/hooks.js +0 -256
- package/lib/fragments/toolbar/index.d.ts +0 -12
- package/lib/fragments/toolbar/index.js +0 -80
- package/lib/fragments/toolbar/store.d.ts +0 -62
- package/lib/fragments/toolbar/store.js +0 -297
- package/lib/fragments/toolbar/style.css +0 -347
- package/lib/fragments/toolbar/view.d.ts +0 -1
- package/lib/fragments/toolbar/view.js +0 -36
- package/lib/hooks/meeting-time.d.ts +0 -15
- package/lib/hooks/meeting-time.js +0 -92
- package/lib/login-confirm-dialog.d.ts +0 -13
- package/lib/login-confirm-dialog.js +0 -85
- package/lib/modules/action-bar/action-bar-collapes-items.d.ts +0 -20
- package/lib/modules/action-bar/action-bar-collapes-items.js +0 -225
- package/lib/modules/action-bar/apps/app-item/index.css +0 -35
- package/lib/modules/action-bar/apps/app-item/index.d.ts +0 -12
- package/lib/modules/action-bar/apps/app-item/index.js +0 -61
- package/lib/modules/action-bar/apps/appitems.d.ts +0 -5
- package/lib/modules/action-bar/apps/appitems.js +0 -45
- package/lib/modules/action-bar/apps/index.css +0 -8
- package/lib/modules/action-bar/apps/index.d.ts +0 -4
- package/lib/modules/action-bar/apps/index.js +0 -57
- package/lib/modules/action-bar/apps/useAppItemOptions.d.ts +0 -9
- package/lib/modules/action-bar/apps/useAppItemOptions.js +0 -29
- package/lib/modules/action-bar/apps/useBeautyBackground.d.ts +0 -10
- package/lib/modules/action-bar/apps/useBeautyBackground.js +0 -34
- package/lib/modules/action-bar/apps/useInterpreter.d.ts +0 -14
- package/lib/modules/action-bar/apps/useInterpreter.js +0 -35
- package/lib/modules/action-bar/apps/useLiveStreaming.d.ts +0 -16
- package/lib/modules/action-bar/apps/useLiveStreaming.js +0 -41
- package/lib/modules/action-bar/board/index.d.ts +0 -4
- package/lib/modules/action-bar/board/index.js +0 -34
- package/lib/modules/action-bar/breakout-room/index.d.ts +0 -4
- package/lib/modules/action-bar/breakout-room/index.js +0 -32
- package/lib/modules/action-bar/chat/index.css +0 -80
- package/lib/modules/action-bar/chat/index.d.ts +0 -5
- package/lib/modules/action-bar/chat/index.js +0 -152
- package/lib/modules/action-bar/components/apps/appitems.d.ts +0 -3
- package/lib/modules/action-bar/components/apps/appitems.js +0 -42
- package/lib/modules/action-bar/components/leave/assign-host.d.ts +0 -3
- package/lib/modules/action-bar/components/leave/assign-host.js +0 -64
- package/lib/modules/action-bar/components/leave/index.css +0 -126
- package/lib/modules/action-bar/components/leave/leave-meeting.d.ts +0 -3
- package/lib/modules/action-bar/components/leave/leave-meeting.js +0 -153
- package/lib/modules/action-bar/context.d.ts +0 -2
- package/lib/modules/action-bar/context.js +0 -9
- package/lib/modules/action-bar/device/index.css +0 -162
- package/lib/modules/action-bar/device/index.d.ts +0 -8
- package/lib/modules/action-bar/device/index.js +0 -613
- package/lib/modules/action-bar/interpreter/index.d.ts +0 -6
- package/lib/modules/action-bar/interpreter/index.js +0 -41
- package/lib/modules/action-bar/item-placement.d.ts +0 -7
- package/lib/modules/action-bar/item-placement.js +0 -18
- package/lib/modules/action-bar/item.d.ts +0 -27
- package/lib/modules/action-bar/item.js +0 -159
- package/lib/modules/action-bar/leave/assign-host.d.ts +0 -10
- package/lib/modules/action-bar/leave/assign-host.js +0 -64
- package/lib/modules/action-bar/leave/index.css +0 -126
- package/lib/modules/action-bar/leave/index.d.ts +0 -3
- package/lib/modules/action-bar/leave/index.js +0 -165
- package/lib/modules/action-bar/leave/leave-meeting.d.ts +0 -18
- package/lib/modules/action-bar/leave/leave-meeting.js +0 -153
- package/lib/modules/action-bar/live-streaming/index.d.ts +0 -4
- package/lib/modules/action-bar/live-streaming/index.js +0 -39
- package/lib/modules/action-bar/more/index.css +0 -114
- package/lib/modules/action-bar/more/index.d.ts +0 -5
- package/lib/modules/action-bar/more/index.js +0 -80
- package/lib/modules/action-bar/more/poppover-content.d.ts +0 -8
- package/lib/modules/action-bar/more/poppover-content.js +0 -400
- package/lib/modules/action-bar/participants/index.css +0 -21
- package/lib/modules/action-bar/participants/index.d.ts +0 -5
- package/lib/modules/action-bar/participants/index.js +0 -82
- package/lib/modules/action-bar/record/index.css +0 -39
- package/lib/modules/action-bar/record/index.d.ts +0 -5
- package/lib/modules/action-bar/record/index.js +0 -161
- package/lib/modules/action-bar/record/stop-record-dialog.d.ts +0 -5
- package/lib/modules/action-bar/record/stop-record-dialog.js +0 -48
- package/lib/modules/action-bar/respond/index.d.ts +0 -4
- package/lib/modules/action-bar/respond/index.js +0 -32
- package/lib/modules/action-bar/screen-share/index.d.ts +0 -4
- package/lib/modules/action-bar/screen-share/index.js +0 -101
- package/lib/modules/action-bar/screen-share/submenu.d.ts +0 -1
- package/lib/modules/action-bar/screen-share/submenu.js +0 -154
- package/lib/modules/action-bar/security/drop-menu.d.ts +0 -1
- package/lib/modules/action-bar/security/drop-menu.js +0 -312
- package/lib/modules/action-bar/security/index.d.ts +0 -4
- package/lib/modules/action-bar/security/index.js +0 -56
- package/lib/modules/action-bar/settings/index.d.ts +0 -4
- package/lib/modules/action-bar/settings/index.js +0 -41
- package/lib/modules/action-bar/smaller.d.ts +0 -1
- package/lib/modules/action-bar/smaller.js +0 -52
- package/lib/modules/action-bar/switch-input-language-room/fcr_translateswitch.png +0 -0
- package/lib/modules/action-bar/switch-input-language-room/index.css +0 -86
- package/lib/modules/action-bar/switch-input-language-room/index.d.ts +0 -16
- package/lib/modules/action-bar/switch-input-language-room/index.js +0 -236
- package/lib/modules/action-bar/switch-output-language-room/drop-menu.d.ts +0 -1
- package/lib/modules/action-bar/switch-output-language-room/drop-menu.js +0 -197
- package/lib/modules/action-bar/switch-output-language-room/guide-tooltip/index.css +0 -18
- package/lib/modules/action-bar/switch-output-language-room/guide-tooltip/index.d.ts +0 -14
- package/lib/modules/action-bar/switch-output-language-room/guide-tooltip/index.js +0 -72
- package/lib/modules/action-bar/switch-output-language-room/index.d.ts +0 -12
- package/lib/modules/action-bar/switch-output-language-room/index.js +0 -309
- package/lib/modules/action-bar/switch-output-language-room/notification-bar/components/interpreter/index.css +0 -58
- package/lib/modules/action-bar/switch-output-language-room/notification-bar/components/interpreter/index.d.ts +0 -8
- package/lib/modules/action-bar/switch-output-language-room/notification-bar/components/interpreter/index.js +0 -100
- package/lib/modules/action-bar/switch-output-language-room/notification-bar/components/virtual-image/index.css +0 -56
- package/lib/modules/action-bar/switch-output-language-room/notification-bar/components/virtual-image/index.d.ts +0 -5
- package/lib/modules/action-bar/switch-output-language-room/notification-bar/components/virtual-image/index.js +0 -33
- package/lib/modules/action-bar/switch-output-language-room/notification-bar/dome.png +0 -0
- package/lib/modules/action-bar/switch-output-language-room/notification-bar/fcr_translateswitch.png +0 -0
- package/lib/modules/action-bar/switch-output-language-room/notification-bar/index.css +0 -74
- package/lib/modules/action-bar/switch-output-language-room/notification-bar/index.d.ts +0 -2
- package/lib/modules/action-bar/switch-output-language-room/notification-bar/index.js +0 -99
- package/lib/modules/action-bar/type.d.ts +0 -6
- package/lib/modules/action-bar/type.js +0 -13
- package/lib/modules/chat/chat-bar/index.css +0 -80
- package/lib/modules/chat/chat-bar/index.d.ts +0 -11
- package/lib/modules/chat/chat-bar/index.js +0 -142
- package/lib/modules/chat/chat-select/index.css +0 -178
- package/lib/modules/chat/chat-select/index.d.ts +0 -12
- package/lib/modules/chat/chat-select/index.js +0 -212
- package/lib/modules/chat/chat.d.ts +0 -11
- package/lib/modules/chat/chat.js +0 -386
- package/lib/modules/chat/contex.d.ts +0 -2
- package/lib/modules/chat/contex.js +0 -9
- package/lib/modules/chat/demo-wrapper.d.ts +0 -1
- package/lib/modules/chat/demo-wrapper.js +0 -42
- package/lib/modules/chat/message-list.d.ts +0 -22
- package/lib/modules/chat/message-list.js +0 -630
- package/lib/modules/components/device-control/type.d.ts +0 -6
- package/lib/modules/components/device-control/type.js +0 -13
- package/lib/modules/components/member-window/components/member-board.d.ts +0 -2
- package/lib/modules/components/member-window/components/member-board.js +0 -63
- package/lib/modules/components/toast/index.css +0 -12
- package/lib/modules/components/toast/index.d.ts +0 -10
- package/lib/modules/components/toast/index.js +0 -66
- package/lib/modules/components/toast/store.d.ts +0 -17
- package/lib/modules/components/toast/view.d.ts +0 -2
- package/lib/modules/components/toast/view.js +0 -35
- package/lib/modules/connection-gateway/components/tabs/index.css +0 -31
- package/lib/modules/connection-gateway/components/tabs/index.d.ts +0 -4
- package/lib/modules/connection-gateway/components/tabs/index.js +0 -44
- package/lib/modules/control-bar/type.d.ts +0 -10
- package/lib/modules/control-bar/type.js +0 -18
- package/lib/modules/device-pretest/context.d.ts +0 -2
- package/lib/modules/device-pretest/context.js +0 -9
- package/lib/modules/dialog/components/confirm/electron.d.ts +0 -10
- package/lib/modules/dialog/components/confirm/electron.js +0 -54
- package/lib/modules/dialog/components/connection-gateway/index.css +0 -25
- package/lib/modules/dialog/components/operation-waiting-room/electron.d.ts +0 -5
- package/lib/modules/dialog/components/operation-waiting-room/electron.js +0 -42
- package/lib/modules/dialog/components/operation-waiting-room/index.css +0 -44
- package/lib/modules/dialog/components/operation-waiting-room/index.d.ts +0 -5
- package/lib/modules/dialog/components/operation-waiting-room/index.js +0 -156
- package/lib/modules/dialog/components/remove-admit-waiting-room/electron.d.ts +0 -12
- package/lib/modules/dialog/components/remove-admit-waiting-room/electron.js +0 -36
- package/lib/modules/dialog/components/remove-admit-waiting-room/index.css +0 -50
- package/lib/modules/dialog/components/remove-admit-waiting-room/index.d.ts +0 -5
- package/lib/modules/dialog/components/remove-admit-waiting-room/index.js +0 -90
- package/lib/modules/dialog/components/switch-language-channels/electron.js +0 -72
- package/lib/modules/dialog/components/switch-language-channels/index.css +0 -30
- package/lib/modules/dialog/components/switch-language-channels/index.d.ts +0 -4
- package/lib/modules/dialog/components/switch-language-channels/index.js +0 -63
- package/lib/modules/dialog/components/switch-language-channels/user-queue/index.css +0 -36
- package/lib/modules/dialog/components/switch-language-channels/user-queue/index.d.ts +0 -3
- package/lib/modules/dialog/components/switch-language-channels/user-queue/index.js +0 -47
- package/lib/modules/dialog/components/system-preference/bg1.png +0 -0
- package/lib/modules/dialog/components/system-preference/bg2.png +0 -0
- package/lib/modules/dialog/context.d.ts +0 -2
- package/lib/modules/dialog/context.js +0 -9
- package/lib/modules/dialog/types/index.d.ts +0 -70
- package/lib/modules/event-notification/context.d.ts +0 -2
- package/lib/modules/event-notification/context.js +0 -9
- package/lib/modules/event-notification/index.css +0 -58
- package/lib/modules/event-notification/index.d.ts +0 -13
- package/lib/modules/event-notification/index.js +0 -48
- package/lib/modules/event-notification/store.d.ts +0 -17
- package/lib/modules/event-notification/store.js +0 -133
- package/lib/modules/event-notification/view.d.ts +0 -5
- package/lib/modules/event-notification/view.js +0 -114
- package/lib/modules/event-toast/context.d.ts +0 -2
- package/lib/modules/event-toast/context.js +0 -9
- package/lib/modules/interpreter/action/edit-btn/index.css +0 -3
- package/lib/modules/interpreter/add-button/index.css +0 -4
- package/lib/modules/interpreter/add-button/index.d.ts +0 -11
- package/lib/modules/interpreter/add-button/index.js +0 -43
- package/lib/modules/interpreter/config.d.ts +0 -16
- package/lib/modules/interpreter/config.js +0 -17
- package/lib/modules/interpreter/constant.d.ts +0 -51
- package/lib/modules/interpreter/constant.js +0 -58
- package/lib/modules/interpreter/footer/components/interpreter-btn/index.d.ts +0 -5
- package/lib/modules/interpreter/footer/components/interpreter-btn/index.js +0 -53
- package/lib/modules/interpreter/footer/components/set-btn/index.d.ts +0 -5
- package/lib/modules/interpreter/footer/components/set-btn/index.js +0 -49
- package/lib/modules/interpreter/footer/components/tooltip-wrapper/index.d.ts +0 -6
- package/lib/modules/interpreter/footer/components/tooltip-wrapper/index.js +0 -30
- package/lib/modules/interpreter/index.css +0 -15
- package/lib/modules/invite/context.d.ts +0 -2
- package/lib/modules/invite/context.js +0 -9
- package/lib/modules/invite/pstn-invite.d.ts +0 -2
- package/lib/modules/invite/pstn-invite.js +0 -271
- package/lib/modules/invite/voip-invite.d.ts +0 -1
- package/lib/modules/invite/voip-invite.js +0 -293
- package/lib/modules/layout/components/Layout.d.ts +0 -2
- package/lib/modules/layout/components/Layout.js +0 -190
- package/lib/modules/layout/context.d.ts +0 -2
- package/lib/modules/layout/context.js +0 -9
- package/lib/modules/layout/member-window/index.css +0 -406
- package/lib/modules/layout/member-window/index.d.ts +0 -74
- package/lib/modules/layout/member-window/index.js +0 -881
- package/lib/modules/layout/video-window-datasource.d.ts +0 -127
- package/lib/modules/layout/video-window-datasource.js +0 -1121
- package/lib/modules/live-streaming/context.d.ts +0 -2
- package/lib/modules/live-streaming/context.js +0 -9
- package/lib/modules/participant/attendee/index.css +0 -69
- package/lib/modules/participant/attendee/index.d.ts +0 -36
- package/lib/modules/participant/attendee/index.js +0 -398
- package/lib/modules/participant/attendee/user-more-actions.d.ts +0 -22
- package/lib/modules/participant/attendee/user-more-actions.js +0 -76
- package/lib/modules/participant/can-moveable/index.d.ts +0 -1
- package/lib/modules/participant/can-moveable/index.js +0 -68
- package/lib/modules/participant/components/attendee/components/microphone-indicator/index.d.ts +0 -6
- package/lib/modules/participant/components/attendee/components/microphone-indicator/index.js +0 -28
- package/lib/modules/participant/components/attendee/components/user-avatar/index.d.ts +0 -7
- package/lib/modules/participant/components/attendee/components/user-avatar/index.js +0 -39
- package/lib/modules/participant/components/attendee/index.css +0 -69
- package/lib/modules/participant/components/attendee/index.d.ts +0 -4
- package/lib/modules/participant/components/attendee/index.js +0 -334
- package/lib/modules/participant/components/drop-menu/index.css +0 -60
- package/lib/modules/participant/components/drop-menu/index.d.ts +0 -2
- package/lib/modules/participant/components/drop-menu/index.js +0 -186
- package/lib/modules/participant/components/footer/buttons.d.ts +0 -6
- package/lib/modules/participant/components/footer/buttons.js +0 -52
- package/lib/modules/participant/components/footer/index.d.ts +0 -4
- package/lib/modules/participant/components/footer/index.js +0 -37
- package/lib/modules/participant/components/merge/index.d.ts +0 -11
- package/lib/modules/participant/components/merge/index.js +0 -49
- package/lib/modules/participant/components/rename/index.d.ts +0 -4
- package/lib/modules/participant/components/rename/index.js +0 -45
- package/lib/modules/participant/components/user-action/index.d.ts +0 -17
- package/lib/modules/participant/components/user-action/index.js +0 -167
- package/lib/modules/participant/context.d.ts +0 -2
- package/lib/modules/participant/context.js +0 -9
- package/lib/modules/participant/room-control-drop-menu/index.css +0 -56
- package/lib/modules/participant/room-control-drop-menu/index.d.ts +0 -2
- package/lib/modules/participant/room-control-drop-menu/index.js +0 -188
- package/lib/modules/setting/context.d.ts +0 -2
- package/lib/modules/setting/context.js +0 -9
- package/lib/modules/share-screen/selection/index.css +0 -68
- package/lib/modules/share-screen/selection/index.d.ts +0 -9
- package/lib/modules/share-screen/selection/index.js +0 -273
- package/lib/modules/share-screen/share-state-bar/index.css +0 -76
- package/lib/modules/share-screen/share-state-bar/index.d.ts +0 -4
- package/lib/modules/share-screen/share-state-bar/index.js +0 -98
- package/lib/modules/state-bar/context.d.ts +0 -2
- package/lib/modules/state-bar/context.js +0 -9
- package/lib/modules/video-window/context.d.ts +0 -2
- package/lib/modules/video-window/context.js +0 -9
- package/lib/modules/video-window/deviceState/index.d.ts +0 -16
- package/lib/modules/video-window/deviceState/index.js +0 -75
- package/lib/modules/video-window/members/index.css +0 -51
- package/lib/modules/video-window/members/index.d.ts +0 -2
- package/lib/modules/video-window/members/index.js +0 -158
- package/lib/modules/video-window/speaking/index.css +0 -69
- package/lib/modules/video-window/speaking/index.d.ts +0 -3
- package/lib/modules/video-window/speaking/index.js +0 -57
- package/lib/modules/video-window/topControl/index.css +0 -35
- package/lib/modules/video-window/topControl/index.d.ts +0 -3
- package/lib/modules/video-window/topControl/index.js +0 -90
- package/lib/modules/waiting-room-layout/context.d.ts +0 -2
- package/lib/modules/waiting-room-layout/context.js +0 -9
- package/lib/modules/waiting-room-layout/type.d.ts +0 -0
- package/lib/modules/waiting-room-layout/type.js +0 -1
- package/lib/modules/whiteboard/app.d.ts +0 -2
- package/lib/modules/whiteboard/app.js +0 -49
- package/lib/utilities/extract.d.ts +0 -5
- package/lib/utilities/extract.js +0 -120
- /package/lib/modules/dialog/components/{switch-language-channels → pre-setting}/electron.d.ts +0 -0
- /package/lib/modules/{sound-effect → event-sound}/sound-effect-player.d.ts +0 -0
- /package/lib/modules/{sound-effect → event-sound}/sound-effect-player.js +0 -0
- /package/lib/{fragments/toolbar/components/extension-toolbar-item.d.ts → modules/whiteboard/components/toolbar/components/expansion/index.d.ts} +0 -0
- /package/lib/{fragments/toolbar/components/extension-toolbar-item.js → modules/whiteboard/components/toolbar/components/expansion/index.js} +0 -0
- /package/lib/{fragments/toolbar/components/toolbar-item.d.ts → modules/whiteboard/components/toolbar/components/item/index.d.ts} +0 -0
- /package/lib/{fragments/toolbar/components/toolbar-item.js → modules/whiteboard/components/toolbar/components/item/index.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");
|
|
@@ -41,6 +42,11 @@ require("core-js/modules/es.regexp.exec.js");
|
|
|
41
42
|
require("core-js/modules/es.set.js");
|
|
42
43
|
require("core-js/modules/es.string.iterator.js");
|
|
43
44
|
require("core-js/modules/es.weak-map.js");
|
|
45
|
+
require("core-js/modules/esnext.async-iterator.filter.js");
|
|
46
|
+
require("core-js/modules/esnext.async-iterator.find.js");
|
|
47
|
+
require("core-js/modules/esnext.async-iterator.for-each.js");
|
|
48
|
+
require("core-js/modules/esnext.async-iterator.map.js");
|
|
49
|
+
require("core-js/modules/esnext.async-iterator.some.js");
|
|
44
50
|
require("core-js/modules/esnext.iterator.constructor.js");
|
|
45
51
|
require("core-js/modules/esnext.iterator.filter.js");
|
|
46
52
|
require("core-js/modules/esnext.iterator.find.js");
|
|
@@ -89,8 +95,13 @@ require("core-js/modules/esnext.weak-map.emplace.js");
|
|
|
89
95
|
require("core-js/modules/web.dom-collections.for-each.js");
|
|
90
96
|
require("core-js/modules/web.dom-collections.iterator.js");
|
|
91
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");
|
|
92
104
|
var _slicedToArray2 = _interopRequireDefault(require("@babel/runtime/helpers/slicedToArray"));
|
|
93
|
-
var _toConsumableArray2 = _interopRequireDefault(require("@babel/runtime/helpers/toConsumableArray"));
|
|
94
105
|
var _asyncToGenerator2 = _interopRequireDefault(require("@babel/runtime/helpers/asyncToGenerator"));
|
|
95
106
|
var _classCallCheck2 = _interopRequireDefault(require("@babel/runtime/helpers/classCallCheck"));
|
|
96
107
|
var _createClass2 = _interopRequireDefault(require("@babel/runtime/helpers/createClass"));
|
|
@@ -106,9 +117,10 @@ var _mobx = require("mobx");
|
|
|
106
117
|
var _virtualBackdoundResources = require("../modules/device-pretest/assets/virtual-backdound-resources");
|
|
107
118
|
var _type2 = require("../type");
|
|
108
119
|
var _tools = require("../utilities/tools");
|
|
120
|
+
var _store = require("../modules/setting/store");
|
|
109
121
|
var _logger = require("../utilities/logger");
|
|
110
122
|
var _FcrUIDeviceProviderImpl;
|
|
111
|
-
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,
|
|
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;
|
|
112
124
|
function _classPrivateFieldInitSpec(e, t, a) { _checkPrivateRedeclaration(e, t), t.set(e, a); }
|
|
113
125
|
function _checkPrivateRedeclaration(e, t) { if (t.has(e)) throw new TypeError("Cannot initialize the same private elements twice on an object"); }
|
|
114
126
|
function _classPrivateFieldSet(s, a, r) { return s.set(_assertClassBrand(s, a), r), r; }
|
|
@@ -150,9 +162,9 @@ var _Z = /*#__PURE__*/new WeakMap();
|
|
|
150
162
|
var _a = /*#__PURE__*/new WeakMap();
|
|
151
163
|
var _b = /*#__PURE__*/new WeakMap();
|
|
152
164
|
var _c = /*#__PURE__*/new WeakMap();
|
|
153
|
-
_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],
|
|
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");
|
|
154
166
|
var FcrUIDeviceProviderImpl = exports.FcrUIDeviceProviderImpl = /*#__PURE__*/function () {
|
|
155
|
-
function FcrUIDeviceProviderImpl(_eventProvider, _mediaControl, _mediaConfig) {
|
|
167
|
+
function FcrUIDeviceProviderImpl(_eventProvider, _mediaControl, _mediaConfig, _localStorageProvider) {
|
|
156
168
|
var _this = this;
|
|
157
169
|
(0, _classCallCheck2["default"])(this, FcrUIDeviceProviderImpl);
|
|
158
170
|
(0, _defineProperty2["default"])(this, _ref, (_initProto(this), (0, _logger.createLogger)({
|
|
@@ -222,6 +234,7 @@ var FcrUIDeviceProviderImpl = exports.FcrUIDeviceProviderImpl = /*#__PURE__*/fun
|
|
|
222
234
|
this._eventProvider = _eventProvider;
|
|
223
235
|
this._mediaControl = _mediaControl;
|
|
224
236
|
this._mediaConfig = _mediaConfig;
|
|
237
|
+
this._localStorageProvider = _localStorageProvider;
|
|
225
238
|
this._listeners.push((0, _mobx.reaction)(function () {
|
|
226
239
|
return _this.cameraId;
|
|
227
240
|
}, this._handleCameraChanged));
|
|
@@ -235,9 +248,22 @@ var FcrUIDeviceProviderImpl = exports.FcrUIDeviceProviderImpl = /*#__PURE__*/fun
|
|
|
235
248
|
onSpeakerTestVolumeIndicationUpdated: this._handleSpeakerTestVolumeIndicationUpdated,
|
|
236
249
|
onSelectedSpeakerVolumeUpdated: this._handleSpeakerVolumeUpdated
|
|
237
250
|
});
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
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
|
+
// });
|
|
241
267
|
}
|
|
242
268
|
return (0, _createClass2["default"])(FcrUIDeviceProviderImpl, [{
|
|
243
269
|
key: "_microphoneDeviceId",
|
|
@@ -620,6 +646,11 @@ var FcrUIDeviceProviderImpl = exports.FcrUIDeviceProviderImpl = /*#__PURE__*/fun
|
|
|
620
646
|
get: function get() {
|
|
621
647
|
return this._isAudioConnected;
|
|
622
648
|
}
|
|
649
|
+
}, {
|
|
650
|
+
key: "shouldEnableMicBeforeSession",
|
|
651
|
+
get: function get() {
|
|
652
|
+
return !this._mediaConfig.microphoneExpectedOff && this._mediaConfig.autoConnectAudio;
|
|
653
|
+
}
|
|
623
654
|
}, {
|
|
624
655
|
key: "getScreenTrack",
|
|
625
656
|
value: function getScreenTrack(id) {
|
|
@@ -660,35 +691,76 @@ var FcrUIDeviceProviderImpl = exports.FcrUIDeviceProviderImpl = /*#__PURE__*/fun
|
|
|
660
691
|
get: function get() {
|
|
661
692
|
return this._mediaControl.getMicrophoneTrack(this._microphoneDeviceId);
|
|
662
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
|
+
}
|
|
663
711
|
}, {
|
|
664
712
|
key: "init",
|
|
665
713
|
value: function () {
|
|
666
714
|
var _init = (0, _asyncToGenerator2["default"])(/*#__PURE__*/_regenerator["default"].mark(function _callee5() {
|
|
667
715
|
var _this2 = this;
|
|
716
|
+
var res;
|
|
668
717
|
return _regenerator["default"].wrap(function _callee5$(_context5) {
|
|
669
718
|
while (1) switch (_context5.prev = _context5.next) {
|
|
670
719
|
case 0:
|
|
671
|
-
|
|
720
|
+
_context5.next = 2;
|
|
721
|
+
return Promise.allSettled([this._mediaControl.getCameraList().then(function (list) {
|
|
672
722
|
(0, _mobx.runInAction)(function () {
|
|
673
723
|
_this2.logger.info('[FcrDeviceStore] init camera list:', list);
|
|
674
724
|
_this2.cameraList = list;
|
|
675
725
|
if (_this2.cameraList.length > 0) {
|
|
676
726
|
var _cameraId = _this2.cameraList[0].deviceId;
|
|
677
|
-
_this2.
|
|
678
|
-
|
|
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
|
+
}
|
|
679
745
|
}
|
|
680
746
|
});
|
|
681
747
|
}), this._getMicrophoneList().then(/*#__PURE__*/function () {
|
|
682
748
|
var _ref2 = (0, _asyncToGenerator2["default"])(/*#__PURE__*/_regenerator["default"].mark(function _callee3(microphoneList) {
|
|
749
|
+
var defaultMicrophoneDeviceId;
|
|
683
750
|
return _regenerator["default"].wrap(function _callee3$(_context3) {
|
|
684
751
|
while (1) switch (_context3.prev = _context3.next) {
|
|
685
752
|
case 0:
|
|
686
753
|
_this2.microphoneList = microphoneList;
|
|
687
754
|
_this2.logger.info('[FcrDeviceStore] init microphone list:', microphoneList);
|
|
688
755
|
// 默认跟随系统
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
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:
|
|
692
764
|
case "end":
|
|
693
765
|
return _context3.stop();
|
|
694
766
|
}
|
|
@@ -699,15 +771,21 @@ var FcrUIDeviceProviderImpl = exports.FcrUIDeviceProviderImpl = /*#__PURE__*/fun
|
|
|
699
771
|
};
|
|
700
772
|
}()), this._getSpeakerList().then(/*#__PURE__*/function () {
|
|
701
773
|
var _ref3 = (0, _asyncToGenerator2["default"])(/*#__PURE__*/_regenerator["default"].mark(function _callee4(speakerList) {
|
|
774
|
+
var defaultSpeakerDeviceId;
|
|
702
775
|
return _regenerator["default"].wrap(function _callee4$(_context4) {
|
|
703
776
|
while (1) switch (_context4.prev = _context4.next) {
|
|
704
777
|
case 0:
|
|
705
778
|
_this2.speakerList = speakerList;
|
|
706
779
|
_this2.logger.info('[FcrDeviceStore] init speaker list:', speakerList);
|
|
707
780
|
// 默认跟随系统
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
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:
|
|
711
789
|
case "end":
|
|
712
790
|
return _context4.stop();
|
|
713
791
|
}
|
|
@@ -716,8 +794,12 @@ var FcrUIDeviceProviderImpl = exports.FcrUIDeviceProviderImpl = /*#__PURE__*/fun
|
|
|
716
794
|
return function (_x2) {
|
|
717
795
|
return _ref3.apply(this, arguments);
|
|
718
796
|
};
|
|
719
|
-
}())])
|
|
720
|
-
case
|
|
797
|
+
}())]);
|
|
798
|
+
case 2:
|
|
799
|
+
res = _context5.sent;
|
|
800
|
+
this._initLocalSetting();
|
|
801
|
+
return _context5.abrupt("return", res);
|
|
802
|
+
case 5:
|
|
721
803
|
case "end":
|
|
722
804
|
return _context5.stop();
|
|
723
805
|
}
|
|
@@ -1024,8 +1106,12 @@ var FcrUIDeviceProviderImpl = exports.FcrUIDeviceProviderImpl = /*#__PURE__*/fun
|
|
|
1024
1106
|
value: function setNoiseLevel(level) {
|
|
1025
1107
|
if (!this._microphoneDeviceId) return;
|
|
1026
1108
|
var microphoneAudioTrack = this._mediaControl.getMicrophoneTrack(this._microphoneDeviceId);
|
|
1027
|
-
|
|
1028
|
-
|
|
1109
|
+
if (level === _type2.FcrUIAiDenoiseLevel.CLOSE) {
|
|
1110
|
+
microphoneAudioTrack.getAudioEffectEnhancer().disableAiDenoiser();
|
|
1111
|
+
} else {
|
|
1112
|
+
microphoneAudioTrack.getAudioEffectEnhancer().enableAiDenoiser();
|
|
1113
|
+
microphoneAudioTrack.getAudioEffectEnhancer().setAiDenoiseLevel(level);
|
|
1114
|
+
}
|
|
1029
1115
|
}
|
|
1030
1116
|
}, {
|
|
1031
1117
|
key: "setCameraId",
|
|
@@ -1203,83 +1289,164 @@ var FcrUIDeviceProviderImpl = exports.FcrUIDeviceProviderImpl = /*#__PURE__*/fun
|
|
|
1203
1289
|
this.showCameraPreview = enable;
|
|
1204
1290
|
}
|
|
1205
1291
|
}, {
|
|
1206
|
-
key: "
|
|
1292
|
+
key: "loadUiResources",
|
|
1207
1293
|
value: function () {
|
|
1208
|
-
var
|
|
1209
|
-
var
|
|
1210
|
-
|
|
1211
|
-
_uiResource$virtualBa2,
|
|
1212
|
-
_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;
|
|
1213
1297
|
return _regenerator["default"].wrap(function _callee8$(_context8) {
|
|
1214
1298
|
while (1) switch (_context8.prev = _context8.next) {
|
|
1215
1299
|
case 0:
|
|
1216
|
-
|
|
1217
|
-
|
|
1218
|
-
|
|
1219
|
-
|
|
1220
|
-
|
|
1221
|
-
|
|
1222
|
-
|
|
1223
|
-
|
|
1224
|
-
|
|
1225
|
-
|
|
1226
|
-
|
|
1227
|
-
|
|
1228
|
-
|
|
1229
|
-
|
|
1230
|
-
|
|
1231
|
-
return
|
|
1232
|
-
|
|
1233
|
-
|
|
1234
|
-
|
|
1235
|
-
|
|
1236
|
-
|
|
1237
|
-
|
|
1238
|
-
|
|
1239
|
-
|
|
1240
|
-
|
|
1241
|
-
|
|
1242
|
-
|
|
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
|
+
};
|
|
1243
1370
|
});
|
|
1244
|
-
|
|
1245
|
-
|
|
1246
|
-
}
|
|
1247
|
-
|
|
1248
|
-
|
|
1249
|
-
|
|
1250
|
-
|
|
1251
|
-
|
|
1252
|
-
_this8.soundEffectList.set((0, _tools.getFileNameWithoutExtension)(url), {
|
|
1253
|
-
url: url,
|
|
1254
|
-
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))
|
|
1255
1379
|
});
|
|
1256
1380
|
});
|
|
1257
|
-
} else if ((0, _tools.isResourceZipUrl)(url) && (0, _env.isElectron)()) {
|
|
1258
|
-
return _this8._fetchZipAndUnzip(url, 'audio');
|
|
1259
1381
|
}
|
|
1260
|
-
|
|
1261
|
-
|
|
1262
|
-
|
|
1382
|
+
};
|
|
1383
|
+
this.loadZipResources(_images, 'image', handleResourceReady);
|
|
1384
|
+
this.loadZipResources(_videos, 'video', handleResourceReady);
|
|
1385
|
+
this.loadZipResources(_soundEffects, 'audio', handleResourceReady);
|
|
1386
|
+
case 21:
|
|
1263
1387
|
case "end":
|
|
1264
1388
|
return _context8.stop();
|
|
1265
1389
|
}
|
|
1266
|
-
}, _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);
|
|
1267
1434
|
}));
|
|
1268
|
-
function
|
|
1269
|
-
return
|
|
1435
|
+
function loadZipResources(_x6, _x7, _x8) {
|
|
1436
|
+
return _loadZipResources.apply(this, arguments);
|
|
1270
1437
|
}
|
|
1271
|
-
return
|
|
1438
|
+
return loadZipResources;
|
|
1272
1439
|
}()
|
|
1273
1440
|
}, {
|
|
1274
1441
|
key: "release",
|
|
1275
1442
|
value: function release() {
|
|
1276
|
-
var
|
|
1443
|
+
var _this10 = this,
|
|
1277
1444
|
_this$_cameraVideoTra3,
|
|
1278
1445
|
_this$_microphoneAudi8;
|
|
1279
1446
|
if (this._localVideoViewSet.size > 0) {
|
|
1280
1447
|
this._localVideoViewSet.forEach(function (view) {
|
|
1281
|
-
var
|
|
1282
|
-
(
|
|
1448
|
+
var _this10$_cameraVideoT;
|
|
1449
|
+
(_this10$_cameraVideoT = _this10._cameraVideoTrack) === null || _this10$_cameraVideoT === void 0 || _this10$_cameraVideoT.stopPreview(view);
|
|
1283
1450
|
});
|
|
1284
1451
|
this._localVideoViewSet.clear();
|
|
1285
1452
|
}
|
|
@@ -1288,44 +1455,6 @@ var FcrUIDeviceProviderImpl = exports.FcrUIDeviceProviderImpl = /*#__PURE__*/fun
|
|
|
1288
1455
|
(_this$_microphoneAudi8 = this._microphoneAudioTrack) === null || _this$_microphoneAudi8 === void 0 || _this$_microphoneAudi8.stop();
|
|
1289
1456
|
this._microphoneAudioTrack = undefined;
|
|
1290
1457
|
}
|
|
1291
|
-
}, {
|
|
1292
|
-
key: "_fileToUiData",
|
|
1293
|
-
value: function () {
|
|
1294
|
-
var _fileToUiData2 = (0, _asyncToGenerator2["default"])(/*#__PURE__*/_regenerator["default"].mark(function _callee9(resource, type) {
|
|
1295
|
-
return _regenerator["default"].wrap(function _callee9$(_context9) {
|
|
1296
|
-
while (1) switch (_context9.prev = _context9.next) {
|
|
1297
|
-
case 0:
|
|
1298
|
-
if (!(typeof resource !== 'string')) {
|
|
1299
|
-
_context9.next = 2;
|
|
1300
|
-
break;
|
|
1301
|
-
}
|
|
1302
|
-
return _context9.abrupt("return");
|
|
1303
|
-
case 2:
|
|
1304
|
-
if (type === 'image' && (0, _tools.isPngOrJpg)(resource) || type === 'video' && (0, _tools.isMp4)(resource)) {
|
|
1305
|
-
this._updateVirtualBackgroundList([].concat((0, _toConsumableArray2["default"])(this.virtualBackgroundList), [{
|
|
1306
|
-
name: (0, _tools.getFileNameWithoutExtension)(resource),
|
|
1307
|
-
path: resource,
|
|
1308
|
-
type: type === 'image' ? _virtualBackdoundResources.VirtualOption.IMG : _virtualBackdoundResources.VirtualOption.VIDEO,
|
|
1309
|
-
url: window.runtime.fileToBase64(resource, type)
|
|
1310
|
-
}]));
|
|
1311
|
-
}
|
|
1312
|
-
if (type === 'audio' && (0, _tools.isMp3OrWav)(resource)) {
|
|
1313
|
-
this.soundEffectList.set((0, _tools.getFileNameWithoutExtension)(resource), {
|
|
1314
|
-
url: window.runtime.fileToBase64(resource, type),
|
|
1315
|
-
md5Url: resource
|
|
1316
|
-
});
|
|
1317
|
-
}
|
|
1318
|
-
case 4:
|
|
1319
|
-
case "end":
|
|
1320
|
-
return _context9.stop();
|
|
1321
|
-
}
|
|
1322
|
-
}, _callee9, this);
|
|
1323
|
-
}));
|
|
1324
|
-
function _fileToUiData(_x6, _x7) {
|
|
1325
|
-
return _fileToUiData2.apply(this, arguments);
|
|
1326
|
-
}
|
|
1327
|
-
return _fileToUiData;
|
|
1328
|
-
}()
|
|
1329
1458
|
}, {
|
|
1330
1459
|
key: "setConnectType",
|
|
1331
1460
|
value: function setConnectType(connectType) {
|
|
@@ -1334,34 +1463,20 @@ var FcrUIDeviceProviderImpl = exports.FcrUIDeviceProviderImpl = /*#__PURE__*/fun
|
|
|
1334
1463
|
}, {
|
|
1335
1464
|
key: "_fetchZipAndUnzip",
|
|
1336
1465
|
value: function () {
|
|
1337
|
-
var _fetchZipAndUnzip2 = (0, _asyncToGenerator2["default"])(/*#__PURE__*/_regenerator["default"].mark(function
|
|
1338
|
-
var
|
|
1339
|
-
|
|
1340
|
-
|
|
1341
|
-
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) {
|
|
1342
1470
|
case 0:
|
|
1343
|
-
if ((0, _tools.isResourceZipUrl)(url)) {
|
|
1344
|
-
_context10.next = 2;
|
|
1345
|
-
break;
|
|
1346
|
-
}
|
|
1347
|
-
return _context10.abrupt("return", []);
|
|
1348
|
-
case 2:
|
|
1349
1471
|
md5Url = (0, _imports.md5)(url);
|
|
1350
|
-
|
|
1351
|
-
|
|
1352
|
-
case 5:
|
|
1353
|
-
resource = _context10.sent;
|
|
1354
|
-
resource.forEach(function (item) {
|
|
1355
|
-
_this10._fileToUiData(item, type);
|
|
1356
|
-
});
|
|
1357
|
-
return _context10.abrupt("return", []);
|
|
1358
|
-
case 8:
|
|
1472
|
+
return _context11.abrupt("return", window.runtime.getResourceByFileType(url, md5Url, type));
|
|
1473
|
+
case 2:
|
|
1359
1474
|
case "end":
|
|
1360
|
-
return
|
|
1475
|
+
return _context11.stop();
|
|
1361
1476
|
}
|
|
1362
|
-
},
|
|
1477
|
+
}, _callee11);
|
|
1363
1478
|
}));
|
|
1364
|
-
function _fetchZipAndUnzip(
|
|
1479
|
+
function _fetchZipAndUnzip(_x10, _x11) {
|
|
1365
1480
|
return _fetchZipAndUnzip2.apply(this, arguments);
|
|
1366
1481
|
}
|
|
1367
1482
|
return _fetchZipAndUnzip;
|
|
@@ -1424,23 +1539,23 @@ var FcrUIDeviceProviderImpl = exports.FcrUIDeviceProviderImpl = /*#__PURE__*/fun
|
|
|
1424
1539
|
}, {
|
|
1425
1540
|
key: "_handleCameraListUpdated",
|
|
1426
1541
|
value: function () {
|
|
1427
|
-
var _handleCameraListUpdated2 = (0, _asyncToGenerator2["default"])(/*#__PURE__*/_regenerator["default"].mark(function
|
|
1542
|
+
var _handleCameraListUpdated2 = (0, _asyncToGenerator2["default"])(/*#__PURE__*/_regenerator["default"].mark(function _callee12() {
|
|
1428
1543
|
var _this12 = this;
|
|
1429
1544
|
var cameraList, currentDeviceExist, _cameraEnabled, deviceId, _deviceId;
|
|
1430
|
-
return _regenerator["default"].wrap(function
|
|
1431
|
-
while (1) switch (
|
|
1545
|
+
return _regenerator["default"].wrap(function _callee12$(_context12) {
|
|
1546
|
+
while (1) switch (_context12.prev = _context12.next) {
|
|
1432
1547
|
case 0:
|
|
1433
|
-
|
|
1548
|
+
_context12.next = 2;
|
|
1434
1549
|
return this._mediaControl.getCameraList();
|
|
1435
1550
|
case 2:
|
|
1436
|
-
cameraList =
|
|
1551
|
+
cameraList = _context12.sent;
|
|
1437
1552
|
(0, _mobx.runInAction)(function () {
|
|
1438
1553
|
_this12.cameraList = cameraList;
|
|
1439
1554
|
});
|
|
1440
1555
|
currentDeviceExist = false;
|
|
1441
1556
|
if (this.cameraId) {
|
|
1442
|
-
currentDeviceExist = this.cameraList.some(function (
|
|
1443
|
-
var deviceId =
|
|
1557
|
+
currentDeviceExist = this.cameraList.some(function (_ref5) {
|
|
1558
|
+
var deviceId = _ref5.deviceId;
|
|
1444
1559
|
return _this12.cameraId === deviceId;
|
|
1445
1560
|
});
|
|
1446
1561
|
_cameraEnabled = this.cameraEnabled;
|
|
@@ -1468,9 +1583,9 @@ var FcrUIDeviceProviderImpl = exports.FcrUIDeviceProviderImpl = /*#__PURE__*/fun
|
|
|
1468
1583
|
this._observable.notifyObservers('onCameraListUpdated', this.cameraList);
|
|
1469
1584
|
case 8:
|
|
1470
1585
|
case "end":
|
|
1471
|
-
return
|
|
1586
|
+
return _context12.stop();
|
|
1472
1587
|
}
|
|
1473
|
-
},
|
|
1588
|
+
}, _callee12, this);
|
|
1474
1589
|
}));
|
|
1475
1590
|
function _handleCameraListUpdated() {
|
|
1476
1591
|
return _handleCameraListUpdated2.apply(this, arguments);
|
|
@@ -1480,19 +1595,19 @@ var FcrUIDeviceProviderImpl = exports.FcrUIDeviceProviderImpl = /*#__PURE__*/fun
|
|
|
1480
1595
|
}, {
|
|
1481
1596
|
key: "_handleMicrophoneAdded",
|
|
1482
1597
|
value: function () {
|
|
1483
|
-
var _handleMicrophoneAdded2 = (0, _asyncToGenerator2["default"])(/*#__PURE__*/_regenerator["default"].mark(function
|
|
1484
|
-
return _regenerator["default"].wrap(function
|
|
1485
|
-
while (1) switch (
|
|
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) {
|
|
1486
1601
|
case 0:
|
|
1487
|
-
|
|
1602
|
+
_context13.next = 2;
|
|
1488
1603
|
return this._handleMicrophoneListUpdated();
|
|
1489
1604
|
case 2:
|
|
1490
1605
|
this._observable.notifyObservers('onMicrophoneListUpdated', this.microphoneList);
|
|
1491
1606
|
case 3:
|
|
1492
1607
|
case "end":
|
|
1493
|
-
return
|
|
1608
|
+
return _context13.stop();
|
|
1494
1609
|
}
|
|
1495
|
-
},
|
|
1610
|
+
}, _callee13, this);
|
|
1496
1611
|
}));
|
|
1497
1612
|
function _handleMicrophoneAdded() {
|
|
1498
1613
|
return _handleMicrophoneAdded2.apply(this, arguments);
|
|
@@ -1502,13 +1617,13 @@ var FcrUIDeviceProviderImpl = exports.FcrUIDeviceProviderImpl = /*#__PURE__*/fun
|
|
|
1502
1617
|
}, {
|
|
1503
1618
|
key: "_handleMicrophoneRemoved",
|
|
1504
1619
|
value: function () {
|
|
1505
|
-
var _handleMicrophoneRemoved2 = (0, _asyncToGenerator2["default"])(/*#__PURE__*/_regenerator["default"].mark(function
|
|
1620
|
+
var _handleMicrophoneRemoved2 = (0, _asyncToGenerator2["default"])(/*#__PURE__*/_regenerator["default"].mark(function _callee14() {
|
|
1506
1621
|
var _this13 = this;
|
|
1507
1622
|
var currentDeviceExist;
|
|
1508
|
-
return _regenerator["default"].wrap(function
|
|
1509
|
-
while (1) switch (
|
|
1623
|
+
return _regenerator["default"].wrap(function _callee14$(_context14) {
|
|
1624
|
+
while (1) switch (_context14.prev = _context14.next) {
|
|
1510
1625
|
case 0:
|
|
1511
|
-
|
|
1626
|
+
_context14.next = 2;
|
|
1512
1627
|
return this._handleMicrophoneListUpdated();
|
|
1513
1628
|
case 2:
|
|
1514
1629
|
// 如何设备移除了,应该切到跟随系统
|
|
@@ -1516,19 +1631,19 @@ var FcrUIDeviceProviderImpl = exports.FcrUIDeviceProviderImpl = /*#__PURE__*/fun
|
|
|
1516
1631
|
return item.deviceId === _this13._microphoneDeviceId;
|
|
1517
1632
|
});
|
|
1518
1633
|
if (currentDeviceExist) {
|
|
1519
|
-
|
|
1634
|
+
_context14.next = 7;
|
|
1520
1635
|
break;
|
|
1521
1636
|
}
|
|
1522
1637
|
this.logger.info('[FcrDeviceStore] current microphone does not exist in microphone list, switch to follow system');
|
|
1523
|
-
|
|
1638
|
+
_context14.next = 7;
|
|
1524
1639
|
return this.setMicrophoneId(DEFAULT_DEVICE_ID);
|
|
1525
1640
|
case 7:
|
|
1526
1641
|
this._observable.notifyObservers('onMicrophoneListUpdated', this.microphoneList);
|
|
1527
1642
|
case 8:
|
|
1528
1643
|
case "end":
|
|
1529
|
-
return
|
|
1644
|
+
return _context14.stop();
|
|
1530
1645
|
}
|
|
1531
|
-
},
|
|
1646
|
+
}, _callee14, this);
|
|
1532
1647
|
}));
|
|
1533
1648
|
function _handleMicrophoneRemoved() {
|
|
1534
1649
|
return _handleMicrophoneRemoved2.apply(this, arguments);
|
|
@@ -1538,16 +1653,16 @@ var FcrUIDeviceProviderImpl = exports.FcrUIDeviceProviderImpl = /*#__PURE__*/fun
|
|
|
1538
1653
|
}, {
|
|
1539
1654
|
key: "_handleMicrophoneListUpdated",
|
|
1540
1655
|
value: function () {
|
|
1541
|
-
var _handleMicrophoneListUpdated2 = (0, _asyncToGenerator2["default"])(/*#__PURE__*/_regenerator["default"].mark(function
|
|
1656
|
+
var _handleMicrophoneListUpdated2 = (0, _asyncToGenerator2["default"])(/*#__PURE__*/_regenerator["default"].mark(function _callee15() {
|
|
1542
1657
|
var _this14 = this;
|
|
1543
1658
|
var microphoneList;
|
|
1544
|
-
return _regenerator["default"].wrap(function
|
|
1545
|
-
while (1) switch (
|
|
1659
|
+
return _regenerator["default"].wrap(function _callee15$(_context15) {
|
|
1660
|
+
while (1) switch (_context15.prev = _context15.next) {
|
|
1546
1661
|
case 0:
|
|
1547
|
-
|
|
1662
|
+
_context15.next = 2;
|
|
1548
1663
|
return this._getMicrophoneList();
|
|
1549
1664
|
case 2:
|
|
1550
|
-
microphoneList =
|
|
1665
|
+
microphoneList = _context15.sent;
|
|
1551
1666
|
// 如果选择了跟随系统,浏览器下设备变更时需要更新 track 以保证当前设备 track 正确
|
|
1552
1667
|
if (this.followSystemMicrophoneDevice) {
|
|
1553
1668
|
this._refreshMicrophoneTrack();
|
|
@@ -1557,9 +1672,9 @@ var FcrUIDeviceProviderImpl = exports.FcrUIDeviceProviderImpl = /*#__PURE__*/fun
|
|
|
1557
1672
|
});
|
|
1558
1673
|
case 5:
|
|
1559
1674
|
case "end":
|
|
1560
|
-
return
|
|
1675
|
+
return _context15.stop();
|
|
1561
1676
|
}
|
|
1562
|
-
},
|
|
1677
|
+
}, _callee15, this);
|
|
1563
1678
|
}));
|
|
1564
1679
|
function _handleMicrophoneListUpdated() {
|
|
1565
1680
|
return _handleMicrophoneListUpdated2.apply(this, arguments);
|
|
@@ -1588,19 +1703,19 @@ var FcrUIDeviceProviderImpl = exports.FcrUIDeviceProviderImpl = /*#__PURE__*/fun
|
|
|
1588
1703
|
}, {
|
|
1589
1704
|
key: "_handleSpeakerAdded",
|
|
1590
1705
|
value: function () {
|
|
1591
|
-
var _handleSpeakerAdded2 = (0, _asyncToGenerator2["default"])(/*#__PURE__*/_regenerator["default"].mark(function
|
|
1592
|
-
return _regenerator["default"].wrap(function
|
|
1593
|
-
while (1) switch (
|
|
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) {
|
|
1594
1709
|
case 0:
|
|
1595
|
-
|
|
1710
|
+
_context16.next = 2;
|
|
1596
1711
|
return this._handleSpeakerListUpdated();
|
|
1597
1712
|
case 2:
|
|
1598
1713
|
this._observable.notifyObservers('onSpeakerListUpdated', this.speakerList);
|
|
1599
1714
|
case 3:
|
|
1600
1715
|
case "end":
|
|
1601
|
-
return
|
|
1716
|
+
return _context16.stop();
|
|
1602
1717
|
}
|
|
1603
|
-
},
|
|
1718
|
+
}, _callee16, this);
|
|
1604
1719
|
}));
|
|
1605
1720
|
function _handleSpeakerAdded() {
|
|
1606
1721
|
return _handleSpeakerAdded2.apply(this, arguments);
|
|
@@ -1610,13 +1725,13 @@ var FcrUIDeviceProviderImpl = exports.FcrUIDeviceProviderImpl = /*#__PURE__*/fun
|
|
|
1610
1725
|
}, {
|
|
1611
1726
|
key: "_handleSpeakerRemoved",
|
|
1612
1727
|
value: function () {
|
|
1613
|
-
var _handleSpeakerRemoved2 = (0, _asyncToGenerator2["default"])(/*#__PURE__*/_regenerator["default"].mark(function
|
|
1728
|
+
var _handleSpeakerRemoved2 = (0, _asyncToGenerator2["default"])(/*#__PURE__*/_regenerator["default"].mark(function _callee17() {
|
|
1614
1729
|
var _this15 = this;
|
|
1615
1730
|
var currentDeviceExist;
|
|
1616
|
-
return _regenerator["default"].wrap(function
|
|
1617
|
-
while (1) switch (
|
|
1731
|
+
return _regenerator["default"].wrap(function _callee17$(_context17) {
|
|
1732
|
+
while (1) switch (_context17.prev = _context17.next) {
|
|
1618
1733
|
case 0:
|
|
1619
|
-
|
|
1734
|
+
_context17.next = 2;
|
|
1620
1735
|
return this._handleSpeakerListUpdated();
|
|
1621
1736
|
case 2:
|
|
1622
1737
|
// 如何设备移除了,应该切到跟随系统
|
|
@@ -1624,19 +1739,19 @@ var FcrUIDeviceProviderImpl = exports.FcrUIDeviceProviderImpl = /*#__PURE__*/fun
|
|
|
1624
1739
|
return item.deviceId === _this15._speakerDeviceId;
|
|
1625
1740
|
});
|
|
1626
1741
|
if (currentDeviceExist) {
|
|
1627
|
-
|
|
1742
|
+
_context17.next = 7;
|
|
1628
1743
|
break;
|
|
1629
1744
|
}
|
|
1630
1745
|
this.logger.info('[FcrDeviceStore] current speaker does not exist in speaker list, switch to follow system');
|
|
1631
|
-
|
|
1746
|
+
_context17.next = 7;
|
|
1632
1747
|
return this.setSpeakerId(DEFAULT_DEVICE_ID);
|
|
1633
1748
|
case 7:
|
|
1634
1749
|
this._observable.notifyObservers('onSpeakerListUpdated', this.speakerList);
|
|
1635
1750
|
case 8:
|
|
1636
1751
|
case "end":
|
|
1637
|
-
return
|
|
1752
|
+
return _context17.stop();
|
|
1638
1753
|
}
|
|
1639
|
-
},
|
|
1754
|
+
}, _callee17, this);
|
|
1640
1755
|
}));
|
|
1641
1756
|
function _handleSpeakerRemoved() {
|
|
1642
1757
|
return _handleSpeakerRemoved2.apply(this, arguments);
|
|
@@ -1646,24 +1761,24 @@ var FcrUIDeviceProviderImpl = exports.FcrUIDeviceProviderImpl = /*#__PURE__*/fun
|
|
|
1646
1761
|
}, {
|
|
1647
1762
|
key: "_handleSpeakerListUpdated",
|
|
1648
1763
|
value: function () {
|
|
1649
|
-
var _handleSpeakerListUpdated2 = (0, _asyncToGenerator2["default"])(/*#__PURE__*/_regenerator["default"].mark(function
|
|
1764
|
+
var _handleSpeakerListUpdated2 = (0, _asyncToGenerator2["default"])(/*#__PURE__*/_regenerator["default"].mark(function _callee18() {
|
|
1650
1765
|
var _this16 = this;
|
|
1651
1766
|
var speakerList;
|
|
1652
|
-
return _regenerator["default"].wrap(function
|
|
1653
|
-
while (1) switch (
|
|
1767
|
+
return _regenerator["default"].wrap(function _callee18$(_context18) {
|
|
1768
|
+
while (1) switch (_context18.prev = _context18.next) {
|
|
1654
1769
|
case 0:
|
|
1655
|
-
|
|
1770
|
+
_context18.next = 2;
|
|
1656
1771
|
return this._getSpeakerList();
|
|
1657
1772
|
case 2:
|
|
1658
|
-
speakerList =
|
|
1773
|
+
speakerList = _context18.sent;
|
|
1659
1774
|
(0, _mobx.runInAction)(function () {
|
|
1660
1775
|
_this16.speakerList = speakerList;
|
|
1661
1776
|
});
|
|
1662
1777
|
case 4:
|
|
1663
1778
|
case "end":
|
|
1664
|
-
return
|
|
1779
|
+
return _context18.stop();
|
|
1665
1780
|
}
|
|
1666
|
-
},
|
|
1781
|
+
}, _callee18, this);
|
|
1667
1782
|
}));
|
|
1668
1783
|
function _handleSpeakerListUpdated() {
|
|
1669
1784
|
return _handleSpeakerListUpdated2.apply(this, arguments);
|
|
@@ -1673,19 +1788,19 @@ var FcrUIDeviceProviderImpl = exports.FcrUIDeviceProviderImpl = /*#__PURE__*/fun
|
|
|
1673
1788
|
}, {
|
|
1674
1789
|
key: "_getMicrophoneList",
|
|
1675
1790
|
value: function () {
|
|
1676
|
-
var _getMicrophoneList2 = (0, _asyncToGenerator2["default"])(/*#__PURE__*/_regenerator["default"].mark(function
|
|
1791
|
+
var _getMicrophoneList2 = (0, _asyncToGenerator2["default"])(/*#__PURE__*/_regenerator["default"].mark(function _callee19() {
|
|
1677
1792
|
var defaultDevice, list, defaultIdDevice;
|
|
1678
|
-
return _regenerator["default"].wrap(function
|
|
1679
|
-
while (1) switch (
|
|
1793
|
+
return _regenerator["default"].wrap(function _callee19$(_context19) {
|
|
1794
|
+
while (1) switch (_context19.prev = _context19.next) {
|
|
1680
1795
|
case 0:
|
|
1681
|
-
|
|
1796
|
+
_context19.next = 2;
|
|
1682
1797
|
return this._mediaControl.getSystemSelectedMicrophone();
|
|
1683
1798
|
case 2:
|
|
1684
|
-
defaultDevice =
|
|
1685
|
-
|
|
1799
|
+
defaultDevice = _context19.sent;
|
|
1800
|
+
_context19.next = 5;
|
|
1686
1801
|
return this._mediaControl.getMicrophoneList();
|
|
1687
1802
|
case 5:
|
|
1688
|
-
list =
|
|
1803
|
+
list = _context19.sent;
|
|
1689
1804
|
list.forEach(function (item) {
|
|
1690
1805
|
var results = /^default \((.*)\)$/.exec(item.deviceName);
|
|
1691
1806
|
if (results && results.length > 1) {
|
|
@@ -1716,12 +1831,12 @@ var FcrUIDeviceProviderImpl = exports.FcrUIDeviceProviderImpl = /*#__PURE__*/fun
|
|
|
1716
1831
|
reason1: (0, _i18n.transI18n)('fmt_device_label_speaker_default')
|
|
1717
1832
|
});
|
|
1718
1833
|
}
|
|
1719
|
-
return
|
|
1834
|
+
return _context19.abrupt("return", list);
|
|
1720
1835
|
case 12:
|
|
1721
1836
|
case "end":
|
|
1722
|
-
return
|
|
1837
|
+
return _context19.stop();
|
|
1723
1838
|
}
|
|
1724
|
-
},
|
|
1839
|
+
}, _callee19, this);
|
|
1725
1840
|
}));
|
|
1726
1841
|
function _getMicrophoneList() {
|
|
1727
1842
|
return _getMicrophoneList2.apply(this, arguments);
|
|
@@ -1731,19 +1846,19 @@ var FcrUIDeviceProviderImpl = exports.FcrUIDeviceProviderImpl = /*#__PURE__*/fun
|
|
|
1731
1846
|
}, {
|
|
1732
1847
|
key: "_getSpeakerList",
|
|
1733
1848
|
value: function () {
|
|
1734
|
-
var _getSpeakerList2 = (0, _asyncToGenerator2["default"])(/*#__PURE__*/_regenerator["default"].mark(function
|
|
1849
|
+
var _getSpeakerList2 = (0, _asyncToGenerator2["default"])(/*#__PURE__*/_regenerator["default"].mark(function _callee20() {
|
|
1735
1850
|
var defaultDevice, list, defaultIdDevice;
|
|
1736
|
-
return _regenerator["default"].wrap(function
|
|
1737
|
-
while (1) switch (
|
|
1851
|
+
return _regenerator["default"].wrap(function _callee20$(_context20) {
|
|
1852
|
+
while (1) switch (_context20.prev = _context20.next) {
|
|
1738
1853
|
case 0:
|
|
1739
|
-
|
|
1854
|
+
_context20.next = 2;
|
|
1740
1855
|
return this._mediaControl.getSystemSelectedSpeaker();
|
|
1741
1856
|
case 2:
|
|
1742
|
-
defaultDevice =
|
|
1743
|
-
|
|
1857
|
+
defaultDevice = _context20.sent;
|
|
1858
|
+
_context20.next = 5;
|
|
1744
1859
|
return this._mediaControl.getSpeakerList();
|
|
1745
1860
|
case 5:
|
|
1746
|
-
list =
|
|
1861
|
+
list = _context20.sent;
|
|
1747
1862
|
list.forEach(function (item) {
|
|
1748
1863
|
var results = /^default \((.*)\)$/.exec(item.deviceName);
|
|
1749
1864
|
if (results && results.length > 1) {
|
|
@@ -1773,12 +1888,12 @@ var FcrUIDeviceProviderImpl = exports.FcrUIDeviceProviderImpl = /*#__PURE__*/fun
|
|
|
1773
1888
|
reason1: (0, _i18n.transI18n)('fmt_device_label_speaker_default')
|
|
1774
1889
|
});
|
|
1775
1890
|
}
|
|
1776
|
-
return
|
|
1891
|
+
return _context20.abrupt("return", list);
|
|
1777
1892
|
case 12:
|
|
1778
1893
|
case "end":
|
|
1779
|
-
return
|
|
1894
|
+
return _context20.stop();
|
|
1780
1895
|
}
|
|
1781
|
-
},
|
|
1896
|
+
}, _callee20, this);
|
|
1782
1897
|
}));
|
|
1783
1898
|
function _getSpeakerList() {
|
|
1784
1899
|
return _getSpeakerList2.apply(this, arguments);
|
|
@@ -1790,10 +1905,88 @@ var FcrUIDeviceProviderImpl = exports.FcrUIDeviceProviderImpl = /*#__PURE__*/fun
|
|
|
1790
1905
|
value: function setMainRoomAudioOff(enable) {
|
|
1791
1906
|
this.isMainRoomAudioOff = enable;
|
|
1792
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
|
+
}()
|
|
1793
1986
|
}]);
|
|
1794
1987
|
}();
|
|
1795
1988
|
_FcrUIDeviceProviderImpl = FcrUIDeviceProviderImpl;
|
|
1796
|
-
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"], [
|
|
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);
|
|
1797
1990
|
_init__microphoneDeviceId = _applyDecs$e[0];
|
|
1798
1991
|
_init__speakerDeviceId = _applyDecs$e[1];
|
|
1799
1992
|
_init_currentIsMirror = _applyDecs$e[2];
|