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
|
@@ -0,0 +1,329 @@
|
|
|
1
|
+
import _defineProperty from "@babel/runtime/helpers/defineProperty";
|
|
2
|
+
var _DefaultToastParamsMa;
|
|
3
|
+
export var FcrUIToastKey = /*#__PURE__*/function (FcrUIToastKey) {
|
|
4
|
+
FcrUIToastKey["ERR_MESSAGE"] = "err_message";
|
|
5
|
+
FcrUIToastKey["WARN_MESSAGE"] = "warn_message";
|
|
6
|
+
FcrUIToastKey["FMT_SECURITY_TIPS_LOCK_MEETING_ON"] = "fmt_security_tips_lock_meeting_on";
|
|
7
|
+
FcrUIToastKey["FMT_SECURITY_TIPS_LOCK_MEETING_OFF"] = "fmt_security_tips_lock_meeting_off";
|
|
8
|
+
FcrUIToastKey["FMT_UIMANAGER_TIPS_MEETINGUNLOCKED"] = "fmt_uimanager_tips_meetingunlocked";
|
|
9
|
+
FcrUIToastKey["FMT_WAITINGROOM_MOBILE_SETTING_TIPS_DISABLE"] = "fmt_waitingroom_mobile_setting_tips_disable";
|
|
10
|
+
FcrUIToastKey["FMT_WAITINGROOM_SETTING_TIPS_ENABLE"] = "fmt_waitingroom_setting_tips_enable";
|
|
11
|
+
FcrUIToastKey["FMT_SCREENTIPS_NETWORK_ERROR_UNABLE_START_SCREEN_SHARE"] = "fmt_screenshare_toast_network_error_unable_start_screen_share";
|
|
12
|
+
FcrUIToastKey["FMT_INTERPRETATION_INTERPRETER_TOAST_LABEL_OPEN_MICRO"] = "fmt_interpretation_interpreter_toast_label_open_micro";
|
|
13
|
+
FcrUIToastKey["FMT_CHAT_TOAST_INFRACTION_ERROR"] = "fmt_chat_toast_infraction_error";
|
|
14
|
+
FcrUIToastKey["FMT_PSTN_STATUS_HUNGUP"] = "fmt_PSTN_status_hungup";
|
|
15
|
+
FcrUIToastKey["FMT_PSTN_STATUS_VOICECONNECTED"] = "fmt_PSTN_status_voiceconnected";
|
|
16
|
+
FcrUIToastKey["FMT_STATUSBAR_STATUS_COPPIED"] = "fmt_statusbar_status_coppied";
|
|
17
|
+
FcrUIToastKey["FMT_MEETING_MAINWINDOW_TOPBAR_LEFT_POPUP_TOAST_COPY_DONE"] = "fmt_meeting_mainwindow_topbar_left_popup_toast_copy_done";
|
|
18
|
+
FcrUIToastKey["FMT_INFORMATION_TIPS_NUMBERCOPYFAILED"] = "fmt_information_tips_numbercopyfailed";
|
|
19
|
+
FcrUIToastKey["FMT_ADDITIONAL_TIPS_INVITATION"] = "fmt_additional_tips_invitation";
|
|
20
|
+
FcrUIToastKey["FMT_ADDITIONAL_TIPS_INVITATIONFAILED"] = "fmt_additional_tips_invitationfailed";
|
|
21
|
+
FcrUIToastKey["FMT_UIMANAGER_TIPS_PASSWORDCOPIED"] = "fmt_uimanager_tips_passwordcopied";
|
|
22
|
+
FcrUIToastKey["FMT_SETTINGS_TIPS_PASSWORDCOPYFAILED"] = "fmt_settings_tips_passwordcopyfailed";
|
|
23
|
+
FcrUIToastKey["FMT_SHARING_TIPS_COPYFULL_FAILED"] = "fmt_sharing_tips_copyfull_failed";
|
|
24
|
+
FcrUIToastKey["FMT_INTERPRETATION_MAINWINDOW_TOAST_LABEL_INTERPRET_OFFLINE_CONTROLLER"] = "fmt_interpretation_mainwindow_toast_label_interpret_offline_controller";
|
|
25
|
+
FcrUIToastKey["FMT_INTERPRETATION_INTERPRETER_POPUP_LABEL_LANGUAGE_CHANGE_BY_COCONTROLLER"] = "fmt_interpretation_interpreter_popup_label_language_change_by_cocontroller";
|
|
26
|
+
FcrUIToastKey["FMT_INTERPRETATION_MAINWINDOW_TOAST_LABEL_UPDATE_LANGUAGE"] = "fmt_interpretation_mainwindow_toast_label_update_language";
|
|
27
|
+
FcrUIToastKey["FMT_INTERPRETATION_MOBILE_TOAST_CONTROLLER_TOAST_LABEL_UPDATE_INTERPRETER_BY_COCONTROLLER"] = "fmt_interpretation_mobile_toast_controller_toast_label_update_interpreter_by_cocontroller";
|
|
28
|
+
FcrUIToastKey["FMT_INTERPRETATION_INTERPRETER_TOAST_LABEL_RETURN_CHANNEL"] = "fmt_interpretation_interpreter_toast_label_return_channel";
|
|
29
|
+
FcrUIToastKey["FMT_BROADCAST_LIVESTREAM_TIPS_HAND_OVER_PC_TO_MOBILE"] = "fmt_broadcast_livestream_tips_hand_over_pc_to_mobile";
|
|
30
|
+
FcrUIToastKey["FMT_BROADCAST_LIVESTREAM_STOPPED"] = "fmt_broadcast_livestream_stopped";
|
|
31
|
+
FcrUIToastKey["FMT_PSTN_TOAST_MERGED"] = "fmt_PSTN_toast_merged";
|
|
32
|
+
FcrUIToastKey["FMT_HOSTKEY_MEETINGROOM_TOAST_NOW_HOST"] = "fmt_hostkey_meetingroom_toast_now_host";
|
|
33
|
+
FcrUIToastKey["FMT_UIMANAGER_TIPS_ALLMUTED"] = "fmt_uimanager_tips_allmuted";
|
|
34
|
+
FcrUIToastKey["FMT_WAITINGROOM_MOBILE_MEMBERLIST_TIPS_ALL_REMOVED"] = "fmt_waitingroom_mobile_memberlist_tips_all_removed";
|
|
35
|
+
FcrUIToastKey["FMT_WAITINGROOM_MOBILE_MEMBERLIST_TIPS_ALL_AMITTED"] = "fmt_waitingroom_mobile_memberlist_tips_all_amitted";
|
|
36
|
+
FcrUIToastKey["FMT_INTERNALSETTING_OTHER_HIDE_MY_WINDOW_PIN_CANCELLED"] = "fmt_internalsetting_other_hide_my_window_pin_cancelled";
|
|
37
|
+
FcrUIToastKey["FMT_ATTENDIES_TIPS_CHAT_OFF"] = "fmt_attendies_tips_chat_off";
|
|
38
|
+
FcrUIToastKey["FMT_ATTENDIES_TOAST_CANT_SETHOST"] = "fmt_attendies_toast_cant_sethost";
|
|
39
|
+
FcrUIToastKey["FMT_ATTENDIES_TOAST_CANT_SETCOHOST"] = "fmt_attendies_toast_cant_setcohost";
|
|
40
|
+
FcrUIToastKey["FMT_UIMANAGER_TIPS_USERLEAFT"] = "fmt_uimanager_tips_userleaft";
|
|
41
|
+
FcrUIToastKey["FMT_ADDITIONAL_TIPS_NICKNAME_CHANGE_SUCCESS"] = "fmt_additional_tips_nickname_change_success";
|
|
42
|
+
FcrUIToastKey["FMT_WAITINGROOM_PUT_IN_SUCCESS"] = "fmt_waitingroom_put_in_success";
|
|
43
|
+
FcrUIToastKey["FMT_WAITINGROOM_SETTING_POPUP_TOAST_UNABLE_MOVE_CREATOR"] = "fmt_waitingroom_setting_popup_toast_unable_move_creator";
|
|
44
|
+
FcrUIToastKey["FMT_WAITINGROOM_SETTING_POPUP_TOAST_MOVE_IN_FAILED"] = "fmt_waitingroom_setting_popup_toast_move_in_failed";
|
|
45
|
+
FcrUIToastKey["FMT_INTERNALSSETTING_OTHER_HIDE_NO_VIDEO_TOAST"] = "fmt_internalsetting_other_hide_no_video_toast";
|
|
46
|
+
FcrUIToastKey["FMT_ATTENDIES_BUTTON_REVOKEEHOST_ERROR"] = "fmt_attendies_button_revokehost_error";
|
|
47
|
+
FcrUIToastKey["FMT_ATTENDIES_TOAST_COHOST_UPPER_LIMIT"] = "fmt_attendies_toast_cohost_upper_limit";
|
|
48
|
+
FcrUIToastKey["FMT_DEVICE_TOAST_SWITCH_DEVICE"] = "fmt_device_toast_switch_device";
|
|
49
|
+
FcrUIToastKey["FMT_INTERNALSSETTING_OTHER_HIDE_ME_TOAST"] = "fmt_internalsetting_other_hide_me_toast";
|
|
50
|
+
FcrUIToastKey["FMT_SHARE_TIPS_SHARINGDISABLED"] = "fmt_share_tips_sharingdisabled";
|
|
51
|
+
FcrUIToastKey["FMT_STATUSBAR_TIPS_COPYFAILED"] = "fmt_statusbar_tips_copyfailed";
|
|
52
|
+
FcrUIToastKey["FMT_LIVESTREAM_UNABLE_SWITCH_GRID_VIEW"] = "fmt_livestream_unable_switch_grid_view";
|
|
53
|
+
FcrUIToastKey["FMT_STATUSBAR_HOVER_UNABLE_SWITCH_GRID_VIEW"] = "fmt_statusbar_hover_unable_switch_grid_view";
|
|
54
|
+
FcrUIToastKey["FMT_RECORD_TIPS_CLOUDRECORDING_START"] = "fmt_record_tips_Cloudrecording_Start";
|
|
55
|
+
FcrUIToastKey["FMT_LOCALRECORD_TIPS_ALREADY_START"] = "fmt_localrecord_tips_already_start";
|
|
56
|
+
FcrUIToastKey["FMT_RECORD_TOAST_RECORD_PAUSED"] = "fmt_record_toast_record_paused";
|
|
57
|
+
FcrUIToastKey["FMT_RECORD_RECORD_STOPED"] = "fmt_record_record_stoped";
|
|
58
|
+
FcrUIToastKey["FMT_INFORMATION_TIPS_BEENCOPIED"] = "fmt_information_tips_beencopied";
|
|
59
|
+
FcrUIToastKey["FMT_AI_SUBTITLES_LABEL_STOPPED_TRANSCRIPTION_SELF"] = "fmt_ai_subtitles_label_stopped_transcription_self";
|
|
60
|
+
FcrUIToastKey["FMT_AI_SUBTITLES_TOAST_STOPPED_TRANSCRIPTION"] = "fmt_ai_subtitles_toast_stopped_transcription";
|
|
61
|
+
FcrUIToastKey["FMT_AI_SUBTITLES_TOAST_RTT_REQUEST_SENT"] = "fmt_ai_subtitles_toast_rtt_request_sent";
|
|
62
|
+
FcrUIToastKey["FMT_AI_SUBTITLES_TOAST_RTT_HOST_DECLINED_REQUEST"] = "fmt_ai_subtitles_toast_rtt_host_declined_request";
|
|
63
|
+
FcrUIToastKey["FMT_AI_SUBTITLES_TOAST_HOST_DISABLED_SUBTITLES"] = "fmt_ai_subtitles_toast_host_disabled_subtitles";
|
|
64
|
+
FcrUIToastKey["FMT_ATTENDIES_TIPS_RECEIVE_VIDEO_OFF_YOU"] = "fmt_attendies_tips_receive_video_off_you";
|
|
65
|
+
FcrUIToastKey["FMT_ATTENDIES_TIPS_RECEIVE_MUTE_YOU"] = "fmt_attendies_tips_receive_mute_you";
|
|
66
|
+
FcrUIToastKey["FMT_GATEWAY_TIPS_NODATA"] = "fmt_gateway_tips_nodata";
|
|
67
|
+
FcrUIToastKey["FMT_TOOLBAR_LABEL_NODEVICE"] = "fmt_toolbar_label_nodevice";
|
|
68
|
+
FcrUIToastKey["FMT_TOOLBAR_TIPS_HOST_FORBID_OPEN_CAMERA"] = "fmt_toolbar_tips_host_forbid_open_camera";
|
|
69
|
+
FcrUIToastKey["FMT_TOOLBAR_TIPS_HOST_FORBID_OPEN_MIC"] = "fmt_toolbar_tips_host_forbid_open_mic";
|
|
70
|
+
FcrUIToastKey["FMT_SETTINGS_TIPS_MUTEALLWHILEJOIN"] = "fmt_settings_tips_muteallwhilejoin";
|
|
71
|
+
FcrUIToastKey["FMT_SETTINGS_TIPS_ALLOWEDSELFUNMUTING"] = "fmt_settings_tips_allowedselfunmuting";
|
|
72
|
+
FcrUIToastKey["FMT_SETTINGS_TIPS_DISABLEDSELFUNMUTING"] = "fmt_settings_tips_disabledselfunmuting";
|
|
73
|
+
FcrUIToastKey["FMT_SETTINGS_TIPS_VIDEOENABLED"] = "fmt_settings_tips_videoenabled";
|
|
74
|
+
FcrUIToastKey["FMT_SETTINGS_TIPS_DISABLEDVIDEO"] = "fmt_settings_tips_disabledvideo";
|
|
75
|
+
FcrUIToastKey["FMT_SETTINGS_TIPS_ALLOWEDSCREENSHARING"] = "fmt_settings_tips_allowedScreensharing";
|
|
76
|
+
FcrUIToastKey["FMT_SETTINGS_TIPS_DISABLEDSCREENSHARING"] = "fmt_settings_tips_disabledScreensharing";
|
|
77
|
+
FcrUIToastKey["FMT_SETTINGS_TIPS_ALLOWEDCHAT"] = "fmt_settings_tips_allowedchat";
|
|
78
|
+
FcrUIToastKey["FMT_SETTINGS_TIPS_BANEDCHAT"] = "fmt_settings_tips_banedchat";
|
|
79
|
+
FcrUIToastKey["FMT_SCREENTIPS_WHITEBOARD_ALREADYOPENED"] = "fmt_screenshare_whiteboard_tips_alreadyopend";
|
|
80
|
+
FcrUIToastKey["FMT_SECURITY_SETTING_POPUP_TOAST_FACILITATOR_WATERMARK"] = "fmt_security_setting_popup_toast_facilitator_watermark";
|
|
81
|
+
FcrUIToastKey["FMT_SECURITY_SETTING_POPUP_TOAST_CO_FACILITATOR_WATERMARK"] = "fmt_security_setting_popup_toast_co_facilitator_watermark";
|
|
82
|
+
FcrUIToastKey["FMT_SECURITY_SETTING_POPUP_TOAST_TURN_OFF_WATERMARK"] = "fmt_security_setting_popup_toast_turn_off_watermark";
|
|
83
|
+
FcrUIToastKey["FMT_ATTENDIES_TIPS_MINE_NEW_HOST"] = "fmt_attendies_tips_mine_new_host";
|
|
84
|
+
FcrUIToastKey["FMT_ATTENDIES_TIPS_NEW_HOST"] = "fmt_attendies_tips_new_host";
|
|
85
|
+
FcrUIToastKey["FMT_ATTENDIES_TIPS_MINE_NEW_CO_HOST"] = "fmt_attendies_tips_mine_new_co_host";
|
|
86
|
+
FcrUIToastKey["FMT_ATTENDIES_TIPS_NEW_CO_HOST"] = "fmt_attendies_tips_new_co_host";
|
|
87
|
+
FcrUIToastKey["FMT_PAIRICIPANT_TIPS_COHOSTBEENREVOKED"] = "fmt_pairicipant_tips_cohostbeenrevoke";
|
|
88
|
+
FcrUIToastKey["FMT_PAIRICIPANT_TIPS_NO_LONGER_COHOST"] = "fmt_pairicipant_tips_nolongercohost";
|
|
89
|
+
FcrUIToastKey["FMT_AI_RTT_TOAST_HOST_ENABLED_RTT"] = "fmt_ai_rtt_toast_host_enabled_rtt";
|
|
90
|
+
FcrUIToastKey["FMT_AI_RTT_TOAST_HOST_NOT_PERMITTED_START_STOP_RTT"] = "fmt_ai_rtt_toast_host_not_permitted_start_stop_rtt";
|
|
91
|
+
FcrUIToastKey["FMT_AI_SUBTITLES_TOAST_HOST_ENABLED_CAPTIONS"] = "fmt_ai_subtitles_toast_host_enabled_captions";
|
|
92
|
+
FcrUIToastKey["FMT_AI_SUBTITLES_TOAST_CHANGE_LANGUAGE_SELF"] = "fmt_ai_subtitles_toast_change_language_self";
|
|
93
|
+
FcrUIToastKey["FMT_AI_SUBTITLES_TOAST_CHANGE_LANGUAGE_ATTENDEES"] = "fmt_ai_subtitles_toast_change_language_attendees";
|
|
94
|
+
FcrUIToastKey["FMT_AI_SUBTITLES_TOAST_YOU_TURNED_OFF_SUBTITLES"] = "fmt_ai_subtitles_toast_you_turned_off_subtitles";
|
|
95
|
+
FcrUIToastKey["FMT_ATTENDIES_TOAST_HOST_TURNED_OFF_VIDEO"] = "fmt_attendies_toast_host_turned_off_video";
|
|
96
|
+
FcrUIToastKey["FMT_ATTENDIES_TOAST_HOST_ENABLED_MUTE"] = "fmt_attendies_toast_host_enabled_mute";
|
|
97
|
+
FcrUIToastKey["FMT_INTERNALSETTING_OTHER_HIDE_NO_VIDEO_PIN_CANCELLED"] = "fmt_internalsetting_other_hide_no_video_pin_cancelled";
|
|
98
|
+
FcrUIToastKey["FMT_SETTINGS_TIPS_SCREENLOCKED"] = "fmt_settings_tips_screenlocked";
|
|
99
|
+
FcrUIToastKey["FMT_SETTINGS_TIPS_SCREENUNLOCK"] = "fmt_settings_tips_screenunlock";
|
|
100
|
+
FcrUIToastKey["FMT_MEETING_TOAST_HOST_JOIN_MEETING"] = "fmt_meeting_toast_host_join_meeting";
|
|
101
|
+
FcrUIToastKey["FMT_MEETING_TOAST_STARTED_NEW_SHARE"] = "fmt_meeting_toast_started_new_share";
|
|
102
|
+
FcrUIToastKey["FMT_MEETING_TOAST_ENABLED_WAITINGROOM"] = "fmt_meeting_toast_enabled_waitingroom";
|
|
103
|
+
FcrUIToastKey["FMT_MEETING_TOAST_DISABLED_WAITINGROOM"] = "fmt_meeting_toast_disabled_waitingroom";
|
|
104
|
+
FcrUIToastKey["FMT_SCREENSHARE_TIPS_FAILD_RESELECT"] = "fmt_screenshare_tips_faild_reselect";
|
|
105
|
+
FcrUIToastKey["FMT_SCREENSHARE_TIPS_FAILD_SCREENSELECT"] = "fmt_screenshare_tips_faild_screenselect";
|
|
106
|
+
FcrUIToastKey["FMT_SCREENSHARE_TIPS_ALREADYOPENED"] = "fmt_screenshare_tips_alreadyopened";
|
|
107
|
+
FcrUIToastKey["FMT_WHITEBOARD_TIPS_SHARE_FAILED"] = "fmt_whiteboard_tips_share_failed";
|
|
108
|
+
FcrUIToastKey["FMT_AUDIO_WINDOW_MIC_TURN_ON_ERROR"] = "fmt_audio_window_mic_turn_on_error";
|
|
109
|
+
FcrUIToastKey["FMT_AUDIO_WINDOW_CAMERA_TURN_ON_ERROR"] = "fmt_audio_window_camera_turn_on_error";
|
|
110
|
+
return FcrUIToastKey;
|
|
111
|
+
}({});
|
|
112
|
+
export var DefaultToastParamsMap = (_DefaultToastParamsMa = {}, _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_DefaultToastParamsMa, FcrUIToastKey.ERR_MESSAGE, {
|
|
113
|
+
type: 'error'
|
|
114
|
+
}), FcrUIToastKey.WARN_MESSAGE, {
|
|
115
|
+
type: 'warn'
|
|
116
|
+
}), FcrUIToastKey.FMT_SECURITY_TIPS_LOCK_MEETING_OFF, {
|
|
117
|
+
type: 'info'
|
|
118
|
+
}), FcrUIToastKey.FMT_WAITINGROOM_MOBILE_MEMBERLIST_TIPS_ALL_REMOVED, {
|
|
119
|
+
type: 'normal'
|
|
120
|
+
}), FcrUIToastKey.FMT_INTERNALSETTING_OTHER_HIDE_MY_WINDOW_PIN_CANCELLED, {
|
|
121
|
+
type: 'error'
|
|
122
|
+
}), FcrUIToastKey.FMT_WAITINGROOM_MOBILE_MEMBERLIST_TIPS_ALL_AMITTED, {
|
|
123
|
+
type: 'normal'
|
|
124
|
+
}), FcrUIToastKey.FMT_ATTENDIES_TIPS_CHAT_OFF, {
|
|
125
|
+
type: 'error'
|
|
126
|
+
}), FcrUIToastKey.FMT_ATTENDIES_TOAST_CANT_SETHOST, {
|
|
127
|
+
type: 'error'
|
|
128
|
+
}), FcrUIToastKey.FMT_ATTENDIES_TOAST_CANT_SETCOHOST, {
|
|
129
|
+
type: 'error'
|
|
130
|
+
}), FcrUIToastKey.FMT_UIMANAGER_TIPS_USERLEAFT, {
|
|
131
|
+
type: 'error'
|
|
132
|
+
}), _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_DefaultToastParamsMa, FcrUIToastKey.FMT_ADDITIONAL_TIPS_NICKNAME_CHANGE_SUCCESS, {
|
|
133
|
+
type: 'info'
|
|
134
|
+
}), FcrUIToastKey.FMT_WAITINGROOM_PUT_IN_SUCCESS, {
|
|
135
|
+
type: 'normal'
|
|
136
|
+
}), FcrUIToastKey.FMT_WAITINGROOM_SETTING_POPUP_TOAST_UNABLE_MOVE_CREATOR, {
|
|
137
|
+
type: 'error'
|
|
138
|
+
}), FcrUIToastKey.FMT_WAITINGROOM_SETTING_POPUP_TOAST_MOVE_IN_FAILED, {
|
|
139
|
+
type: 'error'
|
|
140
|
+
}), FcrUIToastKey.FMT_INTERNALSSETTING_OTHER_HIDE_NO_VIDEO_TOAST, {
|
|
141
|
+
type: 'normal'
|
|
142
|
+
}), FcrUIToastKey.FMT_ATTENDIES_BUTTON_REVOKEEHOST_ERROR, {
|
|
143
|
+
type: 'error'
|
|
144
|
+
}), FcrUIToastKey.FMT_ATTENDIES_TOAST_COHOST_UPPER_LIMIT, {
|
|
145
|
+
type: 'error'
|
|
146
|
+
}), FcrUIToastKey.FMT_RECORD_TOAST_RECORD_PAUSED, {
|
|
147
|
+
type: 'normal'
|
|
148
|
+
}), FcrUIToastKey.FMT_RECORD_RECORD_STOPED, {
|
|
149
|
+
type: 'normal'
|
|
150
|
+
}), FcrUIToastKey.FMT_INFORMATION_TIPS_BEENCOPIED, {
|
|
151
|
+
type: 'normal'
|
|
152
|
+
}), _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_DefaultToastParamsMa, FcrUIToastKey.FMT_AI_SUBTITLES_LABEL_STOPPED_TRANSCRIPTION_SELF, {
|
|
153
|
+
type: 'normal'
|
|
154
|
+
}), FcrUIToastKey.FMT_AI_SUBTITLES_TOAST_STOPPED_TRANSCRIPTION, {
|
|
155
|
+
type: 'info'
|
|
156
|
+
}), FcrUIToastKey.FMT_AI_SUBTITLES_TOAST_RTT_REQUEST_SENT, {
|
|
157
|
+
type: 'normal'
|
|
158
|
+
}), FcrUIToastKey.FMT_AI_SUBTITLES_TOAST_RTT_HOST_DECLINED_REQUEST, {
|
|
159
|
+
type: 'info'
|
|
160
|
+
}), FcrUIToastKey.FMT_AI_SUBTITLES_TOAST_HOST_DISABLED_SUBTITLES, {
|
|
161
|
+
type: 'error'
|
|
162
|
+
}), FcrUIToastKey.FMT_ATTENDIES_TIPS_RECEIVE_VIDEO_OFF_YOU, {
|
|
163
|
+
type: 'error'
|
|
164
|
+
}), FcrUIToastKey.FMT_ATTENDIES_TIPS_RECEIVE_MUTE_YOU, {
|
|
165
|
+
type: 'error'
|
|
166
|
+
}), FcrUIToastKey.FMT_GATEWAY_TIPS_NODATA, {
|
|
167
|
+
type: 'normal'
|
|
168
|
+
}), FcrUIToastKey.FMT_TOOLBAR_LABEL_NODEVICE, {
|
|
169
|
+
type: 'normal'
|
|
170
|
+
}), FcrUIToastKey.FMT_TOOLBAR_TIPS_HOST_FORBID_OPEN_CAMERA, {
|
|
171
|
+
type: 'error'
|
|
172
|
+
}), _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_DefaultToastParamsMa, FcrUIToastKey.FMT_TOOLBAR_TIPS_HOST_FORBID_OPEN_MIC, {
|
|
173
|
+
type: 'error'
|
|
174
|
+
}), FcrUIToastKey.FMT_SETTINGS_TIPS_MUTEALLWHILEJOIN, {
|
|
175
|
+
type: 'normal'
|
|
176
|
+
}), FcrUIToastKey.FMT_SETTINGS_TIPS_ALLOWEDSELFUNMUTING, {
|
|
177
|
+
type: 'normal'
|
|
178
|
+
}), FcrUIToastKey.FMT_SETTINGS_TIPS_DISABLEDSELFUNMUTING, {
|
|
179
|
+
type: 'error'
|
|
180
|
+
}), FcrUIToastKey.FMT_SETTINGS_TIPS_VIDEOENABLED, {
|
|
181
|
+
type: 'normal'
|
|
182
|
+
}), FcrUIToastKey.FMT_SETTINGS_TIPS_DISABLEDVIDEO, {
|
|
183
|
+
type: 'error'
|
|
184
|
+
}), FcrUIToastKey.FMT_SETTINGS_TIPS_ALLOWEDSCREENSHARING, {
|
|
185
|
+
type: 'normal'
|
|
186
|
+
}), FcrUIToastKey.FMT_SETTINGS_TIPS_DISABLEDSCREENSHARING, {
|
|
187
|
+
type: 'error'
|
|
188
|
+
}), FcrUIToastKey.FMT_SETTINGS_TIPS_ALLOWEDCHAT, {
|
|
189
|
+
type: 'normal'
|
|
190
|
+
}), FcrUIToastKey.FMT_SETTINGS_TIPS_BANEDCHAT, {
|
|
191
|
+
type: 'error'
|
|
192
|
+
}), _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_DefaultToastParamsMa, FcrUIToastKey.FMT_SCREENTIPS_WHITEBOARD_ALREADYOPENED, {
|
|
193
|
+
type: 'normal'
|
|
194
|
+
}), FcrUIToastKey.FMT_SECURITY_SETTING_POPUP_TOAST_FACILITATOR_WATERMARK, {
|
|
195
|
+
type: 'normal'
|
|
196
|
+
}), FcrUIToastKey.FMT_SECURITY_SETTING_POPUP_TOAST_CO_FACILITATOR_WATERMARK, {
|
|
197
|
+
type: 'normal'
|
|
198
|
+
}), FcrUIToastKey.FMT_SECURITY_SETTING_POPUP_TOAST_TURN_OFF_WATERMARK, {
|
|
199
|
+
type: 'normal'
|
|
200
|
+
}), FcrUIToastKey.FMT_ATTENDIES_TIPS_MINE_NEW_HOST, {
|
|
201
|
+
type: 'info'
|
|
202
|
+
}), FcrUIToastKey.FMT_ATTENDIES_TIPS_NEW_HOST, {
|
|
203
|
+
type: 'normal'
|
|
204
|
+
}), FcrUIToastKey.FMT_ATTENDIES_TIPS_MINE_NEW_CO_HOST, {
|
|
205
|
+
type: 'info'
|
|
206
|
+
}), FcrUIToastKey.FMT_ATTENDIES_TIPS_NEW_CO_HOST, {
|
|
207
|
+
type: 'normal'
|
|
208
|
+
}), FcrUIToastKey.FMT_PAIRICIPANT_TIPS_COHOSTBEENREVOKED, {
|
|
209
|
+
type: 'error',
|
|
210
|
+
duration: 3000
|
|
211
|
+
}), FcrUIToastKey.FMT_SECURITY_TIPS_LOCK_MEETING_ON, {
|
|
212
|
+
type: 'error'
|
|
213
|
+
}), _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_DefaultToastParamsMa, FcrUIToastKey.FMT_UIMANAGER_TIPS_MEETINGUNLOCKED, {
|
|
214
|
+
type: 'error'
|
|
215
|
+
}), FcrUIToastKey.FMT_WAITINGROOM_MOBILE_SETTING_TIPS_DISABLE, {
|
|
216
|
+
type: 'error'
|
|
217
|
+
}), FcrUIToastKey.FMT_WAITINGROOM_SETTING_TIPS_ENABLE, {
|
|
218
|
+
type: 'error'
|
|
219
|
+
}), FcrUIToastKey.FMT_SCREENTIPS_NETWORK_ERROR_UNABLE_START_SCREEN_SHARE, {
|
|
220
|
+
type: 'error'
|
|
221
|
+
}), FcrUIToastKey.FMT_INTERPRETATION_INTERPRETER_TOAST_LABEL_OPEN_MICRO, {
|
|
222
|
+
type: 'error'
|
|
223
|
+
}), FcrUIToastKey.FMT_CHAT_TOAST_INFRACTION_ERROR, {
|
|
224
|
+
type: 'error'
|
|
225
|
+
}), FcrUIToastKey.FMT_PSTN_STATUS_HUNGUP, {
|
|
226
|
+
type: 'error'
|
|
227
|
+
}), FcrUIToastKey.FMT_PSTN_STATUS_VOICECONNECTED, {
|
|
228
|
+
type: 'error'
|
|
229
|
+
}), FcrUIToastKey.FMT_STATUSBAR_STATUS_COPPIED, {
|
|
230
|
+
type: 'error'
|
|
231
|
+
}), FcrUIToastKey.FMT_MEETING_MAINWINDOW_TOPBAR_LEFT_POPUP_TOAST_COPY_DONE, {
|
|
232
|
+
type: 'error'
|
|
233
|
+
}), _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_DefaultToastParamsMa, FcrUIToastKey.FMT_INFORMATION_TIPS_NUMBERCOPYFAILED, {
|
|
234
|
+
type: 'error'
|
|
235
|
+
}), FcrUIToastKey.FMT_ADDITIONAL_TIPS_INVITATION, {
|
|
236
|
+
type: 'error'
|
|
237
|
+
}), FcrUIToastKey.FMT_ADDITIONAL_TIPS_INVITATIONFAILED, {
|
|
238
|
+
type: 'error'
|
|
239
|
+
}), FcrUIToastKey.FMT_UIMANAGER_TIPS_PASSWORDCOPIED, {
|
|
240
|
+
type: 'error'
|
|
241
|
+
}), FcrUIToastKey.FMT_SETTINGS_TIPS_PASSWORDCOPYFAILED, {
|
|
242
|
+
type: 'error'
|
|
243
|
+
}), FcrUIToastKey.FMT_SHARING_TIPS_COPYFULL_FAILED, {
|
|
244
|
+
type: 'error'
|
|
245
|
+
}), FcrUIToastKey.FMT_INTERPRETATION_MAINWINDOW_TOAST_LABEL_INTERPRET_OFFLINE_CONTROLLER, {
|
|
246
|
+
type: 'error'
|
|
247
|
+
}), FcrUIToastKey.FMT_INTERPRETATION_INTERPRETER_POPUP_LABEL_LANGUAGE_CHANGE_BY_COCONTROLLER, {
|
|
248
|
+
type: 'error'
|
|
249
|
+
}), FcrUIToastKey.FMT_INTERPRETATION_MAINWINDOW_TOAST_LABEL_UPDATE_LANGUAGE, {
|
|
250
|
+
type: 'error'
|
|
251
|
+
}), FcrUIToastKey.FMT_INTERPRETATION_MOBILE_TOAST_CONTROLLER_TOAST_LABEL_UPDATE_INTERPRETER_BY_COCONTROLLER, {
|
|
252
|
+
type: 'error'
|
|
253
|
+
}), _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_DefaultToastParamsMa, FcrUIToastKey.FMT_INTERPRETATION_INTERPRETER_TOAST_LABEL_RETURN_CHANNEL, {
|
|
254
|
+
type: 'error'
|
|
255
|
+
}), FcrUIToastKey.FMT_BROADCAST_LIVESTREAM_TIPS_HAND_OVER_PC_TO_MOBILE, {
|
|
256
|
+
type: 'error'
|
|
257
|
+
}), FcrUIToastKey.FMT_BROADCAST_LIVESTREAM_STOPPED, {
|
|
258
|
+
type: 'error'
|
|
259
|
+
}), FcrUIToastKey.FMT_PSTN_TOAST_MERGED, {
|
|
260
|
+
type: 'error'
|
|
261
|
+
}), FcrUIToastKey.FMT_HOSTKEY_MEETINGROOM_TOAST_NOW_HOST, {
|
|
262
|
+
type: 'error'
|
|
263
|
+
}), FcrUIToastKey.FMT_UIMANAGER_TIPS_ALLMUTED, {
|
|
264
|
+
type: 'error'
|
|
265
|
+
}), FcrUIToastKey.FMT_DEVICE_TOAST_SWITCH_DEVICE, {
|
|
266
|
+
type: 'error'
|
|
267
|
+
}), FcrUIToastKey.FMT_INTERNALSSETTING_OTHER_HIDE_ME_TOAST, {
|
|
268
|
+
type: 'error'
|
|
269
|
+
}), FcrUIToastKey.FMT_SHARE_TIPS_SHARINGDISABLED, {
|
|
270
|
+
type: 'error'
|
|
271
|
+
}), FcrUIToastKey.FMT_STATUSBAR_TIPS_COPYFAILED, {
|
|
272
|
+
type: 'error'
|
|
273
|
+
}), _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_DefaultToastParamsMa, FcrUIToastKey.FMT_LIVESTREAM_UNABLE_SWITCH_GRID_VIEW, {
|
|
274
|
+
type: 'error'
|
|
275
|
+
}), FcrUIToastKey.FMT_STATUSBAR_HOVER_UNABLE_SWITCH_GRID_VIEW, {
|
|
276
|
+
type: 'error'
|
|
277
|
+
}), FcrUIToastKey.FMT_RECORD_TIPS_CLOUDRECORDING_START, {
|
|
278
|
+
type: 'error'
|
|
279
|
+
}), FcrUIToastKey.FMT_LOCALRECORD_TIPS_ALREADY_START, {
|
|
280
|
+
type: 'error'
|
|
281
|
+
}), FcrUIToastKey.FMT_PAIRICIPANT_TIPS_NO_LONGER_COHOST, {
|
|
282
|
+
type: 'normal',
|
|
283
|
+
duration: 3000
|
|
284
|
+
}), FcrUIToastKey.FMT_AI_RTT_TOAST_HOST_ENABLED_RTT, {
|
|
285
|
+
type: 'normal'
|
|
286
|
+
}), FcrUIToastKey.FMT_AI_RTT_TOAST_HOST_NOT_PERMITTED_START_STOP_RTT, {
|
|
287
|
+
type: 'error'
|
|
288
|
+
}), FcrUIToastKey.FMT_AI_SUBTITLES_TOAST_HOST_ENABLED_CAPTIONS, {
|
|
289
|
+
type: 'normal'
|
|
290
|
+
}), FcrUIToastKey.FMT_AI_SUBTITLES_TOAST_CHANGE_LANGUAGE_SELF, {
|
|
291
|
+
type: 'normal',
|
|
292
|
+
duration: 2000
|
|
293
|
+
}), FcrUIToastKey.FMT_AI_SUBTITLES_TOAST_CHANGE_LANGUAGE_ATTENDEES, {
|
|
294
|
+
type: 'normal',
|
|
295
|
+
duration: 2000
|
|
296
|
+
}), _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_DefaultToastParamsMa, FcrUIToastKey.FMT_AI_SUBTITLES_TOAST_YOU_TURNED_OFF_SUBTITLES, {
|
|
297
|
+
type: 'normal',
|
|
298
|
+
duration: 2000
|
|
299
|
+
}), FcrUIToastKey.FMT_ATTENDIES_TOAST_HOST_TURNED_OFF_VIDEO, {
|
|
300
|
+
type: 'error'
|
|
301
|
+
}), FcrUIToastKey.FMT_ATTENDIES_TOAST_HOST_ENABLED_MUTE, {
|
|
302
|
+
type: 'error'
|
|
303
|
+
}), FcrUIToastKey.FMT_INTERNALSETTING_OTHER_HIDE_NO_VIDEO_PIN_CANCELLED, {
|
|
304
|
+
type: 'error'
|
|
305
|
+
}), FcrUIToastKey.FMT_SETTINGS_TIPS_SCREENLOCKED, {
|
|
306
|
+
type: 'normal'
|
|
307
|
+
}), FcrUIToastKey.FMT_SETTINGS_TIPS_SCREENUNLOCK, {
|
|
308
|
+
type: 'normal'
|
|
309
|
+
}), FcrUIToastKey.FMT_MEETING_TOAST_HOST_JOIN_MEETING, {
|
|
310
|
+
type: 'info'
|
|
311
|
+
}), FcrUIToastKey.FMT_MEETING_TOAST_STARTED_NEW_SHARE, {
|
|
312
|
+
type: 'info'
|
|
313
|
+
}), FcrUIToastKey.FMT_MEETING_TOAST_ENABLED_WAITINGROOM, {
|
|
314
|
+
type: 'normal'
|
|
315
|
+
}), FcrUIToastKey.FMT_MEETING_TOAST_DISABLED_WAITINGROOM, {
|
|
316
|
+
type: 'normal'
|
|
317
|
+
}), _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_DefaultToastParamsMa, FcrUIToastKey.FMT_SCREENSHARE_TIPS_FAILD_RESELECT, {
|
|
318
|
+
type: 'error'
|
|
319
|
+
}), FcrUIToastKey.FMT_SCREENSHARE_TIPS_FAILD_SCREENSELECT, {
|
|
320
|
+
type: 'error'
|
|
321
|
+
}), FcrUIToastKey.FMT_SCREENSHARE_TIPS_ALREADYOPENED, {
|
|
322
|
+
type: 'error'
|
|
323
|
+
}), FcrUIToastKey.FMT_WHITEBOARD_TIPS_SHARE_FAILED, {
|
|
324
|
+
type: 'error'
|
|
325
|
+
}), FcrUIToastKey.FMT_AUDIO_WINDOW_MIC_TURN_ON_ERROR, {
|
|
326
|
+
type: 'error'
|
|
327
|
+
}), FcrUIToastKey.FMT_AUDIO_WINDOW_CAMERA_TURN_ON_ERROR, {
|
|
328
|
+
type: 'error'
|
|
329
|
+
}));
|
|
@@ -7,11 +7,26 @@ import "core-js/modules/es.array.is-array.js";
|
|
|
7
7
|
import "core-js/modules/es.date.to-primitive.js";
|
|
8
8
|
import "core-js/modules/es.function.bind.js";
|
|
9
9
|
import "core-js/modules/es.function.name.js";
|
|
10
|
+
import "core-js/modules/es.map.js";
|
|
10
11
|
import "core-js/modules/es.number.constructor.js";
|
|
11
12
|
import "core-js/modules/es.object.create.js";
|
|
12
13
|
import "core-js/modules/es.object.define-property.js";
|
|
13
14
|
import "core-js/modules/es.object.get-own-property-descriptor.js";
|
|
14
15
|
import "core-js/modules/esnext.function.metadata.js";
|
|
16
|
+
import "core-js/modules/esnext.map.delete-all.js";
|
|
17
|
+
import "core-js/modules/esnext.map.emplace.js";
|
|
18
|
+
import "core-js/modules/esnext.map.every.js";
|
|
19
|
+
import "core-js/modules/esnext.map.filter.js";
|
|
20
|
+
import "core-js/modules/esnext.map.find.js";
|
|
21
|
+
import "core-js/modules/esnext.map.find-key.js";
|
|
22
|
+
import "core-js/modules/esnext.map.includes.js";
|
|
23
|
+
import "core-js/modules/esnext.map.key-of.js";
|
|
24
|
+
import "core-js/modules/esnext.map.map-keys.js";
|
|
25
|
+
import "core-js/modules/esnext.map.map-values.js";
|
|
26
|
+
import "core-js/modules/esnext.map.merge.js";
|
|
27
|
+
import "core-js/modules/esnext.map.reduce.js";
|
|
28
|
+
import "core-js/modules/esnext.map.some.js";
|
|
29
|
+
import "core-js/modules/esnext.map.update.js";
|
|
15
30
|
import "core-js/modules/esnext.symbol.metadata.js";
|
|
16
31
|
import _typeof from "@babel/runtime/helpers/typeof";
|
|
17
32
|
import _slicedToArray from "@babel/runtime/helpers/slicedToArray";
|
|
@@ -19,7 +34,7 @@ import _classCallCheck from "@babel/runtime/helpers/classCallCheck";
|
|
|
19
34
|
import _createClass from "@babel/runtime/helpers/createClass";
|
|
20
35
|
import _defineProperty from "@babel/runtime/helpers/defineProperty";
|
|
21
36
|
var _VideoWindowStore;
|
|
22
|
-
var _initProto, _init__videoWindowSmallTypeStyleSize,
|
|
37
|
+
var _initProto, _init__videoWindowSmallTypeStyleSize, _init_wrapperHovering, _init_videoWindowPreviewType, _setVideoWindowPreviewTypeDecs, _setWrapperHoverDecs, _getAllowedOperationsDecs, _handleVideowWindowResizeDecs, _ref;
|
|
23
38
|
import "core-js/modules/es.array.filter.js";
|
|
24
39
|
import "core-js/modules/es.array.find.js";
|
|
25
40
|
import "core-js/modules/es.array.for-each.js";
|
|
@@ -27,7 +42,6 @@ import "core-js/modules/es.array.iterator.js";
|
|
|
27
42
|
import "core-js/modules/es.array.push.js";
|
|
28
43
|
import "core-js/modules/es.array.slice.js";
|
|
29
44
|
import "core-js/modules/es.array.some.js";
|
|
30
|
-
import "core-js/modules/es.map.js";
|
|
31
45
|
import "core-js/modules/es.object.to-string.js";
|
|
32
46
|
import "core-js/modules/es.string.iterator.js";
|
|
33
47
|
import "core-js/modules/es.weak-map.js";
|
|
@@ -36,20 +50,6 @@ import "core-js/modules/esnext.iterator.filter.js";
|
|
|
36
50
|
import "core-js/modules/esnext.iterator.find.js";
|
|
37
51
|
import "core-js/modules/esnext.iterator.for-each.js";
|
|
38
52
|
import "core-js/modules/esnext.iterator.some.js";
|
|
39
|
-
import "core-js/modules/esnext.map.delete-all.js";
|
|
40
|
-
import "core-js/modules/esnext.map.emplace.js";
|
|
41
|
-
import "core-js/modules/esnext.map.every.js";
|
|
42
|
-
import "core-js/modules/esnext.map.filter.js";
|
|
43
|
-
import "core-js/modules/esnext.map.find.js";
|
|
44
|
-
import "core-js/modules/esnext.map.find-key.js";
|
|
45
|
-
import "core-js/modules/esnext.map.includes.js";
|
|
46
|
-
import "core-js/modules/esnext.map.key-of.js";
|
|
47
|
-
import "core-js/modules/esnext.map.map-keys.js";
|
|
48
|
-
import "core-js/modules/esnext.map.map-values.js";
|
|
49
|
-
import "core-js/modules/esnext.map.merge.js";
|
|
50
|
-
import "core-js/modules/esnext.map.reduce.js";
|
|
51
|
-
import "core-js/modules/esnext.map.some.js";
|
|
52
|
-
import "core-js/modules/esnext.map.update.js";
|
|
53
53
|
import "core-js/modules/esnext.weak-map.delete-all.js";
|
|
54
54
|
import "core-js/modules/esnext.weak-map.emplace.js";
|
|
55
55
|
import "core-js/modules/web.dom-collections.for-each.js";
|
|
@@ -78,8 +78,7 @@ import { setVideoWindowDialogSize } from '../dialog/dialogs/video-window';
|
|
|
78
78
|
var _A = /*#__PURE__*/new WeakMap();
|
|
79
79
|
var _B = /*#__PURE__*/new WeakMap();
|
|
80
80
|
var _C = /*#__PURE__*/new WeakMap();
|
|
81
|
-
|
|
82
|
-
_ref = (_setVideoWindowPreviewTypeDecs = [action, action.bound], _setWrapperHoverDecs = [action, action.bound], _getAllowedOperationsDecs = [action, action.bound], _handleVideowWindowResizeDecs = [action, action.bound], _onAudioVolumeUpdatedDecs = [action, action.bound], "_subscriptions");
|
|
81
|
+
_ref = (_setVideoWindowPreviewTypeDecs = [action, action.bound], _setWrapperHoverDecs = [action, action.bound], _getAllowedOperationsDecs = [action, action.bound], _handleVideowWindowResizeDecs = [action, action.bound], "_subscriptions");
|
|
83
82
|
var VideoWindowStore = /*#__PURE__*/function () {
|
|
84
83
|
function VideoWindowStore(_ref2) {
|
|
85
84
|
var _this = this;
|
|
@@ -96,9 +95,8 @@ var VideoWindowStore = /*#__PURE__*/function () {
|
|
|
96
95
|
width: DefaultVideoWindowWidth,
|
|
97
96
|
height: DefaultVideoWindowSmallTypeHeight
|
|
98
97
|
}));
|
|
99
|
-
_classPrivateFieldInitSpec(this, _B,
|
|
100
|
-
_classPrivateFieldInitSpec(this, _C,
|
|
101
|
-
_classPrivateFieldInitSpec(this, _D, _init_videoWindowPreviewType(this, FcrVideoWindowPreviewType.SMALL));
|
|
98
|
+
_classPrivateFieldInitSpec(this, _B, _init_wrapperHovering(this, false));
|
|
99
|
+
_classPrivateFieldInitSpec(this, _C, _init_videoWindowPreviewType(this, FcrVideoWindowPreviewType.SMALL));
|
|
102
100
|
// Get all required objects from objectManager
|
|
103
101
|
this._eventProvider = objectManager.getObject(FcrUIObjectKeys.P_EVENT_PROVIDER);
|
|
104
102
|
this._deviceStore = objectManager.getObject(FcrUIObjectKeys.P_DEVICE_PROVIDER);
|
|
@@ -107,6 +105,7 @@ var VideoWindowStore = /*#__PURE__*/function () {
|
|
|
107
105
|
this._sharedInterpreterDataSource = objectManager.getObject(FcrUIObjectKeys.S_SHARED_INTERPRETER_DATA_SOURCE);
|
|
108
106
|
this._sharedSettingDataSource = objectManager.getObject(FcrUIObjectKeys.S_SHARED_SETTING_DATA_SOURCE);
|
|
109
107
|
this._chatProvider = objectManager.getObject(FcrUIObjectKeys.P_CHAT_PROVIDER);
|
|
108
|
+
this._sharedUserAudioVolumeDataSource = objectManager.getObject(FcrUIObjectKeys.S_SHARED_USER_AUDIO_VOLUME_DATA_SOURCE);
|
|
110
109
|
this._sharedVideoWindowDataSource = objectManager.getObject(FcrUIObjectKeys.S_SHARED_VIDEO_WINDOW_DATA_SOURCE);
|
|
111
110
|
this._sharedMemberDataSource = objectManager.getObject(FcrUIObjectKeys.S_SHARED_MEMBER_DATA_SOURCE);
|
|
112
111
|
this._windowProvider = objectManager.getObject(FcrUIObjectKeys.P_WINDOW_PROVIDER);
|
|
@@ -121,12 +120,6 @@ var VideoWindowStore = /*#__PURE__*/function () {
|
|
|
121
120
|
var roomProvider = objectManager.getObject(FcrUIObjectKeys.P_ROOM_PROVIDER);
|
|
122
121
|
this._streamControl = roomProvider.currentRoomControl.getStreamControl();
|
|
123
122
|
this._subscriptions.push(reaction(function () {
|
|
124
|
-
return _this._deviceStore.microphoneVolumeLevel;
|
|
125
|
-
}, function (volume) {
|
|
126
|
-
runInAction(function () {
|
|
127
|
-
_this.userVolumeMap.set('0', volume);
|
|
128
|
-
});
|
|
129
|
-
}), reaction(function () {
|
|
130
123
|
return _this.videoWindowPreviewType;
|
|
131
124
|
}, function () {
|
|
132
125
|
var size = _this.videoWindowStyleSize;
|
|
@@ -148,9 +141,6 @@ var VideoWindowStore = /*#__PURE__*/function () {
|
|
|
148
141
|
_this._setVideoWindowDialogSize(width, size.height);
|
|
149
142
|
}
|
|
150
143
|
}));
|
|
151
|
-
this._streamControl.addObserver({
|
|
152
|
-
onStreamVolumeIndicationUpdated: this._onAudioVolumeUpdated
|
|
153
|
-
});
|
|
154
144
|
this._dialogProvider.addObserver(this._dialogObserver);
|
|
155
145
|
}
|
|
156
146
|
return _createClass(VideoWindowStore, [{
|
|
@@ -162,7 +152,7 @@ var VideoWindowStore = /*#__PURE__*/function () {
|
|
|
162
152
|
_classPrivateFieldSet(_A, this, v);
|
|
163
153
|
}
|
|
164
154
|
}, {
|
|
165
|
-
key: "
|
|
155
|
+
key: "wrapperHovering",
|
|
166
156
|
get: function get() {
|
|
167
157
|
return _classPrivateFieldGet(_B, this);
|
|
168
158
|
},
|
|
@@ -170,7 +160,7 @@ var VideoWindowStore = /*#__PURE__*/function () {
|
|
|
170
160
|
_classPrivateFieldSet(_B, this, v);
|
|
171
161
|
}
|
|
172
162
|
}, {
|
|
173
|
-
key: "
|
|
163
|
+
key: "videoWindowPreviewType",
|
|
174
164
|
get: function get() {
|
|
175
165
|
return _classPrivateFieldGet(_C, this);
|
|
176
166
|
},
|
|
@@ -178,12 +168,9 @@ var VideoWindowStore = /*#__PURE__*/function () {
|
|
|
178
168
|
_classPrivateFieldSet(_C, this, v);
|
|
179
169
|
}
|
|
180
170
|
}, {
|
|
181
|
-
key: "
|
|
171
|
+
key: "userVolumeMap",
|
|
182
172
|
get: function get() {
|
|
183
|
-
return
|
|
184
|
-
},
|
|
185
|
-
set: function set(v) {
|
|
186
|
-
_classPrivateFieldSet(_D, this, v);
|
|
173
|
+
return this._sharedUserAudioVolumeDataSource.audioVolumeMap;
|
|
187
174
|
}
|
|
188
175
|
}, {
|
|
189
176
|
key: "foldList",
|
|
@@ -289,9 +276,6 @@ var VideoWindowStore = /*#__PURE__*/function () {
|
|
|
289
276
|
this._subscriptions.forEach(function (fn) {
|
|
290
277
|
return fn();
|
|
291
278
|
});
|
|
292
|
-
this._streamControl.removeObserver({
|
|
293
|
-
onStreamVolumeIndicationUpdated: this._onAudioVolumeUpdated
|
|
294
|
-
});
|
|
295
279
|
this._dialogProvider.removeObserver(this._dialogObserver);
|
|
296
280
|
}
|
|
297
281
|
}, {
|
|
@@ -468,11 +452,6 @@ var VideoWindowStore = /*#__PURE__*/function () {
|
|
|
468
452
|
height: height
|
|
469
453
|
});
|
|
470
454
|
}
|
|
471
|
-
}, {
|
|
472
|
-
key: "_onAudioVolumeUpdated",
|
|
473
|
-
value: function _onAudioVolumeUpdated(roomId, streamId, volume) {
|
|
474
|
-
this.userVolumeMap.set(streamId, Math.floor(volume / 255 * 100));
|
|
475
|
-
}
|
|
476
455
|
}, {
|
|
477
456
|
key: "_handleDialogOpen",
|
|
478
457
|
value: function _handleDialogOpen(dialogKey) {
|
|
@@ -502,11 +481,10 @@ var VideoWindowStore = /*#__PURE__*/function () {
|
|
|
502
481
|
}]);
|
|
503
482
|
}();
|
|
504
483
|
_VideoWindowStore = VideoWindowStore;
|
|
505
|
-
var _applyDecs$e = _slicedToArray(_applyDecs(_VideoWindowStore, [[observable, 1, "_videoWindowSmallTypeStyleSize"], [observable, 1, "
|
|
484
|
+
var _applyDecs$e = _slicedToArray(_applyDecs(_VideoWindowStore, [[observable, 1, "_videoWindowSmallTypeStyleSize"], [observable, 1, "wrapperHovering"], [observable, 1, "videoWindowPreviewType"], [computed, 3, "foldListRenderData"], [computed, 3, "spotlightStreamId"], [computed, 3, "findSpotlightUser"], [computed, 3, "hasPinnedStream"], [computed, 3, "videoWindowStyleSize"], [bound, 2, "setVideoOrientation"], [bound, 2, "removePin"], [bound, 2, "addPin"], [bound, 2, "sendParticipantEvent"], [bound, 2, "muteAudio"], [bound, 2, "computedVideoWindowHeight"], [bound, 2, "openPrivateChat"], [bound, 2, "openRenameDialog"], [bound, 2, "hasMutePermission"], [bound, 2, "hasUnmutePermission"], [bound, 2, "hasRequestStartAudioPermission"], [_setVideoWindowPreviewTypeDecs, 18, "setVideoWindowPreviewType"], [_setWrapperHoverDecs, 18, "setWrapperHover"], [_getAllowedOperationsDecs, 18, "getAllowedOperations"], [_handleVideowWindowResizeDecs, 18, "handleVideowWindowResize"], [bound, 2, "setVideoWindowSize"], [bound, 2, "resetVideoWindowSize"], [bound, 2, "_handleDialogOpen"], [bound, 2, "_handleDialogClose"]], []).e, 4);
|
|
506
485
|
_init__videoWindowSmallTypeStyleSize = _applyDecs$e[0];
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
_initProto = _applyDecs$e[4];
|
|
486
|
+
_init_wrapperHovering = _applyDecs$e[1];
|
|
487
|
+
_init_videoWindowPreviewType = _applyDecs$e[2];
|
|
488
|
+
_initProto = _applyDecs$e[3];
|
|
511
489
|
export { VideoWindowStore as default };
|
|
512
490
|
export var StoreContext = /*#__PURE__*/createContext(null);
|
|
@@ -205,12 +205,6 @@ export var WhiteboardControlBarStore = /*#__PURE__*/function () {
|
|
|
205
205
|
set: function set(v) {
|
|
206
206
|
_classPrivateFieldSet(_J, this, v);
|
|
207
207
|
}
|
|
208
|
-
}, {
|
|
209
|
-
key: "annotationHasStart",
|
|
210
|
-
get: function get() {
|
|
211
|
-
// @ts-ignore
|
|
212
|
-
return this._sharedAnnotationDataSource.annotationHasStart;
|
|
213
|
-
}
|
|
214
208
|
}, {
|
|
215
209
|
key: "canWriteBoard",
|
|
216
210
|
get: function get() {
|
|
@@ -103,6 +103,7 @@ export var ToolbarStore = /*#__PURE__*/function () {
|
|
|
103
103
|
_defineProperty(this, "_uiEventObserver", {
|
|
104
104
|
onEvent: this._onUiEvent.bind(this)
|
|
105
105
|
});
|
|
106
|
+
_defineProperty(this, "_snapshotTimer", null);
|
|
106
107
|
_classPrivateFieldInitSpec(this, _A, _init_observables(this, {
|
|
107
108
|
currentTool: FcrBoardToolType.CURVE,
|
|
108
109
|
currentShape: undefined,
|
|
@@ -312,6 +313,10 @@ export var ToolbarStore = /*#__PURE__*/function () {
|
|
|
312
313
|
key: "release",
|
|
313
314
|
value: function release() {
|
|
314
315
|
var _this$_boardMainWindo3;
|
|
316
|
+
if (this._snapshotTimer) {
|
|
317
|
+
clearInterval(this._snapshotTimer);
|
|
318
|
+
this._snapshotTimer = null;
|
|
319
|
+
}
|
|
315
320
|
this._eventProvider.removeObserver(this._uiEventObserver);
|
|
316
321
|
(_this$_boardMainWindo3 = this._boardMainWindow) === null || _this$_boardMainWindo3 === void 0 || _this$_boardMainWindo3.removeObserver(this._boardObserver);
|
|
317
322
|
this._whiteboardControl.removeObserver(this._whiteboardObserver);
|
|
@@ -405,46 +410,52 @@ export var ToolbarStore = /*#__PURE__*/function () {
|
|
|
405
410
|
value: function () {
|
|
406
411
|
var _getSnapshotImage2 = _asyncToGenerator(/*#__PURE__*/_regeneratorRuntime.mark(function _callee2() {
|
|
407
412
|
var _this5 = this;
|
|
408
|
-
var mainWindow,
|
|
413
|
+
var mainWindow, imageData, _t2;
|
|
409
414
|
return _regeneratorRuntime.wrap(function (_context2) {
|
|
410
415
|
while (1) switch (_context2.prev = _context2.next) {
|
|
411
416
|
case 0:
|
|
412
417
|
this.observables.progress = 0;
|
|
413
418
|
mainWindow = this.boardMainWindow;
|
|
414
419
|
if (!mainWindow) {
|
|
415
|
-
_context2.next =
|
|
420
|
+
_context2.next = 4;
|
|
416
421
|
break;
|
|
417
422
|
}
|
|
418
|
-
|
|
423
|
+
if (this._snapshotTimer) clearInterval(this._snapshotTimer);
|
|
424
|
+
this._snapshotTimer = setInterval(function () {
|
|
419
425
|
if (_this5.observables.progress < 100) {
|
|
420
426
|
_this5.observables.progress += 1;
|
|
421
427
|
} else {
|
|
422
|
-
clearInterval(
|
|
428
|
+
if (_this5._snapshotTimer) clearInterval(_this5._snapshotTimer);
|
|
423
429
|
}
|
|
424
430
|
}, 4);
|
|
425
|
-
_context2.
|
|
431
|
+
_context2.prev = 1;
|
|
432
|
+
_context2.next = 2;
|
|
426
433
|
return mainWindow.getSnapshotImage();
|
|
427
|
-
case
|
|
434
|
+
case 2:
|
|
428
435
|
imageData = _context2.sent;
|
|
429
436
|
runInAction(function () {
|
|
430
437
|
setTimeout(function () {
|
|
431
438
|
var _this5$roomInfo;
|
|
432
439
|
_this5.observables.progress = 100;
|
|
433
|
-
clearInterval(
|
|
440
|
+
if (_this5._snapshotTimer) clearInterval(_this5._snapshotTimer);
|
|
441
|
+
_this5._snapshotTimer = null;
|
|
434
442
|
var fileName = "".concat((_this5$roomInfo = _this5.roomInfo) === null || _this5$roomInfo === void 0 ? void 0 : _this5$roomInfo.roomName, "_").concat(dayjs().format('YYYYMMDD_HHmmSSS'), ".jpg");
|
|
435
443
|
downloadImageData(imageData, fileName);
|
|
436
|
-
|
|
437
|
-
// this._eventProvider?.showToast({
|
|
438
|
-
// type: 'info',
|
|
439
|
-
// message: transI18n('fmt_screenshare_whiteboard_tips_savedsuccessfully'),
|
|
440
|
-
// });
|
|
441
444
|
}, 400);
|
|
442
445
|
});
|
|
443
|
-
|
|
446
|
+
_context2.next = 4;
|
|
447
|
+
break;
|
|
448
|
+
case 3:
|
|
449
|
+
_context2.prev = 3;
|
|
450
|
+
_t2 = _context2["catch"](1);
|
|
451
|
+
if (this._snapshotTimer) clearInterval(this._snapshotTimer);
|
|
452
|
+
this._snapshotTimer = null;
|
|
453
|
+
console.error('getSnapshotImage failed', _t2);
|
|
454
|
+
case 4:
|
|
444
455
|
case "end":
|
|
445
456
|
return _context2.stop();
|
|
446
457
|
}
|
|
447
|
-
}, _callee2, this);
|
|
458
|
+
}, _callee2, this, [[1, 3]]);
|
|
448
459
|
}));
|
|
449
460
|
function _getSnapshotImage() {
|
|
450
461
|
return _getSnapshotImage2.apply(this, arguments);
|