fcr-ui-scene 3.5.1 → 3.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/creator.d.ts +14 -0
- package/lib/creator.js +239 -14
- package/lib/electron/app.js +0 -21
- package/lib/electron/bootstrap-sdk.js +145 -7
- package/lib/electron/injections.d.ts +19 -7
- package/lib/electron/injections.js +206 -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/window.js +0 -2
- package/lib/global.css +39 -0
- package/lib/modules/action-bar/components/apps/index.js +1 -0
- package/lib/modules/action-bar/components/apps/useWidgetList.js +1 -1
- package/lib/modules/action-bar/components/board/index.js +0 -2
- package/lib/modules/action-bar/components/breakout-room/index.js +0 -2
- package/lib/modules/action-bar/components/item/index.d.ts +2 -0
- package/lib/modules/action-bar/components/item/index.js +4 -2
- package/lib/modules/action-bar/components/leave/index.js +2 -12
- package/lib/modules/action-bar/components/more/index.js +1 -0
- package/lib/modules/action-bar/components/more/poppover-content.js +6 -9
- package/lib/modules/action-bar/components/participants/index.js +1 -9
- 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 +11 -3
- package/lib/modules/action-bar/components/screen-share/submenu.js +2 -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 +17 -22
- package/lib/modules/action-bar/components/trigger-subscribe-language/index.js +2 -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 -2
- package/lib/modules/action-bar/store.js +34 -22
- package/lib/modules/action-bar/types.d.ts +1 -0
- package/lib/modules/action-bar/view.js +1 -1
- package/lib/modules/audio-stream/index.js +4 -4
- package/lib/modules/chat/chat-room-store.js +4 -5
- package/lib/modules/chat/components/chat-bar/index.d.ts +1 -1
- package/lib/modules/chat/components/chat-bar/index.js +5 -3
- package/lib/modules/chat/components/chat-select/select-item/index.js +1 -1
- package/lib/modules/chat/components/message-list/index.js +1 -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 +9 -10
- package/lib/modules/chat/index.css +24 -0
- package/lib/modules/chat/view.js +13 -3
- 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/index.css +6 -3
- 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 +25 -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 -2
- 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 +1 -1
- package/lib/modules/components/member-window/components/member-actions/index.js +2 -4
- package/lib/modules/components/member-window/components/member-actions/libs/index.js +0 -1
- package/lib/modules/components/member-window/components/video-player/components/remote-video-player.d.ts +1 -1
- package/lib/modules/components/member-window/components/video-player/components/remote-video-player.js +4 -16
- package/lib/modules/components/member-window/index.css +19 -7
- package/lib/modules/components/member-window/index.js +0 -1
- 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 +80 -28
- package/lib/modules/components/tab-frame/index.css +1 -1
- package/lib/modules/connection-gateway/components/phone/index.js +1 -1
- package/lib/modules/control-bar/components/meeting-details/index.css +1 -1
- package/lib/modules/control-bar/components/meeting-details/index.js +15 -9
- package/lib/modules/control-bar/components/more-actions/index.js +3 -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 +3 -1
- package/lib/modules/control-bar/store.d.ts +12 -3
- package/lib/modules/control-bar/store.js +106 -98
- package/lib/modules/control-bar/view.js +1 -6
- package/lib/modules/device-pretest/audio-preview/speaker-detection.js +1 -1
- 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 +1 -2
- package/lib/modules/dialog/components/control-bar/index.js +5 -17
- package/lib/modules/dialog/components/dialog-container/component/body.d.ts +1 -0
- package/lib/modules/dialog/components/dialog-container/component/body.js +4 -2
- package/lib/modules/dialog/components/dialog-container/index.css +18 -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.d.ts +2 -0
- 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/share-screen-selection/index.js +1 -2
- package/lib/modules/dialog/components/video-window/index.js +18 -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 +22 -101
- package/lib/modules/dialog/index.d.ts +2 -0
- package/lib/modules/dialog/index.js +2 -2
- package/lib/modules/dialog/store.d.ts +8 -3
- package/lib/modules/dialog/store.js +38 -26
- package/lib/modules/dialog/type.d.ts +1 -0
- package/lib/modules/dialog/view.js +2 -1
- 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 +100 -8
- package/lib/modules/event-confirm/view.js +55 -46
- package/lib/modules/{sound-effect → event-sound}/index.d.ts +3 -2
- package/lib/modules/{sound-effect → event-sound}/index.js +9 -5
- package/lib/modules/event-toast/store.js +6 -1
- 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/interpreter-item/components/pick-language/index.js +3 -0
- package/lib/modules/interpreter/store.d.ts +2 -2
- package/lib/modules/interpreter/store.js +30 -24
- package/lib/modules/interpreter/type.d.ts +2 -0
- package/lib/modules/invite/components/pstn-invite.js +2 -25
- 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/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 +8 -1
- package/lib/modules/layout/components/Aside.js +0 -1
- package/lib/modules/layout/components/Carousel.d.ts +1 -1
- package/lib/modules/layout/components/Carousel.js +16 -118
- 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 +62 -205
- package/lib/modules/layout/components/index.css +17 -34
- 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 +53 -39
- package/lib/modules/layout/type.d.ts +4 -0
- package/lib/modules/layout/type.js +6 -1
- package/lib/modules/live-streaming/store.d.ts +1 -0
- package/lib/modules/live-streaming/store.js +19 -8
- 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/footer/index.css +4 -0
- package/lib/modules/participant/components/participants/components/footer/components/footer/index.js +3 -4
- 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 +1 -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 +1 -1
- package/lib/modules/participant/components/participants/components/participants/index.css +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 +12 -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 +9 -0
- package/lib/modules/participant/store.d.ts +6 -0
- package/lib/modules/participant/store.js +130 -96
- package/lib/modules/pc-audio-connect/store.js +3 -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 +4 -2
- package/lib/modules/setting/audio-settings/audio-settings.js +70 -48
- 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/state/index.js +1 -1
- package/lib/modules/setting/store.d.ts +24 -11
- package/lib/modules/setting/store.js +203 -142
- 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 +6 -2
- 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 +105 -59
- 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 +1 -0
- package/lib/modules/state-bar/live-streaming-state.js +1 -0
- package/lib/modules/state-bar/meeting-detail.css +10 -1
- package/lib/modules/state-bar/meeting-details.js +35 -25
- 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 +5 -1
- package/lib/modules/state-bar/store.js +10 -3
- package/lib/modules/state-bar/view.js +17 -6
- package/lib/modules/video-window/components/members/index.js +0 -3
- 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/control-bar/index.js +0 -2
- package/lib/modules/whiteboard/components/scene-pagination.js +0 -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/color.js +1 -2
- package/lib/modules/whiteboard/components/toolbar/components/color-picker/components/panel.js +1 -0
- package/lib/modules/whiteboard/components/toolbar/components/color-picker/components/picker.js +1 -0
- package/lib/modules/whiteboard/components/toolbar/components/eraser-picker.js +3 -14
- package/lib/modules/whiteboard/components/toolbar/components/expansion/index.d.ts +1 -0
- package/lib/modules/whiteboard/components/toolbar/components/expansion/index.js +83 -0
- package/lib/modules/whiteboard/components/toolbar/components/extra-tool-picker.js +2 -2
- package/lib/modules/whiteboard/components/toolbar/components/history.js +3 -3
- package/lib/modules/whiteboard/components/toolbar/components/item/index.d.ts +1 -0
- package/lib/modules/whiteboard/components/toolbar/components/item/index.js +42 -0
- package/lib/modules/whiteboard/components/toolbar/components/pen-picker.js +2 -2
- package/lib/modules/whiteboard/components/toolbar/components/screen-capture-picker.js +2 -2
- package/lib/modules/whiteboard/components/toolbar/components/shape-picker.js +3 -3
- package/lib/modules/whiteboard/components/toolbar/hooks/index.js +6 -6
- package/lib/modules/whiteboard/components/toolbar/index.js +9 -113
- 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 +131 -426
- package/lib/modules/whiteboard/view.js +12 -10
- package/lib/modules/widget/sdk.js +2 -2
- 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 +53 -75
- package/lib/providers/device-provider.d.ts +18 -8
- package/lib/providers/device-provider.js +378 -206
- package/lib/providers/device-stream-provider.js +0 -4
- package/lib/providers/dialog-provider.d.ts +1 -0
- package/lib/providers/dialog-provider.js +4 -18
- package/lib/providers/event-provider.js +45 -2
- package/lib/providers/interpreter-provider.d.ts +4 -0
- package/lib/providers/interpreter-provider.js +166 -137
- package/lib/providers/message-provider.js +44 -2
- package/lib/providers/privilege-provider.d.ts +33 -0
- package/lib/providers/privilege-provider.js +120 -45
- package/lib/providers/room-provider.d.ts +12 -10
- package/lib/providers/room-provider.js +162 -262
- package/lib/providers/screen-share-provider.d.ts +4 -0
- package/lib/providers/screen-share-provider.js +3 -6
- package/lib/providers/widget-provider.js +6 -4
- package/lib/runtime.d.ts +20 -8
- package/lib/scenes/main-scene.d.ts +2 -0
- package/lib/scenes/main-scene.js +95 -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/config.d.ts +6 -2
- package/lib/shared-data-source/config.js +81 -10
- package/lib/shared-data-source/meeting-time.js +2 -2
- package/lib/shared-data-source/member-data.d.ts +16 -20
- package/lib/shared-data-source/member-data.js +121 -110
- package/lib/shared-data-source/screen-share-data-source.d.ts +37 -0
- package/lib/shared-data-source/screen-share-data-source.js +134 -0
- package/lib/shared-data-source/security-data.d.ts +1 -0
- package/lib/shared-data-source/security-data.js +3 -5
- package/lib/shared-data-source/setting.d.ts +1 -0
- package/lib/shared-data-source/setting.js +33 -17
- package/lib/shared-data-source/video-window.d.ts +3 -4
- package/lib/shared-data-source/video-window.js +58 -48
- package/lib/translations/enUS.d.ts +48 -1
- package/lib/translations/enUS.js +101 -17
- package/lib/translations/zhCN.d.ts +48 -1
- package/lib/translations/zhCN.js +88 -4
- package/lib/type.d.ts +40 -20
- package/lib/type.js +14 -1
- 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 +111 -130
- package/lib/utilities/constant.d.ts +3 -1
- package/lib/utilities/constant.js +2 -0
- 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 +3 -4
- package/lib/utilities/renderer.d.ts +0 -9
- package/lib/utilities/renderer.js +1 -70
- package/lib/utilities/screen.js +3 -1
- package/lib/utilities/setting-config-storage.d.ts +6 -1
- package/lib/utilities/setting-config-storage.js +21 -4
- package/lib/utilities/tools.d.ts +30 -6
- package/lib/utilities/tools.js +74 -44
- 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 +29 -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 +103 -82
- 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/components/apps/appitems.d.ts +0 -3
- package/lib/modules/action-bar/components/apps/appitems.js +0 -45
- 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/dialog/components/system-preference/bg1.png +0 -0
- package/lib/modules/dialog/components/system-preference/bg2.png +0 -0
- package/lib/modules/dialog/types/index.d.ts +0 -70
- 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 -337
- 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 -189
- 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 -169
- 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 -157
- 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 -92
- /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
|
@@ -6,7 +6,6 @@ require("core-js/modules/es.symbol.to-primitive.js");
|
|
|
6
6
|
require("core-js/modules/es.error.cause.js");
|
|
7
7
|
require("core-js/modules/es.error.to-string.js");
|
|
8
8
|
require("core-js/modules/es.array.filter.js");
|
|
9
|
-
require("core-js/modules/es.array.for-each.js");
|
|
10
9
|
require("core-js/modules/es.array.is-array.js");
|
|
11
10
|
require("core-js/modules/es.array.push.js");
|
|
12
11
|
require("core-js/modules/es.date.to-primitive.js");
|
|
@@ -48,7 +47,9 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
48
47
|
value: true
|
|
49
48
|
});
|
|
50
49
|
exports.FcrUISharedSettingDataSourceImpl = void 0;
|
|
50
|
+
require("core-js/modules/es.array.for-each.js");
|
|
51
51
|
require("core-js/modules/es.array.iterator.js");
|
|
52
|
+
require("core-js/modules/es.object.assign.js");
|
|
52
53
|
require("core-js/modules/es.object.to-string.js");
|
|
53
54
|
require("core-js/modules/es.string.iterator.js");
|
|
54
55
|
require("core-js/modules/es.weak-map.js");
|
|
@@ -60,13 +61,15 @@ var _classCallCheck2 = _interopRequireDefault(require("@babel/runtime/helpers/cl
|
|
|
60
61
|
var _createClass2 = _interopRequireDefault(require("@babel/runtime/helpers/createClass"));
|
|
61
62
|
var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
|
|
62
63
|
var _imports = require("agora-rte-sdk/lib/imports");
|
|
64
|
+
var _store = require("../modules/setting/store");
|
|
63
65
|
var _fcrCore = require("fcr-core");
|
|
64
66
|
var _parameters = require("../utilities/parameters");
|
|
65
67
|
var _mobx = require("mobx");
|
|
66
68
|
var _base = require("../base");
|
|
67
|
-
var
|
|
69
|
+
var _i18n = require("agora-ui-foundation/lib/i18n");
|
|
70
|
+
var _tools = require("../utilities/tools");
|
|
68
71
|
var _FcrUISharedSettingDataSourceImpl;
|
|
69
|
-
var _initProto, _init__setting, _preHandleSettingDecs, _setSettingDecs, _ref;
|
|
72
|
+
var _initProto, _init__setting, _preHandleSettingDecs, _setSettingDecs, _initSettingDecs, _ref;
|
|
70
73
|
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
71
74
|
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { (0, _defineProperty2["default"])(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
72
75
|
function _classPrivateFieldInitSpec(e, t, a) { _checkPrivateRedeclaration(e, t), t.set(e, a); }
|
|
@@ -84,10 +87,9 @@ function _checkInRHS(e) { if (Object(e) !== e) throw TypeError("right-hand side
|
|
|
84
87
|
* 通过该接口,可以方便地对自定义设置进行读取和更新操作,适用于管理和维护 UI 相关的共享配置。
|
|
85
88
|
*/
|
|
86
89
|
var _A = /*#__PURE__*/new WeakMap();
|
|
87
|
-
_ref = (_preHandleSettingDecs = [_mobx.action, _mobx.action.bound], _setSettingDecs = [_mobx.action, _mobx.action.bound], "_creatorConfig");
|
|
90
|
+
_ref = (_preHandleSettingDecs = [_mobx.action, _mobx.action.bound], _setSettingDecs = [_mobx.action, _mobx.action.bound], _initSettingDecs = [_mobx.action, _mobx.action.bound], "_creatorConfig");
|
|
88
91
|
var FcrUISharedSettingDataSourceImpl = exports.FcrUISharedSettingDataSourceImpl = /*#__PURE__*/function () {
|
|
89
92
|
function FcrUISharedSettingDataSourceImpl(creatorConfig, localStorageProvider) {
|
|
90
|
-
var _this = this;
|
|
91
93
|
(0, _classCallCheck2["default"])(this, FcrUISharedSettingDataSourceImpl);
|
|
92
94
|
(0, _defineProperty2["default"])(this, _ref, void _initProto(this));
|
|
93
95
|
_classPrivateFieldInitSpec(this, _A, _init__setting(this, {
|
|
@@ -96,9 +98,9 @@ var FcrUISharedSettingDataSourceImpl = exports.FcrUISharedSettingDataSourceImpl
|
|
|
96
98
|
displayedMaxAttendees: 16,
|
|
97
99
|
autoAdjustmentSpeakerVolume: true,
|
|
98
100
|
autoAdjustmentMicrophoneVolume: (0, _imports.isElectron)(),
|
|
99
|
-
noiseReduce: _fcrCore.FcrAiDenoiseLevel.
|
|
101
|
+
noiseReduce: _fcrCore.FcrAiDenoiseLevel.MEDIUM,
|
|
100
102
|
recordingPath: '',
|
|
101
|
-
videoHD:
|
|
103
|
+
videoHD: false,
|
|
102
104
|
videoLowLight: false,
|
|
103
105
|
hardwareForReception: false,
|
|
104
106
|
videoNoise: false,
|
|
@@ -106,7 +108,10 @@ var FcrUISharedSettingDataSourceImpl = exports.FcrUISharedSettingDataSourceImpl
|
|
|
106
108
|
audioEchoCancellation: false,
|
|
107
109
|
audioStereo: false,
|
|
108
110
|
audioVoiceChanger: false,
|
|
109
|
-
spotlightEnabled: true
|
|
111
|
+
spotlightEnabled: true,
|
|
112
|
+
isPlaySound: true,
|
|
113
|
+
language: (0, _tools.getBrowserLanguage)(),
|
|
114
|
+
shouldHideMyVideo: false
|
|
110
115
|
}));
|
|
111
116
|
(0, _defineProperty2["default"])(this, "_useDefaultAudioEchoCancellation", true);
|
|
112
117
|
this._localStorageProvider = localStorageProvider;
|
|
@@ -115,13 +120,8 @@ var FcrUISharedSettingDataSourceImpl = exports.FcrUISharedSettingDataSourceImpl
|
|
|
115
120
|
if (defaultVideoGallerySize) {
|
|
116
121
|
defaultVideoGallerySize = Math.min(Math.max(defaultVideoGallerySize, 16), 25);
|
|
117
122
|
}
|
|
118
|
-
var readAndSetSetting = function readAndSetSetting(key, defaultValue) {
|
|
119
|
-
var value = _this._localStorageProvider.read(key);
|
|
120
|
-
_this._setting[key] = value === null ? defaultValue : Boolean(value);
|
|
121
|
-
};
|
|
122
|
-
readAndSetSetting(_localStorageProvider.FcrLocalStorageSettingKey.SpotlightEnabled, true);
|
|
123
|
-
readAndSetSetting(_localStorageProvider.FcrLocalStorageSettingKey.ShouldHideNonVideoParticipants, false);
|
|
124
123
|
this._setting.displayedMaxAttendees = defaultVideoGallerySize || 0;
|
|
124
|
+
this._initSetting();
|
|
125
125
|
}
|
|
126
126
|
return (0, _createClass2["default"])(FcrUISharedSettingDataSourceImpl, [{
|
|
127
127
|
key: "_setting",
|
|
@@ -151,14 +151,30 @@ var FcrUISharedSettingDataSourceImpl = exports.FcrUISharedSettingDataSourceImpl
|
|
|
151
151
|
key: "setSetting",
|
|
152
152
|
value: function setSetting(assignedSetting) {
|
|
153
153
|
var newSetting = this._preHandleSetting(assignedSetting);
|
|
154
|
-
this._localStorageProvider.
|
|
155
|
-
this._localStorageProvider.write(
|
|
154
|
+
var localSetting = this._localStorageProvider.read(_store.SETTING_KEY) || {};
|
|
155
|
+
this._localStorageProvider.write(_store.SETTING_KEY, _objectSpread(_objectSpread({}, localSetting), newSetting));
|
|
156
156
|
this._setting = newSetting;
|
|
157
157
|
}
|
|
158
|
+
}, {
|
|
159
|
+
key: "_initSetting",
|
|
160
|
+
value: function _initSetting() {
|
|
161
|
+
var _this = this;
|
|
162
|
+
var localSetting = this._localStorageProvider.read(_store.SETTING_KEY);
|
|
163
|
+
if (localSetting) {
|
|
164
|
+
var settingKeys = ['spotlightEnabled', 'shouldHideNonVideoParticipants', 'shouldHideMyVideo', 'isPlaySound', 'language', 'autoAdjustmentMicrophoneVolume', 'noiseReduce', 'audioVoiceChanger', 'audioHiFi', 'audioEchoCancellation', 'audioStereo', 'videoHD', 'videoLowLight', 'videoNoise', 'hardwareForReception'];
|
|
165
|
+
settingKeys.forEach(function (key) {
|
|
166
|
+
var targetKey = key;
|
|
167
|
+
var localValue = localSetting[targetKey];
|
|
168
|
+
var value = _this._setting[targetKey];
|
|
169
|
+
Object.assign(_this._setting, (0, _defineProperty2["default"])({}, targetKey, localValue !== null && localValue !== void 0 ? localValue : value));
|
|
170
|
+
});
|
|
171
|
+
}
|
|
172
|
+
(0, _i18n.changeLanguage)(this._setting.language);
|
|
173
|
+
}
|
|
158
174
|
}]);
|
|
159
175
|
}();
|
|
160
176
|
_FcrUISharedSettingDataSourceImpl = FcrUISharedSettingDataSourceImpl;
|
|
161
|
-
var _applyDecs$e = (0, _slicedToArray2["default"])(_applyDecs(_FcrUISharedSettingDataSourceImpl, [[_mobx.observable, 1, "_setting"], [_preHandleSettingDecs, 18, "_preHandleSetting"], [_setSettingDecs, 18, "setSetting"]], []).e, 2);
|
|
177
|
+
var _applyDecs$e = (0, _slicedToArray2["default"])(_applyDecs(_FcrUISharedSettingDataSourceImpl, [[_mobx.observable, 1, "_setting"], [_preHandleSettingDecs, 18, "_preHandleSetting"], [_setSettingDecs, 18, "setSetting"], [_initSettingDecs, 18, "_initSetting"]], []).e, 2);
|
|
162
178
|
_init__setting = _applyDecs$e[0];
|
|
163
179
|
_initProto = _applyDecs$e[1];
|
|
164
180
|
(0, _base.registerDependency)('sharedSettingDataSource');
|
|
@@ -2,7 +2,6 @@ import { FcrUIVideoWindowData, FcrUIVideoWindowFoldSortingPriority, FcrUIVideoWi
|
|
|
2
2
|
import { FcrStreamInfo, FcrUserInfo, FcrUserRole } from 'fcr-core/lib/type';
|
|
3
3
|
import { FcrAudioSourceType, FcrRoomConnectorType, FcrVideoSourceType } from 'fcr-core';
|
|
4
4
|
import { FcrUISharedSettingDataSource } from './setting';
|
|
5
|
-
import { FcrUIEventProvider } from '../providers/event-provider';
|
|
6
5
|
type FcrStreamUIData = Omit<FcrStreamInfo, 'owner'> & {
|
|
7
6
|
owner: FcrUserInfo;
|
|
8
7
|
};
|
|
@@ -38,6 +37,7 @@ export declare class FcrUIVideoWindowDataImpl implements FcrUIVideoWindowData {
|
|
|
38
37
|
private accessor _spotlightEnabled;
|
|
39
38
|
private accessor _isSpeakerSpotlight;
|
|
40
39
|
private accessor _boardCanEdit;
|
|
40
|
+
private accessor _isFirstCameraOpen;
|
|
41
41
|
needToSort: boolean;
|
|
42
42
|
type: FcrUIWindowType;
|
|
43
43
|
accessor isPin: boolean;
|
|
@@ -67,6 +67,7 @@ export declare class FcrUIVideoWindowDataImpl implements FcrUIVideoWindowData {
|
|
|
67
67
|
boardUserInfo?: FcrUserInfo;
|
|
68
68
|
}, _placement: 'main-list' | 'fold-list', _isMySelf: boolean, layoutType: FcrUIVideoWindowLayoutType | undefined, spotlightEnabled: boolean, canEdit?: boolean);
|
|
69
69
|
setLayoutType(layoutType: FcrUIVideoWindowLayoutType): void;
|
|
70
|
+
setIsFirstCameraOpen(isFirstCameraOpen: boolean): void;
|
|
70
71
|
setVideoStream(videoStream: FcrStreamUIData | undefined): void;
|
|
71
72
|
setVideoStreamOwnerInfo(userInfo: FcrUserInfo): void;
|
|
72
73
|
setAudioStream(audioStream: FcrStreamUIData | undefined): void;
|
|
@@ -92,7 +93,6 @@ export interface FcrUIVideoWindowDataSourceObserver {
|
|
|
92
93
|
}
|
|
93
94
|
export declare class FcrUIVideoWindowDataSourceImpl implements FcrUIVideoWindowDataSource {
|
|
94
95
|
private _sharedSettingDataSource;
|
|
95
|
-
private _eventProvider;
|
|
96
96
|
private _observer;
|
|
97
97
|
private _spotlightPool;
|
|
98
98
|
accessor spotlightEnabled: boolean;
|
|
@@ -104,7 +104,7 @@ export declare class FcrUIVideoWindowDataSourceImpl implements FcrUIVideoWindowD
|
|
|
104
104
|
accessor mainList: FcrUIVideoWindowDataImpl[];
|
|
105
105
|
accessor foldList: FcrUIVideoWindowDataImpl[];
|
|
106
106
|
accessor spotlightStreamId: string;
|
|
107
|
-
constructor(_sharedSettingDataSource: FcrUISharedSettingDataSource
|
|
107
|
+
constructor(_sharedSettingDataSource: FcrUISharedSettingDataSource);
|
|
108
108
|
get shouldHideNonVideoParticipants(): boolean;
|
|
109
109
|
setSpotlightEnabled(enabled: boolean): void;
|
|
110
110
|
setLayout(layout: FcrUIVideoWindowLayoutType, manual?: boolean): void;
|
|
@@ -135,7 +135,6 @@ export declare class FcrUIVideoWindowDataSourceImpl implements FcrUIVideoWindowD
|
|
|
135
135
|
private _findInsertEndIndex;
|
|
136
136
|
private _findCurrentSpeakerSpotlight;
|
|
137
137
|
private _findItemIndexWithWindowId;
|
|
138
|
-
private _findItemIndexWithUserId;
|
|
139
138
|
private _findItemIndexWithAudioStreamId;
|
|
140
139
|
private _insertBoard;
|
|
141
140
|
private _insertNewData;
|
|
@@ -85,7 +85,7 @@ var _type2 = require("fcr-core/lib/type");
|
|
|
85
85
|
var _fcrCore = require("fcr-core");
|
|
86
86
|
var _base = require("../base");
|
|
87
87
|
var _FcrUIVideoWindowDataImpl, _FcrUIVideoWindowDataSourceImpl;
|
|
88
|
-
var _initProto, _init__videoStream, _init__audioStream, _init__spotlightEnabled, _init__isSpeakerSpotlight, _init__boardCanEdit, _init_isPin, _init_hasScreenSharing, _init_hasBoardSharing, _init_hasLoopbackSharing, _setVideoStreamDecs, _setVideoStreamOwnerInfoDecs, _setAudioStreamDecs, _setAudioStreamOwnerInfoDecs, _setPinDecs, _setSpotlightEnabledDecs, _setHasBoardSharingDecs, _setSpeakerSpotlightDecs, _setHasScreenSharingDecs, _setHasLoopbackSharingDecs, _setBoardCanEditDecs, _ref, _initProto2, _init_spotlightEnabled, _init_layoutType, _init_manualLayout, _init_pinLimitedCount, _init_mainListLimitedCount, _init_foldListLimitedCount, _init_mainList, _init_foldList, _init_spotlightStreamId, _setSpotlightEnabledDecs2, _setLayoutDecs, _onSpotlightRemovedDecs, _resetListDecs, _addBoardDecs, _updateBoardDecs, _removeBoardDecs, _mergePstnStreamOrInsertNewDataDecs, _addDecs, _updateDecs, _deleteDecs, _addPinDecs, _updateSpeakerSpotlightPositionDecs, _removePinDecs, _setSpeakerSpotlightDecs2, _toggleMainStreamDecs, _insertBeginningByPriorityDecs, _insertEndByPriorityDecs, _findInsertBeginningIndexDecs, _findInsertEndIndexDecs, _insertBoardDecs, _insertNewDataDecs, _ref3;
|
|
88
|
+
var _initProto, _init__videoStream, _init__audioStream, _init__spotlightEnabled, _init__isSpeakerSpotlight, _init__boardCanEdit, _init__isFirstCameraOpen, _init_isPin, _init_hasScreenSharing, _init_hasBoardSharing, _init_hasLoopbackSharing, _setVideoStreamDecs, _setVideoStreamOwnerInfoDecs, _setAudioStreamDecs, _setAudioStreamOwnerInfoDecs, _setPinDecs, _setSpotlightEnabledDecs, _setHasBoardSharingDecs, _setSpeakerSpotlightDecs, _setHasScreenSharingDecs, _setHasLoopbackSharingDecs, _setBoardCanEditDecs, _ref, _initProto2, _init_spotlightEnabled, _init_layoutType, _init_manualLayout, _init_pinLimitedCount, _init_mainListLimitedCount, _init_foldListLimitedCount, _init_mainList, _init_foldList, _init_spotlightStreamId, _setSpotlightEnabledDecs2, _setLayoutDecs, _onSpotlightRemovedDecs, _resetListDecs, _addBoardDecs, _updateBoardDecs, _removeBoardDecs, _mergePstnStreamOrInsertNewDataDecs, _addDecs, _updateDecs, _deleteDecs, _addPinDecs, _updateSpeakerSpotlightPositionDecs, _removePinDecs, _setSpeakerSpotlightDecs2, _toggleMainStreamDecs, _insertBeginningByPriorityDecs, _insertEndByPriorityDecs, _findInsertBeginningIndexDecs, _findInsertEndIndexDecs, _insertBoardDecs, _insertNewDataDecs, _ref3;
|
|
89
89
|
function _createForOfIteratorHelper(r, e) { var t = "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"]; if (!t) { if (Array.isArray(r) || (t = _unsupportedIterableToArray(r)) || e && r && "number" == typeof r.length) { t && (r = t); var _n = 0, F = function F() {}; return { s: F, n: function n() { return _n >= r.length ? { done: !0 } : { done: !1, value: r[_n++] }; }, e: function e(r) { throw r; }, f: F }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } var o, a = !0, u = !1; return { s: function s() { t = t.call(r); }, n: function n() { var r = t.next(); return a = r.done, r; }, e: function e(r) { u = !0, o = r; }, f: function f() { try { a || null == t["return"] || t["return"](); } finally { if (u) throw o; } } }; }
|
|
90
90
|
function _unsupportedIterableToArray(r, a) { if (r) { if ("string" == typeof r) return _arrayLikeToArray(r, a); var t = {}.toString.call(r).slice(8, -1); return "Object" === t && r.constructor && (t = r.constructor.name), "Map" === t || "Set" === t ? Array.from(r) : "Arguments" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0; } }
|
|
91
91
|
function _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length); for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e]; return n; }
|
|
@@ -108,6 +108,7 @@ var _F = /*#__PURE__*/new WeakMap();
|
|
|
108
108
|
var _G = /*#__PURE__*/new WeakMap();
|
|
109
109
|
var _H = /*#__PURE__*/new WeakMap();
|
|
110
110
|
var _I = /*#__PURE__*/new WeakMap();
|
|
111
|
+
var _J = /*#__PURE__*/new WeakMap();
|
|
111
112
|
_ref = (_setVideoStreamDecs = [_mobx.action, _mobx.action.bound], _setVideoStreamOwnerInfoDecs = [_mobx.action, _mobx.action.bound], _setAudioStreamDecs = [_mobx.action, _mobx.action.bound], _setAudioStreamOwnerInfoDecs = [_mobx.action, _mobx.action.bound], _setPinDecs = [_mobx.action, _mobx.action.bound], _setSpotlightEnabledDecs = [_mobx.action, _mobx.action.bound], _setHasBoardSharingDecs = [_mobx.action, _mobx.action.bound], _setSpeakerSpotlightDecs = [_mobx.action, _mobx.action.bound], _setHasScreenSharingDecs = [_mobx.action, _mobx.action.bound], _setHasLoopbackSharingDecs = [_mobx.action, _mobx.action.bound], _setBoardCanEditDecs = [_mobx.action, _mobx.action.bound], "_boardUserInfo");
|
|
112
113
|
var FcrUIVideoWindowDataImpl = exports.FcrUIVideoWindowDataImpl = /*#__PURE__*/function () {
|
|
113
114
|
function FcrUIVideoWindowDataImpl(type, _ref2, _placement, _isMySelf) {
|
|
@@ -125,11 +126,12 @@ var FcrUIVideoWindowDataImpl = exports.FcrUIVideoWindowDataImpl = /*#__PURE__*/f
|
|
|
125
126
|
_classPrivateFieldInitSpec(this, _C, _init__spotlightEnabled(this, true));
|
|
126
127
|
_classPrivateFieldInitSpec(this, _D, _init__isSpeakerSpotlight(this, false));
|
|
127
128
|
_classPrivateFieldInitSpec(this, _E, _init__boardCanEdit(this, false));
|
|
129
|
+
_classPrivateFieldInitSpec(this, _F, _init__isFirstCameraOpen(this, false));
|
|
128
130
|
(0, _defineProperty2["default"])(this, "needToSort", false);
|
|
129
|
-
_classPrivateFieldInitSpec(this,
|
|
130
|
-
_classPrivateFieldInitSpec(this,
|
|
131
|
-
_classPrivateFieldInitSpec(this,
|
|
132
|
-
_classPrivateFieldInitSpec(this,
|
|
131
|
+
_classPrivateFieldInitSpec(this, _G, _init_isPin(this, false));
|
|
132
|
+
_classPrivateFieldInitSpec(this, _H, _init_hasScreenSharing(this, false));
|
|
133
|
+
_classPrivateFieldInitSpec(this, _I, _init_hasBoardSharing(this, false));
|
|
134
|
+
_classPrivateFieldInitSpec(this, _J, _init_hasLoopbackSharing(this, false));
|
|
133
135
|
this._placement = _placement;
|
|
134
136
|
this._isMySelf = _isMySelf;
|
|
135
137
|
this.type = type;
|
|
@@ -181,7 +183,7 @@ var FcrUIVideoWindowDataImpl = exports.FcrUIVideoWindowDataImpl = /*#__PURE__*/f
|
|
|
181
183
|
_classPrivateFieldSet(_E, this, v);
|
|
182
184
|
}
|
|
183
185
|
}, {
|
|
184
|
-
key: "
|
|
186
|
+
key: "_isFirstCameraOpen",
|
|
185
187
|
get: function get() {
|
|
186
188
|
return _classPrivateFieldGet(_F, this);
|
|
187
189
|
},
|
|
@@ -189,7 +191,7 @@ var FcrUIVideoWindowDataImpl = exports.FcrUIVideoWindowDataImpl = /*#__PURE__*/f
|
|
|
189
191
|
_classPrivateFieldSet(_F, this, v);
|
|
190
192
|
}
|
|
191
193
|
}, {
|
|
192
|
-
key: "
|
|
194
|
+
key: "isPin",
|
|
193
195
|
get: function get() {
|
|
194
196
|
return _classPrivateFieldGet(_G, this);
|
|
195
197
|
},
|
|
@@ -197,7 +199,7 @@ var FcrUIVideoWindowDataImpl = exports.FcrUIVideoWindowDataImpl = /*#__PURE__*/f
|
|
|
197
199
|
_classPrivateFieldSet(_G, this, v);
|
|
198
200
|
}
|
|
199
201
|
}, {
|
|
200
|
-
key: "
|
|
202
|
+
key: "hasScreenSharing",
|
|
201
203
|
get: function get() {
|
|
202
204
|
return _classPrivateFieldGet(_H, this);
|
|
203
205
|
},
|
|
@@ -205,13 +207,21 @@ var FcrUIVideoWindowDataImpl = exports.FcrUIVideoWindowDataImpl = /*#__PURE__*/f
|
|
|
205
207
|
_classPrivateFieldSet(_H, this, v);
|
|
206
208
|
}
|
|
207
209
|
}, {
|
|
208
|
-
key: "
|
|
210
|
+
key: "hasBoardSharing",
|
|
209
211
|
get: function get() {
|
|
210
212
|
return _classPrivateFieldGet(_I, this);
|
|
211
213
|
},
|
|
212
214
|
set: function set(v) {
|
|
213
215
|
_classPrivateFieldSet(_I, this, v);
|
|
214
216
|
}
|
|
217
|
+
}, {
|
|
218
|
+
key: "hasLoopbackSharing",
|
|
219
|
+
get: function get() {
|
|
220
|
+
return _classPrivateFieldGet(_J, this);
|
|
221
|
+
},
|
|
222
|
+
set: function set(v) {
|
|
223
|
+
_classPrivateFieldSet(_J, this, v);
|
|
224
|
+
}
|
|
215
225
|
}, {
|
|
216
226
|
key: "isSpeakerSpotlight",
|
|
217
227
|
get: function get() {
|
|
@@ -343,7 +353,7 @@ var FcrUIVideoWindowDataImpl = exports.FcrUIVideoWindowDataImpl = /*#__PURE__*/f
|
|
|
343
353
|
if (this.isPin || ((_this$_videoStream13 = this._videoStream) === null || _this$_videoStream13 === void 0 ? void 0 : _this$_videoStream13.videoSourceType) === _fcrCore.FcrVideoSourceType.SCREEN || this.type === _type.FcrUIWindowType.BOARD) {
|
|
344
354
|
return _type.FcrUIVideoWindowMainSortingPriority.FOCUS;
|
|
345
355
|
}
|
|
346
|
-
if (this.isSpeakerSpotlight
|
|
356
|
+
if (this.isSpeakerSpotlight) {
|
|
347
357
|
return _type.FcrUIVideoWindowMainSortingPriority.SPEAKER_SPOTLIGHT;
|
|
348
358
|
}
|
|
349
359
|
if (this.hasScreenSharing) {
|
|
@@ -358,15 +368,16 @@ var FcrUIVideoWindowDataImpl = exports.FcrUIVideoWindowDataImpl = /*#__PURE__*/f
|
|
|
358
368
|
if (this.ownerRoleType === _type2.FcrUserRole.COHOST) {
|
|
359
369
|
return _type.FcrUIVideoWindowMainSortingPriority.CO_HOST;
|
|
360
370
|
}
|
|
361
|
-
if (this.hasMicrophoneAudioStream && this.hasVideoStream) {
|
|
362
|
-
|
|
363
|
-
}
|
|
364
|
-
|
|
371
|
+
// if (this.hasMicrophoneAudioStream && this.hasVideoStream) {
|
|
372
|
+
// return FcrUIVideoWindowMainSortingPriority.BOTH_OPEN;
|
|
373
|
+
// }
|
|
374
|
+
var isFirstCameraOpen = this.hasVideoStream && !this._isFirstCameraOpen;
|
|
375
|
+
if (isFirstCameraOpen) {
|
|
365
376
|
return _type.FcrUIVideoWindowMainSortingPriority.CAMERA_OPEN;
|
|
366
377
|
}
|
|
367
|
-
if (this.hasMicrophoneAudioStream) {
|
|
368
|
-
|
|
369
|
-
}
|
|
378
|
+
// if (this.hasMicrophoneAudioStream) {
|
|
379
|
+
// return FcrUIVideoWindowMainSortingPriority.MICROPHONE_OPEN;
|
|
380
|
+
// }
|
|
370
381
|
} else {
|
|
371
382
|
var _this$_videoStream14;
|
|
372
383
|
if (this.isSpeakerSpotlight) {
|
|
@@ -390,15 +401,15 @@ var FcrUIVideoWindowDataImpl = exports.FcrUIVideoWindowDataImpl = /*#__PURE__*/f
|
|
|
390
401
|
if (this.ownerRoleType === _type2.FcrUserRole.COHOST) {
|
|
391
402
|
return _type.FcrUIVideoWindowFoldSortingPriority.CO_HOST;
|
|
392
403
|
}
|
|
393
|
-
if (this.hasMicrophoneAudioStream && this.hasVideoStream) {
|
|
394
|
-
|
|
395
|
-
}
|
|
404
|
+
// if (this.hasMicrophoneAudioStream && this.hasVideoStream) {
|
|
405
|
+
// return FcrUIVideoWindowFoldSortingPriority.BOTH_OPEN;
|
|
406
|
+
// }
|
|
396
407
|
if (this.hasVideoStream) {
|
|
397
408
|
return _type.FcrUIVideoWindowFoldSortingPriority.CAMERA_OPEN;
|
|
398
409
|
}
|
|
399
|
-
if (this.hasMicrophoneAudioStream) {
|
|
400
|
-
|
|
401
|
-
}
|
|
410
|
+
// if (this.hasMicrophoneAudioStream) {
|
|
411
|
+
// return FcrUIVideoWindowFoldSortingPriority.MICROPHONE_OPEN;
|
|
412
|
+
// }
|
|
402
413
|
}
|
|
403
414
|
return _type.FcrUIVideoWindowMainSortingPriority.NONE;
|
|
404
415
|
}
|
|
@@ -407,6 +418,11 @@ var FcrUIVideoWindowDataImpl = exports.FcrUIVideoWindowDataImpl = /*#__PURE__*/f
|
|
|
407
418
|
value: function setLayoutType(layoutType) {
|
|
408
419
|
this._layoutType = layoutType;
|
|
409
420
|
}
|
|
421
|
+
}, {
|
|
422
|
+
key: "setIsFirstCameraOpen",
|
|
423
|
+
value: function setIsFirstCameraOpen(isFirstCameraOpen) {
|
|
424
|
+
this._isFirstCameraOpen = isFirstCameraOpen;
|
|
425
|
+
}
|
|
410
426
|
}, {
|
|
411
427
|
key: "setVideoStream",
|
|
412
428
|
value: function setVideoStream(videoStream) {
|
|
@@ -469,17 +485,18 @@ var FcrUIVideoWindowDataImpl = exports.FcrUIVideoWindowDataImpl = /*#__PURE__*/f
|
|
|
469
485
|
}]);
|
|
470
486
|
}();
|
|
471
487
|
_FcrUIVideoWindowDataImpl = FcrUIVideoWindowDataImpl;
|
|
472
|
-
var _applyDecs$e = (0, _slicedToArray2["default"])(_applyDecs(_FcrUIVideoWindowDataImpl, [[_mobx.observable, 1, "_videoStream"], [_mobx.observable, 1, "_audioStream"], [_mobx.observable, 1, "_spotlightEnabled"], [_mobx.observable, 1, "_isSpeakerSpotlight"], [_mobx.observable, 1, "_boardCanEdit"], [_mobx.observable, 1, "isPin"], [_mobx.observable, 1, "hasScreenSharing"], [_mobx.observable, 1, "hasBoardSharing"], [_mobx.observable, 1, "hasLoopbackSharing"], [_mobx.computed, 3, "isSpeakerSpotlight"], [_mobx.computed, 3, "windowId"], [_mobx.computed, 3, "videoStreamId"], [_mobx.computed, 3, "audioStreamId"], [_mobx.computed, 3, "audioStreamConnectorType"], [_mobx.computed, 3, "videoStreamConnectorType"], [_mobx.computed, 3, "hasMicrophoneAudioStream"], [_mobx.computed, 3, "hasLoopbackAudioStream"], [_mobx.computed, 3, "phoneMicEnabled"], [_mobx.computed, 3, "hasVideoStream"], [_mobx.computed, 3, "userId"], [_mobx.computed, 3, "
|
|
488
|
+
var _applyDecs$e = (0, _slicedToArray2["default"])(_applyDecs(_FcrUIVideoWindowDataImpl, [[_mobx.observable, 1, "_videoStream"], [_mobx.observable, 1, "_audioStream"], [_mobx.observable, 1, "_spotlightEnabled"], [_mobx.observable, 1, "_isSpeakerSpotlight"], [_mobx.observable, 1, "_boardCanEdit"], [_mobx.observable, 1, "_isFirstCameraOpen"], [_mobx.observable, 1, "isPin"], [_mobx.observable, 1, "hasScreenSharing"], [_mobx.observable, 1, "hasBoardSharing"], [_mobx.observable, 1, "hasLoopbackSharing"], [_mobx.computed, 3, "isSpeakerSpotlight"], [_mobx.computed, 3, "windowId"], [_mobx.computed, 3, "videoStreamId"], [_mobx.computed, 3, "audioStreamId"], [_mobx.computed, 3, "audioStreamConnectorType"], [_mobx.computed, 3, "videoStreamConnectorType"], [_mobx.computed, 3, "hasMicrophoneAudioStream"], [_mobx.computed, 3, "hasLoopbackAudioStream"], [_mobx.computed, 3, "phoneMicEnabled"], [_mobx.computed, 3, "hasVideoStream"], [_mobx.computed, 3, "userId"], [_mobx.computed, 3, "ownerRoleType"], [_mobx.computed, 3, "videoSourceType"], [_mobx.computed, 3, "audioSourceType"], [_mobx.computed, 3, "sortingPriority"], [_setVideoStreamDecs, 18, "setVideoStream"], [_setVideoStreamOwnerInfoDecs, 18, "setVideoStreamOwnerInfo"], [_setAudioStreamDecs, 18, "setAudioStream"], [_setAudioStreamOwnerInfoDecs, 18, "setAudioStreamOwnerInfo"], [_setPinDecs, 18, "setPin"], [_setSpotlightEnabledDecs, 18, "setSpotlightEnabled"], [_setHasBoardSharingDecs, 18, "setHasBoardSharing"], [_setSpeakerSpotlightDecs, 18, "setSpeakerSpotlight"], [_setHasScreenSharingDecs, 18, "setHasScreenSharing"], [_setHasLoopbackSharingDecs, 18, "setHasLoopbackSharing"], [_setBoardCanEditDecs, 18, "setBoardCanEdit"]], []).e, 11);
|
|
473
489
|
_init__videoStream = _applyDecs$e[0];
|
|
474
490
|
_init__audioStream = _applyDecs$e[1];
|
|
475
491
|
_init__spotlightEnabled = _applyDecs$e[2];
|
|
476
492
|
_init__isSpeakerSpotlight = _applyDecs$e[3];
|
|
477
493
|
_init__boardCanEdit = _applyDecs$e[4];
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
494
|
+
_init__isFirstCameraOpen = _applyDecs$e[5];
|
|
495
|
+
_init_isPin = _applyDecs$e[6];
|
|
496
|
+
_init_hasScreenSharing = _applyDecs$e[7];
|
|
497
|
+
_init_hasBoardSharing = _applyDecs$e[8];
|
|
498
|
+
_init_hasLoopbackSharing = _applyDecs$e[9];
|
|
499
|
+
_initProto = _applyDecs$e[10];
|
|
483
500
|
var _A2 = /*#__PURE__*/new WeakMap();
|
|
484
501
|
var _B2 = /*#__PURE__*/new WeakMap();
|
|
485
502
|
var _C2 = /*#__PURE__*/new WeakMap();
|
|
@@ -491,7 +508,7 @@ var _H2 = /*#__PURE__*/new WeakMap();
|
|
|
491
508
|
var _I2 = /*#__PURE__*/new WeakMap();
|
|
492
509
|
_ref3 = (_setSpotlightEnabledDecs2 = [_mobx.action, _mobx.action.bound], _setLayoutDecs = [_mobx.action, _mobx.action.bound], _onSpotlightRemovedDecs = [_mobx.action, _mobx.action.bound], _resetListDecs = [_mobx.action, _mobx.action.bound], _addBoardDecs = [_mobx.action, _mobx.action.bound], _updateBoardDecs = [_mobx.action, _mobx.action.bound], _removeBoardDecs = [_mobx.action, _mobx.action.bound], _mergePstnStreamOrInsertNewDataDecs = [_mobx.action, _mobx.action.bound], _addDecs = [_mobx.action, _mobx.action.bound], _updateDecs = [_mobx.action, _mobx.action.bound], _deleteDecs = [_mobx.action, _mobx.action.bound], _addPinDecs = [_mobx.action, _mobx.action.bound], _updateSpeakerSpotlightPositionDecs = [_mobx.action, _mobx.action.bound], _removePinDecs = [_mobx.action, _mobx.action.bound], _setSpeakerSpotlightDecs2 = [_mobx.action, _mobx.action.bound], _toggleMainStreamDecs = [_mobx.action, _mobx.action.bound], _insertBeginningByPriorityDecs = [_mobx.action, _mobx.action.bound], _insertEndByPriorityDecs = [_mobx.action, _mobx.action.bound], _findInsertBeginningIndexDecs = [_mobx.action, _mobx.action.bound], _findInsertEndIndexDecs = [_mobx.action, _mobx.action.bound], _insertBoardDecs = [_mobx.action, _mobx.action.bound], _insertNewDataDecs = [_mobx.action, _mobx.action.bound], "_observer");
|
|
493
510
|
var FcrUIVideoWindowDataSourceImpl = exports.FcrUIVideoWindowDataSourceImpl = /*#__PURE__*/function () {
|
|
494
|
-
function FcrUIVideoWindowDataSourceImpl(_sharedSettingDataSource
|
|
511
|
+
function FcrUIVideoWindowDataSourceImpl(_sharedSettingDataSource) {
|
|
495
512
|
(0, _classCallCheck2["default"])(this, FcrUIVideoWindowDataSourceImpl);
|
|
496
513
|
(0, _defineProperty2["default"])(this, _ref3, (_initProto2(this), new _observable.AgoraObservable()));
|
|
497
514
|
(0, _defineProperty2["default"])(this, "_spotlightPool", new FcrUISpeakerSpotlightPool());
|
|
@@ -505,7 +522,6 @@ var FcrUIVideoWindowDataSourceImpl = exports.FcrUIVideoWindowDataSourceImpl = /*
|
|
|
505
522
|
_classPrivateFieldInitSpec(this, _H2, _init_foldList(this, []));
|
|
506
523
|
_classPrivateFieldInitSpec(this, _I2, _init_spotlightStreamId(this, ''));
|
|
507
524
|
this._sharedSettingDataSource = _sharedSettingDataSource;
|
|
508
|
-
this._eventProvider = _eventProvider;
|
|
509
525
|
this._spotlightPool.addObserver({
|
|
510
526
|
onRemoved: this.onSpotlightRemoved
|
|
511
527
|
});
|
|
@@ -639,7 +655,7 @@ var FcrUIVideoWindowDataSourceImpl = exports.FcrUIVideoWindowDataSourceImpl = /*
|
|
|
639
655
|
key: "onSpotlightRemoved",
|
|
640
656
|
value: function onSpotlightRemoved(streamId) {
|
|
641
657
|
var _this3 = this;
|
|
642
|
-
var removeSpotlight = function removeSpotlight(streamId, list
|
|
658
|
+
var removeSpotlight = function removeSpotlight(streamId, list) {
|
|
643
659
|
var index = _this3._findItemIndexWithWindowId(streamId, list);
|
|
644
660
|
if (index !== -1) {
|
|
645
661
|
var item = list[index];
|
|
@@ -651,8 +667,8 @@ var FcrUIVideoWindowDataSourceImpl = exports.FcrUIVideoWindowDataSourceImpl = /*
|
|
|
651
667
|
}
|
|
652
668
|
}
|
|
653
669
|
};
|
|
654
|
-
removeSpotlight(streamId, this.mainList
|
|
655
|
-
removeSpotlight(streamId, this.foldList
|
|
670
|
+
removeSpotlight(streamId, this.mainList);
|
|
671
|
+
removeSpotlight(streamId, this.foldList);
|
|
656
672
|
this.spotlightStreamId = '';
|
|
657
673
|
this._observer.notifyObservers('onSpotlightRemoved', streamId);
|
|
658
674
|
}
|
|
@@ -904,11 +920,9 @@ var FcrUIVideoWindowDataSourceImpl = exports.FcrUIVideoWindowDataSourceImpl = /*
|
|
|
904
920
|
if (existedUserStream) {
|
|
905
921
|
existedUserStream.setSpeakerSpotlight(true);
|
|
906
922
|
}
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
_this9._insertBeginningByPriority(existedUserStream, list, limitCount);
|
|
911
|
-
}
|
|
923
|
+
var isSpeakerSpotlightSortingPriority = existedUserStream.sortingPriority === (placement === 'main-list' ? _type.FcrUIVideoWindowMainSortingPriority.SPEAKER_SPOTLIGHT : _type.FcrUIVideoWindowFoldSortingPriority.FOCUS);
|
|
924
|
+
if (isSpeakerSpotlightSortingPriority) {
|
|
925
|
+
_this9._insertBeginningByPriority(existedUserStream, list, limitCount);
|
|
912
926
|
}
|
|
913
927
|
list.forEach(function (item) {
|
|
914
928
|
if (item.needToSort) {
|
|
@@ -998,11 +1012,14 @@ var FcrUIVideoWindowDataSourceImpl = exports.FcrUIVideoWindowDataSourceImpl = /*
|
|
|
998
1012
|
key: "_insertByPriority",
|
|
999
1013
|
value: function _insertByPriority(data, list, limitCount) {
|
|
1000
1014
|
var insertIndex = -1;
|
|
1001
|
-
if (data.sortingPriority >= _type.FcrUIVideoWindowMainSortingPriority.FOCUS) {
|
|
1015
|
+
if (data.sortingPriority >= _type.FcrUIVideoWindowMainSortingPriority.FOCUS || data.sortingPriority === _type.FcrUIVideoWindowMainSortingPriority.CAMERA_OPEN) {
|
|
1002
1016
|
insertIndex = this._insertBeginningByPriority(data, list, limitCount);
|
|
1003
1017
|
} else {
|
|
1004
1018
|
insertIndex = this._insertEndByPriority(data, list, limitCount);
|
|
1005
1019
|
}
|
|
1020
|
+
if (data.hasVideoStream) {
|
|
1021
|
+
data.setIsFirstCameraOpen(true);
|
|
1022
|
+
}
|
|
1006
1023
|
return insertIndex;
|
|
1007
1024
|
}
|
|
1008
1025
|
}, {
|
|
@@ -1075,13 +1092,6 @@ var FcrUIVideoWindowDataSourceImpl = exports.FcrUIVideoWindowDataSourceImpl = /*
|
|
|
1075
1092
|
return item.windowId === windowId;
|
|
1076
1093
|
});
|
|
1077
1094
|
}
|
|
1078
|
-
}, {
|
|
1079
|
-
key: "_findItemIndexWithUserId",
|
|
1080
|
-
value: function _findItemIndexWithUserId(userId, list) {
|
|
1081
|
-
return list.findIndex(function (item) {
|
|
1082
|
-
return item.userId === userId;
|
|
1083
|
-
});
|
|
1084
|
-
}
|
|
1085
1095
|
}, {
|
|
1086
1096
|
key: "_findItemIndexWithAudioStreamId",
|
|
1087
1097
|
value: function _findItemIndexWithAudioStreamId(audioStreamId, list) {
|
|
@@ -1137,7 +1147,7 @@ var FcrUISpeakerSpotlightPool = exports.FcrUISpeakerSpotlightPool = /*#__PURE__*
|
|
|
1137
1147
|
return (0, _createClass2["default"])(FcrUISpeakerSpotlightPool, [{
|
|
1138
1148
|
key: "add",
|
|
1139
1149
|
value: function add(streamId) {
|
|
1140
|
-
if (this.streams.size >= this.limitCount) {
|
|
1150
|
+
if (this.streams.size >= this.limitCount && !this.streams.has(streamId)) {
|
|
1141
1151
|
return false;
|
|
1142
1152
|
}
|
|
1143
1153
|
this.streams.set(streamId, Date.now());
|
|
@@ -34,6 +34,7 @@ export declare const enUs: {
|
|
|
34
34
|
fmt_attendies_toast_cant_sethost: string;
|
|
35
35
|
fmt_attendies_toast_cant_setcohost: string;
|
|
36
36
|
fmt_attendies_button_revokehost_error: string;
|
|
37
|
+
fmt_attendies_toast_cohost_upper_limit: string;
|
|
37
38
|
fmt_attendies_button_rename: string;
|
|
38
39
|
fmt_attendies_options_allowlocalrecord: string;
|
|
39
40
|
fmt_attendies_options_putinwaitingroom: string;
|
|
@@ -89,10 +90,11 @@ export declare const enUs: {
|
|
|
89
90
|
fmt_additional_label_meet_view_all: string;
|
|
90
91
|
fmt_additional_label_change_name_self: string;
|
|
91
92
|
fmt_additional_tips_nickname_change_success: string;
|
|
92
|
-
fmt_additional_popup_label_change_nickname: string;
|
|
93
93
|
fmt_additional_popup_label_enter_nickname: string;
|
|
94
94
|
fmt_additional_popup_label_enter_nickname_ok: string;
|
|
95
95
|
fmt_additional_label_toast_rename_off: string;
|
|
96
|
+
fmt_attendies_toast_host_enabled_mute: string;
|
|
97
|
+
fmt_attendies_toast_host_turned_off_video: string;
|
|
96
98
|
fmt_actionbar_tips_leavemeeting: string;
|
|
97
99
|
fmt_actionbar_tips_locked: string;
|
|
98
100
|
fmt_actionbar_tips_recheckleave: string;
|
|
@@ -560,6 +562,21 @@ export declare const enUs: {
|
|
|
560
562
|
fmt_screenshare_tips_sharing_audio_cancel: string;
|
|
561
563
|
fmt_screenshare_tips_sharing_audio_confirm: string;
|
|
562
564
|
fmt_screenshare_tips_sharing_disabled_tocontact: string;
|
|
565
|
+
fmt_screenshare_toast_network_error_unable_start_screen_share: string;
|
|
566
|
+
fmt_screenshare_controlbar_button_annotations: string;
|
|
567
|
+
fmt_screenshare_controlbar_annotations_options_attendees_annotate: string;
|
|
568
|
+
fmt_screenshare_controlbar_annotations_options_show_name: string;
|
|
569
|
+
fmt_screenshare_toast_host_enabled_annotations: string;
|
|
570
|
+
fmt_screenshare_toast_host_disabled_annotations: string;
|
|
571
|
+
fmt_screenshare_controlbar_options_clear_all: string;
|
|
572
|
+
fmt_screenshare_toast_annotations_visible_participants: string;
|
|
573
|
+
fmt_screenshare_controlbar_button_settings: string;
|
|
574
|
+
fmt_screenshare_controlbar_settings_label_share_audio_settings: string;
|
|
575
|
+
fmt_screenshare_controlbar_settings_options_enable_share_audio: string;
|
|
576
|
+
fmt_screenshare_controlbar_settings_label_annotation_settings: string;
|
|
577
|
+
fmt_screenshare_controlbar_settings_label_annotation_controls: string;
|
|
578
|
+
fmt_screenshare_toast_annotation_controls_screen_sharing_disabled: string;
|
|
579
|
+
fmt_screenshare_tips_host_not_enabled_annotations: string;
|
|
563
580
|
fmt_screenshare_tips_unenabled: string;
|
|
564
581
|
fmt_screenshare_whiteboard_options_changetheme: string;
|
|
565
582
|
fmt_screenshare_tips_alreadyoriginalsize: string;
|
|
@@ -877,6 +894,31 @@ export declare const enUs: {
|
|
|
877
894
|
fmt_internalsetting_room_window_switched: string;
|
|
878
895
|
fmt_internalsetting_labels_Network_type: string;
|
|
879
896
|
fmt_internalsetting_labels_resolving_power: string;
|
|
897
|
+
fmt_internalsetting_options_play_prompt: string;
|
|
898
|
+
fmt_internalsetting_labels_audio: string;
|
|
899
|
+
fmt_internalsetting_labels_hide_video_off: string;
|
|
900
|
+
fmt_internalsetting_labels_hide_my_video: string;
|
|
901
|
+
fmt_settings_labels_virtual_background: string;
|
|
902
|
+
fmt_settings_labels_prompt_tone: string;
|
|
903
|
+
fmt_meeting_setting_button_meeting_settings: string;
|
|
904
|
+
fmt_meeting_setting_labels_meeting_settings: string;
|
|
905
|
+
fmt_meeting_setting_labels_audio_video_settings: string;
|
|
906
|
+
fmt_meeting_setting_options_mute_participants: string;
|
|
907
|
+
fmt_meeting_setting_options_disable_video: string;
|
|
908
|
+
fmt_meeting_setting_labels_Security: string;
|
|
909
|
+
fmt_meeting_setting_options_enable_waiting_room: string;
|
|
910
|
+
fmt_meeting_setting_options_jbh: string;
|
|
911
|
+
fmt_meeting_setting_options_show_time: string;
|
|
912
|
+
fmt_meeting_setting_options_show_duration: string;
|
|
913
|
+
fmt_meeting_setting_options_show_information: string;
|
|
914
|
+
fmt_meeting_setting_labels_advanced: string;
|
|
915
|
+
fmt_meeting_setting_options_enable_live_streaming: string;
|
|
916
|
+
fmt_meeting_setting_options_enable_interpretation: string;
|
|
917
|
+
fmt_meeting_setting_options_generate_meeting_minutes: string;
|
|
918
|
+
fmt_meeting_setting_toast_enabled_mute: string;
|
|
919
|
+
fmt_meeting_setting_toast_turned_off_video: string;
|
|
920
|
+
fmt_meeting_setting_toast_disabled_mute: string;
|
|
921
|
+
fmt_meeting_setting_toast_turned_on_video: string;
|
|
880
922
|
fmt_settings_labels_sidebar: string;
|
|
881
923
|
fmt_settings_labels_fold: string;
|
|
882
924
|
fmt_settings_labels_theme: string;
|
|
@@ -1272,6 +1314,7 @@ export declare const enUs: {
|
|
|
1272
1314
|
fmt_premeeting_setting_mobile_option_auto: string;
|
|
1273
1315
|
fmt_premeeting_setting_mobile_option_bright: string;
|
|
1274
1316
|
fmt_premeeting_setting_mobile_option_dark: string;
|
|
1317
|
+
fmt_premeeting_setting_option_setting_after_restarting: string;
|
|
1275
1318
|
fmt_premeeting_setting_mobile_option_region: string;
|
|
1276
1319
|
fmt_premeeting_setting_mobile_option_developer_mode: string;
|
|
1277
1320
|
fmt_premeeting_setting_mobile_label_about_us: string;
|
|
@@ -1296,6 +1339,8 @@ export declare const enUs: {
|
|
|
1296
1339
|
fmt_premeeting_setting_mobile_popup_button_cancel: string;
|
|
1297
1340
|
fmt_premeeting_setting_mobile_popup_button_log_out: string;
|
|
1298
1341
|
fmt_premeeting_setting_mobile_button_log_out_confirm: string;
|
|
1342
|
+
fmt_premeeting_setting_button_more_meeting_control: string;
|
|
1343
|
+
fmt_premeeting_setting_checkbox_joining_meeting_connect_audio: string;
|
|
1299
1344
|
fmt_premeeting_joinroom_mobile_button_upandin: string;
|
|
1300
1345
|
fmt_premeeting_joinroom_mobile_label_flexible_meeting: string;
|
|
1301
1346
|
fmt_premeeting_joinroom_mobile_label_enterprise_account: string;
|
|
@@ -1357,6 +1402,7 @@ export declare const enUs: {
|
|
|
1357
1402
|
fmt_security_mainwindow_label_watermark: string;
|
|
1358
1403
|
fmt_security_mainwindow_label_toast_unmute_not_allow: string;
|
|
1359
1404
|
fmt_security_mainwindow_label_toast_name_change_not_allow: string;
|
|
1405
|
+
fmt_security_mainwindow_label_interactive_annotations: string;
|
|
1360
1406
|
fmt_premeeting_setting_label_settings: string;
|
|
1361
1407
|
fmt_premeeting_setting_label_normal: string;
|
|
1362
1408
|
fmt_premeeting_setting_label_voice_motivation: string;
|
|
@@ -1413,6 +1459,7 @@ export declare const enUs: {
|
|
|
1413
1459
|
fmt_premeeting_setting_label_low: string;
|
|
1414
1460
|
fmt_premeeting_setting_label_medium: string;
|
|
1415
1461
|
fmt_premeeting_setting_label_high: string;
|
|
1462
|
+
fmt_premeeting_setting_label_turn_off: string;
|
|
1416
1463
|
fmt_premeeting_setting_label_professional_audio: string;
|
|
1417
1464
|
fmt_premeeting_setting_label_enable_stereo: string;
|
|
1418
1465
|
fmt_premeeting_setting_label_high_fidelity_music_mode: string;
|