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
|
@@ -115,9 +115,10 @@ var _operateWaitingroomMember = require("./components/operate-waitingroom-member
|
|
|
115
115
|
var _confirmInput = require("./components/confirm-input");
|
|
116
116
|
var _struct = require("./struct");
|
|
117
117
|
var _i18n2 = require("../../hooks/i18n");
|
|
118
|
+
var _type6 = require("../../modules/toast-manager/type");
|
|
118
119
|
var _jsxRuntime = require("react/jsx-runtime");
|
|
119
120
|
var _ParticipantStoreBase;
|
|
120
|
-
var _initProto, _init__isChecked, _init__participantsWindowActive, _init_enableParticipantsJoinWithMute, _init_searchText, _init_currentModal, _init_mergeConfirmDialog, _init_mergeUserId, _init_activeTab, _init_interpreterInputLanguageList, _init_newName, _init_allowUnmute, _init_joinWithMuteAudio, _init_showBecomeHostButton, _init__userCount, _setCurrentModalDecs, _setParticipantsWindowActiveDecs, _handlerSearchUserDecs, _openRemoveAdmitWaitingRoomDialogDecs, _setAllowUnmuteDecs, _setAllowJoinWithMuteAudioDecs, _openMuteAllDialogDecs, _handlerRoomControlActionDecs, _moveToMainRoomByUserIdsDecs, _kickOutWaitingRoomAllMemberDecs, _moveToMainRoomAllMemberDecs, _removeWaitingRoomUserDecs, _handleUserCountUpdatedDecs, _handleConfirmChangeNameDecs, _handleCancelChangeNameDecs, _closeChangeNameDialogDecs, _getOutputLanguageDecs, _handlerUserActionDecs, _handleActiveTabDecs, _moveToWaitingRoomByUserIdDecs, _kickOutUserDecs, _onPeerSessionReceivedDecs, _ref;
|
|
121
|
+
var _initProto, _init__renamingUserName, _init__isChecked, _init__participantsWindowActive, _init_enableParticipantsJoinWithMute, _init_searchText, _init_currentModal, _init_mergeConfirmDialog, _init_mergeUserId, _init_activeTab, _init_interpreterInputLanguageList, _init_newName, _init_allowUnmute, _init_joinWithMuteAudio, _init_showBecomeHostButton, _init__userCount, _setCurrentModalDecs, _setParticipantsWindowActiveDecs, _handlerSearchUserDecs, _openRemoveAdmitWaitingRoomDialogDecs, _setAllowUnmuteDecs, _setAllowJoinWithMuteAudioDecs, _openMuteAllDialogDecs, _handlerRoomControlActionDecs, _moveToMainRoomByUserIdsDecs, _kickOutWaitingRoomAllMemberDecs, _moveToMainRoomAllMemberDecs, _removeWaitingRoomUserDecs, _handleUserCountUpdatedDecs, _handleConfirmChangeNameDecs, _handleCancelChangeNameDecs, _closeChangeNameDialogDecs, _getOutputLanguageDecs, _handlerUserActionDecs, _handleActiveTabDecs, _moveToWaitingRoomByUserIdDecs, _kickOutUserDecs, _onPeerSessionReceivedDecs, _ref;
|
|
121
122
|
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; }
|
|
122
123
|
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; }
|
|
123
124
|
function _classPrivateFieldInitSpec(e, t, a) { _checkPrivateRedeclaration(e, t), t.set(e, a); }
|
|
@@ -144,6 +145,7 @@ var _K = /*#__PURE__*/new WeakMap();
|
|
|
144
145
|
var _L = /*#__PURE__*/new WeakMap();
|
|
145
146
|
var _M = /*#__PURE__*/new WeakMap();
|
|
146
147
|
var _N = /*#__PURE__*/new WeakMap();
|
|
148
|
+
var _O = /*#__PURE__*/new WeakMap();
|
|
147
149
|
_ref = (_setCurrentModalDecs = [_mobx.action, _mobx.action.bound], _setParticipantsWindowActiveDecs = [_mobx.action, _mobx.action.bound], _handlerSearchUserDecs = [_mobx.action, _mobx.action.bound], _openRemoveAdmitWaitingRoomDialogDecs = [_mobx.action, _mobx.action.bound], _setAllowUnmuteDecs = [_mobx.action, _mobx.action.bound], _setAllowJoinWithMuteAudioDecs = [_mobx.action, _mobx.action.bound], _openMuteAllDialogDecs = [_mobx.action, _mobx.action.bound], _handlerRoomControlActionDecs = [_mobx.action, _mobx.action.bound], _moveToMainRoomByUserIdsDecs = [_mobx.action, _mobx.action.bound], _kickOutWaitingRoomAllMemberDecs = [_mobx.action, _mobx.action.bound], _moveToMainRoomAllMemberDecs = [_mobx.action, _mobx.action.bound], _removeWaitingRoomUserDecs = [_mobx.action, _mobx.action.bound], _handleUserCountUpdatedDecs = [_mobx.action, _mobx.action.bound], _handleConfirmChangeNameDecs = [_mobx.action, _mobx.action.bound], _handleCancelChangeNameDecs = [_mobx.action, _mobx.action.bound], _closeChangeNameDialogDecs = [_mobx.action, _mobx.action.bound], _getOutputLanguageDecs = [_mobx.action, _mobx.action.bound], _handlerUserActionDecs = [_mobx.action, _mobx.action.bound], _handleActiveTabDecs = [_mobx.action, _mobx.action.bound], _moveToWaitingRoomByUserIdDecs = [_mobx.action, _mobx.action.bound], _kickOutUserDecs = [_mobx.action, _mobx.action.bound], _onPeerSessionReceivedDecs = [_mobx.action, _mobx.action.bound], "logger");
|
|
148
150
|
var ParticipantStoreBase = exports.ParticipantStoreBase = /*#__PURE__*/function () {
|
|
149
151
|
// #endregion
|
|
@@ -202,21 +204,21 @@ var ParticipantStoreBase = exports.ParticipantStoreBase = /*#__PURE__*/function
|
|
|
202
204
|
}
|
|
203
205
|
});
|
|
204
206
|
(0, _defineProperty2["default"])(this, "_renamingUserId", '');
|
|
205
|
-
(
|
|
206
|
-
_classPrivateFieldInitSpec(this,
|
|
207
|
-
_classPrivateFieldInitSpec(this,
|
|
208
|
-
_classPrivateFieldInitSpec(this,
|
|
209
|
-
_classPrivateFieldInitSpec(this,
|
|
210
|
-
_classPrivateFieldInitSpec(this,
|
|
211
|
-
_classPrivateFieldInitSpec(this,
|
|
212
|
-
_classPrivateFieldInitSpec(this,
|
|
213
|
-
_classPrivateFieldInitSpec(this,
|
|
214
|
-
_classPrivateFieldInitSpec(this,
|
|
215
|
-
_classPrivateFieldInitSpec(this,
|
|
216
|
-
_classPrivateFieldInitSpec(this,
|
|
217
|
-
_classPrivateFieldInitSpec(this,
|
|
218
|
-
_classPrivateFieldInitSpec(this,
|
|
219
|
-
_classPrivateFieldInitSpec(this,
|
|
207
|
+
_classPrivateFieldInitSpec(this, _A, _init__renamingUserName(this, ''));
|
|
208
|
+
_classPrivateFieldInitSpec(this, _B, _init__isChecked(this, {}));
|
|
209
|
+
_classPrivateFieldInitSpec(this, _C, _init__participantsWindowActive(this, false));
|
|
210
|
+
_classPrivateFieldInitSpec(this, _D, _init_enableParticipantsJoinWithMute(this, false));
|
|
211
|
+
_classPrivateFieldInitSpec(this, _E, _init_searchText(this, ''));
|
|
212
|
+
_classPrivateFieldInitSpec(this, _F, _init_currentModal(this, 'modal'));
|
|
213
|
+
_classPrivateFieldInitSpec(this, _G, _init_mergeConfirmDialog(this, false));
|
|
214
|
+
_classPrivateFieldInitSpec(this, _H, _init_mergeUserId(this, ''));
|
|
215
|
+
_classPrivateFieldInitSpec(this, _I, _init_activeTab(this, _type5.FcrUIRoomType.MAIN_ROOM));
|
|
216
|
+
_classPrivateFieldInitSpec(this, _J, _init_interpreterInputLanguageList(this, []));
|
|
217
|
+
_classPrivateFieldInitSpec(this, _K, _init_newName(this, ''));
|
|
218
|
+
_classPrivateFieldInitSpec(this, _L, _init_allowUnmute(this, false));
|
|
219
|
+
_classPrivateFieldInitSpec(this, _M, _init_joinWithMuteAudio(this, false));
|
|
220
|
+
_classPrivateFieldInitSpec(this, _N, _init_showBecomeHostButton(this, false));
|
|
221
|
+
_classPrivateFieldInitSpec(this, _O, _init__userCount(this, 0));
|
|
220
222
|
(0, _defineProperty2["default"])(this, "allowedOperations", (0, _mobxUtils.computedFn)(function (userId, userRole) {
|
|
221
223
|
return _this.getAllowedOperations(userRole, userId === _this.localUser.userId);
|
|
222
224
|
}));
|
|
@@ -275,6 +277,7 @@ var ParticipantStoreBase = exports.ParticipantStoreBase = /*#__PURE__*/function
|
|
|
275
277
|
this._abilityProvider = objectManager.getObject(_objectManager.FcrUIObjectKeys.P_ABILITY_PROVIDER);
|
|
276
278
|
this._eventProvider = objectManager.getObject(_objectManager.FcrUIObjectKeys.P_EVENT_PROVIDER);
|
|
277
279
|
this._screenShareProvider = objectManager.getObject(_objectManager.FcrUIObjectKeys.P_SCREEN_SHARE_PROVIDER);
|
|
280
|
+
this._userAudioVolumeProvider = objectManager.getObject(_objectManager.FcrUIObjectKeys.P_USER_AUDIO_VOLUME_PROVIDER);
|
|
278
281
|
this._userCount = this._userControl.getAllUserCount();
|
|
279
282
|
|
|
280
283
|
// Get shared data sources
|
|
@@ -284,6 +287,7 @@ var ParticipantStoreBase = exports.ParticipantStoreBase = /*#__PURE__*/function
|
|
|
284
287
|
this._sharedWaitingRoomDataSource = objectManager.getObject(_objectManager.FcrUIObjectKeys.S_SHARED_WAITING_ROOM_DATA_SOURCE);
|
|
285
288
|
this._sharedInterpreterDataSource = objectManager.getObject(_objectManager.FcrUIObjectKeys.S_SHARED_INTERPRETER_DATA_SOURCE);
|
|
286
289
|
this._sharedMemberDataSource = objectManager.getObject(_objectManager.FcrUIObjectKeys.S_SHARED_MEMBER_DATA_SOURCE);
|
|
290
|
+
this._sharedUserAudioVolumeDataSource = objectManager.getObject(_objectManager.FcrUIObjectKeys.S_SHARED_USER_AUDIO_VOLUME_DATA_SOURCE);
|
|
287
291
|
this._sharedChatDataSource = objectManager.getObject(_objectManager.FcrUIObjectKeys.S_SHARED_CHAT_DATA_SOURCE);
|
|
288
292
|
this._sharedSettingDataSource = objectManager.getObject(_objectManager.FcrUIObjectKeys.S_SHARED_SETTING_DATA_SOURCE);
|
|
289
293
|
this._sharedSecurityDataSource = objectManager.getObject(_objectManager.FcrUIObjectKeys.S_SHARED_SECURITY_DATA_SOURCE);
|
|
@@ -316,7 +320,7 @@ var ParticipantStoreBase = exports.ParticipantStoreBase = /*#__PURE__*/function
|
|
|
316
320
|
this._setupWaitingRoomUserCountListener();
|
|
317
321
|
}
|
|
318
322
|
return (0, _createClass2["default"])(ParticipantStoreBase, [{
|
|
319
|
-
key: "
|
|
323
|
+
key: "_renamingUserName",
|
|
320
324
|
get: function get() {
|
|
321
325
|
return _classPrivateFieldGet(_A, this);
|
|
322
326
|
},
|
|
@@ -324,7 +328,7 @@ var ParticipantStoreBase = exports.ParticipantStoreBase = /*#__PURE__*/function
|
|
|
324
328
|
_classPrivateFieldSet(_A, this, v);
|
|
325
329
|
}
|
|
326
330
|
}, {
|
|
327
|
-
key: "
|
|
331
|
+
key: "_isChecked",
|
|
328
332
|
get: function get() {
|
|
329
333
|
return _classPrivateFieldGet(_B, this);
|
|
330
334
|
},
|
|
@@ -332,7 +336,7 @@ var ParticipantStoreBase = exports.ParticipantStoreBase = /*#__PURE__*/function
|
|
|
332
336
|
_classPrivateFieldSet(_B, this, v);
|
|
333
337
|
}
|
|
334
338
|
}, {
|
|
335
|
-
key: "
|
|
339
|
+
key: "_participantsWindowActive",
|
|
336
340
|
get: function get() {
|
|
337
341
|
return _classPrivateFieldGet(_C, this);
|
|
338
342
|
},
|
|
@@ -340,7 +344,7 @@ var ParticipantStoreBase = exports.ParticipantStoreBase = /*#__PURE__*/function
|
|
|
340
344
|
_classPrivateFieldSet(_C, this, v);
|
|
341
345
|
}
|
|
342
346
|
}, {
|
|
343
|
-
key: "
|
|
347
|
+
key: "enableParticipantsJoinWithMute",
|
|
344
348
|
get: function get() {
|
|
345
349
|
return _classPrivateFieldGet(_D, this);
|
|
346
350
|
},
|
|
@@ -348,7 +352,7 @@ var ParticipantStoreBase = exports.ParticipantStoreBase = /*#__PURE__*/function
|
|
|
348
352
|
_classPrivateFieldSet(_D, this, v);
|
|
349
353
|
}
|
|
350
354
|
}, {
|
|
351
|
-
key: "
|
|
355
|
+
key: "searchText",
|
|
352
356
|
get: function get() {
|
|
353
357
|
return _classPrivateFieldGet(_E, this);
|
|
354
358
|
},
|
|
@@ -356,7 +360,7 @@ var ParticipantStoreBase = exports.ParticipantStoreBase = /*#__PURE__*/function
|
|
|
356
360
|
_classPrivateFieldSet(_E, this, v);
|
|
357
361
|
}
|
|
358
362
|
}, {
|
|
359
|
-
key: "
|
|
363
|
+
key: "currentModal",
|
|
360
364
|
get: function get() {
|
|
361
365
|
return _classPrivateFieldGet(_F, this);
|
|
362
366
|
},
|
|
@@ -364,7 +368,7 @@ var ParticipantStoreBase = exports.ParticipantStoreBase = /*#__PURE__*/function
|
|
|
364
368
|
_classPrivateFieldSet(_F, this, v);
|
|
365
369
|
}
|
|
366
370
|
}, {
|
|
367
|
-
key: "
|
|
371
|
+
key: "mergeConfirmDialog",
|
|
368
372
|
get: function get() {
|
|
369
373
|
return _classPrivateFieldGet(_G, this);
|
|
370
374
|
},
|
|
@@ -372,7 +376,7 @@ var ParticipantStoreBase = exports.ParticipantStoreBase = /*#__PURE__*/function
|
|
|
372
376
|
_classPrivateFieldSet(_G, this, v);
|
|
373
377
|
}
|
|
374
378
|
}, {
|
|
375
|
-
key: "
|
|
379
|
+
key: "mergeUserId",
|
|
376
380
|
get: function get() {
|
|
377
381
|
return _classPrivateFieldGet(_H, this);
|
|
378
382
|
},
|
|
@@ -380,7 +384,7 @@ var ParticipantStoreBase = exports.ParticipantStoreBase = /*#__PURE__*/function
|
|
|
380
384
|
_classPrivateFieldSet(_H, this, v);
|
|
381
385
|
}
|
|
382
386
|
}, {
|
|
383
|
-
key: "
|
|
387
|
+
key: "activeTab",
|
|
384
388
|
get: function get() {
|
|
385
389
|
return _classPrivateFieldGet(_I, this);
|
|
386
390
|
},
|
|
@@ -388,7 +392,7 @@ var ParticipantStoreBase = exports.ParticipantStoreBase = /*#__PURE__*/function
|
|
|
388
392
|
_classPrivateFieldSet(_I, this, v);
|
|
389
393
|
}
|
|
390
394
|
}, {
|
|
391
|
-
key: "
|
|
395
|
+
key: "interpreterInputLanguageList",
|
|
392
396
|
get: function get() {
|
|
393
397
|
return _classPrivateFieldGet(_J, this);
|
|
394
398
|
},
|
|
@@ -396,7 +400,7 @@ var ParticipantStoreBase = exports.ParticipantStoreBase = /*#__PURE__*/function
|
|
|
396
400
|
_classPrivateFieldSet(_J, this, v);
|
|
397
401
|
}
|
|
398
402
|
}, {
|
|
399
|
-
key: "
|
|
403
|
+
key: "newName",
|
|
400
404
|
get: function get() {
|
|
401
405
|
return _classPrivateFieldGet(_K, this);
|
|
402
406
|
},
|
|
@@ -404,7 +408,7 @@ var ParticipantStoreBase = exports.ParticipantStoreBase = /*#__PURE__*/function
|
|
|
404
408
|
_classPrivateFieldSet(_K, this, v);
|
|
405
409
|
}
|
|
406
410
|
}, {
|
|
407
|
-
key: "
|
|
411
|
+
key: "allowUnmute",
|
|
408
412
|
get: function get() {
|
|
409
413
|
return _classPrivateFieldGet(_L, this);
|
|
410
414
|
},
|
|
@@ -412,21 +416,29 @@ var ParticipantStoreBase = exports.ParticipantStoreBase = /*#__PURE__*/function
|
|
|
412
416
|
_classPrivateFieldSet(_L, this, v);
|
|
413
417
|
}
|
|
414
418
|
}, {
|
|
415
|
-
key: "
|
|
419
|
+
key: "joinWithMuteAudio",
|
|
416
420
|
get: function get() {
|
|
417
421
|
return _classPrivateFieldGet(_M, this);
|
|
418
422
|
},
|
|
419
423
|
set: function set(v) {
|
|
420
424
|
_classPrivateFieldSet(_M, this, v);
|
|
421
425
|
}
|
|
426
|
+
}, {
|
|
427
|
+
key: "showBecomeHostButton",
|
|
428
|
+
get: function get() {
|
|
429
|
+
return _classPrivateFieldGet(_N, this);
|
|
430
|
+
},
|
|
431
|
+
set: function set(v) {
|
|
432
|
+
_classPrivateFieldSet(_N, this, v);
|
|
433
|
+
}
|
|
422
434
|
}, {
|
|
423
435
|
key: "_userCount",
|
|
424
436
|
get: // #region getters
|
|
425
437
|
function get() {
|
|
426
|
-
return _classPrivateFieldGet(
|
|
438
|
+
return _classPrivateFieldGet(_O, this);
|
|
427
439
|
},
|
|
428
440
|
set: function set(v) {
|
|
429
|
-
_classPrivateFieldSet(
|
|
441
|
+
_classPrivateFieldSet(_O, this, v);
|
|
430
442
|
}
|
|
431
443
|
}, {
|
|
432
444
|
key: "renamingUserName",
|
|
@@ -436,7 +448,12 @@ var ParticipantStoreBase = exports.ParticipantStoreBase = /*#__PURE__*/function
|
|
|
436
448
|
}, {
|
|
437
449
|
key: "audioVolumeMap",
|
|
438
450
|
get: function get() {
|
|
439
|
-
return this.
|
|
451
|
+
return this._sharedUserAudioVolumeDataSource.audioVolumeMap;
|
|
452
|
+
}
|
|
453
|
+
}, {
|
|
454
|
+
key: "userIdToAudioStreamIdMap",
|
|
455
|
+
get: function get() {
|
|
456
|
+
return this._userAudioVolumeProvider.userIdToAudioStreamIdMap;
|
|
440
457
|
}
|
|
441
458
|
}, {
|
|
442
459
|
key: "localUser",
|
|
@@ -490,6 +507,24 @@ var ParticipantStoreBase = exports.ParticipantStoreBase = /*#__PURE__*/function
|
|
|
490
507
|
});
|
|
491
508
|
return res;
|
|
492
509
|
}
|
|
510
|
+
}, {
|
|
511
|
+
key: "mainRoomUserMap",
|
|
512
|
+
get: function get() {
|
|
513
|
+
var res = new Map();
|
|
514
|
+
this._sharedMemberDataSource.memberList.forEach(function (u) {
|
|
515
|
+
res.set(u.userId, u);
|
|
516
|
+
});
|
|
517
|
+
return res;
|
|
518
|
+
}
|
|
519
|
+
}, {
|
|
520
|
+
key: "waitingRoomUserMap",
|
|
521
|
+
get: function get() {
|
|
522
|
+
var res = new Map();
|
|
523
|
+
this._sharedWaitingRoomDataSource.waitingRoomDataSource.list.forEach(function (u) {
|
|
524
|
+
res.set(u.userId, u);
|
|
525
|
+
});
|
|
526
|
+
return res;
|
|
527
|
+
}
|
|
493
528
|
}, {
|
|
494
529
|
key: "userCount",
|
|
495
530
|
get: function get() {
|
|
@@ -563,11 +598,6 @@ var ParticipantStoreBase = exports.ParticipantStoreBase = /*#__PURE__*/function
|
|
|
563
598
|
get: function get() {
|
|
564
599
|
return this._screenShareProvider.isLocalUserScreenSharing;
|
|
565
600
|
}
|
|
566
|
-
}, {
|
|
567
|
-
key: "localMicVolume",
|
|
568
|
-
get: function get() {
|
|
569
|
-
return this._deviceStore.microphoneVolumeLevel;
|
|
570
|
-
}
|
|
571
601
|
}, {
|
|
572
602
|
key: "hasRevokeHostPermission",
|
|
573
603
|
get: function get() {
|
|
@@ -601,7 +631,7 @@ var ParticipantStoreBase = exports.ParticipantStoreBase = /*#__PURE__*/function
|
|
|
601
631
|
}, {
|
|
602
632
|
key: "hasInvite",
|
|
603
633
|
get: function get() {
|
|
604
|
-
return this._abilityProvider.isRoomDetailSupported();
|
|
634
|
+
return this._abilityProvider.isRoomDetailSupported() && this._abilityProvider.isCallOutAbilitySupported();
|
|
605
635
|
}
|
|
606
636
|
}, {
|
|
607
637
|
key: "checkedStateMap",
|
|
@@ -748,9 +778,14 @@ var ParticipantStoreBase = exports.ParticipantStoreBase = /*#__PURE__*/function
|
|
|
748
778
|
var _this$userMap$get2;
|
|
749
779
|
this._streamControl.mergeAudioStream(userId);
|
|
750
780
|
this.setMergeConfirmDialog(false);
|
|
751
|
-
this._showToast(
|
|
752
|
-
|
|
753
|
-
|
|
781
|
+
this._showToast({
|
|
782
|
+
key: _type6.FcrUIToastKey.FMT_PSTN_TOAST_MERGED,
|
|
783
|
+
params: {
|
|
784
|
+
transI18nOptions: {
|
|
785
|
+
reason1: (_this$userMap$get2 = this.userMap.get(userId)) === null || _this$userMap$get2 === void 0 ? void 0 : _this$userMap$get2.userInfo.userName
|
|
786
|
+
}
|
|
787
|
+
}
|
|
788
|
+
});
|
|
754
789
|
}
|
|
755
790
|
}, {
|
|
756
791
|
key: "openRemoveAdmitWaitingRoomDialog",
|
|
@@ -842,7 +877,7 @@ var ParticipantStoreBase = exports.ParticipantStoreBase = /*#__PURE__*/function
|
|
|
842
877
|
this._revokeHostByTicket();
|
|
843
878
|
break;
|
|
844
879
|
case _constant.FcrUIRoomControlType.ACTION_CHANGE_NAME:
|
|
845
|
-
this._openChangeNameDialog(this.localUser.userId);
|
|
880
|
+
this._openChangeNameDialog(this.localUser.userId, this.activeTab);
|
|
846
881
|
break;
|
|
847
882
|
}
|
|
848
883
|
}
|
|
@@ -881,12 +916,25 @@ var ParticipantStoreBase = exports.ParticipantStoreBase = /*#__PURE__*/function
|
|
|
881
916
|
while (1) switch (_context.prev = _context.next) {
|
|
882
917
|
case 0:
|
|
883
918
|
return _context.abrupt("return", _this7._userControl.claimHost(hostKey).then(function (res) {
|
|
884
|
-
_this7._showToast(
|
|
919
|
+
_this7._showToast({
|
|
920
|
+
key: _type6.FcrUIToastKey.FMT_HOSTKEY_MEETINGROOM_TOAST_NOW_HOST
|
|
921
|
+
});
|
|
885
922
|
})["catch"](function (err) {
|
|
886
923
|
if (err.code === '732403105') return {
|
|
887
924
|
message: errMessage === null || errMessage === void 0 ? void 0 : errMessage["".concat(err.code)]
|
|
888
925
|
};
|
|
889
|
-
|
|
926
|
+
if (err.code === 0) {
|
|
927
|
+
_this7._showToast({
|
|
928
|
+
key: _type6.FcrUIToastKey.FMT_HOSTKEY_MEETINGROOM_TOAST_NOW_HOST
|
|
929
|
+
});
|
|
930
|
+
} else {
|
|
931
|
+
_this7._showToast({
|
|
932
|
+
key: _type6.FcrUIToastKey.ERR_MESSAGE,
|
|
933
|
+
params: {
|
|
934
|
+
message: (errMessage === null || errMessage === void 0 ? void 0 : errMessage["".concat(err.code)]) || err.message
|
|
935
|
+
}
|
|
936
|
+
});
|
|
937
|
+
}
|
|
890
938
|
}));
|
|
891
939
|
case 1:
|
|
892
940
|
case "end":
|
|
@@ -920,7 +968,9 @@ var ParticipantStoreBase = exports.ParticipantStoreBase = /*#__PURE__*/function
|
|
|
920
968
|
unmuteYourself: allowUnmute
|
|
921
969
|
}));
|
|
922
970
|
});
|
|
923
|
-
this._showToast(
|
|
971
|
+
this._showToast({
|
|
972
|
+
key: _type6.FcrUIToastKey.FMT_UIMANAGER_TIPS_ALLMUTED
|
|
973
|
+
});
|
|
924
974
|
}
|
|
925
975
|
}, {
|
|
926
976
|
key: "_unmuteAllAudio",
|
|
@@ -966,7 +1016,9 @@ var ParticipantStoreBase = exports.ParticipantStoreBase = /*#__PURE__*/function
|
|
|
966
1016
|
key: "_lockRoom",
|
|
967
1017
|
value: function _lockRoom(enable) {
|
|
968
1018
|
var _this10 = this;
|
|
969
|
-
this._showToast(
|
|
1019
|
+
this._showToast({
|
|
1020
|
+
key: enable ? _type6.FcrUIToastKey.FMT_SECURITY_TIPS_LOCK_MEETING_ON : _type6.FcrUIToastKey.FMT_SECURITY_TIPS_LOCK_MEETING_OFF
|
|
1021
|
+
});
|
|
970
1022
|
this._setPrivilegeAndUpdateUI(function () {
|
|
971
1023
|
return _this10._privilegeProvider.enableLockedRoom(enable);
|
|
972
1024
|
}, {
|
|
@@ -1013,7 +1065,9 @@ var ParticipantStoreBase = exports.ParticipantStoreBase = /*#__PURE__*/function
|
|
|
1013
1065
|
_context2.next = 1;
|
|
1014
1066
|
return (_this$_waitingRoomUse = this._waitingRoomUserControl) === null || _this$_waitingRoomUse === void 0 ? void 0 : _this$_waitingRoomUse.kickOutByUserRoles([_type.FcrUserRole.PARTICIPANT], type);
|
|
1015
1067
|
case 1:
|
|
1016
|
-
this._showToast(
|
|
1068
|
+
this._showToast({
|
|
1069
|
+
key: _type6.FcrUIToastKey.FMT_WAITINGROOM_MOBILE_MEMBERLIST_TIPS_ALL_REMOVED
|
|
1070
|
+
});
|
|
1017
1071
|
case 2:
|
|
1018
1072
|
case "end":
|
|
1019
1073
|
return _context2.stop();
|
|
@@ -1036,7 +1090,9 @@ var ParticipantStoreBase = exports.ParticipantStoreBase = /*#__PURE__*/function
|
|
|
1036
1090
|
_context3.next = 1;
|
|
1037
1091
|
return (_this$_waitingRoomCon = this._waitingRoomControl) === null || _this$_waitingRoomCon === void 0 ? void 0 : _this$_waitingRoomCon.moveToMainRoomByUserRoles([_type.FcrUserRole.PARTICIPANT]);
|
|
1038
1092
|
case 1:
|
|
1039
|
-
this._showToast(
|
|
1093
|
+
this._showToast({
|
|
1094
|
+
key: _type6.FcrUIToastKey.FMT_WAITINGROOM_MOBILE_MEMBERLIST_TIPS_ALL_AMITTED
|
|
1095
|
+
});
|
|
1040
1096
|
case 2:
|
|
1041
1097
|
case "end":
|
|
1042
1098
|
return _context3.stop();
|
|
@@ -1062,21 +1118,14 @@ var ParticipantStoreBase = exports.ParticipantStoreBase = /*#__PURE__*/function
|
|
|
1062
1118
|
this._sharedPinDataSource.removePin(streamId);
|
|
1063
1119
|
}
|
|
1064
1120
|
}
|
|
1065
|
-
}, {
|
|
1066
|
-
key: "isHostSupportedByPlatform",
|
|
1067
|
-
value: function isHostSupportedByPlatform(userId) {
|
|
1068
|
-
var _this$userMap$get3;
|
|
1069
|
-
var user = (_this$userMap$get3 = this.userMap.get(userId)) === null || _this$userMap$get3 === void 0 ? void 0 : _this$userMap$get3.userInfo;
|
|
1070
|
-
if (!user) return false;
|
|
1071
|
-
if (!user.platform) return false;
|
|
1072
|
-
return this._abilityProvider.isHostSupportedByPlatform(user.platform);
|
|
1073
|
-
}
|
|
1074
1121
|
}, {
|
|
1075
1122
|
key: "addPin",
|
|
1076
1123
|
value: function addPin(userId) {
|
|
1077
1124
|
var shouldHideMyVideo = this._sharedSettingDataSource.setting.shouldHideMyVideo;
|
|
1078
1125
|
if (shouldHideMyVideo && userId === this.localUser.userId) {
|
|
1079
|
-
this._showToast(
|
|
1126
|
+
this._showToast({
|
|
1127
|
+
key: _type6.FcrUIToastKey.FMT_INTERNALSETTING_OTHER_HIDE_MY_WINDOW_PIN_CANCELLED
|
|
1128
|
+
});
|
|
1080
1129
|
return;
|
|
1081
1130
|
}
|
|
1082
1131
|
var streamId = this._getPinStreamIdFromUser(userId);
|
|
@@ -1088,7 +1137,7 @@ var ParticipantStoreBase = exports.ParticipantStoreBase = /*#__PURE__*/function
|
|
|
1088
1137
|
key: "_getPinStreamIdFromUser",
|
|
1089
1138
|
value: function _getPinStreamIdFromUser(userId) {
|
|
1090
1139
|
var _streams$find;
|
|
1091
|
-
var user = this.
|
|
1140
|
+
var user = this.mainRoomUserMap.get(userId);
|
|
1092
1141
|
var isPSTN = (user === null || user === void 0 ? void 0 : user.userInfo.connectorType) === _fcrCore.FcrRoomConnectorType.PSTN;
|
|
1093
1142
|
var streams = user === null || user === void 0 ? void 0 : user.streams;
|
|
1094
1143
|
var streamId = streams === null || streams === void 0 || (_streams$find = streams.find(function (stream) {
|
|
@@ -1350,7 +1399,9 @@ var ParticipantStoreBase = exports.ParticipantStoreBase = /*#__PURE__*/function
|
|
|
1350
1399
|
return user.userInfo.userRole === _type.FcrUserRole.HOST;
|
|
1351
1400
|
})) {
|
|
1352
1401
|
this.showBecomeHostButton = false;
|
|
1353
|
-
this._showToast(
|
|
1402
|
+
this._showToast({
|
|
1403
|
+
key: _type6.FcrUIToastKey.FMT_MEETING_TOAST_HOST_JOIN_MEETING
|
|
1404
|
+
});
|
|
1354
1405
|
}
|
|
1355
1406
|
}
|
|
1356
1407
|
}, {
|
|
@@ -1383,7 +1434,9 @@ var ParticipantStoreBase = exports.ParticipantStoreBase = /*#__PURE__*/function
|
|
|
1383
1434
|
case 1:
|
|
1384
1435
|
(0, _mobx.runInAction)(function () {
|
|
1385
1436
|
_this14._closeChangeNameDialog();
|
|
1386
|
-
_this14._showToast(
|
|
1437
|
+
_this14._showToast({
|
|
1438
|
+
key: _type6.FcrUIToastKey.FMT_ADDITIONAL_TIPS_NICKNAME_CHANGE_SUCCESS
|
|
1439
|
+
});
|
|
1387
1440
|
});
|
|
1388
1441
|
case 2:
|
|
1389
1442
|
case "end":
|
|
@@ -1446,6 +1499,7 @@ var ParticipantStoreBase = exports.ParticipantStoreBase = /*#__PURE__*/function
|
|
|
1446
1499
|
}, {
|
|
1447
1500
|
key: "handlerUserAction",
|
|
1448
1501
|
value: function handlerUserAction(action, userId) {
|
|
1502
|
+
var roomType = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : this.activeTab;
|
|
1449
1503
|
this.logger.info("handler User Action: ".concat(action, ", target userId: ").concat(userId));
|
|
1450
1504
|
switch (action) {
|
|
1451
1505
|
case _attendee.ParticipantActionType.MUTE_AUDIO:
|
|
@@ -1461,10 +1515,10 @@ var ParticipantStoreBase = exports.ParticipantStoreBase = /*#__PURE__*/function
|
|
|
1461
1515
|
this._unmuteUserVideo(userId);
|
|
1462
1516
|
break;
|
|
1463
1517
|
case _attendee.ParticipantActionType.PRIVATE_CHAT:
|
|
1464
|
-
this._privateChat(userId);
|
|
1518
|
+
this._privateChat(userId, roomType);
|
|
1465
1519
|
break;
|
|
1466
1520
|
case _attendee.ParticipantActionType.KICK_OUT:
|
|
1467
|
-
this._kickOutUser(userId);
|
|
1521
|
+
this._kickOutUser(userId, roomType);
|
|
1468
1522
|
break;
|
|
1469
1523
|
case _attendee.ParticipantActionType.ADD_PIN:
|
|
1470
1524
|
this.addPin(userId);
|
|
@@ -1482,7 +1536,7 @@ var ParticipantStoreBase = exports.ParticipantStoreBase = /*#__PURE__*/function
|
|
|
1482
1536
|
this._setAsAttendee(userId);
|
|
1483
1537
|
break;
|
|
1484
1538
|
case _attendee.ParticipantActionType.RENAME_IN_MEETING:
|
|
1485
|
-
this._openChangeNameDialog(userId);
|
|
1539
|
+
this._openChangeNameDialog(userId, roomType);
|
|
1486
1540
|
break;
|
|
1487
1541
|
case _attendee.ParticipantActionType.PUT_IN_WAITING_ROOM:
|
|
1488
1542
|
this._moveToWaitingRoomByUserId(userId);
|
|
@@ -1534,12 +1588,8 @@ var ParticipantStoreBase = exports.ParticipantStoreBase = /*#__PURE__*/function
|
|
|
1534
1588
|
*/
|
|
1535
1589
|
}, {
|
|
1536
1590
|
key: "_showToast",
|
|
1537
|
-
value: function _showToast(
|
|
1538
|
-
|
|
1539
|
-
this._messageProvider.showToast({
|
|
1540
|
-
message: message,
|
|
1541
|
-
type: type
|
|
1542
|
-
});
|
|
1591
|
+
value: function _showToast(param) {
|
|
1592
|
+
this._messageProvider.showToastByKey(param);
|
|
1543
1593
|
}
|
|
1544
1594
|
|
|
1545
1595
|
/**
|
|
@@ -1704,20 +1754,22 @@ var ParticipantStoreBase = exports.ParticipantStoreBase = /*#__PURE__*/function
|
|
|
1704
1754
|
}
|
|
1705
1755
|
}, {
|
|
1706
1756
|
key: "_privateChat",
|
|
1707
|
-
value: function _privateChat(userId) {
|
|
1708
|
-
var userData = this.
|
|
1757
|
+
value: function _privateChat(userId, roomType) {
|
|
1758
|
+
var userData = this._getUserListByRoomType(roomType).find(function (u) {
|
|
1709
1759
|
return u.userId === userId;
|
|
1710
1760
|
});
|
|
1711
1761
|
if (userData) {
|
|
1712
1762
|
var hasPermissionToSendPrivateMessage = this._privilegeProvider.hasPermissionToSendPrivateMessage(userData.userInfo.userRole);
|
|
1713
1763
|
if (!hasPermissionToSendPrivateMessage) {
|
|
1714
|
-
this._showToast(
|
|
1764
|
+
this._showToast({
|
|
1765
|
+
key: _type6.FcrUIToastKey.FMT_ATTENDIES_TIPS_CHAT_OFF
|
|
1766
|
+
});
|
|
1715
1767
|
return;
|
|
1716
1768
|
}
|
|
1717
1769
|
if (!this._privilegeProvider.permitPrivateChat(userId)) {
|
|
1718
1770
|
return;
|
|
1719
1771
|
}
|
|
1720
|
-
this._chatProvider.setPrivateChatTargetUser(userData.userInfo,
|
|
1772
|
+
this._chatProvider.setPrivateChatTargetUser(userData.userInfo, roomType);
|
|
1721
1773
|
// TODO:
|
|
1722
1774
|
// if (isElectron() && this.screenSharingOwner?.userId === this.localUser.userId) {
|
|
1723
1775
|
// this._sharedLayoutDataSource.setParticipantsRenderAt('dialog');
|
|
@@ -1733,7 +1785,7 @@ var ParticipantStoreBase = exports.ParticipantStoreBase = /*#__PURE__*/function
|
|
|
1733
1785
|
this._sharedLayoutDataSource.setAsideLayout({
|
|
1734
1786
|
chat: true
|
|
1735
1787
|
});
|
|
1736
|
-
this._sharedChatDataSource.activeTab =
|
|
1788
|
+
this._sharedChatDataSource.activeTab = roomType;
|
|
1737
1789
|
} else {
|
|
1738
1790
|
this._openDialog(_constant.FcrUIDialogKey.CHAT);
|
|
1739
1791
|
}
|
|
@@ -1759,17 +1811,18 @@ var ParticipantStoreBase = exports.ParticipantStoreBase = /*#__PURE__*/function
|
|
|
1759
1811
|
key: "_showSetHostDialog",
|
|
1760
1812
|
value: function _showSetHostDialog(userId, type) {
|
|
1761
1813
|
var _this16 = this;
|
|
1762
|
-
|
|
1763
|
-
var canSetHost = this.isHostSupportedByPlatform(userId);
|
|
1764
|
-
if (!canSetHost) {
|
|
1765
|
-
var errorMessage = type === _type.FcrUserRole.HOST ? (0, _i18n.transI18n)('fmt_attendies_toast_cant_sethost') : (0, _i18n.transI18n)('fmt_attendies_toast_cant_setcohost');
|
|
1766
|
-
this._showToast(errorMessage, 'error');
|
|
1767
|
-
return;
|
|
1768
|
-
}
|
|
1769
|
-
}
|
|
1770
|
-
var user = this.userMap.get(userId);
|
|
1814
|
+
var user = this.mainRoomUserMap.get(userId);
|
|
1771
1815
|
if (!user) {
|
|
1772
|
-
this._showToast(
|
|
1816
|
+
this._showToast({
|
|
1817
|
+
key: _type6.FcrUIToastKey.FMT_UIMANAGER_TIPS_USERLEAFT
|
|
1818
|
+
});
|
|
1819
|
+
return;
|
|
1820
|
+
}
|
|
1821
|
+
var canSetHost = this._abilityProvider.isHostSupportedByPlatform(user.userInfo.platform);
|
|
1822
|
+
if (!canSetHost) {
|
|
1823
|
+
this._showToast({
|
|
1824
|
+
key: type === _type.FcrUserRole.HOST ? _type6.FcrUIToastKey.FMT_ATTENDIES_TOAST_CANT_SETHOST : _type6.FcrUIToastKey.FMT_ATTENDIES_TOAST_CANT_SETCOHOST
|
|
1825
|
+
});
|
|
1773
1826
|
return;
|
|
1774
1827
|
}
|
|
1775
1828
|
var username = user.userInfo.userName;
|
|
@@ -1818,11 +1871,13 @@ var ParticipantStoreBase = exports.ParticipantStoreBase = /*#__PURE__*/function
|
|
|
1818
1871
|
return _regenerator["default"].wrap(function (_context6) {
|
|
1819
1872
|
while (1) switch (_context6.prev = _context6.next) {
|
|
1820
1873
|
case 0:
|
|
1821
|
-
if (this.
|
|
1874
|
+
if (this.mainRoomUserMap.has(userId)) {
|
|
1822
1875
|
_context6.next = 1;
|
|
1823
1876
|
break;
|
|
1824
1877
|
}
|
|
1825
|
-
this._showToast(
|
|
1878
|
+
this._showToast({
|
|
1879
|
+
key: _type6.FcrUIToastKey.FMT_UIMANAGER_TIPS_USERLEAFT
|
|
1880
|
+
});
|
|
1826
1881
|
return _context6.abrupt("return");
|
|
1827
1882
|
case 1:
|
|
1828
1883
|
_context6.prev = 1;
|
|
@@ -1857,14 +1912,12 @@ var ParticipantStoreBase = exports.ParticipantStoreBase = /*#__PURE__*/function
|
|
|
1857
1912
|
var _this17 = this;
|
|
1858
1913
|
if (error instanceof _error.FcrError) {
|
|
1859
1914
|
var errorHandlers = (0, _defineProperty2["default"])((0, _defineProperty2["default"])({}, _constant.ErrorCode.FAILED_TO_UPDATE_USER_ROLE_DUE_TO_PRIVILEGE, function () {
|
|
1860
|
-
_this17.
|
|
1861
|
-
|
|
1862
|
-
message: (0, _i18n.transI18n)('fmt_attendies_button_revokehost_error')
|
|
1915
|
+
_this17._showToast({
|
|
1916
|
+
key: _type6.FcrUIToastKey.FMT_ATTENDIES_BUTTON_REVOKEEHOST_ERROR
|
|
1863
1917
|
});
|
|
1864
1918
|
}), _constant.ErrorCode.FAILED_TO_UPDATE_USER_ROLE_DUE_TO_LIMIT_REACHED, function () {
|
|
1865
|
-
_this17.
|
|
1866
|
-
|
|
1867
|
-
message: (0, _i18n.transI18n)('fmt_attendies_toast_cohost_upper_limit')
|
|
1919
|
+
_this17._showToast({
|
|
1920
|
+
key: _type6.FcrUIToastKey.FMT_ATTENDIES_TOAST_COHOST_UPPER_LIMIT
|
|
1868
1921
|
});
|
|
1869
1922
|
});
|
|
1870
1923
|
var handler = errorHandlers[error.code];
|
|
@@ -1905,14 +1958,14 @@ var ParticipantStoreBase = exports.ParticipantStoreBase = /*#__PURE__*/function
|
|
|
1905
1958
|
this.logger.warn('Invalid userId provided to _moveToWaitingRoomByUserId:', userId);
|
|
1906
1959
|
return _context7.abrupt("return");
|
|
1907
1960
|
case 1:
|
|
1908
|
-
if (this._isUserExists(userId)) {
|
|
1961
|
+
if (this._isUserExists(userId, _type5.FcrUIRoomType.MAIN_ROOM)) {
|
|
1909
1962
|
_context7.next = 2;
|
|
1910
1963
|
break;
|
|
1911
1964
|
}
|
|
1912
1965
|
this.logger.warn('User not found for move to waiting room operation:', userId);
|
|
1913
1966
|
return _context7.abrupt("return");
|
|
1914
1967
|
case 2:
|
|
1915
|
-
username = this._getUserNameById(userId);
|
|
1968
|
+
username = this._getUserNameById(userId, _type5.FcrUIRoomType.MAIN_ROOM);
|
|
1916
1969
|
_context7.prev = 3;
|
|
1917
1970
|
this.logger.info('Moving user to waiting room:', {
|
|
1918
1971
|
userId: userId,
|
|
@@ -1921,9 +1974,14 @@ var ParticipantStoreBase = exports.ParticipantStoreBase = /*#__PURE__*/function
|
|
|
1921
1974
|
_context7.next = 4;
|
|
1922
1975
|
return this._roomControl.moveToWaitingRoomByUserIds([userId]);
|
|
1923
1976
|
case 4:
|
|
1924
|
-
this._showToast(
|
|
1925
|
-
|
|
1926
|
-
|
|
1977
|
+
this._showToast({
|
|
1978
|
+
key: _type6.FcrUIToastKey.FMT_WAITINGROOM_PUT_IN_SUCCESS,
|
|
1979
|
+
params: {
|
|
1980
|
+
transI18nOptions: {
|
|
1981
|
+
reason1: username
|
|
1982
|
+
}
|
|
1983
|
+
}
|
|
1984
|
+
});
|
|
1927
1985
|
this.logger.info('Successfully moved user to waiting room:', {
|
|
1928
1986
|
userId: userId,
|
|
1929
1987
|
username: username
|
|
@@ -1942,10 +2000,14 @@ var ParticipantStoreBase = exports.ParticipantStoreBase = /*#__PURE__*/function
|
|
|
1942
2000
|
_context7.next = 6;
|
|
1943
2001
|
break;
|
|
1944
2002
|
}
|
|
1945
|
-
this._showToast(
|
|
2003
|
+
this._showToast({
|
|
2004
|
+
key: _type6.FcrUIToastKey.FMT_WAITINGROOM_SETTING_POPUP_TOAST_UNABLE_MOVE_CREATOR
|
|
2005
|
+
});
|
|
1946
2006
|
return _context7.abrupt("return");
|
|
1947
2007
|
case 6:
|
|
1948
|
-
this._showToast(
|
|
2008
|
+
this._showToast({
|
|
2009
|
+
key: _type6.FcrUIToastKey.FMT_WAITINGROOM_SETTING_POPUP_TOAST_MOVE_IN_FAILED
|
|
2010
|
+
});
|
|
1949
2011
|
case 7:
|
|
1950
2012
|
case "end":
|
|
1951
2013
|
return _context7.stop();
|
|
@@ -1961,11 +2023,12 @@ var ParticipantStoreBase = exports.ParticipantStoreBase = /*#__PURE__*/function
|
|
|
1961
2023
|
* 踢出用户的主入口方法
|
|
1962
2024
|
* 根据当前房间类型选择相应的处理逻辑
|
|
1963
2025
|
* @param userId 要踢出的用户ID
|
|
2026
|
+
* @param roomType 要踢出的用户所在的房间类型
|
|
1964
2027
|
*/
|
|
1965
2028
|
)
|
|
1966
2029
|
}, {
|
|
1967
2030
|
key: "_kickOutUser",
|
|
1968
|
-
value: function _kickOutUser(userId) {
|
|
2031
|
+
value: function _kickOutUser(userId, roomType) {
|
|
1969
2032
|
// 参数验证
|
|
1970
2033
|
if (!userId || typeof userId !== 'string') {
|
|
1971
2034
|
this.logger.warn('Invalid userId provided to _kickOutUser:', userId);
|
|
@@ -1973,11 +2036,11 @@ var ParticipantStoreBase = exports.ParticipantStoreBase = /*#__PURE__*/function
|
|
|
1973
2036
|
}
|
|
1974
2037
|
|
|
1975
2038
|
// 检查用户是否存在
|
|
1976
|
-
if (!this._isUserExists(userId)) {
|
|
2039
|
+
if (!this._isUserExists(userId, roomType)) {
|
|
1977
2040
|
this.logger.warn('User not found for kick out operation:', userId);
|
|
1978
2041
|
return;
|
|
1979
2042
|
}
|
|
1980
|
-
var isMainRoom =
|
|
2043
|
+
var isMainRoom = roomType === _type5.FcrUIRoomType.MAIN_ROOM;
|
|
1981
2044
|
if (isMainRoom) {
|
|
1982
2045
|
this._kickOutUserFromMainRoom(userId);
|
|
1983
2046
|
} else {
|
|
@@ -1992,7 +2055,7 @@ var ParticipantStoreBase = exports.ParticipantStoreBase = /*#__PURE__*/function
|
|
|
1992
2055
|
}, {
|
|
1993
2056
|
key: "_kickOutUserFromMainRoom",
|
|
1994
2057
|
value: function _kickOutUserFromMainRoom(userId) {
|
|
1995
|
-
var userName = this._getUserNameById(userId);
|
|
2058
|
+
var userName = this._getUserNameById(userId, _type5.FcrUIRoomType.MAIN_ROOM);
|
|
1996
2059
|
var dialogConfig = this._createMainRoomKickOutDialogConfig(userId, userName);
|
|
1997
2060
|
this.openConfirmDialog(dialogConfig, _struct.KICK_OUT_DIALOG_CONFIG.MAIN_ROOM.DIALOG_ID);
|
|
1998
2061
|
}
|
|
@@ -2004,7 +2067,7 @@ var ParticipantStoreBase = exports.ParticipantStoreBase = /*#__PURE__*/function
|
|
|
2004
2067
|
}, {
|
|
2005
2068
|
key: "_kickOutUserFromWaitingRoom",
|
|
2006
2069
|
value: function _kickOutUserFromWaitingRoom(userId) {
|
|
2007
|
-
var userName = this._getUserNameById(userId);
|
|
2070
|
+
var userName = this._getUserNameById(userId, _type5.FcrUIRoomType.WAITING_ROOM);
|
|
2008
2071
|
var dialogConfig = this._createWaitingRoomKickOutDialogConfig(userId, userName);
|
|
2009
2072
|
this.openRemoveAdmitWaitingRoomDialog(dialogConfig);
|
|
2010
2073
|
}
|
|
@@ -2012,24 +2075,52 @@ var ParticipantStoreBase = exports.ParticipantStoreBase = /*#__PURE__*/function
|
|
|
2012
2075
|
/**
|
|
2013
2076
|
* 检查用户是否存在
|
|
2014
2077
|
* @param userId 用户ID
|
|
2078
|
+
* @param roomType 房间类型
|
|
2015
2079
|
* @returns 用户是否存在
|
|
2016
2080
|
*/
|
|
2017
2081
|
}, {
|
|
2018
2082
|
key: "_isUserExists",
|
|
2019
|
-
value: function _isUserExists(userId) {
|
|
2020
|
-
|
|
2083
|
+
value: function _isUserExists(userId, roomType) {
|
|
2084
|
+
var userMap = this._getUserMapByRoomType(roomType);
|
|
2085
|
+
return userMap.has(userId);
|
|
2086
|
+
}
|
|
2087
|
+
}, {
|
|
2088
|
+
key: "_getUserMapByRoomType",
|
|
2089
|
+
value: function _getUserMapByRoomType(roomType) {
|
|
2090
|
+
if (roomType === _type5.FcrUIRoomType.MAIN_ROOM) {
|
|
2091
|
+
return this.mainRoomUserMap;
|
|
2092
|
+
} else {
|
|
2093
|
+
return this.waitingRoomUserMap;
|
|
2094
|
+
}
|
|
2095
|
+
}
|
|
2096
|
+
|
|
2097
|
+
/**
|
|
2098
|
+
* 根据 roomType 获取对应房间的用户列表
|
|
2099
|
+
* @param roomType 房间类型
|
|
2100
|
+
* @returns 用户列表
|
|
2101
|
+
*/
|
|
2102
|
+
}, {
|
|
2103
|
+
key: "_getUserListByRoomType",
|
|
2104
|
+
value: function _getUserListByRoomType(roomType) {
|
|
2105
|
+
if (roomType === _type5.FcrUIRoomType.MAIN_ROOM) {
|
|
2106
|
+
return this._sharedMemberDataSource.memberList;
|
|
2107
|
+
} else {
|
|
2108
|
+
return this._sharedWaitingRoomDataSource.waitingRoomDataSource.list;
|
|
2109
|
+
}
|
|
2021
2110
|
}
|
|
2022
2111
|
|
|
2023
2112
|
/**
|
|
2024
2113
|
* 根据用户ID获取用户名
|
|
2025
2114
|
* @param userId 用户ID
|
|
2115
|
+
* @param roomType 房间类型
|
|
2026
2116
|
* @returns 用户名,如果找不到则返回空字符串
|
|
2027
2117
|
*/
|
|
2028
2118
|
}, {
|
|
2029
2119
|
key: "_getUserNameById",
|
|
2030
|
-
value: function _getUserNameById(userId) {
|
|
2031
|
-
var
|
|
2032
|
-
|
|
2120
|
+
value: function _getUserNameById(userId, roomType) {
|
|
2121
|
+
var _userMap$get;
|
|
2122
|
+
var userMap = this._getUserMapByRoomType(roomType);
|
|
2123
|
+
return ((_userMap$get = userMap.get(userId)) === null || _userMap$get === void 0 ? void 0 : _userMap$get.userInfo.userName) || '';
|
|
2033
2124
|
}
|
|
2034
2125
|
|
|
2035
2126
|
/**
|
|
@@ -2331,7 +2422,7 @@ var ParticipantStoreBase = exports.ParticipantStoreBase = /*#__PURE__*/function
|
|
|
2331
2422
|
case _constant.FcrUIAction.PARTICIPANT_ACTION:
|
|
2332
2423
|
{
|
|
2333
2424
|
var actionPayload = payload;
|
|
2334
|
-
this.handlerUserAction(actionPayload.action, actionPayload.userId);
|
|
2425
|
+
this.handlerUserAction(actionPayload.action, actionPayload.userId, _type5.FcrUIRoomType.MAIN_ROOM);
|
|
2335
2426
|
break;
|
|
2336
2427
|
}
|
|
2337
2428
|
case _constant.FcrUIAction.CHANGE_PARTICIPANT_TAB:
|
|
@@ -2342,20 +2433,21 @@ var ParticipantStoreBase = exports.ParticipantStoreBase = /*#__PURE__*/function
|
|
|
2342
2433
|
}]);
|
|
2343
2434
|
}();
|
|
2344
2435
|
_ParticipantStoreBase = ParticipantStoreBase;
|
|
2345
|
-
var _applyDecs$e = (0, _slicedToArray2["default"])(_applyDecs(_ParticipantStoreBase, [[_mobx.observable, 1, "_isChecked"], [_mobx.observable, 1, "_participantsWindowActive"], [_mobx.observable, 1, "enableParticipantsJoinWithMute"], [_mobx.observable, 1, "searchText"], [_mobx.observable, 1, "currentModal"], [_mobx.observable, 1, "mergeConfirmDialog"], [_mobx.observable, 1, "mergeUserId"], [_mobx.observable, 1, "activeTab"], [_mobx.observable, 1, "interpreterInputLanguageList"], [_mobx.observable, 1, "newName"], [_mobx.observable, 1, "allowUnmute"], [_mobx.observable, 1, "joinWithMuteAudio"], [_mobx.observable, 1, "showBecomeHostButton"], [_mobx.observable, 1, "_userCount"], [_mobx.computed, 3, "audioVolumeMap"], [_mobx.computed, 3, "userListSource"], [_mobx.computed, 3, "spotlightStreamId"], [_mobx.computed, 3, "mergeUserInfo"], [_mobx.computed, 3, "userMap"], [_mobx.computed, 3, "userCount"], [_mobx.computed, 3, "pinedStreamIds"], [_mobx.computed, 3, "hasPinnedStream"], [_mobx.computed, 3, "userList"], [_mobx.computed, 3, "
|
|
2346
|
-
|
|
2347
|
-
|
|
2348
|
-
|
|
2349
|
-
|
|
2350
|
-
|
|
2351
|
-
|
|
2352
|
-
|
|
2353
|
-
|
|
2354
|
-
|
|
2355
|
-
|
|
2356
|
-
|
|
2357
|
-
|
|
2358
|
-
|
|
2359
|
-
|
|
2360
|
-
|
|
2436
|
+
var _applyDecs$e = (0, _slicedToArray2["default"])(_applyDecs(_ParticipantStoreBase, [[_mobx.observable, 1, "_renamingUserName"], [_mobx.observable, 1, "_isChecked"], [_mobx.observable, 1, "_participantsWindowActive"], [_mobx.observable, 1, "enableParticipantsJoinWithMute"], [_mobx.observable, 1, "searchText"], [_mobx.observable, 1, "currentModal"], [_mobx.observable, 1, "mergeConfirmDialog"], [_mobx.observable, 1, "mergeUserId"], [_mobx.observable, 1, "activeTab"], [_mobx.observable, 1, "interpreterInputLanguageList"], [_mobx.observable, 1, "newName"], [_mobx.observable, 1, "allowUnmute"], [_mobx.observable, 1, "joinWithMuteAudio"], [_mobx.observable, 1, "showBecomeHostButton"], [_mobx.observable, 1, "_userCount"], [_mobx.computed, 3, "audioVolumeMap"], [_mobx.computed, 3, "userIdToAudioStreamIdMap"], [_mobx.computed, 3, "userListSource"], [_mobx.computed, 3, "spotlightStreamId"], [_mobx.computed, 3, "mergeUserInfo"], [_mobx.computed, 3, "userMap"], [_mobx.computed, 3, "mainRoomUserMap"], [_mobx.computed, 3, "waitingRoomUserMap"], [_mobx.computed, 3, "userCount"], [_mobx.computed, 3, "pinedStreamIds"], [_mobx.computed, 3, "hasPinnedStream"], [_mobx.computed, 3, "userList"], [_mobx.computed, 3, "hasRevokeHostPermission"], [_mobx.computed, 3, "waitingRoomUserCount"], [_mobx.computed, 3, "isNewWaitingRoomUserEnter"], [_mobx.computed, 3, "hasInvite"], [_decorator.bound, 2, "hasMutePermission"], [_decorator.bound, 2, "hasWaitingRoomPermission"], [_decorator.bound, 2, "hasUnmutePermission"], [_decorator.bound, 2, "hasRequestStartAudioPermission"], [_setCurrentModalDecs, 18, "setCurrentModal"], [_decorator.bound, 2, "closeParticipantsAside"], [_decorator.bound, 2, "closeDialog"], [_setParticipantsWindowActiveDecs, 18, "setParticipantsWindowActive"], [_handlerSearchUserDecs, 18, "handlerSearchUser"], [_decorator.bound, 2, "onInvite"], [_decorator.bound, 2, "setMergeConfirmDialog"], [_decorator.bound, 2, "mergeConfirmDialogOk"], [_openRemoveAdmitWaitingRoomDialogDecs, 18, "openRemoveAdmitWaitingRoomDialog"], [_setAllowUnmuteDecs, 18, "setAllowUnmute"], [_setAllowJoinWithMuteAudioDecs, 18, "setAllowJoinWithMuteAudio"], [_openMuteAllDialogDecs, 18, "openMuteAllDialog"], [_handlerRoomControlActionDecs, 18, "handlerRoomControlAction"], [_decorator.bound, 2, "moveParticipantFromDialogToAside"], [_moveToMainRoomByUserIdsDecs, 18, "moveToMainRoomByUserIds"], [_kickOutWaitingRoomAllMemberDecs, 18, "kickOutWaitingRoomAllMember"], [_moveToMainRoomAllMemberDecs, 18, "moveToMainRoomAllMember"], [_removeWaitingRoomUserDecs, 18, "removeWaitingRoomUser"], [_decorator.bound, 2, "removePin"], [_decorator.bound, 2, "addPin"], [_decorator.bound, 2, "_getPinStreamIdFromUser"], [_handleUserCountUpdatedDecs, 18, "_handleUserCountUpdated"], [_handleConfirmChangeNameDecs, 18, "handleConfirmChangeName"], [_handleCancelChangeNameDecs, 18, "handleCancelChangeName"], [_closeChangeNameDialogDecs, 18, "_closeChangeNameDialog"], [_getOutputLanguageDecs, 18, "_getOutputLanguage"], [_handlerUserActionDecs, 18, "handlerUserAction"], [_handleActiveTabDecs, 18, "handleActiveTab"], [_moveToWaitingRoomByUserIdDecs, 18, "_moveToWaitingRoomByUserId"], [_kickOutUserDecs, 18, "_kickOutUser"], [_onPeerSessionReceivedDecs, 18, "_onPeerSessionReceived"], [_decorator.bound, 2, "_onPeerSessionAccepted"], [_decorator.bound, 2, "_onPeerSessionRejected"], [_decorator.bound, 2, "_handleEvent"]], []).e, 16);
|
|
2437
|
+
_init__renamingUserName = _applyDecs$e[0];
|
|
2438
|
+
_init__isChecked = _applyDecs$e[1];
|
|
2439
|
+
_init__participantsWindowActive = _applyDecs$e[2];
|
|
2440
|
+
_init_enableParticipantsJoinWithMute = _applyDecs$e[3];
|
|
2441
|
+
_init_searchText = _applyDecs$e[4];
|
|
2442
|
+
_init_currentModal = _applyDecs$e[5];
|
|
2443
|
+
_init_mergeConfirmDialog = _applyDecs$e[6];
|
|
2444
|
+
_init_mergeUserId = _applyDecs$e[7];
|
|
2445
|
+
_init_activeTab = _applyDecs$e[8];
|
|
2446
|
+
_init_interpreterInputLanguageList = _applyDecs$e[9];
|
|
2447
|
+
_init_newName = _applyDecs$e[10];
|
|
2448
|
+
_init_allowUnmute = _applyDecs$e[11];
|
|
2449
|
+
_init_joinWithMuteAudio = _applyDecs$e[12];
|
|
2450
|
+
_init_showBecomeHostButton = _applyDecs$e[13];
|
|
2451
|
+
_init__userCount = _applyDecs$e[14];
|
|
2452
|
+
_initProto = _applyDecs$e[15];
|
|
2361
2453
|
var StoreContext = exports.StoreContext = /*#__PURE__*/(0, _react.createContext)(null);
|