fcr-ui-scene 3.8.2 → 3.9.0-alpha
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/base.js +2 -2
- package/lib/creator/index.js +25 -10
- package/lib/creator/provider-initializer.browser.js +28 -3
- package/lib/creator/provider-initializer.electron.js +28 -5
- package/lib/electron/app.js +26 -9
- package/lib/electron/asar-validation.js +5 -1
- package/lib/electron/env.d.ts +1 -0
- package/lib/electron/env.js +2 -2
- package/lib/electron/injections.d.ts +2 -1
- package/lib/electron/injections.js +23 -17
- package/lib/electron/ipc/type.d.ts +2 -1
- package/lib/electron/ipc/type.js +1 -0
- package/lib/electron/ipc-protocol.d.ts +2 -0
- package/lib/electron/main.js +6 -6
- package/lib/electron/plugins/main-window-display.d.ts +8 -0
- package/lib/electron/plugins/main-window-display.js +23 -0
- package/lib/electron/preload.js +2 -1
- package/lib/electron/process-manager/index.d.ts +1 -0
- package/lib/electron/process-manager/index.js +37 -0
- package/lib/electron/process-manager/state-manager.d.ts +10 -0
- package/lib/electron/process-manager/state-manager.js +46 -4
- package/lib/electron/sdk-helper.js +4 -0
- package/lib/electron/window-proxy/browser-window-proxy-factory.d.ts +7 -0
- package/lib/electron/window-proxy/browser-window-proxy-factory.js +46 -0
- package/lib/electron/window-proxy/{browser-window-proxy.d.ts → implementations/browser-window-proxy.d.ts} +3 -24
- package/lib/electron/window-proxy/implementations/browser-window-proxy.js +335 -0
- package/lib/electron/window-proxy/implementations/electron-event-broadcaster.d.ts +9 -0
- package/lib/electron/window-proxy/implementations/electron-event-broadcaster.js +32 -0
- package/lib/electron/window-proxy/implementations/electron-ipc-handler.d.ts +6 -0
- package/lib/electron/window-proxy/implementations/electron-ipc-handler.js +27 -0
- package/lib/electron/window-proxy/implementations/electron-logger.d.ts +7 -0
- package/lib/electron/window-proxy/implementations/electron-logger.js +34 -0
- package/lib/electron/window-proxy/{main-process-handler.d.ts → implementations/main-process-handler.d.ts} +16 -9
- package/lib/electron/window-proxy/{main-process-handler.js → implementations/main-process-handler.js} +111 -111
- package/lib/electron/window-proxy/interfaces.d.ts +52 -0
- package/lib/electron/window-proxy/interfaces.js +6 -0
- package/lib/fragments/annotation/cursor.css +77 -0
- package/lib/fragments/annotation/index.d.ts +2 -4
- package/lib/fragments/annotation/index.js +4 -82
- package/lib/fragments/annotation/libs.d.ts +15 -11
- package/lib/fragments/annotation/libs.js +75 -26
- package/lib/fragments/annotation/store.d.ts +23 -43
- package/lib/fragments/annotation/store.js +319 -709
- package/lib/fragments/annotation/style.css +5 -6
- package/lib/fragments/annotation/view.d.ts +1 -0
- package/lib/fragments/annotation/view.js +8 -48
- package/lib/fragments/base.js +1 -1
- package/lib/fragments/whiteboard/libs.d.ts +72 -0
- package/lib/fragments/whiteboard/libs.js +155 -0
- package/lib/fragments/whiteboard/store.d.ts +1 -4
- package/lib/fragments/whiteboard/store.js +64 -128
- package/lib/modules/action-bar/components/apps/index.js +2 -2
- package/lib/modules/action-bar/components/collapse/index.js +8 -3
- package/lib/modules/action-bar/components/{confirm-leave-meeting → confirm-end-meeting}/index.d.ts +1 -1
- package/lib/modules/action-bar/components/{confirm-leave-meeting → confirm-end-meeting}/index.js +14 -33
- package/lib/modules/action-bar/components/leave/index.js +1 -1
- package/lib/modules/action-bar/components/notification-bar/components/interpreter/index.css +6 -0
- package/lib/modules/action-bar/components/notification-bar/components/interpreter/index.d.ts +3 -7
- package/lib/modules/action-bar/components/notification-bar/components/interpreter/index.js +66 -42
- package/lib/modules/action-bar/components/notification-bar/components/virtual-image/index.d.ts +2 -2
- package/lib/modules/action-bar/components/notification-bar/components/virtual-image/index.js +11 -7
- package/lib/modules/action-bar/components/notification-bar/index.js +12 -70
- package/lib/modules/action-bar/components/screen-share/submenu.js +39 -2
- package/lib/modules/action-bar/components/trigger-subscribe-language/guide-tooltip/index.css +1 -0
- package/lib/modules/action-bar/components/trigger-subscribe-language/guide-tooltip/index.js +10 -7
- package/lib/modules/action-bar/index.css +1 -1
- package/lib/modules/action-bar/main-scene/index.d.ts +1 -1
- package/lib/modules/action-bar/main-scene/index.js +4 -4
- package/lib/modules/action-bar/main-scene/store.base.d.ts +16 -9
- package/lib/modules/action-bar/main-scene/store.base.js +165 -94
- package/lib/modules/action-bar/type.d.ts +1 -15
- package/lib/modules/action-bar/type.js +14 -0
- package/lib/modules/action-bar/waiting-scene/view.js +1 -1
- package/lib/modules/annotation/board-cursor.css +77 -0
- package/lib/modules/annotation/components/color-picker/components/color.d.ts +5 -0
- package/lib/modules/annotation/components/color-picker/components/color.js +37 -0
- package/lib/modules/annotation/components/color-picker/components/panel.d.ts +1 -0
- package/lib/modules/annotation/components/color-picker/components/panel.js +108 -0
- package/lib/modules/annotation/components/color-picker/components/picker.d.ts +1 -0
- package/lib/modules/annotation/components/color-picker/components/picker.js +75 -0
- package/lib/modules/annotation/components/color-picker/index.d.ts +2 -0
- package/lib/modules/annotation/components/color-picker/index.js +45 -0
- package/lib/modules/annotation/components/eraser-picker.d.ts +4 -0
- package/lib/modules/annotation/components/eraser-picker.js +142 -0
- package/lib/modules/annotation/components/expansion/index.d.ts +1 -0
- package/lib/modules/annotation/components/expansion/index.js +100 -0
- package/lib/modules/annotation/components/extra-tool-picker.d.ts +1 -0
- package/lib/modules/annotation/components/extra-tool-picker.js +62 -0
- package/lib/modules/annotation/components/history.d.ts +2 -0
- package/lib/modules/annotation/components/history.js +76 -0
- package/lib/modules/annotation/components/icons/fold-icon.d.ts +2 -0
- package/lib/modules/annotation/components/icons/fold-icon.js +41 -0
- package/lib/modules/annotation/components/icons/move-icon.d.ts +1 -0
- package/lib/modules/annotation/components/icons/move-icon.js +66 -0
- package/lib/modules/annotation/components/item/index.d.ts +1 -0
- package/lib/modules/annotation/components/item/index.js +43 -0
- package/lib/modules/annotation/components/move-handle.d.ts +5 -0
- package/lib/modules/annotation/components/move-handle.js +134 -0
- package/lib/modules/annotation/components/pen-picker.d.ts +4 -0
- package/lib/modules/annotation/components/pen-picker.js +150 -0
- package/lib/modules/annotation/components/screen-capture-picker.d.ts +4 -0
- package/lib/modules/annotation/components/screen-capture-picker.js +84 -0
- package/lib/modules/annotation/components/shape-picker.d.ts +4 -0
- package/lib/modules/annotation/components/shape-picker.js +201 -0
- package/lib/modules/annotation/hooks/index.d.ts +14 -0
- package/lib/modules/annotation/hooks/index.js +164 -0
- package/lib/modules/annotation/index.d.ts +31 -0
- package/lib/modules/annotation/index.js +152 -0
- package/lib/{fragments/annotation/toolbar → modules/annotation/standalone-toolbar}/components/color-tool/color-panel/index.js +2 -2
- package/lib/{fragments/annotation/toolbar → modules/annotation/standalone-toolbar}/components/color-tool/index.js +22 -9
- package/lib/{fragments/annotation/toolbar → modules/annotation/standalone-toolbar}/components/graphic-tool/graphic-panel/index.js +2 -3
- package/lib/{fragments/annotation/toolbar → modules/annotation/standalone-toolbar}/components/graphic-tool/index.js +22 -9
- package/lib/{fragments/annotation/toolbar → modules/annotation/standalone-toolbar}/components/pen-tool/index.js +22 -9
- package/lib/{fragments/annotation/toolbar → modules/annotation/standalone-toolbar}/components/pen-tool/pen-panel/index.js +1 -1
- package/lib/modules/annotation/standalone-toolbar/components/permission-tool/index.d.ts +1 -0
- package/lib/modules/annotation/standalone-toolbar/components/permission-tool/index.js +52 -0
- package/lib/modules/annotation/standalone-toolbar/store.d.ts +104 -0
- package/lib/modules/annotation/standalone-toolbar/store.js +618 -0
- package/{lib-es/fragments/annotation/toolbar → lib/modules/annotation/standalone-toolbar}/style.css +4 -1
- package/lib/modules/annotation/standalone-toolbar/view.js +193 -0
- package/lib/modules/annotation/store.base.d.ts +27 -0
- package/lib/modules/annotation/store.base.js +185 -0
- package/lib/modules/annotation/store.browser.d.ts +3 -0
- package/lib/modules/annotation/store.browser.js +25 -0
- package/lib/modules/annotation/store.electron.d.ts +8 -0
- package/lib/modules/annotation/store.electron.js +75 -0
- package/lib/modules/annotation/style.css +36 -0
- package/lib/modules/annotation/toolbar-store.d.ts +86 -0
- package/lib/modules/annotation/toolbar-store.js +473 -0
- package/lib/modules/annotation/type.d.ts +7 -0
- package/lib/modules/annotation/type.js +6 -0
- package/lib/modules/annotation/view.d.ts +5 -0
- package/lib/modules/annotation/view.js +107 -0
- package/lib/modules/chat/chat-room-store.d.ts +8 -1
- package/lib/modules/chat/chat-room-store.js +152 -72
- package/lib/modules/chat/components/message-list/index.js +123 -93
- package/lib/modules/chat/components/message-list/message-item/index.js +89 -67
- package/lib/modules/chat/components/message-list/scroll-bottom-button/index.js +6 -8
- package/lib/modules/chat/index.css +1 -9
- package/lib/modules/chat/store.js +7 -5
- package/lib/modules/chat/view.js +4 -9
- package/lib/modules/components/annotation-menu/index.d.ts +5 -3
- package/lib/modules/components/annotation-menu/index.js +29 -34
- package/lib/modules/components/apps/index.css +3 -2
- package/lib/modules/components/caption-menu/translation-setting-options.js +2 -2
- package/lib/modules/components/confirm-wrapper/index.css +48 -0
- package/lib/modules/components/confirm-wrapper/index.d.ts +25 -0
- package/lib/modules/components/confirm-wrapper/index.js +87 -0
- package/lib/modules/components/control-bar/index.d.ts +40 -8
- package/lib/modules/components/control-bar/index.js +350 -200
- package/lib/modules/components/device-control/components/audio-menu/index.js +3 -2
- package/lib/modules/components/device-control/components/video-menu/index.js +5 -3
- package/lib/modules/components/device-control/store.base.d.ts +5 -0
- package/lib/modules/components/device-control/store.base.js +17 -1
- package/lib/modules/components/leave-meeting/index.css +21 -0
- package/lib/modules/components/leave-meeting/index.d.ts +0 -2
- package/lib/modules/components/leave-meeting/index.js +63 -103
- package/lib/modules/components/leave-meeting/portal.d.ts +0 -1
- package/lib/modules/components/leave-meeting/portal.js +4 -6
- package/lib/modules/components/leave-meeting/store.base.d.ts +3 -4
- package/lib/modules/components/leave-meeting/store.base.js +49 -55
- package/lib/modules/components/leave-meeting/style.css +0 -1
- package/lib/modules/components/member-window/components/member-actions/components/more-actions.js +2 -1
- package/lib/modules/components/member-window/components/member-actions/provider.js +1 -1
- package/lib/modules/components/member-window/index.d.ts +1 -1
- package/lib/modules/components/member-window/index.js +3 -3
- package/lib/modules/components/security-menu/store.js +7 -9
- package/lib/modules/components/tab-frame/index.css +2 -2
- package/lib/modules/connection-gateway/components/phone/index.js +1 -1
- package/lib/modules/connection-gateway/store.js +6 -8
- package/lib/modules/control-bar/components/annotation-button/index.d.ts +11 -0
- package/lib/modules/control-bar/components/annotation-button/index.js +51 -0
- package/lib/modules/control-bar/components/apps-popover/index.css +3 -0
- package/lib/modules/control-bar/components/apps-popover/index.d.ts +1 -0
- package/lib/modules/control-bar/components/apps-popover/index.js +2 -0
- package/lib/modules/control-bar/components/carmera/index.js +1 -1
- package/lib/modules/control-bar/components/meeting-details/index.js +14 -20
- package/lib/modules/control-bar/components/microphone/index.js +2 -2
- package/lib/modules/control-bar/hooks.js +1 -1
- package/lib/modules/control-bar/index.css +11 -0
- package/lib/modules/control-bar/store.d.ts +20 -5
- package/lib/modules/control-bar/store.js +190 -59
- package/lib/modules/control-bar/view.js +72 -39
- package/lib/modules/device-pretest/audio-preview/microphone-detection.js +3 -9
- package/lib/modules/device-pretest/audio-preview/speaker-detection.js +1 -1
- package/lib/modules/device-pretest/index.js +1 -1
- package/lib/modules/device-pretest/settings/beauty.js +1 -1
- package/lib/modules/device-pretest/settings/video-effect.d.ts +2 -0
- package/lib/modules/device-pretest/settings/video-effect.js +27 -12
- package/lib/modules/device-pretest/settings/video-settings-basic.js +1 -1
- package/lib/modules/device-pretest/settings/virtual-background-setting.js +1 -1
- package/lib/modules/dialog/components/confirm/index.css +0 -18
- package/lib/modules/dialog/components/confirm/index.d.ts +1 -0
- package/lib/modules/dialog/components/confirm/index.js +2 -2
- package/lib/modules/dialog/components/dialog-container/index.css +3 -4
- package/lib/modules/dialog/components/dialog-container/index.d.ts +6 -21
- package/lib/modules/dialog/components/dialog-container/index.js +80 -132
- package/lib/modules/dialog/components/normal-window/index.d.ts +8 -20
- package/lib/modules/dialog/components/normal-window/index.js +14 -34
- package/lib/modules/dialog/dialogConfig/browser.d.ts +12 -0
- package/lib/modules/dialog/dialogConfig/browser.js +11 -0
- package/lib/modules/dialog/dialogConfig/electron.d.ts +4 -0
- package/lib/modules/dialog/dialogConfig/electron.js +15 -0
- package/lib/modules/dialog/dialogs/annotation-mask/index.d.ts +8 -0
- package/lib/modules/dialog/dialogs/annotation-mask/index.js +41 -0
- package/lib/modules/dialog/dialogs/annotation-tool/index.d.ts +5 -4
- package/lib/modules/dialog/dialogs/annotation-tool/index.js +19 -35
- package/lib/modules/dialog/dialogs/caption/index.d.ts +4 -16
- package/lib/modules/dialog/dialogs/caption/index.js +25 -19
- package/lib/modules/dialog/dialogs/chat/index.d.ts +4 -18
- package/lib/modules/dialog/dialogs/chat/index.js +33 -54
- package/lib/modules/dialog/dialogs/confirm/index.css +2 -13
- package/lib/modules/dialog/dialogs/confirm/index.d.ts +2 -17
- package/lib/modules/dialog/dialogs/confirm/index.js +5 -7
- package/lib/modules/dialog/dialogs/confirm-leave-meeting/index.d.ts +5 -16
- package/lib/modules/dialog/dialogs/confirm-leave-meeting/index.js +4 -24
- package/lib/modules/dialog/dialogs/connection-gateway/index.d.ts +4 -20
- package/lib/modules/dialog/dialogs/connection-gateway/index.js +6 -29
- package/lib/modules/dialog/dialogs/control-bar/index.d.ts +2 -16
- package/lib/modules/dialog/dialogs/control-bar/index.js +4 -6
- package/lib/modules/dialog/dialogs/control-bar-leave-meeting/index.d.ts +4 -14
- package/lib/modules/dialog/dialogs/control-bar-leave-meeting/index.js +3 -21
- package/lib/modules/dialog/dialogs/device-setting/index.d.ts +4 -13
- package/lib/modules/dialog/dialogs/device-setting/index.js +4 -20
- package/lib/modules/dialog/dialogs/end-meeting-notice/index.d.ts +8 -0
- package/lib/modules/dialog/dialogs/{end-meeting → end-meeting-notice}/index.js +4 -14
- package/lib/modules/dialog/dialogs/interpreter/index.d.ts +4 -14
- package/lib/modules/dialog/dialogs/interpreter/index.js +33 -24
- package/lib/modules/dialog/dialogs/invite/index.d.ts +4 -18
- package/lib/modules/dialog/dialogs/invite/index.js +25 -24
- package/lib/modules/dialog/dialogs/live-streaming/index.d.ts +4 -8
- package/lib/modules/dialog/dialogs/live-streaming/index.js +7 -11
- package/lib/modules/dialog/dialogs/mute-all/index.d.ts +4 -15
- package/lib/modules/dialog/dialogs/mute-all/index.js +4 -20
- package/lib/modules/dialog/dialogs/participant/index.d.ts +4 -18
- package/lib/modules/dialog/dialogs/participant/index.js +31 -31
- package/lib/modules/dialog/dialogs/rename/index.d.ts +2 -14
- package/lib/modules/dialog/dialogs/rename/index.js +2 -13
- package/lib/modules/dialog/dialogs/sample-dialog/index.d.ts +2 -13
- package/lib/modules/dialog/dialogs/sample-dialog/index.js +2 -2
- package/lib/modules/dialog/dialogs/share-screen-selection/index.d.ts +2 -14
- package/lib/modules/dialog/dialogs/share-screen-selection/index.js +3 -12
- package/lib/modules/dialog/dialogs/sub-window/index.d.ts +2 -17
- package/lib/modules/dialog/dialogs/sub-window/index.js +4 -3
- package/lib/modules/dialog/dialogs/subtitles-history/index.d.ts +4 -19
- package/lib/modules/dialog/dialogs/subtitles-history/index.js +32 -25
- package/lib/modules/dialog/dialogs/system-preference/index.css +3 -2
- package/lib/modules/dialog/dialogs/system-preference/index.d.ts +5 -28
- package/lib/modules/dialog/dialogs/system-preference/index.js +13 -13
- package/lib/modules/dialog/dialogs/toast/index.d.ts +2 -16
- package/lib/modules/dialog/dialogs/toast/index.js +5 -5
- package/lib/modules/dialog/dialogs/video-window/index.d.ts +2 -18
- package/lib/modules/dialog/dialogs/video-window/index.js +4 -4
- package/lib/modules/dialog/dialogs/whiteboard/index.d.ts +2 -18
- package/lib/modules/dialog/dialogs/whiteboard/index.js +2 -2
- package/lib/modules/dialog/dialogs/widget/index.d.ts +4 -14
- package/lib/modules/dialog/dialogs/widget/index.js +22 -26
- package/lib/modules/dialog/index.css +4 -11
- package/lib/modules/dialog/level-config.d.ts +1 -0
- package/lib/modules/dialog/level-config.js +1 -0
- package/lib/modules/dialog/store.base.js +0 -3
- package/lib/modules/dialog/store.electron.d.ts +1 -0
- package/lib/modules/dialog/store.electron.js +16 -9
- package/lib/modules/dialog/type.d.ts +3 -1
- package/lib/modules/dialog/view.js +25 -1
- package/lib/modules/dialog/web-dialog-wrapper.d.ts +3 -0
- package/lib/modules/dialog/web-dialog-wrapper.js +154 -0
- package/lib/modules/event-toast/index.css +5 -2
- package/lib/modules/event-toast/store.browser.js +1 -1
- package/lib/modules/event-toast/store.electron.js +1 -1
- package/lib/modules/interpreter/index.css +1 -2
- package/lib/modules/interpreter/store.js +22 -19
- package/lib/modules/interpreter/utils.js +1 -1
- package/lib/modules/invite/components/pstn-invite.js +5 -5
- package/lib/modules/invite/store.d.ts +2 -2
- package/lib/modules/invite/store.js +1 -1
- package/lib/modules/layout/components/Aside.js +1 -1
- package/lib/modules/layout/components/Carousel.js +1 -1
- package/lib/modules/layout/components/CommonVideoRenderer.js +14 -4
- package/lib/modules/layout/components/Gallery.js +1 -1
- package/lib/modules/layout/index.css +0 -31
- package/lib/modules/layout/store.base.d.ts +9 -15
- package/lib/modules/layout/store.base.js +69 -198
- package/lib/modules/layout/store.browser.d.ts +2 -1
- package/lib/modules/layout/store.browser.js +62 -2
- package/lib/modules/layout/store.electron.d.ts +1 -3
- package/lib/modules/layout/store.electron.js +10 -28
- package/lib/modules/layout/view.js +1 -3
- package/lib/modules/live-streaming/index.dev.js +1 -1
- package/lib/modules/live-streaming/store.js +3 -4
- package/lib/modules/participant/components/confirm-input/index.css +15 -0
- package/lib/modules/participant/components/confirm-input/index.js +10 -13
- package/lib/modules/participant/components/mute-all/index.css +34 -0
- package/lib/modules/participant/components/mute-all/index.d.ts +1 -0
- package/lib/modules/participant/components/mute-all/index.js +21 -15
- package/lib/modules/participant/components/participants/components/footer/components/drop-menu/index.js +16 -2
- package/lib/modules/participant/components/participants/components/footer/components/drop-menu/util.d.ts +2 -1
- package/lib/modules/participant/components/participants/components/footer/components/drop-menu/util.js +3 -1
- package/lib/modules/participant/components/participants/components/render-user/components/attendee/components/microphone-indicator/index.js +3 -2
- package/lib/modules/participant/components/participants/components/render-user/components/user-action/index.js +1 -1
- package/lib/modules/participant/index.css +0 -16
- package/lib/modules/participant/store.base.d.ts +18 -5
- package/lib/modules/participant/store.base.js +219 -127
- package/lib/modules/participant/store.browser.d.ts +2 -1
- package/lib/modules/participant/store.browser.js +2 -2
- package/lib/modules/participant/store.electron.d.ts +2 -1
- package/lib/modules/participant/store.electron.js +2 -2
- package/lib/modules/pc-audio-connect/waiting-scene/index.js +6 -1
- package/lib/modules/phone-audio-connect/store.js +1 -1
- package/lib/modules/phone-audio-connect/view.js +1 -1
- package/lib/modules/secondary-window/index.d.ts +14 -7
- package/lib/modules/secondary-window/index.js +51 -25
- package/lib/modules/secondary-window/store.d.ts +4 -2
- package/lib/modules/secondary-window/store.js +39 -8
- package/lib/modules/secondary-window/type.d.ts +16 -25
- package/lib/modules/secondary-window/type.js +1 -0
- package/lib/modules/secondary-window/view.js +59 -58
- package/lib/modules/setting/audio-settings/audio-settings.js +2 -2
- package/lib/modules/setting/audio-whiteList/audio-device-adaptation.js +2 -2
- package/lib/modules/setting/audio-whiteList/audio-whiteList-manager.js +1 -1
- package/lib/modules/setting/caption_and_transcribing/index.js +1 -1
- package/lib/modules/setting/general-settings/general-settings.js +4 -4
- package/lib/modules/setting/index.css +2 -3
- package/lib/modules/setting/index.d.ts +1 -2
- package/lib/modules/setting/index.js +3 -10
- package/lib/modules/setting/minutes-settings/minutes-settings.js +1 -1
- package/lib/modules/setting/state/index.js +1 -1
- package/lib/modules/setting/storage-settings/storage-settings.js +1 -1
- package/lib/modules/setting/store.base.d.ts +11 -9
- package/lib/modules/setting/store.base.js +103 -88
- package/lib/modules/setting/store.electron.d.ts +2 -1
- package/lib/modules/setting/store.electron.js +19 -1
- package/lib/modules/setting/translate-settings/translate-settings.js +1 -1
- package/lib/modules/setting/type.d.ts +1 -9
- package/lib/modules/setting/video-settings/video-settings-basic.js +1 -1
- package/lib/modules/setting/video-settings/video-settings.js +11 -7
- package/lib/modules/setting/view.js +1 -1
- package/lib/modules/share-screen/components/control-bar/index.js +0 -86
- package/lib/modules/share-screen/components/selection/index.js +3 -1
- package/lib/modules/share-screen/store.base.d.ts +1 -1
- package/lib/modules/share-screen/store.base.js +10 -14
- package/lib/modules/share-screen/store.electron.d.ts +4 -0
- package/lib/modules/share-screen/store.electron.js +108 -34
- package/lib/modules/state-bar/layout-config.js +1 -1
- package/lib/modules/state-bar/live-streaming-state.js +6 -7
- package/lib/modules/state-bar/main-scene/store.browser.js +1 -1
- package/lib/modules/state-bar/main-scene/store.electron.js +1 -1
- package/lib/modules/state-bar/meeting-details.js +14 -21
- package/lib/modules/state-bar/meeting-network-state.css +5 -1
- package/lib/modules/state-bar/meeting-network-state.js +7 -1
- package/lib/modules/state-bar/meeting-time.js +1 -1
- package/lib/modules/state-bar/network-quality.js +1 -1
- package/lib/modules/state-bar/recording.js +1 -1
- package/lib/modules/state-bar/store.base.d.ts +3 -3
- package/lib/modules/state-bar/store.base.js +15 -24
- package/lib/modules/state-bar/view.js +6 -7
- package/lib/modules/subtitles-history/components/list-item.js +6 -1
- package/lib/modules/subtitles-history/index.css +2 -5
- package/lib/modules/subtitles-history/store.base.js +24 -12
- package/lib/modules/subtitles-history/store.electron.js +8 -2
- package/lib/modules/subtitles-history/view.js +7 -5
- package/lib/modules/toast-manager/index.d.ts +8 -0
- package/lib/modules/toast-manager/index.js +58 -0
- package/lib/modules/toast-manager/store.d.ts +28 -0
- package/lib/modules/toast-manager/store.js +391 -0
- package/lib/modules/toast-manager/toast-params.d.ts +7 -0
- package/lib/modules/toast-manager/toast-params.js +89 -0
- package/lib/modules/toast-manager/type.d.ts +112 -0
- package/lib/modules/toast-manager/type.js +337 -0
- package/lib/modules/video-window/store.d.ts +2 -2
- package/lib/modules/video-window/store.js +28 -50
- package/lib/modules/whiteboard/components/control-bar/store.d.ts +0 -1
- package/lib/modules/whiteboard/components/control-bar/store.js +0 -6
- package/lib/modules/whiteboard/components/toolbar/store.d.ts +1 -0
- package/lib/modules/whiteboard/components/toolbar/store.js +25 -14
- package/lib/modules/whiteboard/store.js +10 -9
- package/lib/modules/whiteboard/view.js +0 -1
- package/lib/modules/widget/store.electron.d.ts +0 -4
- package/lib/modules/widget/store.electron.js +3 -38
- package/lib/modules/widget/view.js +1 -1
- package/lib/modules/widget/web-widget.d.ts +1 -1
- package/lib/object-manager.d.ts +2 -0
- package/lib/object-manager.js +2 -0
- package/lib/plugins/multi-lang-plugin.js +1 -1
- package/lib/providers/ability-provider.d.ts +33 -1
- package/lib/providers/ability-provider.js +29 -1
- package/lib/providers/annotation/provider.base.d.ts +39 -0
- package/lib/providers/annotation/provider.base.js +270 -0
- package/lib/providers/annotation/provider.browser.d.ts +3 -0
- package/lib/providers/annotation/provider.browser.js +25 -0
- package/lib/providers/annotation/provider.electron.d.ts +34 -0
- package/lib/providers/annotation/provider.electron.js +231 -0
- package/lib/providers/annotation/standalone-toolbar-control/index.d.ts +26 -0
- package/lib/{fragments/annotation/toolbar/store.js → providers/annotation/standalone-toolbar-control/index.js} +103 -175
- package/lib/providers/annotation/toolbar-control/index.d.ts +31 -0
- package/lib/providers/annotation/toolbar-control/index.js +205 -0
- package/lib/providers/annotation/type.d.ts +64 -21
- package/lib/providers/app-list-provider.d.ts +4 -1
- package/lib/providers/app-list-provider.js +13 -7
- package/lib/providers/board-share/bar-control/base.d.ts +6 -8
- package/lib/providers/board-share/bar-control/base.js +7 -36
- package/lib/providers/board-share/bar-control/browser.d.ts +4 -1
- package/lib/providers/board-share/bar-control/browser.js +76 -3
- package/lib/providers/board-share/bar-control/electron.d.ts +4 -6
- package/lib/providers/board-share/bar-control/electron.js +36 -12
- package/lib/providers/board-share/provider.base.d.ts +11 -8
- package/lib/providers/board-share/provider.base.js +72 -13
- package/lib/providers/board-share/type.d.ts +11 -12
- package/lib/providers/device-privilege-provider.d.ts +5 -4
- package/lib/providers/device-privilege-provider.js +85 -62
- package/lib/providers/device-provider.d.ts +32 -1
- package/lib/providers/device-provider.js +412 -161
- package/lib/providers/device-stream-provider.d.ts +3 -3
- package/lib/providers/device-stream-provider.js +37 -111
- package/lib/providers/dialog/provider.electron.js +6 -1
- package/lib/providers/interpreter-provider.js +5 -5
- package/lib/providers/message/provider.d.ts +3 -1
- package/lib/providers/message/provider.js +12 -0
- package/lib/providers/message/type.d.ts +15 -0
- package/lib/providers/mouse-detect/provider.js +2 -2
- package/lib/providers/mouse-detect/struct.d.ts +2 -1
- package/lib/providers/mouse-detect/struct.js +1 -0
- package/lib/providers/multi-display-provider.d.ts +1 -0
- package/lib/providers/multi-display-provider.js +13 -0
- package/lib/providers/phone-audio-provider.d.ts +15 -0
- package/lib/providers/phone-audio-provider.js +17 -10
- package/lib/providers/privilege-provider.d.ts +15 -15
- package/lib/providers/room-provider/room-provider.d.ts +23 -11
- package/lib/providers/room-provider/room-provider.js +93 -199
- package/lib/providers/room-provider/waiting-room-control-manager.d.ts +2 -2
- package/lib/providers/room-provider/waiting-room-control-manager.js +2 -2
- package/lib/providers/screen-share/provider.base.d.ts +1 -0
- package/lib/providers/screen-share/provider.base.js +6 -1
- package/lib/providers/screen-share/provider.browser.js +13 -9
- package/lib/providers/screen-share/provider.electron.d.ts +1 -1
- package/lib/providers/screen-share/provider.electron.js +54 -44
- package/lib/providers/screen-share/strategy/electron.js +18 -3
- package/lib/providers/screen-share/stream-state-sync.d.ts +1 -1
- package/lib/providers/screen-share/stream-state-sync.js +4 -4
- package/lib/providers/screen-share/type.d.ts +9 -1
- package/lib/providers/session-provider.d.ts +1 -1
- package/lib/providers/stt-provider/stt-provider.d.ts +1 -1
- package/lib/providers/stt-provider/stt-provider.js +40 -77
- package/lib/providers/stt-provider/type.d.ts +5 -3
- package/lib/providers/stt-provider/type.js +4 -2
- package/lib/providers/user-audio-volume-provider.d.ts +47 -0
- package/lib/providers/user-audio-volume-provider.js +319 -0
- package/lib/providers/window/provider.d.ts +1 -1
- package/lib/providers/window/provider.js +23 -12
- package/lib/providers/window/renderer-window.d.ts +8 -2
- package/lib/providers/window/renderer-window.js +118 -33
- package/lib/providers/window/type.d.ts +1 -3
- package/lib/runtime.d.ts +12 -13
- package/lib/scenes/main-scene.js +98 -69
- package/lib/scenes/waiting-scene.js +4 -4
- package/lib/shared-data/member-data.d.ts +0 -9
- package/lib/shared-data/member-data.js +35 -61
- package/lib/shared-data/pin-data.d.ts +3 -2
- package/lib/shared-data/pin-data.js +8 -11
- package/lib/shared-data/setting.js +1 -1
- package/lib/shared-data/user-audio-volume.d.ts +19 -0
- package/lib/shared-data/user-audio-volume.js +104 -0
- package/lib/shared-data/video-window.js +49 -60
- package/lib/translations/enUS.d.ts +10 -0
- package/lib/translations/enUS.js +13 -3
- package/lib/translations/zhCN.d.ts +10 -0
- package/lib/translations/zhCN.js +12 -2
- package/lib/type.d.ts +27 -19
- package/lib/type.js +20 -2
- package/lib/ui-manager.js +1 -1
- package/lib/ui-scene-switch.d.ts +1 -0
- package/lib/ui-scene-switch.js +197 -87
- package/lib/utilities/browser-api.d.ts +0 -1
- package/lib/utilities/browser-api.js +0 -42
- package/lib/utilities/constant.d.ts +4 -4
- package/lib/utilities/constant.js +4 -5
- package/lib/utilities/default-config.d.ts +2 -8
- package/lib/utilities/default-config.js +8 -48
- package/lib/utilities/dialog-utils.js +1 -2
- package/lib/utilities/focus-helper.js +2 -2
- package/lib/utilities/logger.d.ts +1 -2
- package/lib/utilities/logger.js +12 -40
- package/lib/utilities/package-info.d.ts +1 -2
- package/lib/utilities/package-info.js +5 -6
- package/lib/utilities/renderer.d.ts +1 -0
- package/lib/utilities/renderer.js +7 -1
- package/lib/utilities/shared-storage.d.ts +2 -3
- package/lib/utilities/shared-storage.js +15 -11
- package/lib/utilities/tools.d.ts +1 -44
- package/lib/utilities/tools.js +28 -193
- package/lib/utilities/validate-params.js +3 -5
- package/lib-es/base.js +2 -2
- package/lib-es/creator/index.js +28 -12
- package/lib-es/creator/provider-initializer.browser.js +28 -3
- package/lib-es/creator/provider-initializer.electron.js +28 -5
- package/lib-es/electron/app.js +24 -7
- package/lib-es/electron/asar-validation.js +5 -1
- package/lib-es/electron/env.js +1 -1
- package/lib-es/electron/injections.js +22 -17
- package/lib-es/electron/ipc/type.js +1 -0
- package/lib-es/electron/main.js +3 -2
- package/lib-es/electron/plugins/main-window-display.js +16 -0
- package/lib-es/electron/preload.js +3 -2
- package/lib-es/electron/process-manager/index.js +37 -0
- package/lib-es/electron/process-manager/state-manager.js +46 -4
- package/lib-es/electron/sdk-helper.js +4 -0
- package/lib-es/electron/window-proxy/browser-window-proxy-factory.js +38 -0
- package/lib-es/electron/window-proxy/implementations/browser-window-proxy.js +328 -0
- package/lib-es/electron/window-proxy/implementations/electron-event-broadcaster.js +24 -0
- package/lib-es/electron/window-proxy/implementations/electron-ipc-handler.js +19 -0
- package/lib-es/electron/window-proxy/implementations/electron-logger.js +26 -0
- package/lib-es/electron/window-proxy/{main-process-handler.js → implementations/main-process-handler.js} +110 -113
- package/lib-es/electron/window-proxy/interfaces.js +1 -0
- package/lib-es/fragments/annotation/cursor.css +77 -0
- package/lib-es/fragments/annotation/index.js +5 -83
- package/lib-es/fragments/annotation/libs.js +63 -14
- package/lib-es/fragments/annotation/store.js +321 -711
- package/lib-es/fragments/annotation/style.css +5 -6
- package/lib-es/fragments/annotation/view.js +9 -48
- package/lib-es/fragments/base.js +1 -1
- package/lib-es/fragments/whiteboard/libs.js +147 -0
- package/lib-es/fragments/whiteboard/store.js +65 -129
- package/lib-es/modules/action-bar/components/apps/index.js +2 -2
- package/lib-es/modules/action-bar/components/collapse/index.js +8 -3
- package/lib-es/modules/action-bar/components/{confirm-leave-meeting → confirm-end-meeting}/index.js +14 -33
- package/lib-es/modules/action-bar/components/leave/index.js +1 -1
- package/lib-es/modules/action-bar/components/notification-bar/components/interpreter/index.css +6 -0
- package/lib-es/modules/action-bar/components/notification-bar/components/interpreter/index.js +66 -42
- package/lib-es/modules/action-bar/components/notification-bar/components/virtual-image/index.js +11 -7
- package/lib-es/modules/action-bar/components/notification-bar/index.js +13 -71
- package/lib-es/modules/action-bar/components/screen-share/submenu.js +39 -2
- package/lib-es/modules/action-bar/components/trigger-subscribe-language/guide-tooltip/index.css +1 -0
- package/lib-es/modules/action-bar/components/trigger-subscribe-language/guide-tooltip/index.js +11 -8
- package/lib-es/modules/action-bar/index.css +1 -1
- package/lib-es/modules/action-bar/main-scene/index.js +4 -4
- package/lib-es/modules/action-bar/main-scene/store.base.js +165 -94
- package/lib-es/modules/action-bar/type.js +15 -0
- package/lib-es/modules/action-bar/waiting-scene/view.js +1 -1
- package/lib-es/modules/annotation/board-cursor.css +77 -0
- package/lib-es/modules/annotation/components/color-picker/components/color.js +29 -0
- package/lib-es/modules/annotation/components/color-picker/components/panel.js +100 -0
- package/lib-es/modules/annotation/components/color-picker/components/picker.js +67 -0
- package/lib-es/modules/annotation/components/color-picker/index.js +38 -0
- package/lib-es/modules/annotation/components/eraser-picker.js +134 -0
- package/lib-es/modules/annotation/components/expansion/index.js +85 -0
- package/lib-es/modules/annotation/components/extra-tool-picker.js +46 -0
- package/lib-es/modules/annotation/components/history.js +68 -0
- package/lib-es/modules/annotation/components/icons/fold-icon.js +33 -0
- package/lib-es/modules/annotation/components/icons/move-icon.js +59 -0
- package/lib-es/modules/annotation/components/item/index.js +35 -0
- package/lib-es/modules/annotation/components/move-handle.js +127 -0
- package/lib-es/modules/annotation/components/pen-picker.js +142 -0
- package/lib-es/modules/annotation/components/screen-capture-picker.js +77 -0
- package/lib-es/modules/annotation/components/shape-picker.js +193 -0
- package/lib-es/modules/annotation/hooks/index.js +156 -0
- package/lib-es/modules/annotation/index.js +144 -0
- package/lib-es/{fragments/annotation/toolbar → modules/annotation/standalone-toolbar}/components/color-tool/color-panel/index.js +2 -2
- package/lib-es/{fragments/annotation/toolbar → modules/annotation/standalone-toolbar}/components/color-tool/index.js +23 -10
- package/lib-es/{fragments/annotation/toolbar → modules/annotation/standalone-toolbar}/components/graphic-tool/graphic-panel/index.js +2 -3
- package/lib-es/{fragments/annotation/toolbar → modules/annotation/standalone-toolbar}/components/graphic-tool/index.js +23 -10
- package/lib-es/{fragments/annotation/toolbar → modules/annotation/standalone-toolbar}/components/pen-tool/index.js +23 -10
- package/lib-es/{fragments/annotation/toolbar → modules/annotation/standalone-toolbar}/components/pen-tool/pen-panel/index.js +2 -2
- package/lib-es/modules/annotation/standalone-toolbar/components/permission-tool/index.js +44 -0
- package/lib-es/modules/annotation/standalone-toolbar/store.js +611 -0
- package/{lib/fragments/annotation/toolbar → lib-es/modules/annotation/standalone-toolbar}/style.css +4 -1
- package/lib-es/modules/annotation/standalone-toolbar/view.js +186 -0
- package/lib-es/modules/annotation/store.base.js +178 -0
- package/lib-es/modules/annotation/store.browser.js +17 -0
- package/lib-es/modules/annotation/store.electron.js +67 -0
- package/lib-es/modules/annotation/style.css +36 -0
- package/lib-es/modules/annotation/toolbar-store.js +466 -0
- package/lib-es/modules/annotation/type.js +1 -0
- package/lib-es/modules/annotation/view.js +99 -0
- package/lib-es/modules/chat/chat-room-store.js +152 -72
- package/lib-es/modules/chat/components/message-list/index.js +123 -89
- package/lib-es/modules/chat/components/message-list/message-item/index.js +89 -67
- package/lib-es/modules/chat/components/message-list/scroll-bottom-button/index.js +6 -8
- package/lib-es/modules/chat/index.css +1 -9
- package/lib-es/modules/chat/store.js +7 -5
- package/lib-es/modules/chat/view.js +2 -7
- package/lib-es/modules/components/annotation-menu/index.js +28 -33
- package/lib-es/modules/components/apps/index.css +3 -2
- package/lib-es/modules/components/caption-menu/translation-setting-options.js +2 -2
- package/lib-es/modules/components/confirm-wrapper/index.css +48 -0
- package/lib-es/modules/components/confirm-wrapper/index.js +80 -0
- package/lib-es/modules/components/control-bar/index.js +349 -199
- package/lib-es/modules/components/device-control/components/audio-menu/index.js +3 -2
- package/lib-es/modules/components/device-control/components/video-menu/index.js +5 -3
- package/lib-es/modules/components/device-control/store.base.js +17 -1
- package/lib-es/modules/components/leave-meeting/index.css +21 -0
- package/lib-es/modules/components/leave-meeting/index.js +63 -102
- package/lib-es/modules/components/leave-meeting/portal.js +3 -5
- package/lib-es/modules/components/leave-meeting/store.base.js +49 -55
- package/lib-es/modules/components/leave-meeting/style.css +0 -1
- package/lib-es/modules/components/member-window/components/member-actions/components/more-actions.js +2 -1
- package/lib-es/modules/components/member-window/components/member-actions/provider.js +1 -1
- package/lib-es/modules/components/member-window/index.js +3 -3
- package/lib-es/modules/components/security-menu/store.js +7 -9
- package/lib-es/modules/components/tab-frame/index.css +2 -2
- package/lib-es/modules/connection-gateway/components/phone/index.js +1 -1
- package/lib-es/modules/connection-gateway/store.js +6 -8
- package/lib-es/modules/control-bar/components/annotation-button/index.js +43 -0
- package/lib-es/modules/control-bar/components/apps-popover/index.css +3 -0
- package/lib-es/modules/control-bar/components/apps-popover/index.js +2 -0
- package/lib-es/modules/control-bar/components/carmera/index.js +1 -1
- package/lib-es/modules/control-bar/components/meeting-details/index.js +10 -16
- package/lib-es/modules/control-bar/components/microphone/index.js +2 -2
- package/lib-es/modules/control-bar/hooks.js +1 -1
- package/lib-es/modules/control-bar/index.css +11 -0
- package/lib-es/modules/control-bar/store.js +184 -53
- package/lib-es/modules/control-bar/view.js +72 -39
- package/lib-es/modules/device-pretest/audio-preview/microphone-detection.js +4 -10
- package/lib-es/modules/device-pretest/audio-preview/speaker-detection.js +1 -1
- package/lib-es/modules/device-pretest/index.js +1 -1
- package/lib-es/modules/device-pretest/settings/beauty.js +1 -1
- package/lib-es/modules/device-pretest/settings/video-effect.js +27 -12
- package/lib-es/modules/device-pretest/settings/video-settings-basic.js +1 -1
- package/lib-es/modules/device-pretest/settings/virtual-background-setting.js +1 -1
- package/lib-es/modules/dialog/components/confirm/index.css +0 -18
- package/lib-es/modules/dialog/components/confirm/index.js +2 -1
- package/lib-es/modules/dialog/components/dialog-container/index.css +3 -4
- package/lib-es/modules/dialog/components/dialog-container/index.js +80 -126
- package/lib-es/modules/dialog/components/normal-window/index.js +15 -35
- package/lib-es/modules/dialog/dialogConfig/browser.js +4 -0
- package/lib-es/modules/dialog/dialogConfig/electron.js +8 -0
- package/lib-es/modules/dialog/dialogs/annotation-mask/index.js +34 -0
- package/lib-es/modules/dialog/dialogs/annotation-tool/index.js +18 -34
- package/lib-es/modules/dialog/dialogs/caption/index.js +24 -18
- package/lib-es/modules/dialog/dialogs/chat/index.js +32 -53
- package/lib-es/modules/dialog/dialogs/confirm/index.css +2 -13
- package/lib-es/modules/dialog/dialogs/confirm/index.js +4 -6
- package/lib-es/modules/dialog/dialogs/confirm-leave-meeting/index.js +3 -23
- package/lib-es/modules/dialog/dialogs/connection-gateway/index.js +5 -28
- package/lib-es/modules/dialog/dialogs/control-bar/index.js +3 -5
- package/lib-es/modules/dialog/dialogs/control-bar-leave-meeting/index.js +2 -20
- package/lib-es/modules/dialog/dialogs/device-setting/index.js +3 -19
- package/lib-es/modules/dialog/dialogs/{end-meeting → end-meeting-notice}/index.js +3 -13
- package/lib-es/modules/dialog/dialogs/interpreter/index.js +32 -23
- package/lib-es/modules/dialog/dialogs/invite/index.js +24 -23
- package/lib-es/modules/dialog/dialogs/live-streaming/index.js +6 -10
- package/lib-es/modules/dialog/dialogs/mute-all/index.js +3 -19
- package/lib-es/modules/dialog/dialogs/participant/index.js +31 -30
- package/lib-es/modules/dialog/dialogs/rename/index.js +1 -12
- package/lib-es/modules/dialog/dialogs/sample-dialog/index.js +1 -1
- package/lib-es/modules/dialog/dialogs/share-screen-selection/index.js +2 -11
- package/lib-es/modules/dialog/dialogs/sub-window/index.js +3 -2
- package/lib-es/modules/dialog/dialogs/subtitles-history/index.js +31 -24
- package/lib-es/modules/dialog/dialogs/system-preference/index.css +3 -2
- package/lib-es/modules/dialog/dialogs/system-preference/index.js +12 -12
- package/lib-es/modules/dialog/dialogs/toast/index.js +4 -4
- package/lib-es/modules/dialog/dialogs/video-window/index.js +3 -3
- package/lib-es/modules/dialog/dialogs/whiteboard/index.js +1 -1
- package/lib-es/modules/dialog/dialogs/widget/index.js +21 -25
- package/lib-es/modules/dialog/index.css +4 -11
- package/lib-es/modules/dialog/level-config.js +1 -0
- package/lib-es/modules/dialog/store.base.js +0 -3
- package/lib-es/modules/dialog/store.electron.js +16 -9
- package/lib-es/modules/dialog/view.js +25 -1
- package/lib-es/modules/dialog/web-dialog-wrapper.js +147 -0
- package/lib-es/modules/event-toast/index.css +5 -2
- package/lib-es/modules/event-toast/store.browser.js +1 -1
- package/lib-es/modules/event-toast/store.electron.js +1 -1
- package/lib-es/modules/interpreter/index.css +1 -2
- package/lib-es/modules/interpreter/store.js +22 -19
- package/lib-es/modules/interpreter/utils.js +1 -1
- package/lib-es/modules/invite/components/pstn-invite.js +4 -4
- package/lib-es/modules/invite/store.js +1 -1
- package/lib-es/modules/layout/components/Aside.js +1 -1
- package/lib-es/modules/layout/components/Carousel.js +1 -1
- package/lib-es/modules/layout/components/CommonVideoRenderer.js +15 -5
- package/lib-es/modules/layout/components/Gallery.js +1 -1
- package/lib-es/modules/layout/index.css +0 -31
- package/lib-es/modules/layout/store.base.js +71 -200
- package/lib-es/modules/layout/store.browser.js +62 -1
- package/lib-es/modules/layout/store.electron.js +10 -28
- package/lib-es/modules/layout/view.js +1 -3
- package/lib-es/modules/live-streaming/index.dev.js +1 -1
- package/lib-es/modules/live-streaming/store.js +3 -4
- package/lib-es/modules/participant/components/confirm-input/index.css +15 -0
- package/lib-es/modules/participant/components/confirm-input/index.js +10 -13
- package/lib-es/modules/participant/components/mute-all/index.css +34 -0
- package/lib-es/modules/participant/components/mute-all/index.js +21 -15
- package/lib-es/modules/participant/components/participants/components/footer/components/drop-menu/index.js +17 -3
- package/lib-es/modules/participant/components/participants/components/footer/components/drop-menu/util.js +3 -1
- package/lib-es/modules/participant/components/participants/components/render-user/components/attendee/components/microphone-indicator/index.js +3 -2
- package/lib-es/modules/participant/components/participants/components/render-user/components/user-action/index.js +1 -1
- package/lib-es/modules/participant/index.css +0 -16
- package/lib-es/modules/participant/store.base.js +219 -127
- package/lib-es/modules/participant/store.browser.js +2 -2
- package/lib-es/modules/participant/store.electron.js +2 -2
- package/lib-es/modules/pc-audio-connect/waiting-scene/index.js +6 -1
- package/lib-es/modules/phone-audio-connect/store.js +1 -1
- package/lib-es/modules/phone-audio-connect/view.js +1 -1
- package/lib-es/modules/secondary-window/index.js +51 -25
- package/lib-es/modules/secondary-window/store.js +40 -9
- package/lib-es/modules/secondary-window/type.js +1 -0
- package/lib-es/modules/secondary-window/view.js +60 -59
- package/lib-es/modules/setting/audio-settings/audio-settings.js +2 -2
- package/lib-es/modules/setting/audio-whiteList/audio-device-adaptation.js +2 -2
- package/lib-es/modules/setting/audio-whiteList/audio-whiteList-manager.js +1 -1
- package/lib-es/modules/setting/caption_and_transcribing/index.js +1 -1
- package/lib-es/modules/setting/general-settings/general-settings.js +5 -5
- package/lib-es/modules/setting/index.css +2 -3
- package/lib-es/modules/setting/index.js +3 -10
- package/lib-es/modules/setting/minutes-settings/minutes-settings.js +1 -1
- package/lib-es/modules/setting/state/index.js +1 -1
- package/lib-es/modules/setting/storage-settings/storage-settings.js +1 -1
- package/lib-es/modules/setting/store.base.js +103 -88
- package/lib-es/modules/setting/store.electron.js +19 -1
- package/lib-es/modules/setting/translate-settings/translate-settings.js +1 -1
- package/lib-es/modules/setting/video-settings/video-settings-basic.js +1 -1
- package/lib-es/modules/setting/video-settings/video-settings.js +11 -7
- package/lib-es/modules/setting/view.js +1 -1
- package/lib-es/modules/share-screen/components/control-bar/index.js +0 -86
- package/lib-es/modules/share-screen/components/selection/index.js +3 -1
- package/lib-es/modules/share-screen/store.base.js +10 -14
- package/lib-es/modules/share-screen/store.electron.js +109 -35
- package/lib-es/modules/state-bar/layout-config.js +1 -1
- package/lib-es/modules/state-bar/live-streaming-state.js +5 -6
- package/lib-es/modules/state-bar/main-scene/store.browser.js +1 -1
- package/lib-es/modules/state-bar/main-scene/store.electron.js +1 -1
- package/lib-es/modules/state-bar/meeting-details.js +10 -17
- package/lib-es/modules/state-bar/meeting-network-state.css +5 -1
- package/lib-es/modules/state-bar/meeting-network-state.js +7 -1
- package/lib-es/modules/state-bar/meeting-time.js +1 -1
- package/lib-es/modules/state-bar/network-quality.js +1 -1
- package/lib-es/modules/state-bar/recording.js +1 -1
- package/lib-es/modules/state-bar/store.base.js +15 -24
- package/lib-es/modules/state-bar/view.js +5 -6
- package/lib-es/modules/subtitles-history/components/list-item.js +6 -1
- package/lib-es/modules/subtitles-history/index.css +2 -5
- package/lib-es/modules/subtitles-history/store.base.js +24 -12
- package/lib-es/modules/subtitles-history/store.electron.js +8 -2
- package/lib-es/modules/subtitles-history/view.js +7 -5
- package/lib-es/modules/toast-manager/index.js +50 -0
- package/lib-es/modules/toast-manager/store.js +383 -0
- package/lib-es/modules/toast-manager/toast-params.js +82 -0
- package/lib-es/modules/toast-manager/type.js +329 -0
- package/lib-es/modules/video-window/store.js +28 -50
- package/lib-es/modules/whiteboard/components/control-bar/store.js +0 -6
- package/lib-es/modules/whiteboard/components/toolbar/store.js +25 -14
- package/lib-es/modules/whiteboard/store.js +10 -9
- package/lib-es/modules/whiteboard/view.js +0 -1
- package/lib-es/modules/widget/store.electron.js +12 -47
- package/lib-es/modules/widget/view.js +1 -1
- package/lib-es/object-manager.js +2 -0
- package/lib-es/plugins/multi-lang-plugin.js +1 -1
- package/lib-es/providers/ability-provider.js +29 -1
- package/lib-es/providers/annotation/provider.base.js +263 -0
- package/lib-es/providers/annotation/provider.browser.js +17 -0
- package/lib-es/providers/annotation/provider.electron.js +224 -0
- package/lib-es/{fragments/annotation/toolbar/store.js → providers/annotation/standalone-toolbar-control/index.js} +102 -174
- package/lib-es/providers/annotation/toolbar-control/index.js +198 -0
- package/lib-es/providers/app-list-provider.js +13 -7
- package/lib-es/providers/board-share/bar-control/base.js +7 -36
- package/lib-es/providers/board-share/bar-control/browser.js +78 -4
- package/lib-es/providers/board-share/bar-control/electron.js +36 -12
- package/lib-es/providers/board-share/provider.base.js +73 -14
- package/lib-es/providers/device-privilege-provider.js +85 -62
- package/lib-es/providers/device-provider.js +413 -162
- package/lib-es/providers/device-stream-provider.js +37 -111
- package/lib-es/providers/dialog/provider.electron.js +6 -1
- package/lib-es/providers/interpreter-provider.js +5 -5
- package/lib-es/providers/message/provider.js +12 -0
- package/lib-es/providers/mouse-detect/provider.js +1 -1
- package/lib-es/providers/mouse-detect/struct.js +1 -0
- package/lib-es/providers/multi-display-provider.js +15 -2
- package/lib-es/providers/phone-audio-provider.js +17 -10
- package/lib-es/providers/room-provider/room-provider.js +95 -201
- package/lib-es/providers/room-provider/waiting-room-control-manager.js +1 -1
- package/lib-es/providers/screen-share/provider.base.js +6 -1
- package/lib-es/providers/screen-share/provider.browser.js +13 -9
- package/lib-es/providers/screen-share/provider.electron.js +54 -44
- package/lib-es/providers/screen-share/strategy/electron.js +18 -3
- package/lib-es/providers/screen-share/stream-state-sync.js +4 -4
- package/lib-es/providers/stt-provider/stt-provider.js +65 -102
- package/lib-es/providers/stt-provider/type.js +4 -2
- package/lib-es/providers/user-audio-volume-provider.js +312 -0
- package/lib-es/providers/window/provider.js +23 -13
- package/lib-es/providers/window/renderer-window.js +118 -33
- package/lib-es/scenes/main-scene.js +113 -83
- package/lib-es/scenes/waiting-scene.js +5 -5
- package/lib-es/shared-data/member-data.js +35 -61
- package/lib-es/shared-data/pin-data.js +8 -11
- package/lib-es/shared-data/setting.js +1 -1
- package/lib-es/shared-data/user-audio-volume.js +97 -0
- package/lib-es/shared-data/video-window.js +49 -60
- package/lib-es/translations/enUS.js +13 -3
- package/lib-es/translations/zhCN.js +12 -2
- package/lib-es/type.js +19 -1
- package/lib-es/ui-manager.js +1 -1
- package/lib-es/ui-scene-switch.js +199 -88
- package/lib-es/utilities/browser-api.js +0 -40
- package/lib-es/utilities/constant.js +4 -5
- package/lib-es/utilities/default-config.js +8 -48
- package/lib-es/utilities/dialog-utils.js +1 -1
- package/lib-es/utilities/focus-helper.js +1 -1
- package/lib-es/utilities/logger.js +12 -40
- package/lib-es/utilities/package-info.js +5 -6
- package/lib-es/utilities/renderer.js +7 -1
- package/lib-es/utilities/shared-storage.js +16 -12
- package/lib-es/utilities/tools.js +2 -188
- package/lib-es/utilities/validate-params.js +3 -5
- package/package.json +7 -8
- package/public/js/meeting-manager.js +13 -11
- package/lib/electron/window-proxy/browser-window-proxy.js +0 -728
- package/lib/fragments/annotation/toolbar/store.d.ts +0 -64
- package/lib/fragments/annotation/toolbar/view.js +0 -148
- package/lib/fragments/annotation/utils.d.ts +0 -1
- package/lib/fragments/annotation/utils.js +0 -27
- package/lib/modules/dialog/components/dialog-container/component/body.d.ts +0 -20
- package/lib/modules/dialog/components/dialog-container/component/body.js +0 -111
- package/lib/modules/dialog/components/host-area-container/index.d.ts +0 -12
- package/lib/modules/dialog/components/host-area-container/index.js +0 -153
- package/lib/modules/dialog/dialogs/end-meeting/index.d.ts +0 -13
- package/lib/modules/dialog/dialogs/interpreter/index.css +0 -30
- package/lib/modules/dialog/dialogs/mute-all/index.css +0 -20
- package/lib/modules/whiteboard/components/multi-window/index.css +0 -63
- package/lib/modules/whiteboard/components/multi-window/index.d.ts +0 -5
- package/lib/modules/whiteboard/components/multi-window/index.js +0 -39
- package/lib/providers/annotation/provider.d.ts +0 -15
- package/lib/providers/annotation/provider.js +0 -69
- package/lib/utilities/hooks.d.ts +0 -14
- package/lib/utilities/hooks.js +0 -100
- package/lib/utilities/mute-action.d.ts +0 -4
- package/lib/utilities/mute-action.js +0 -48
- package/lib/utilities/platform.d.ts +0 -2
- package/lib/utilities/platform.js +0 -14
- package/lib/utilities/regex.d.ts +0 -1
- package/lib/utilities/regex.js +0 -14
- package/lib/utilities/useNamespace.d.ts +0 -15
- package/lib/utilities/useNamespace.js +0 -66
- package/lib-es/electron/window-proxy/browser-window-proxy.js +0 -720
- package/lib-es/fragments/annotation/toolbar/view.js +0 -140
- package/lib-es/fragments/annotation/utils.js +0 -20
- package/lib-es/modules/dialog/components/dialog-container/component/body.js +0 -103
- package/lib-es/modules/dialog/components/host-area-container/index.js +0 -146
- package/lib-es/modules/dialog/dialogs/interpreter/index.css +0 -30
- package/lib-es/modules/dialog/dialogs/mute-all/index.css +0 -20
- package/lib-es/modules/whiteboard/components/multi-window/index.css +0 -63
- package/lib-es/modules/whiteboard/components/multi-window/index.js +0 -31
- package/lib-es/providers/annotation/provider.js +0 -61
- package/lib-es/utilities/hooks.js +0 -82
- package/lib-es/utilities/mute-action.js +0 -41
- package/lib-es/utilities/platform.js +0 -7
- package/lib-es/utilities/regex.js +0 -7
- package/lib-es/utilities/useNamespace.js +0 -59
- /package/lib/{fragments/annotation/toolbar → modules/annotation/standalone-toolbar}/components/color-tool/color-panel/index.d.ts +0 -0
- /package/lib/{fragments/annotation/toolbar → modules/annotation/standalone-toolbar}/components/color-tool/index.d.ts +0 -0
- /package/lib/{fragments/annotation/toolbar → modules/annotation/standalone-toolbar}/components/graphic-tool/graphic-panel/index.d.ts +0 -0
- /package/lib/{fragments/annotation/toolbar → modules/annotation/standalone-toolbar}/components/graphic-tool/graphic-panel/libs.d.ts +0 -0
- /package/lib/{fragments/annotation/toolbar → modules/annotation/standalone-toolbar}/components/graphic-tool/graphic-panel/libs.js +0 -0
- /package/lib/{fragments/annotation/toolbar → modules/annotation/standalone-toolbar}/components/graphic-tool/index.d.ts +0 -0
- /package/lib/{fragments/annotation/toolbar → modules/annotation/standalone-toolbar}/components/item/item.d.ts +0 -0
- /package/lib/{fragments/annotation/toolbar → modules/annotation/standalone-toolbar}/components/item/item.js +0 -0
- /package/lib/{fragments/annotation/toolbar → modules/annotation/standalone-toolbar}/components/item/style.css +0 -0
- /package/lib/{fragments/annotation/toolbar → modules/annotation/standalone-toolbar}/components/panel/index.d.ts +0 -0
- /package/lib/{fragments/annotation/toolbar → modules/annotation/standalone-toolbar}/components/panel/index.js +0 -0
- /package/lib/{fragments/annotation/toolbar → modules/annotation/standalone-toolbar}/components/panel/style.css +0 -0
- /package/lib/{fragments/annotation/toolbar → modules/annotation/standalone-toolbar}/components/pen-tool/index.d.ts +0 -0
- /package/lib/{fragments/annotation/toolbar → modules/annotation/standalone-toolbar}/components/pen-tool/pen-panel/index.d.ts +0 -0
- /package/lib/{fragments/annotation/toolbar → modules/annotation/standalone-toolbar}/components/tips/index.d.ts +0 -0
- /package/lib/{fragments/annotation/toolbar → modules/annotation/standalone-toolbar}/components/tips/index.js +0 -0
- /package/lib/{fragments/annotation/toolbar → modules/annotation/standalone-toolbar}/components/tips/style.css +0 -0
- /package/lib/{fragments/annotation/toolbar → modules/annotation/standalone-toolbar}/view.d.ts +0 -0
- /package/lib-es/{fragments/annotation/toolbar → modules/annotation/standalone-toolbar}/components/graphic-tool/graphic-panel/libs.js +0 -0
- /package/lib-es/{fragments/annotation/toolbar → modules/annotation/standalone-toolbar}/components/item/item.js +0 -0
- /package/lib-es/{fragments/annotation/toolbar → modules/annotation/standalone-toolbar}/components/item/style.css +0 -0
- /package/lib-es/{fragments/annotation/toolbar → modules/annotation/standalone-toolbar}/components/panel/index.js +0 -0
- /package/lib-es/{fragments/annotation/toolbar → modules/annotation/standalone-toolbar}/components/panel/style.css +0 -0
- /package/lib-es/{fragments/annotation/toolbar → modules/annotation/standalone-toolbar}/components/tips/index.js +0 -0
- /package/lib-es/{fragments/annotation/toolbar → modules/annotation/standalone-toolbar}/components/tips/style.css +0 -0
package/lib/scenes/main-scene.js
CHANGED
|
@@ -26,7 +26,6 @@ var _possibleConstructorReturn2 = _interopRequireDefault(require("@babel/runtime
|
|
|
26
26
|
var _getPrototypeOf2 = _interopRequireDefault(require("@babel/runtime/helpers/getPrototypeOf"));
|
|
27
27
|
var _inherits2 = _interopRequireDefault(require("@babel/runtime/helpers/inherits"));
|
|
28
28
|
var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
|
|
29
|
-
var _i18n = require("agora-ui-foundation/lib/i18n");
|
|
30
29
|
var _reactDom = _interopRequireDefault(require("react-dom"));
|
|
31
30
|
var _mainScene = require("../modules/action-bar/main-scene");
|
|
32
31
|
var _audioStream = require("../modules/audio-stream");
|
|
@@ -43,6 +42,8 @@ var _participant = require("../modules/dialog/dialogs/participant");
|
|
|
43
42
|
var _systemPreference = require("../modules/dialog/dialogs/system-preference");
|
|
44
43
|
var _whiteboard = require("../modules/dialog/dialogs/whiteboard");
|
|
45
44
|
var _videoWindow = require("../modules/dialog/dialogs/video-window");
|
|
45
|
+
var _annotationMask = require("../modules/dialog/dialogs/annotation-mask");
|
|
46
|
+
var _annotationTool = require("../modules/dialog/dialogs/annotation-tool");
|
|
46
47
|
var _interpreter2 = require("../modules/interpreter");
|
|
47
48
|
var _invite2 = require("../modules/invite");
|
|
48
49
|
var _layout = require("../modules/layout");
|
|
@@ -67,7 +68,7 @@ var _widget = require("../modules/dialog/dialogs/widget");
|
|
|
67
68
|
var _widget2 = require("../modules/widget");
|
|
68
69
|
var _rename = require("../modules/dialog/dialogs/rename");
|
|
69
70
|
var _confirmLeaveMeeting = require("../modules/dialog/dialogs/confirm-leave-meeting");
|
|
70
|
-
var
|
|
71
|
+
var _endMeetingNotice = require("../modules/dialog/dialogs/end-meeting-notice");
|
|
71
72
|
var _subWindow = require("../modules/dialog/dialogs/sub-window");
|
|
72
73
|
var _secondaryWindow = require("../modules/secondary-window");
|
|
73
74
|
var _objectManager = require("../object-manager");
|
|
@@ -78,9 +79,11 @@ var _muteAll = require("../modules/dialog/dialogs/mute-all");
|
|
|
78
79
|
var _controlBarLeaveMeeting = require("../modules/dialog/dialogs/control-bar-leave-meeting");
|
|
79
80
|
var _caption = require("../modules/caption");
|
|
80
81
|
var _subtitlesHistory2 = require("../modules/dialog/dialogs/subtitles-history");
|
|
81
|
-
var _platform = require("../utilities/platform");
|
|
82
82
|
var _env = require("agora-foundation/lib/utilities/env");
|
|
83
83
|
var _caption2 = require("../modules/dialog/dialogs/caption");
|
|
84
|
+
var _annotation = require("../modules/annotation");
|
|
85
|
+
var _type4 = require("../modules/toast-manager/type");
|
|
86
|
+
var _toastManager = require("../modules/toast-manager");
|
|
84
87
|
var _jsxRuntime = require("react/jsx-runtime");
|
|
85
88
|
function _callSuper(t, o, e) { return o = (0, _getPrototypeOf2["default"])(o), (0, _possibleConstructorReturn2["default"])(t, _isNativeReflectConstruct() ? Reflect.construct(o, e || [], (0, _getPrototypeOf2["default"])(t).constructor) : o.apply(t, e)); }
|
|
86
89
|
function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); }
|
|
@@ -149,16 +152,16 @@ var FcrMainUIScene = exports.FcrMainUIScene = /*#__PURE__*/function (_FcrBaseUIS
|
|
|
149
152
|
_this._windowObserver = {
|
|
150
153
|
onWindowCreated: function onWindowCreated(dialogKey, _, window) {
|
|
151
154
|
if (dialogKey === _constant.FcrUIDialogKey.SHARE_SCREEN_SELECTION) {
|
|
152
|
-
window.setAlwaysOnTop(true, (0,
|
|
153
|
-
if ((0,
|
|
155
|
+
window.setAlwaysOnTop(true, (0, _env.isMac)() ? 'floating' : 'normal');
|
|
156
|
+
if ((0, _env.isMac)()) {
|
|
154
157
|
window.setVisibleOnAllWorkspaces(true, {
|
|
155
158
|
visibleOnFullScreen: true
|
|
156
159
|
});
|
|
157
160
|
}
|
|
158
161
|
}
|
|
159
|
-
if (dialogKey === _constant.FcrUIDialogKey.
|
|
160
|
-
window.setAlwaysOnTop(true, (0,
|
|
161
|
-
if ((0,
|
|
162
|
+
if (dialogKey === _constant.FcrUIDialogKey.CONFIRM_END_MEETING) {
|
|
163
|
+
window.setAlwaysOnTop(true, (0, _env.isMac)() ? 'floating' : 'normal');
|
|
164
|
+
if ((0, _env.isMac)()) {
|
|
162
165
|
window.setVisibleOnAllWorkspaces(true, {
|
|
163
166
|
visibleOnFullScreen: true
|
|
164
167
|
});
|
|
@@ -185,6 +188,7 @@ var FcrMainUIScene = exports.FcrMainUIScene = /*#__PURE__*/function (_FcrBaseUIS
|
|
|
185
188
|
var whiteBoradUIModule = new _whiteboard2.FcrWhiteboardUIModule(this);
|
|
186
189
|
var actionBarUIModule = new _mainScene.ActionBarMainSceneUIModule(this);
|
|
187
190
|
var controlbarUIModule = new _controlBar.ControlBarUIModule(this);
|
|
191
|
+
var annotationUIModule = new _annotation.AnnotationUIModule(this);
|
|
188
192
|
var layoutModule = new _layout.LayoutUIModule(this);
|
|
189
193
|
var captionUIModule = new _caption.CaptionUIModule(this);
|
|
190
194
|
var eventNotificationUIModule = new _notification.NotificationUIModule(this);
|
|
@@ -194,6 +198,7 @@ var FcrMainUIScene = exports.FcrMainUIScene = /*#__PURE__*/function (_FcrBaseUIS
|
|
|
194
198
|
var phoneAudioConnection = new _phoneAudioConnect.PhoneAudioConnectionUIModule(this);
|
|
195
199
|
var webWidgetUIModule = new _widget2.WebWidgetUIModule(this);
|
|
196
200
|
var displayDistributionModule = new _secondaryWindow.FcrUISecondaryWindowModule(this);
|
|
201
|
+
var toastManagerUIModule = new _toastManager.ToastManagerUIModule(this);
|
|
197
202
|
var localVideoRenderProvider = this.objectManager.getObject(_objectManager.FcrUIObjectKeys.P_LOCAL_VIDEO_RENDER_PROVIDER);
|
|
198
203
|
var remoteVideoRenderProvider = this.objectManager.getObject(_objectManager.FcrUIObjectKeys.P_REMOTE_VIDEO_RENDER_PROVIDER);
|
|
199
204
|
var dialogProvider = this.objectManager.getObject(_objectManager.FcrUIObjectKeys.P_DIALOG_PROVIDER);
|
|
@@ -218,6 +223,8 @@ var FcrMainUIScene = exports.FcrMainUIScene = /*#__PURE__*/function (_FcrBaseUIS
|
|
|
218
223
|
this.addSubNode(webWidgetUIModule);
|
|
219
224
|
this.addSubNode(displayDistributionModule);
|
|
220
225
|
this.addSubNode(captionUIModule);
|
|
226
|
+
this.addSubNode(annotationUIModule);
|
|
227
|
+
this.addSubNode(toastManagerUIModule);
|
|
221
228
|
// add dialogs
|
|
222
229
|
dialogProvider.addDialogs([{
|
|
223
230
|
key: _constant.FcrUIDialogKey.INTERPRETER,
|
|
@@ -232,7 +239,8 @@ var FcrMainUIScene = exports.FcrMainUIScene = /*#__PURE__*/function (_FcrBaseUIS
|
|
|
232
239
|
children: interpreterUIModule.getComponent()
|
|
233
240
|
}, dialogId);
|
|
234
241
|
},
|
|
235
|
-
|
|
242
|
+
electronWindowConfig: _interpreter.electronWindowConfig,
|
|
243
|
+
webDialogConfig: _interpreter.webDialogConfig
|
|
236
244
|
}, {
|
|
237
245
|
key: _constant.FcrUIDialogKey.WIDGET,
|
|
238
246
|
component: function component(_ref4) {
|
|
@@ -246,7 +254,7 @@ var FcrMainUIScene = exports.FcrMainUIScene = /*#__PURE__*/function (_FcrBaseUIS
|
|
|
246
254
|
children: webWidgetUIModule.getComponent(params)
|
|
247
255
|
}, dialogId);
|
|
248
256
|
},
|
|
249
|
-
|
|
257
|
+
electronWindowConfig: _widget.electronWindowConfig
|
|
250
258
|
}, {
|
|
251
259
|
key: _constant.FcrUIDialogKey.PARTICIPANT,
|
|
252
260
|
component: function component(_ref5) {
|
|
@@ -262,7 +270,8 @@ var FcrMainUIScene = exports.FcrMainUIScene = /*#__PURE__*/function (_FcrBaseUIS
|
|
|
262
270
|
children: participantsModule.getComponent()
|
|
263
271
|
}, dialogId);
|
|
264
272
|
},
|
|
265
|
-
|
|
273
|
+
electronWindowConfig: _participant.electronWindowConfig,
|
|
274
|
+
webDialogConfig: _participant.webDialogConfig
|
|
266
275
|
}, {
|
|
267
276
|
key: _constant.FcrUIDialogKey.SUBTITLES_HISTORY,
|
|
268
277
|
component: function component(_ref6) {
|
|
@@ -278,7 +287,8 @@ var FcrMainUIScene = exports.FcrMainUIScene = /*#__PURE__*/function (_FcrBaseUIS
|
|
|
278
287
|
children: subtitlesHistoryModule.getComponent()
|
|
279
288
|
}, dialogId);
|
|
280
289
|
},
|
|
281
|
-
|
|
290
|
+
electronWindowConfig: _subtitlesHistory2.electronWindowConfig,
|
|
291
|
+
webDialogConfig: _subtitlesHistory2.webDialogConfig
|
|
282
292
|
}, {
|
|
283
293
|
key: _constant.FcrUIDialogKey.CAPTION,
|
|
284
294
|
component: function component(_ref7) {
|
|
@@ -295,7 +305,7 @@ var FcrMainUIScene = exports.FcrMainUIScene = /*#__PURE__*/function (_FcrBaseUIS
|
|
|
295
305
|
children: captionUIModule.getComponent()
|
|
296
306
|
}, dialogId);
|
|
297
307
|
},
|
|
298
|
-
|
|
308
|
+
electronWindowConfig: _caption2.electronWindowConfig
|
|
299
309
|
}, {
|
|
300
310
|
key: _constant.FcrUIDialogKey.LIVE_STREAMING,
|
|
301
311
|
component: function component(_ref8) {
|
|
@@ -309,7 +319,7 @@ var FcrMainUIScene = exports.FcrMainUIScene = /*#__PURE__*/function (_FcrBaseUIS
|
|
|
309
319
|
children: liveStreamingUIModule.getComponent()
|
|
310
320
|
}, dialogId);
|
|
311
321
|
},
|
|
312
|
-
|
|
322
|
+
electronWindowConfig: _liveStreaming.electronWindowConfig
|
|
313
323
|
}, {
|
|
314
324
|
key: _constant.FcrUIDialogKey.INVITE,
|
|
315
325
|
component: function component(_ref9) {
|
|
@@ -325,7 +335,7 @@ var FcrMainUIScene = exports.FcrMainUIScene = /*#__PURE__*/function (_FcrBaseUIS
|
|
|
325
335
|
})
|
|
326
336
|
}, dialogId);
|
|
327
337
|
},
|
|
328
|
-
|
|
338
|
+
electronWindowConfig: _invite.electronWindowConfig
|
|
329
339
|
}, {
|
|
330
340
|
key: _constant.FcrUIDialogKey.CHAT,
|
|
331
341
|
component: function component(_ref0) {
|
|
@@ -344,7 +354,8 @@ var FcrMainUIScene = exports.FcrMainUIScene = /*#__PURE__*/function (_FcrBaseUIS
|
|
|
344
354
|
})
|
|
345
355
|
}, dialogId);
|
|
346
356
|
},
|
|
347
|
-
|
|
357
|
+
electronWindowConfig: _chat2.electronWindowConfig,
|
|
358
|
+
webDialogConfig: _chat2.webDialogConfig
|
|
348
359
|
}, {
|
|
349
360
|
key: _constant.FcrUIDialogKey.VIDEO_WINDOW,
|
|
350
361
|
component: function component(_ref1) {
|
|
@@ -358,7 +369,7 @@ var FcrMainUIScene = exports.FcrMainUIScene = /*#__PURE__*/function (_FcrBaseUIS
|
|
|
358
369
|
children: videoWindowModule.getComponent()
|
|
359
370
|
}, dialogId);
|
|
360
371
|
},
|
|
361
|
-
|
|
372
|
+
electronWindowConfig: _videoWindow.electronWindowConfig
|
|
362
373
|
}, {
|
|
363
374
|
key: _constant.FcrUIDialogKey.CONNECTION_GATEWAY,
|
|
364
375
|
component: function component(_ref10) {
|
|
@@ -375,7 +386,8 @@ var FcrMainUIScene = exports.FcrMainUIScene = /*#__PURE__*/function (_FcrBaseUIS
|
|
|
375
386
|
})
|
|
376
387
|
}, dialogId);
|
|
377
388
|
},
|
|
378
|
-
|
|
389
|
+
electronWindowConfig: _connectionGateway.electronWindowConfig,
|
|
390
|
+
webDialogConfig: _connectionGateway.webDialogConfig
|
|
379
391
|
}, {
|
|
380
392
|
key: _constant.FcrUIDialogKey.WHITEBOARD,
|
|
381
393
|
component: function component(_ref11) {
|
|
@@ -388,7 +400,7 @@ var FcrMainUIScene = exports.FcrMainUIScene = /*#__PURE__*/function (_FcrBaseUIS
|
|
|
388
400
|
params: params
|
|
389
401
|
}, dialogId);
|
|
390
402
|
},
|
|
391
|
-
|
|
403
|
+
electronWindowConfig: {}
|
|
392
404
|
}, {
|
|
393
405
|
key: _constant.FcrUIDialogKey.SHARE_SCREEN_SELECTION,
|
|
394
406
|
component: function component(_ref12) {
|
|
@@ -402,7 +414,7 @@ var FcrMainUIScene = exports.FcrMainUIScene = /*#__PURE__*/function (_FcrBaseUIS
|
|
|
402
414
|
children: shareScreenModule.getSelectionComponent()
|
|
403
415
|
}, dialogId);
|
|
404
416
|
},
|
|
405
|
-
|
|
417
|
+
electronWindowConfig: _shareScreenSelection.electronWindowConfig
|
|
406
418
|
}, {
|
|
407
419
|
key: _constant.FcrUIDialogKey.SHARE_SCREEN_CONTROL_BAR,
|
|
408
420
|
component: function component(_ref13) {
|
|
@@ -416,116 +428,132 @@ var FcrMainUIScene = exports.FcrMainUIScene = /*#__PURE__*/function (_FcrBaseUIS
|
|
|
416
428
|
children: controlbarUIModule.getComponent()
|
|
417
429
|
}, dialogId);
|
|
418
430
|
},
|
|
419
|
-
|
|
431
|
+
electronWindowConfig: _controlBar2.electronWindowConfig
|
|
420
432
|
}, {
|
|
421
|
-
key: _constant.FcrUIDialogKey.
|
|
433
|
+
key: _constant.FcrUIDialogKey.RENAME,
|
|
422
434
|
component: function component(_ref14) {
|
|
423
435
|
var dialogKey = _ref14.dialogKey,
|
|
424
436
|
dialogId = _ref14.dialogId,
|
|
425
437
|
params = _ref14.params;
|
|
426
|
-
return /*#__PURE__*/(0, _jsxRuntime.jsx)(
|
|
438
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_rename.RenameDialog, {
|
|
427
439
|
dialogKey: dialogKey,
|
|
428
440
|
dialogId: dialogId,
|
|
429
|
-
params: params
|
|
441
|
+
params: params,
|
|
442
|
+
children: participantsModule.getRenameDialogContent()
|
|
430
443
|
}, dialogId);
|
|
431
444
|
},
|
|
432
|
-
|
|
445
|
+
electronWindowConfig: _rename.electronWindowConfig
|
|
433
446
|
}, {
|
|
434
|
-
key: _constant.FcrUIDialogKey.
|
|
447
|
+
key: _constant.FcrUIDialogKey.CONFIRM_END_MEETING,
|
|
435
448
|
component: function component(_ref15) {
|
|
436
449
|
var dialogKey = _ref15.dialogKey,
|
|
437
450
|
dialogId = _ref15.dialogId,
|
|
438
451
|
params = _ref15.params;
|
|
439
|
-
return /*#__PURE__*/(0, _jsxRuntime.jsx)(
|
|
452
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_confirmLeaveMeeting.ConfirmEndMeetingDialog, {
|
|
440
453
|
dialogKey: dialogKey,
|
|
441
454
|
dialogId: dialogId,
|
|
442
455
|
params: params,
|
|
443
|
-
children:
|
|
456
|
+
children: actionBarUIModule.getConfirmEndMeetingComponent(dialogId)
|
|
444
457
|
}, dialogId);
|
|
445
458
|
},
|
|
446
|
-
|
|
459
|
+
electronWindowConfig: _confirmLeaveMeeting.electronWindowConfig
|
|
447
460
|
}, {
|
|
448
|
-
key: _constant.FcrUIDialogKey.
|
|
461
|
+
key: _constant.FcrUIDialogKey.EXIT_MEETING_NOTICE,
|
|
449
462
|
component: function component(_ref16) {
|
|
450
463
|
var dialogKey = _ref16.dialogKey,
|
|
451
464
|
dialogId = _ref16.dialogId,
|
|
452
465
|
params = _ref16.params;
|
|
453
|
-
return /*#__PURE__*/(0, _jsxRuntime.jsx)(
|
|
466
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_endMeetingNotice.ExitMeetingNoticeDialog, {
|
|
454
467
|
dialogKey: dialogKey,
|
|
455
468
|
dialogId: dialogId,
|
|
456
|
-
params: params
|
|
457
|
-
children: actionBarUIModule.getConfirmLeaveMeetingComponent(dialogId)
|
|
469
|
+
params: params
|
|
458
470
|
}, dialogId);
|
|
459
471
|
},
|
|
460
|
-
|
|
472
|
+
electronWindowConfig: _endMeetingNotice.electronWindowConfig
|
|
461
473
|
}, {
|
|
462
|
-
key: _constant.FcrUIDialogKey.
|
|
474
|
+
key: _constant.FcrUIDialogKey.SUB_WINDOW,
|
|
463
475
|
component: function component(_ref17) {
|
|
464
476
|
var dialogKey = _ref17.dialogKey,
|
|
465
477
|
dialogId = _ref17.dialogId,
|
|
466
478
|
params = _ref17.params;
|
|
467
|
-
return /*#__PURE__*/(0, _jsxRuntime.jsx)(
|
|
479
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_subWindow.SubWindowDialog, {
|
|
468
480
|
dialogKey: dialogKey,
|
|
469
481
|
dialogId: dialogId,
|
|
470
|
-
params: params
|
|
482
|
+
params: params,
|
|
483
|
+
children: displayDistributionModule.component(shareScreenModule)
|
|
471
484
|
}, dialogId);
|
|
472
485
|
},
|
|
473
|
-
|
|
486
|
+
electronWindowConfig: _subWindow.electronWindowConfig
|
|
474
487
|
}, {
|
|
475
|
-
key: _constant.FcrUIDialogKey.
|
|
488
|
+
key: _constant.FcrUIDialogKey.REVOKE_HOST,
|
|
476
489
|
component: function component(_ref18) {
|
|
477
490
|
var dialogKey = _ref18.dialogKey,
|
|
478
491
|
dialogId = _ref18.dialogId,
|
|
479
492
|
params = _ref18.params;
|
|
480
|
-
return /*#__PURE__*/(0, _jsxRuntime.jsx)(
|
|
493
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_systemPreference.SystemPreferenceDialog, {
|
|
481
494
|
dialogKey: dialogKey,
|
|
482
495
|
dialogId: dialogId,
|
|
483
|
-
params: params
|
|
484
|
-
children: displayDistributionModule.component(shareScreenModule)
|
|
496
|
+
params: params
|
|
485
497
|
}, dialogId);
|
|
486
498
|
},
|
|
487
|
-
|
|
499
|
+
electronWindowConfig: _systemPreference.electronRevokeHostWindowConfig,
|
|
500
|
+
webDialogConfig: _systemPreference.webRevokeHostWindowConfig
|
|
488
501
|
}, {
|
|
489
|
-
key: _constant.FcrUIDialogKey.
|
|
502
|
+
key: _constant.FcrUIDialogKey.MUTE_ALL,
|
|
490
503
|
component: function component(_ref19) {
|
|
491
504
|
var dialogKey = _ref19.dialogKey,
|
|
492
505
|
dialogId = _ref19.dialogId,
|
|
493
506
|
params = _ref19.params;
|
|
494
|
-
return /*#__PURE__*/(0, _jsxRuntime.jsx)(
|
|
507
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_muteAll.MuteAllDialog, {
|
|
495
508
|
dialogKey: dialogKey,
|
|
496
509
|
dialogId: dialogId,
|
|
497
|
-
params: params
|
|
510
|
+
params: params,
|
|
511
|
+
children: participantsModule.getMuteAllDialogContent()
|
|
498
512
|
}, dialogId);
|
|
499
513
|
},
|
|
500
|
-
|
|
514
|
+
electronWindowConfig: _muteAll.electronWindowConfig
|
|
501
515
|
}, {
|
|
502
|
-
key: _constant.FcrUIDialogKey.
|
|
516
|
+
key: _constant.FcrUIDialogKey.CONTROL_BAR_LEAVE_MEETING,
|
|
503
517
|
component: function component(_ref20) {
|
|
504
518
|
var dialogKey = _ref20.dialogKey,
|
|
505
519
|
dialogId = _ref20.dialogId,
|
|
506
520
|
params = _ref20.params;
|
|
507
|
-
return /*#__PURE__*/(0, _jsxRuntime.jsx)(
|
|
521
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_controlBarLeaveMeeting.ControlBarLeaveMeetingDialog, {
|
|
508
522
|
dialogKey: dialogKey,
|
|
509
523
|
dialogId: dialogId,
|
|
510
524
|
params: params,
|
|
511
|
-
children:
|
|
525
|
+
children: controlbarUIModule.getLeaveMeetingComponent()
|
|
512
526
|
}, dialogId);
|
|
513
527
|
},
|
|
514
|
-
|
|
528
|
+
electronWindowConfig: _controlBarLeaveMeeting.electronWindowConfig
|
|
515
529
|
}, {
|
|
516
|
-
key: _constant.FcrUIDialogKey.
|
|
530
|
+
key: _constant.FcrUIDialogKey.ANNOTATION_MASK,
|
|
517
531
|
component: function component(_ref21) {
|
|
518
532
|
var dialogKey = _ref21.dialogKey,
|
|
519
533
|
dialogId = _ref21.dialogId,
|
|
520
534
|
params = _ref21.params;
|
|
521
|
-
return /*#__PURE__*/(0, _jsxRuntime.jsx)(
|
|
535
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_annotationMask.AnnotationMask, {
|
|
522
536
|
dialogKey: dialogKey,
|
|
523
537
|
dialogId: dialogId,
|
|
524
538
|
params: params,
|
|
525
|
-
children:
|
|
539
|
+
children: annotationUIModule.getBoardComponent()
|
|
540
|
+
}, dialogId);
|
|
541
|
+
},
|
|
542
|
+
electronWindowConfig: _annotationMask.electronWindowConfig
|
|
543
|
+
}, {
|
|
544
|
+
key: _constant.FcrUIDialogKey.ANNOTATION_TOOLBAR,
|
|
545
|
+
component: function component(_ref22) {
|
|
546
|
+
var dialogKey = _ref22.dialogKey,
|
|
547
|
+
dialogId = _ref22.dialogId,
|
|
548
|
+
params = _ref22.params;
|
|
549
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_annotationTool.AnnotationTool, {
|
|
550
|
+
dialogKey: dialogKey,
|
|
551
|
+
dialogId: dialogId,
|
|
552
|
+
params: params,
|
|
553
|
+
children: annotationUIModule.getBoardToolComponent()
|
|
526
554
|
}, dialogId);
|
|
527
555
|
},
|
|
528
|
-
|
|
556
|
+
electronWindowConfig: _annotationTool.electronWindowConfig
|
|
529
557
|
}]);
|
|
530
558
|
var getView = function getView() {
|
|
531
559
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_videoTrackRenderContext.FcrVideoTrackRenderContext.Provider, {
|
|
@@ -550,7 +578,8 @@ var FcrMainUIScene = exports.FcrMainUIScene = /*#__PURE__*/function (_FcrBaseUIS
|
|
|
550
578
|
subtitles: captionUIModule.getDraggableComponent(),
|
|
551
579
|
layers: _this2.renderLayers([eventNotificationUIModule.getComponent(), shareScreenModule.getComponent()]),
|
|
552
580
|
whiteboard: whiteBoradUIModule.getComponent(),
|
|
553
|
-
screenShareControl: shareScreenModule.getControlComponent()
|
|
581
|
+
screenShareControl: shareScreenModule.getControlComponent(),
|
|
582
|
+
annotation: annotationUIModule.getComponent()
|
|
554
583
|
})
|
|
555
584
|
}), 'mainroom')
|
|
556
585
|
});
|
|
@@ -563,7 +592,7 @@ var FcrMainUIScene = exports.FcrMainUIScene = /*#__PURE__*/function (_FcrBaseUIS
|
|
|
563
592
|
var dialogProvider = this.objectManager.getObject(_objectManager.FcrUIObjectKeys.P_DIALOG_PROVIDER);
|
|
564
593
|
|
|
565
594
|
// add dialogs
|
|
566
|
-
dialogProvider.removeDialogs([_constant.FcrUIDialogKey.INTERPRETER, _constant.FcrUIDialogKey.WIDGET, _constant.FcrUIDialogKey.PARTICIPANT, _constant.FcrUIDialogKey.LIVE_STREAMING, _constant.FcrUIDialogKey.INVITE, _constant.FcrUIDialogKey.CHAT, _constant.FcrUIDialogKey.VIDEO_WINDOW, _constant.FcrUIDialogKey.CONNECTION_GATEWAY, _constant.FcrUIDialogKey.WHITEBOARD, _constant.FcrUIDialogKey.SHARE_SCREEN_SELECTION, _constant.FcrUIDialogKey.SHARE_SCREEN_CONTROL_BAR, _constant.FcrUIDialogKey.
|
|
595
|
+
dialogProvider.removeDialogs([_constant.FcrUIDialogKey.INTERPRETER, _constant.FcrUIDialogKey.WIDGET, _constant.FcrUIDialogKey.PARTICIPANT, _constant.FcrUIDialogKey.LIVE_STREAMING, _constant.FcrUIDialogKey.INVITE, _constant.FcrUIDialogKey.CHAT, _constant.FcrUIDialogKey.VIDEO_WINDOW, _constant.FcrUIDialogKey.CONNECTION_GATEWAY, _constant.FcrUIDialogKey.WHITEBOARD, _constant.FcrUIDialogKey.SHARE_SCREEN_SELECTION, _constant.FcrUIDialogKey.SHARE_SCREEN_CONTROL_BAR, _constant.FcrUIDialogKey.RENAME, _constant.FcrUIDialogKey.CONFIRM_END_MEETING, _constant.FcrUIDialogKey.EXIT_MEETING_NOTICE, _constant.FcrUIDialogKey.SUB_WINDOW, _constant.FcrUIDialogKey.SUBTITLES_HISTORY, _constant.FcrUIDialogKey.CAPTION, _constant.FcrUIDialogKey.ANNOTATION_MASK, _constant.FcrUIDialogKey.ANNOTATION_TOOLBAR]);
|
|
567
596
|
_reactDom["default"].unmountComponentAtNode(dom);
|
|
568
597
|
}
|
|
569
598
|
}, {
|
|
@@ -611,10 +640,9 @@ var FcrMainUIScene = exports.FcrMainUIScene = /*#__PURE__*/function (_FcrBaseUIS
|
|
|
611
640
|
media: media,
|
|
612
641
|
setting: setting
|
|
613
642
|
}));
|
|
614
|
-
showToast = function showToast(
|
|
615
|
-
messageProvider.
|
|
616
|
-
|
|
617
|
-
message: content
|
|
643
|
+
showToast = function showToast(key) {
|
|
644
|
+
messageProvider.showToastByKey({
|
|
645
|
+
key: key
|
|
618
646
|
});
|
|
619
647
|
};
|
|
620
648
|
allowJoinWithCloseVideo = privilegeProvider.isJoinWithMutedVideoEnabled();
|
|
@@ -625,13 +653,13 @@ var FcrMainUIScene = exports.FcrMainUIScene = /*#__PURE__*/function (_FcrBaseUIS
|
|
|
625
653
|
if (deviceProvider.ifNeedExecuteOpenCamera()) {
|
|
626
654
|
isJoinWithCloseVideo = allowJoinWithCloseVideo && !hasOpenCameraPrivilege;
|
|
627
655
|
if (isJoinWithCloseVideo) {
|
|
628
|
-
showToast(
|
|
656
|
+
showToast(_type4.FcrUIToastKey.FMT_ATTENDIES_TOAST_HOST_TURNED_OFF_VIDEO);
|
|
629
657
|
}
|
|
630
658
|
deviceProvider.setCameraEnabled(hasOpenCameraPrivilege);
|
|
631
659
|
} else {
|
|
632
660
|
if (deviceProvider.cameraEnabled) {
|
|
633
661
|
if (allowJoinWithCloseVideo) {
|
|
634
|
-
showToast(
|
|
662
|
+
showToast(_type4.FcrUIToastKey.FMT_ATTENDIES_TOAST_HOST_TURNED_OFF_VIDEO);
|
|
635
663
|
deviceProvider.setCameraEnabled(hasOpenCameraPrivilege);
|
|
636
664
|
}
|
|
637
665
|
}
|
|
@@ -644,13 +672,13 @@ var FcrMainUIScene = exports.FcrMainUIScene = /*#__PURE__*/function (_FcrBaseUIS
|
|
|
644
672
|
if (deviceProvider.ifNeedExecuteAutoConnectAudio()) {
|
|
645
673
|
isJoinWithMuteAudio = allowJoinWithMuteAudio && !hasOpenMicrophonePrivilege && deviceProvider.shouldEnableMicBeforeSession;
|
|
646
674
|
if (isJoinWithMuteAudio) {
|
|
647
|
-
showToast(
|
|
675
|
+
showToast(_type4.FcrUIToastKey.FMT_ATTENDIES_TOAST_HOST_ENABLED_MUTE);
|
|
648
676
|
}
|
|
649
677
|
deviceProvider.connectAudio(hasOpenMicrophonePrivilege);
|
|
650
678
|
} else {
|
|
651
679
|
if (deviceProvider.microphoneEnabled) {
|
|
652
680
|
if (allowJoinWithMuteAudio) {
|
|
653
|
-
showToast(
|
|
681
|
+
showToast(_type4.FcrUIToastKey.FMT_ATTENDIES_TOAST_HOST_ENABLED_MUTE);
|
|
654
682
|
deviceProvider.setMicrophoneEnabled(hasOpenMicrophonePrivilege);
|
|
655
683
|
}
|
|
656
684
|
}
|
|
@@ -689,15 +717,16 @@ var FcrMainUIScene = exports.FcrMainUIScene = /*#__PURE__*/function (_FcrBaseUIS
|
|
|
689
717
|
dialogProvider.closeDialog(_constant.FcrUIDialogKey.CONNECTION_GATEWAY);
|
|
690
718
|
dialogProvider.closeDialog(_constant.FcrUIDialogKey.SHARE_SCREEN_SELECTION);
|
|
691
719
|
dialogProvider.closeDialog(_constant.FcrUIDialogKey.SHARE_SCREEN_CONTROL_BAR);
|
|
692
|
-
dialogProvider.closeDialog(_constant.FcrUIDialogKey.SYSTEM_PREFERENCE);
|
|
693
720
|
dialogProvider.closeDialog(_constant.FcrUIDialogKey.RENAME);
|
|
694
|
-
dialogProvider.closeDialog(_constant.FcrUIDialogKey.
|
|
695
|
-
dialogProvider.closeDialog(_constant.FcrUIDialogKey.
|
|
721
|
+
dialogProvider.closeDialog(_constant.FcrUIDialogKey.CONFIRM_END_MEETING);
|
|
722
|
+
dialogProvider.closeDialog(_constant.FcrUIDialogKey.EXIT_MEETING_NOTICE);
|
|
696
723
|
dialogProvider.closeDialog(_constant.FcrUIDialogKey.SUB_WINDOW);
|
|
697
724
|
dialogProvider.closeDialog(_constant.FcrUIDialogKey.REVOKE_HOST);
|
|
698
725
|
dialogProvider.closeDialog(_constant.FcrUIDialogKey.MUTE_ALL);
|
|
699
726
|
dialogProvider.closeDialog(_constant.FcrUIDialogKey.CONTROL_BAR_LEAVE_MEETING);
|
|
700
|
-
dialogProvider.closeDialog(_constant.FcrUIDialogKey.
|
|
727
|
+
dialogProvider.closeDialog(_constant.FcrUIDialogKey.EXIT_MEETING_NOTICE);
|
|
728
|
+
dialogProvider.closeDialog(_constant.FcrUIDialogKey.ANNOTATION_MASK);
|
|
729
|
+
dialogProvider.closeDialog(_constant.FcrUIDialogKey.ANNOTATION_TOOLBAR);
|
|
701
730
|
dialogProvider.closeAllConfirms();
|
|
702
731
|
}
|
|
703
732
|
}]);
|
|
@@ -25,7 +25,7 @@ var _constant = require("../utilities/constant");
|
|
|
25
25
|
var _base = require("../base");
|
|
26
26
|
var _waitingScene2 = require("../modules/pc-audio-connect/waiting-scene");
|
|
27
27
|
var _misc = require("agora-foundation/lib/utilities/misc");
|
|
28
|
-
var
|
|
28
|
+
var _endMeetingNotice = require("../modules/dialog/dialogs/end-meeting-notice");
|
|
29
29
|
var _objectManager = require("../object-manager");
|
|
30
30
|
var _logger = require("../utilities/logger");
|
|
31
31
|
var _waitingScene3 = require("../modules/state-bar/waiting-scene");
|
|
@@ -73,14 +73,14 @@ var FcrWaitingUIScene = exports.FcrWaitingUIScene = /*#__PURE__*/function (_FcrB
|
|
|
73
73
|
children: pcAudioConnectionModule.getComponent()
|
|
74
74
|
}, dialogId);
|
|
75
75
|
},
|
|
76
|
-
|
|
76
|
+
electronWindowConfig: _connectionGateway.electronWindowConfig
|
|
77
77
|
}, {
|
|
78
|
-
key: _constant.FcrUIDialogKey.
|
|
78
|
+
key: _constant.FcrUIDialogKey.EXIT_MEETING_NOTICE,
|
|
79
79
|
component: function component(_ref2) {
|
|
80
80
|
var dialogKey = _ref2.dialogKey,
|
|
81
81
|
dialogId = _ref2.dialogId,
|
|
82
82
|
params = _ref2.params;
|
|
83
|
-
return /*#__PURE__*/(0, _jsxRuntime.jsx)(
|
|
83
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_endMeetingNotice.ExitMeetingNoticeDialog, {
|
|
84
84
|
dialogKey: dialogKey,
|
|
85
85
|
dialogId: dialogId,
|
|
86
86
|
params: params
|
|
@@ -58,12 +58,6 @@ export interface FcrUISharedMemberDataSource {
|
|
|
58
58
|
* @returns 主房间参与者列表,元素类型为 FcrUserInfo。
|
|
59
59
|
*/
|
|
60
60
|
get memberUserInfoList(): FcrUserInfo[];
|
|
61
|
-
/**
|
|
62
|
-
* 获取音频音量映射。
|
|
63
|
-
* 键为用户 ID,值为对应的音频音量。
|
|
64
|
-
* @returns 音频音量映射,类型为 Map<string, number>。
|
|
65
|
-
*/
|
|
66
|
-
get audioVolumeMap(): Map<string, number>;
|
|
67
61
|
/**
|
|
68
62
|
* 获取共享屏幕视频的宽高。
|
|
69
63
|
* @returns 共享屏幕视频的宽高,类型为 FcrRemoteVideoStats['dimensions'] | null。
|
|
@@ -84,7 +78,6 @@ export declare class FcrUISharedMemberDataSourceImpl implements FcrUISharedMembe
|
|
|
84
78
|
protected logger: import("agora-foundation/lib/logger").Logger;
|
|
85
79
|
private _dataSource;
|
|
86
80
|
private _disposers;
|
|
87
|
-
private accessor _audioVolumeMap;
|
|
88
81
|
private accessor _isLocalUserInPstn;
|
|
89
82
|
private accessor _interpreterInputLanguageList;
|
|
90
83
|
private accessor _localUser;
|
|
@@ -99,7 +92,6 @@ export declare class FcrUISharedMemberDataSourceImpl implements FcrUISharedMembe
|
|
|
99
92
|
userId: string;
|
|
100
93
|
language: FcrLanguage;
|
|
101
94
|
}[];
|
|
102
|
-
get audioVolumeMap(): Map<string, number>;
|
|
103
95
|
get localUser(): FcrUserInfo;
|
|
104
96
|
get localUserRole(): FcrUserRole;
|
|
105
97
|
get localUserRoleString(): "participant" | "host" | "cohost" | "audience" | "observer" | "robot";
|
|
@@ -117,7 +109,6 @@ export declare class FcrUISharedMemberDataSourceImpl implements FcrUISharedMembe
|
|
|
117
109
|
private _initUserList;
|
|
118
110
|
private _handleUserInfoUpdated;
|
|
119
111
|
private _syncParticipants;
|
|
120
|
-
private _onAudioVolumeUpdated;
|
|
121
112
|
private _handleRemoteUserJoined;
|
|
122
113
|
private _handleRemoteUserLeft;
|
|
123
114
|
private _handleStreamsAdded;
|