fcr-ui-scene 3.7.9-alpha → 3.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/creator/index.d.ts +6 -3
- package/lib/creator/index.js +38 -20
- package/lib/creator/provider-initializer.browser.js +30 -2
- package/lib/creator/provider-initializer.electron.js +34 -6
- package/lib/electron/app.js +0 -1
- package/lib/electron/bootstrap-sdk.d.ts +3 -1
- package/lib/electron/bootstrap-sdk.js +93 -375
- package/lib/electron/exit-codes.d.ts +6 -1
- package/lib/electron/exit-codes.js +5 -0
- package/lib/electron/injections.d.ts +10 -4
- package/lib/electron/injections.js +116 -74
- package/lib/electron/ipc/ipc.js +13 -11
- package/lib/electron/ipc/type.d.ts +3 -1
- package/lib/electron/ipc/type.js +2 -0
- package/lib/electron/main.js +3 -1
- package/lib/electron/preload.js +2 -1
- package/lib/electron/process-manager/constants.d.ts +1 -0
- package/lib/electron/process-manager/constants.js +8 -0
- package/lib/electron/{event-manager.d.ts → process-manager/event-manager.d.ts} +3 -4
- package/lib/electron/{event-manager.js → process-manager/event-manager.js} +38 -30
- package/lib/electron/process-manager/index.d.ts +179 -0
- package/lib/electron/process-manager/index.js +848 -0
- package/lib/electron/process-manager/state-manager.d.ts +135 -0
- package/lib/electron/process-manager/state-manager.js +358 -0
- package/lib/electron/process-manager/types.d.ts +80 -0
- package/lib/electron/process-manager/types.js +79 -0
- package/lib/electron/sdk-helper.d.ts +4 -0
- package/lib/electron/sdk-helper.js +39 -2
- package/lib/fragments/annotation/libs.d.ts +1 -1
- package/lib/fragments/annotation/libs.js +12 -12
- package/lib/fragments/annotation/store.d.ts +1 -1
- package/lib/fragments/annotation/toolbar/components/graphic-tool/graphic-panel/libs.d.ts +1 -1
- package/lib/fragments/annotation/toolbar/components/graphic-tool/graphic-panel/libs.js +21 -21
- package/lib/fragments/annotation/toolbar/components/pen-tool/index.js +3 -3
- package/lib/fragments/annotation/toolbar/store.d.ts +1 -1
- package/lib/fragments/annotation/toolbar/store.js +10 -10
- package/lib/fragments/annotation/toolbar/view.js +7 -7
- package/lib/fragments/whiteboard/store.d.ts +2 -2
- package/lib/fragments/whiteboard/store.js +28 -22
- package/lib/fragments/whiteboard/view.js +2 -2
- package/lib/index.d.ts +1 -1
- package/lib/index.js +2 -2
- package/lib/modules/action-bar/components/apps/index.js +1 -37
- package/lib/modules/action-bar/components/collapse/index.d.ts +2 -1
- package/lib/modules/action-bar/components/collapse/index.js +11 -2
- package/lib/modules/action-bar/components/item/index.js +2 -2
- package/lib/modules/action-bar/components/screen-share/index.browser.js +21 -14
- package/lib/modules/action-bar/components/screen-share/index.electron.js +38 -24
- package/lib/modules/action-bar/components/screen-share/submenu.js +6 -5
- package/lib/modules/action-bar/components/security/index.js +2 -2
- package/lib/modules/action-bar/index.css +26 -0
- package/lib/modules/action-bar/main-scene/store.base.d.ts +6 -4
- package/lib/modules/action-bar/main-scene/store.base.js +41 -46
- package/lib/modules/action-bar/type.d.ts +0 -10
- package/lib/modules/audio-stream/index.d.ts +1 -1
- package/lib/modules/audio-stream/index.js +22 -8
- package/lib/modules/caption/draggable-container/index.css +10 -0
- package/lib/modules/caption/draggable-container/index.d.ts +4 -0
- package/lib/modules/caption/draggable-container/index.js +167 -0
- package/lib/modules/caption/index.d.ts +10 -0
- package/lib/modules/caption/index.js +127 -0
- package/lib/modules/caption/store.d.ts +53 -0
- package/lib/modules/caption/store.js +358 -0
- package/lib/modules/caption/type.d.ts +13 -0
- package/lib/modules/caption/type.js +14 -0
- package/lib/modules/caption/view.css +158 -0
- package/lib/modules/caption/view.d.ts +4 -0
- package/lib/modules/caption/view.js +281 -0
- package/lib/modules/chat/chat-room-store.d.ts +1 -1
- package/lib/modules/chat/chat-room-store.js +6 -6
- package/lib/modules/chat/components/message-list/message-item/index.js +60 -18
- package/lib/modules/chat/index.css +7 -0
- package/lib/modules/chat/store.d.ts +1 -0
- package/lib/modules/chat/store.js +3 -3
- package/lib/modules/components/apps/app-item/index.css +16 -1
- package/lib/modules/components/apps/app-item/index.js +102 -35
- package/lib/modules/components/apps/app-list.js +17 -1
- package/lib/modules/components/apps/types.d.ts +11 -1
- package/lib/modules/components/caption-menu/index.css +58 -0
- package/lib/modules/components/caption-menu/index.d.ts +43 -0
- package/lib/modules/components/caption-menu/index.js +115 -0
- package/lib/modules/components/caption-menu/participants-privilege-control-options.d.ts +2 -0
- package/lib/modules/components/caption-menu/participants-privilege-control-options.js +73 -0
- package/lib/modules/components/caption-menu/steps/index.css +73 -0
- package/lib/modules/components/caption-menu/steps/index.d.ts +11 -0
- package/lib/modules/components/caption-menu/steps/index.js +56 -0
- package/lib/modules/components/caption-menu/translation-setting-options.d.ts +17 -0
- package/lib/modules/components/caption-menu/translation-setting-options.js +188 -0
- package/lib/modules/components/control-bar/index.d.ts +3 -3
- package/lib/modules/components/control-bar/index.js +10 -10
- package/lib/modules/components/device-control/components/audio-menu/index.js +17 -0
- package/lib/modules/components/device-control/components/carmera/index.js +3 -0
- package/lib/modules/components/device-control/components/microphone/index.js +4 -1
- package/lib/modules/components/device-control/index.css +12 -4
- package/lib/modules/components/device-control/store.base.d.ts +1 -0
- package/lib/modules/components/device-control/store.base.js +2 -0
- package/lib/modules/components/security-menu/index.js +147 -65
- package/lib/modules/components/security-menu/store.d.ts +15 -0
- package/lib/modules/components/security-menu/store.js +78 -16
- package/lib/modules/components/toolbar/components/clean-tool/index.d.ts +1 -1
- package/lib/modules/components/toolbar/components/clean-tool/index.js +4 -4
- package/lib/modules/components/toolbar/components/color-tool/index.d.ts +1 -1
- package/lib/modules/components/toolbar/components/graphic-tool/graphic-panel/index.d.ts +1 -1
- package/lib/modules/components/toolbar/components/graphic-tool/graphic-panel/libs.d.ts +1 -1
- package/lib/modules/components/toolbar/components/graphic-tool/graphic-panel/libs.js +21 -21
- package/lib/modules/components/toolbar/components/graphic-tool/index.d.ts +1 -1
- package/lib/modules/components/toolbar/components/multiple-color-tool/index.d.ts +1 -1
- package/lib/modules/components/toolbar/components/pen-tool/index.d.ts +1 -1
- package/lib/modules/components/toolbar/components/pen-tool/index.js +3 -3
- package/lib/modules/components/toolbar/index.d.ts +2 -2
- package/lib/modules/components/toolbar/index.js +35 -34
- package/lib/modules/components/toolbar/style.css +1 -1
- package/lib/modules/components/toolbar/types.d.ts +1 -1
- package/lib/modules/connection-gateway/store.d.ts +1 -0
- package/lib/modules/connection-gateway/store.js +5 -0
- package/lib/modules/control-bar/components/apps-popover/index.d.ts +3 -0
- package/lib/modules/control-bar/components/apps-popover/index.js +41 -0
- package/lib/modules/control-bar/components/carmera/index.js +7 -39
- package/lib/modules/control-bar/components/cloud-recording-buttons.js +18 -33
- package/lib/modules/control-bar/components/microphone/index.js +3 -43
- package/lib/modules/control-bar/components/more-actions/index.js +9 -1
- package/lib/modules/control-bar/components/share-audio/index.d.ts +2 -0
- package/lib/modules/control-bar/components/share-audio/index.js +4 -10
- package/lib/modules/control-bar/enums.d.ts +2 -1
- package/lib/modules/control-bar/enums.js +1 -0
- package/lib/modules/control-bar/hooks.d.ts +1 -0
- package/lib/modules/control-bar/hooks.js +140 -1
- package/lib/modules/control-bar/store.d.ts +9 -5
- package/lib/modules/control-bar/store.js +92 -41
- package/lib/modules/control-bar/type.d.ts +3 -0
- package/lib/modules/control-bar/view.js +46 -58
- package/lib/modules/dialog/components/confirm/index.js +0 -1
- package/lib/modules/dialog/components/dialog-container/component/body.d.ts +8 -0
- package/lib/modules/dialog/components/dialog-container/component/body.js +44 -5
- package/lib/modules/dialog/components/dialog-container/index.css +4 -1
- package/lib/modules/dialog/components/dialog-container/index.d.ts +1 -0
- package/lib/modules/dialog/components/dialog-container/index.js +8 -1
- package/lib/modules/dialog/components/normal-window/index.d.ts +1 -0
- package/lib/modules/dialog/components/normal-window/index.js +3 -1
- package/lib/modules/dialog/dialogs/caption/index.d.ts +21 -0
- package/lib/modules/dialog/dialogs/caption/index.js +42 -0
- package/lib/modules/dialog/dialogs/chat/components/actions.js +2 -2
- package/lib/modules/dialog/dialogs/confirm/index.js +1 -1
- package/lib/modules/dialog/dialogs/participant/components/actions.js +2 -2
- package/lib/modules/dialog/dialogs/subtitles-history/index.d.ts +27 -0
- package/lib/modules/dialog/dialogs/subtitles-history/index.js +51 -0
- package/lib/modules/dialog/store.base.d.ts +1 -1
- package/lib/modules/dialog/store.browser.d.ts +1 -1
- package/lib/modules/dialog/store.electron.d.ts +1 -3
- package/lib/modules/dialog/store.electron.js +0 -9
- package/lib/modules/event-sound/enum.d.ts +5 -0
- package/lib/modules/event-sound/enum.js +20 -0
- package/lib/modules/event-sound/index.d.ts +0 -10
- package/lib/modules/event-sound/index.js +1 -12
- package/lib/modules/event-sound/store.d.ts +2 -2
- package/lib/modules/event-sound/store.js +21 -22
- package/lib/modules/event-toast/index.js +7 -1
- package/lib/modules/interpreter/store.js +4 -2
- package/lib/modules/layout/components/Aside.d.ts +2 -1
- package/lib/modules/layout/components/Aside.js +97 -58
- package/lib/modules/layout/components/CommonVideoRenderer.js +1 -2
- package/lib/modules/layout/components/index.css +15 -2
- package/lib/modules/layout/store.base.d.ts +12 -1
- package/lib/modules/layout/store.base.js +149 -54
- package/lib/modules/layout/store.electron.js +7 -3
- package/lib/modules/layout/type.d.ts +4 -0
- package/lib/modules/layout/view.js +27 -5
- package/lib/modules/notification/index.css +4 -4
- package/lib/modules/notification/store.d.ts +5 -3
- package/lib/modules/notification/store.js +9 -2
- package/lib/modules/notification/view.d.ts +1 -0
- package/lib/modules/notification/view.js +33 -2
- package/lib/modules/participant/components/participants/components/footer/components/drop-menu/index.css +0 -1
- package/lib/modules/participant/components/participants/components/footer/index.js +1 -1
- package/lib/modules/participant/components/participants/components/render-user/components/attendee/index.js +2 -2
- package/lib/modules/participant/components/participants/components/render-user/components/user-action/index.d.ts +6 -1
- package/lib/modules/participant/components/participants/components/render-user/index.d.ts +1 -1
- package/lib/modules/participant/components/participants/index.js +13 -1
- package/lib/modules/participant/store.base.d.ts +1 -2
- package/lib/modules/participant/store.base.js +78 -81
- package/lib/modules/participant/type.d.ts +3 -1
- package/lib/modules/participant/type.js +2 -0
- package/lib/modules/pc-audio-connect/main-scene/store.d.ts +1 -0
- package/lib/modules/pc-audio-connect/main-scene/store.js +5 -0
- package/lib/modules/pc-audio-connect/waiting-scene/store.d.ts +2 -0
- package/lib/modules/pc-audio-connect/waiting-scene/store.js +10 -6
- package/lib/modules/phone-audio-connect/store.d.ts +1 -0
- package/lib/modules/phone-audio-connect/store.js +5 -0
- package/lib/modules/secondary-window/store.d.ts +1 -2
- package/lib/modules/secondary-window/store.js +22 -14
- package/lib/modules/secondary-window/type.d.ts +1 -1
- package/lib/modules/secondary-window/view.js +7 -8
- package/lib/modules/setting/audio-whiteList/audio-device-adaptation.d.ts +46 -0
- package/lib/modules/setting/audio-whiteList/audio-device-adaptation.js +70 -0
- package/lib/modules/setting/audio-whiteList/audio-whiteList-manager.d.ts +52 -0
- package/lib/modules/setting/audio-whiteList/audio-whiteList-manager.js +374 -0
- package/lib/modules/setting/caption_and_transcribing/index.css +88 -0
- package/lib/modules/setting/caption_and_transcribing/index.d.ts +3 -0
- package/lib/modules/setting/caption_and_transcribing/index.js +96 -0
- package/lib/modules/setting/general-settings/general-settings.d.ts +4 -0
- package/lib/modules/setting/general-settings/general-settings.js +3 -3
- package/lib/modules/setting/index.d.ts +1 -0
- package/lib/modules/setting/index.js +14 -9
- package/lib/modules/setting/state/index.js +5 -3
- package/lib/modules/setting/store.base.d.ts +33 -6
- package/lib/modules/setting/store.base.js +133 -32
- package/lib/modules/setting/store.browser.js +4 -9
- package/lib/modules/setting/store.electron.d.ts +11 -0
- package/lib/modules/setting/store.electron.js +106 -1
- package/lib/modules/setting/type.d.ts +2 -1
- package/lib/modules/setting/type.js +1 -0
- package/lib/modules/setting/video-settings/video-settings-basic.js +1 -7
- package/lib/modules/setting/view.js +12 -4
- package/lib/modules/share-screen/store.base.d.ts +1 -1
- package/lib/modules/share-screen/store.base.js +3 -0
- package/lib/modules/share-screen/store.electron.d.ts +3 -1
- package/lib/modules/share-screen/store.electron.js +158 -23
- package/lib/modules/state-bar/index.css +73 -2
- package/lib/modules/state-bar/main-scene/store.base.d.ts +2 -0
- package/lib/modules/state-bar/main-scene/store.base.js +7 -1
- 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/store.base.d.ts +5 -0
- package/lib/modules/state-bar/store.base.js +29 -2
- package/lib/modules/state-bar/subtitles-history-state.d.ts +7 -0
- package/lib/modules/state-bar/subtitles-history-state.js +108 -0
- package/lib/modules/state-bar/view.js +16 -1
- package/lib/modules/state-bar/waiting-scene/store.base.d.ts +1 -0
- package/lib/modules/state-bar/waiting-scene/store.base.js +5 -0
- package/lib/modules/subtitles-history/components/actions.d.ts +5 -0
- package/lib/modules/subtitles-history/components/actions.js +36 -0
- package/lib/modules/subtitles-history/components/list-item.d.ts +12 -0
- package/lib/modules/subtitles-history/components/list-item.js +102 -0
- package/lib/modules/subtitles-history/components/list.d.ts +10 -0
- package/lib/modules/subtitles-history/components/list.js +182 -0
- package/lib/modules/subtitles-history/components/respond-dialog-content.d.ts +5 -0
- package/lib/modules/subtitles-history/components/respond-dialog-content.js +44 -0
- package/lib/modules/subtitles-history/components/settings/index.css +5 -0
- package/lib/modules/subtitles-history/components/settings/index.d.ts +2 -0
- package/lib/modules/subtitles-history/components/settings/index.js +53 -0
- package/lib/modules/subtitles-history/components/timer.d.ts +3 -0
- package/lib/modules/subtitles-history/components/timer.js +44 -0
- package/lib/modules/subtitles-history/components/title.d.ts +1 -0
- package/lib/modules/subtitles-history/components/title.js +15 -0
- package/lib/modules/subtitles-history/empty.d.ts +2 -0
- package/lib/modules/subtitles-history/empty.js +22 -0
- package/lib/modules/subtitles-history/index.css +129 -0
- package/lib/modules/subtitles-history/index.d.ts +13 -0
- package/lib/modules/subtitles-history/index.js +107 -0
- package/lib/modules/subtitles-history/store.base.d.ts +76 -0
- package/lib/modules/subtitles-history/store.base.js +796 -0
- package/lib/modules/subtitles-history/store.electron.d.ts +15 -0
- package/lib/modules/subtitles-history/store.electron.js +154 -0
- package/lib/modules/subtitles-history/type.d.ts +4 -0
- package/lib/modules/subtitles-history/type.js +6 -0
- package/lib/modules/subtitles-history/view.d.ts +1 -0
- package/lib/modules/subtitles-history/view.js +104 -0
- package/lib/modules/whiteboard/components/toolbar/components/color-picker/components/picker.js +2 -2
- package/lib/modules/whiteboard/components/toolbar/components/eraser-picker.js +5 -5
- package/lib/modules/whiteboard/components/toolbar/components/pen-picker.js +15 -15
- package/lib/modules/whiteboard/components/toolbar/components/shape-picker.js +21 -21
- package/lib/modules/whiteboard/components/toolbar/hooks/index.js +23 -21
- package/lib/modules/whiteboard/components/toolbar/store.d.ts +7 -6
- package/lib/modules/whiteboard/components/toolbar/store.js +14 -15
- package/lib/modules/whiteboard/store.d.ts +2 -3
- package/lib/modules/whiteboard/store.electron.d.ts +2 -0
- package/lib/modules/whiteboard/store.electron.js +35 -0
- package/lib/modules/whiteboard/store.js +14 -2
- package/lib/modules/whiteboard/type.d.ts +0 -35
- package/lib/modules/whiteboard/type.js +1 -26
- package/lib/modules/widget/type.d.ts +3 -66
- package/lib/object-manager.d.ts +3 -1
- package/lib/object-manager.js +2 -0
- package/lib/providers/ability-provider.d.ts +24 -0
- package/lib/providers/ability-provider.js +21 -0
- package/lib/providers/app-list-provider.d.ts +90 -4
- package/lib/providers/app-list-provider.js +157 -13
- package/lib/providers/board-share/bar-control/base.d.ts +4 -5
- package/lib/providers/board-share/bar-control/base.js +4 -4
- package/lib/providers/board-share/bar-control/browser.d.ts +2 -2
- package/lib/providers/board-share/bar-control/electron.d.ts +4 -5
- package/lib/providers/board-share/bar-control/electron.js +2 -0
- package/lib/providers/board-share/provider.base.d.ts +6 -6
- package/lib/providers/board-share/provider.base.js +20 -3
- package/lib/providers/board-share/provider.browser.js +2 -2
- package/lib/providers/board-share/provider.electron.js +1 -2
- package/lib/providers/board-share/type.d.ts +1 -2
- package/lib/providers/device-provider.d.ts +15 -5
- package/lib/providers/device-provider.js +199 -145
- package/lib/providers/dialog/provider.base.js +1 -1
- package/lib/providers/dialog/provider.electron.js +3 -0
- package/lib/providers/interpreter-provider.js +4 -9
- package/lib/providers/multi-display-provider.d.ts +1 -1
- package/lib/providers/privilege-provider.d.ts +241 -139
- package/lib/providers/privilege-provider.js +577 -318
- package/lib/providers/room-provider/waiting-room-control-manager.d.ts +1 -1
- package/lib/providers/screen-share/constant.d.ts +1 -0
- package/lib/providers/screen-share/constant.js +8 -0
- package/lib/providers/screen-share/provider.base.d.ts +9 -7
- package/lib/providers/screen-share/provider.base.js +20 -27
- package/lib/providers/screen-share/provider.browser.js +14 -18
- package/lib/providers/screen-share/provider.electron.d.ts +3 -0
- package/lib/providers/screen-share/provider.electron.js +66 -25
- package/lib/providers/screen-share/strategy/electron.d.ts +2 -1
- package/lib/providers/screen-share/strategy/electron.js +64 -56
- package/lib/providers/screen-share/strategy/type.d.ts +2 -2
- package/lib/providers/screen-share/stream-state-sync.js +5 -3
- package/lib/providers/screen-share/struct.d.ts +14 -4
- package/lib/providers/screen-share/struct.js +16 -5
- package/lib/providers/screen-share/type.d.ts +16 -2
- package/lib/providers/stt-provider/stt-provider.d.ts +88 -0
- package/lib/providers/stt-provider/stt-provider.js +1007 -0
- package/lib/providers/stt-provider/type.d.ts +160 -0
- package/lib/providers/stt-provider/type.js +19 -0
- package/lib/providers/window/main-window.d.ts +1 -0
- package/lib/providers/window/main-window.js +6 -1
- package/lib/providers/window/renderer-window.d.ts +4 -0
- package/lib/providers/window/renderer-window.js +19 -1
- package/lib/providers/window/type.d.ts +4 -0
- package/lib/runtime.d.ts +8 -7
- package/lib/runtime.js +1 -2
- package/lib/scenes/main-scene.js +112 -66
- package/lib/schema.d.ts +70 -8
- package/lib/schema.js +7 -2
- package/lib/shared-data/app-list-data.d.ts +4 -0
- package/lib/shared-data/app-list-data.js +21 -1
- package/lib/shared-data/config.d.ts +5 -1
- package/lib/shared-data/layout-data.d.ts +5 -0
- package/lib/shared-data/layout-data.js +35 -9
- package/lib/shared-data/member-data.d.ts +2 -3
- package/lib/shared-data/screen-share/index.d.ts +0 -2
- package/lib/shared-data/screen-share/index.js +20 -36
- package/lib/shared-data/screen-share/type.d.ts +0 -8
- package/lib/shared-data/security-data.d.ts +4 -0
- package/lib/shared-data/security-data.js +14 -10
- package/lib/shared-data/setting.d.ts +16 -1
- package/lib/shared-data/setting.js +33 -6
- package/lib/shared-data/stt-setting.ts/constant.d.ts +29 -0
- package/lib/shared-data/stt-setting.ts/constant.js +35 -0
- package/lib/shared-data/stt-setting.ts/index.d.ts +67 -0
- package/lib/shared-data/stt-setting.ts/index.js +202 -0
- package/lib/shared-data/stt-setting.ts/type.d.ts +10 -0
- package/lib/shared-data/stt-setting.ts/type.js +14 -0
- package/lib/shared-data/video-window.d.ts +1 -2
- package/lib/shared-data/video-window.js +20 -32
- package/lib/translations/enUS.d.ts +9 -0
- package/lib/translations/enUS.js +21 -4
- package/lib/translations/zhCN.d.ts +9 -0
- package/lib/translations/zhCN.js +21 -4
- package/lib/type.d.ts +20 -15
- package/lib/type.js +1 -0
- package/lib/{ui-scene.d.ts → ui-scene-switch.d.ts} +1 -1
- package/lib/{ui-scene.js → ui-scene-switch.js} +29 -9
- package/lib/utilities/constant.d.ts +6 -2
- package/lib/utilities/constant.js +5 -1
- package/lib/utilities/default-config.d.ts +3 -3
- package/lib/utilities/default-config.js +7 -17
- package/lib/utilities/focus-helper.js +18 -11
- package/lib/utilities/renderer.d.ts +4 -6
- package/lib/utilities/renderer.js +10 -4
- package/lib/utilities/tools.d.ts +1 -0
- package/lib/utilities/tools.js +6 -1
- package/lib/utilities/ui-resources.d.ts +9 -2
- package/lib/utilities/ui-resources.js +36 -12
- package/package.json +13 -8
- package/public/index.html +1 -0
- package/public/meeting-manager.js +23 -9
- package/installer/icons/favicon.ico +0 -0
- package/installer/icons/favicon.png +0 -0
- package/installer/icons/icon.png +0 -0
- package/installer/mac/entitlements.mac.plist +0 -16
- package/lib/modules/participant/components/participants/components/footer/components/footer/index.css +0 -17
- package/lib/modules/participant/components/participants/components/footer/components/footer/index.d.ts +0 -5
- package/lib/modules/participant/components/participants/components/footer/components/footer/index.js +0 -242
- package/lib/modules/participant/components/participants/components/participants/components/attendee/index.css +0 -192
- package/lib/modules/participant/components/participants/components/participants/components/attendee/index.d.ts +0 -4
- package/lib/modules/participant/components/participants/components/participants/components/attendee/index.js +0 -206
- package/lib/modules/participant/components/participants/components/participants/components/participants-more/index.css +0 -57
- package/lib/modules/participant/components/participants/components/participants/components/participants-more/index.d.ts +0 -5
- package/lib/modules/participant/components/participants/components/participants/components/participants-more/index.js +0 -229
- package/lib/modules/participant/components/participants/components/participants/components/user-row/index.d.ts +0 -5
- package/lib/modules/participant/components/participants/components/participants/components/user-row/index.js +0 -68
- package/lib/modules/participant/components/participants/components/participants/index.css +0 -105
- package/lib/modules/participant/components/participants/components/participants/index.d.ts +0 -3
- package/lib/modules/participant/components/participants/components/participants/index.js +0 -117
- package/lib/modules/participant/components/participants/types.d.ts +0 -101
- package/lib/modules/participant/components/participants/types.js +0 -37
- package/lib/modules/setting/config.d.ts +0 -36
- package/lib/modules/setting/config.js +0 -36
- package/lib/modules/widget/sdk.d.ts +0 -30
- package/lib/modules/widget/sdk.js +0 -224
- package/lib/widget-sdk.d.ts +0 -2
- package/lib/widget-sdk.js +0 -13
- /package/public/assets/electron/sound_effects/{pretest.mp3 → speakerTest.mp3} +0 -0
|
@@ -83,7 +83,7 @@ var _env = require("agora-foundation/lib/utilities/env");
|
|
|
83
83
|
var _objectManager = require("../../object-manager");
|
|
84
84
|
var _type7 = require("../secondary-window/type");
|
|
85
85
|
var _LayoutStoreBase;
|
|
86
|
-
var _initProto, _participantDecs, _init_participant, _chatDecs, _init_chat, _chatActionDecs, _init_chatAction, _stateBarDecs, _init_stateBar, _actionBarDecs, _init_actionBar, _layersDecs, _init_layers, _whiteboardDecs, _init_whiteboard, _annotationDecs, _init_annotation, _screenShareControlDecs, _init_screenShareControl, _init_collapsed, _init_aside, _init_barHovering, _init_barLocked, _init_barHidden, _init_asideWidth, _init_userVolumeMap, _init_chatRoomState, _init_whiteboardActive, _init_ownerUser, _addPinMessageDecs, _cancelPinMessageDecs, _setWhiteboardActiveDecs, _setAsideWidthDecs, _updateSlotsDecs, _toggleLayoutDecs, _toggleCollapsedDecs, _toggleAsideDecs, _asideWidthChangedDecs, _toggleLayoutBarLockDecs, _toggleLayoutBarHiddenDecs, _resetLockTimerDecs, _setHoveringHandlerDecs, _setHoveringLeaveHandlerDecs, _setScreenShareSpeakerViewSizeDecs, _handleLiveLayoutChangeDecs, _onUserInfoUpdatedDecs, _handleLayoutUpdatedDecs, _init__handleLayoutUpdated, _handleMainListLengthChangedDecs, _handleMainListChangedDecs, _setBarHoveringDecs, _handleConnectionUpdatedDecs, _findVideoWindowByUserIdDecs, _onRemoteUsersLeftDecs, _onAudioVolumeUpdatedDecs, _ref;
|
|
86
|
+
var _initProto, _participantDecs, _init_participant, _chatDecs, _init_chat, _chatActionDecs, _init_chatAction, _stateBarDecs, _init_stateBar, _actionBarDecs, _init_actionBar, _layersDecs, _init_layers, _whiteboardDecs, _init_whiteboard, _annotationDecs, _init_annotation, _screenShareControlDecs, _init_screenShareControl, _subtitlesDecs, _init_subtitles, _subtitlesHistoryDecs, _init_subtitlesHistory, _subtitlesHistorySettingsDecs, _init_subtitlesHistorySettings, _init_collapsed, _init_aside, _init_barHovering, _init_barLocked, _init_barHidden, _init_asideWidth, _init_userVolumeMap, _init_chatRoomState, _init_whiteboardActive, _init_ownerUser, _addPinMessageDecs, _cancelPinMessageDecs, _setWhiteboardActiveDecs, _setAsideWidthDecs, _updateSlotsDecs, _toggleLayoutDecs, _toggleCollapsedDecs, _toggleAsideDecs, _asideWidthChangedDecs, _toggleLayoutBarLockDecs, _toggleLayoutBarHiddenDecs, _resetLockTimerDecs, _setHoveringHandlerDecs, _setHoveringLeaveHandlerDecs, _setScreenShareSpeakerViewSizeDecs, _handleLiveLayoutChangeDecs, _onUserInfoUpdatedDecs, _handleLayoutUpdatedDecs, _init__handleLayoutUpdated, _handleMainListLengthChangedDecs, _handleMainListChangedDecs, _setBarHoveringDecs, _handleConnectionUpdatedDecs, _findVideoWindowByUserIdDecs, _onRemoteUsersLeftDecs, _onAudioVolumeUpdatedDecs, _ref;
|
|
87
87
|
function _classPrivateFieldInitSpec(e, t, a) { _checkPrivateRedeclaration(e, t), t.set(e, a); }
|
|
88
88
|
function _checkPrivateRedeclaration(e, t) { if (t.has(e)) throw new TypeError("Cannot initialize the same private elements twice on an object"); }
|
|
89
89
|
function _classPrivateFieldSet(s, a, r) { return s.set(_assertClassBrand(s, a), r), r; }
|
|
@@ -113,7 +113,10 @@ var _P = /*#__PURE__*/new WeakMap();
|
|
|
113
113
|
var _Q = /*#__PURE__*/new WeakMap();
|
|
114
114
|
var _R = /*#__PURE__*/new WeakMap();
|
|
115
115
|
var _S = /*#__PURE__*/new WeakMap();
|
|
116
|
-
|
|
116
|
+
var _T = /*#__PURE__*/new WeakMap();
|
|
117
|
+
var _U = /*#__PURE__*/new WeakMap();
|
|
118
|
+
var _V = /*#__PURE__*/new WeakMap();
|
|
119
|
+
_ref = (_participantDecs = [_mobx.observable, _mobx.observable.ref], _chatDecs = [_mobx.observable, _mobx.observable.ref], _chatActionDecs = [_mobx.observable, _mobx.observable.ref], _stateBarDecs = [_mobx.observable, _mobx.observable.ref], _actionBarDecs = [_mobx.observable, _mobx.observable.ref], _layersDecs = [_mobx.observable, _mobx.observable.ref], _whiteboardDecs = [_mobx.observable, _mobx.observable.ref], _annotationDecs = [_mobx.observable, _mobx.observable.ref], _screenShareControlDecs = [_mobx.observable, _mobx.observable.ref], _subtitlesDecs = [_mobx.observable, _mobx.observable.ref], _subtitlesHistoryDecs = [_mobx.observable, _mobx.observable.ref], _subtitlesHistorySettingsDecs = [_mobx.observable, _mobx.observable.ref], _addPinMessageDecs = [_mobx.action, _mobx.action.bound], _cancelPinMessageDecs = [_mobx.action, _mobx.action.bound], _setWhiteboardActiveDecs = [_mobx.action, _mobx.action.bound], _setAsideWidthDecs = [_mobx.action, _mobx.action.bound], _updateSlotsDecs = [_mobx.action, _mobx.action.bound], _toggleLayoutDecs = [_mobx.action, _mobx.action.bound], _toggleCollapsedDecs = [_mobx.action, _mobx.action.bound], _toggleAsideDecs = [_mobx.action, _mobx.action.bound], _asideWidthChangedDecs = [_mobx.action, _mobx.action.bound], _toggleLayoutBarLockDecs = [_mobx.action, _mobx.action.bound], _toggleLayoutBarHiddenDecs = [_mobx.action, _mobx.action.bound], _resetLockTimerDecs = [_mobx.action, _mobx.action.bound], _setHoveringHandlerDecs = [_mobx.action, _mobx.action.bound], _setHoveringLeaveHandlerDecs = [_mobx.action, _mobx.action.bound], _setScreenShareSpeakerViewSizeDecs = [(0, _decorator.debounced)(400), _decorator.bound], _handleLiveLayoutChangeDecs = [_mobx.action, _mobx.action.bound], _onUserInfoUpdatedDecs = [_mobx.action, _mobx.action.bound], _handleLayoutUpdatedDecs = [_mobx.action, _mobx.action.bound], _handleMainListLengthChangedDecs = [_mobx.action, _mobx.action.bound], _handleMainListChangedDecs = [_mobx.action, _mobx.action.bound], _setBarHoveringDecs = [_mobx.action, _mobx.action.bound], _handleConnectionUpdatedDecs = [_mobx.action, _mobx.action.bound], _findVideoWindowByUserIdDecs = [_mobx.action, _mobx.action.bound], _onRemoteUsersLeftDecs = [_mobx.action, _mobx.action.bound], _onAudioVolumeUpdatedDecs = [_mobx.action, _mobx.action.bound], "logger");
|
|
117
120
|
var LayoutStoreBase = exports.LayoutStoreBase = /*#__PURE__*/function () {
|
|
118
121
|
function LayoutStoreBase(_ref2) {
|
|
119
122
|
var _this = this;
|
|
@@ -126,6 +129,15 @@ var LayoutStoreBase = exports.LayoutStoreBase = /*#__PURE__*/function () {
|
|
|
126
129
|
(0, _defineProperty2["default"])(this, "_disposers", []);
|
|
127
130
|
(0, _defineProperty2["default"])(this, "_barLockTimer", 0);
|
|
128
131
|
(0, _defineProperty2["default"])(this, "_liveStreamState", _type.FcrLiveStreamingState.STOPPED);
|
|
132
|
+
(0, _defineProperty2["default"])(this, "_roomProviderObserver", {
|
|
133
|
+
onRoutingChanged: this._handleRoutingChanged
|
|
134
|
+
});
|
|
135
|
+
(0, _defineProperty2["default"])(this, "_roomObserver", {
|
|
136
|
+
onLiveStreamingStateUpdated: this._handleRoomProviderLiveStreamingStateUpdated
|
|
137
|
+
});
|
|
138
|
+
(0, _defineProperty2["default"])(this, "_streamObserverByVolumeIndicationUpdated", {
|
|
139
|
+
onStreamVolumeIndicationUpdated: this._onAudioVolumeUpdated
|
|
140
|
+
});
|
|
129
141
|
// Slots
|
|
130
142
|
_classPrivateFieldInitSpec(this, _A, _init_participant(this, null));
|
|
131
143
|
_classPrivateFieldInitSpec(this, _B, _init_chat(this, null));
|
|
@@ -136,17 +148,20 @@ var LayoutStoreBase = exports.LayoutStoreBase = /*#__PURE__*/function () {
|
|
|
136
148
|
_classPrivateFieldInitSpec(this, _G, _init_whiteboard(this, null));
|
|
137
149
|
_classPrivateFieldInitSpec(this, _H, _init_annotation(this, null));
|
|
138
150
|
_classPrivateFieldInitSpec(this, _I, _init_screenShareControl(this, null));
|
|
151
|
+
_classPrivateFieldInitSpec(this, _J, _init_subtitles(this, null));
|
|
152
|
+
_classPrivateFieldInitSpec(this, _K, _init_subtitlesHistory(this, null));
|
|
153
|
+
_classPrivateFieldInitSpec(this, _L, _init_subtitlesHistorySettings(this, null));
|
|
139
154
|
// State
|
|
140
|
-
_classPrivateFieldInitSpec(this,
|
|
141
|
-
_classPrivateFieldInitSpec(this,
|
|
142
|
-
_classPrivateFieldInitSpec(this,
|
|
143
|
-
_classPrivateFieldInitSpec(this,
|
|
144
|
-
_classPrivateFieldInitSpec(this,
|
|
145
|
-
_classPrivateFieldInitSpec(this,
|
|
146
|
-
_classPrivateFieldInitSpec(this,
|
|
147
|
-
_classPrivateFieldInitSpec(this,
|
|
148
|
-
_classPrivateFieldInitSpec(this,
|
|
149
|
-
_classPrivateFieldInitSpec(this,
|
|
155
|
+
_classPrivateFieldInitSpec(this, _M, _init_collapsed(this, true));
|
|
156
|
+
_classPrivateFieldInitSpec(this, _N, _init_aside(this, false));
|
|
157
|
+
_classPrivateFieldInitSpec(this, _O, _init_barHovering(this, true));
|
|
158
|
+
_classPrivateFieldInitSpec(this, _P, _init_barLocked(this, true));
|
|
159
|
+
_classPrivateFieldInitSpec(this, _Q, _init_barHidden(this, false));
|
|
160
|
+
_classPrivateFieldInitSpec(this, _R, _init_asideWidth(this, _view.MinAsideWidth));
|
|
161
|
+
_classPrivateFieldInitSpec(this, _S, _init_userVolumeMap(this, new Map()));
|
|
162
|
+
_classPrivateFieldInitSpec(this, _T, _init_chatRoomState(this, _type4.FcrChatRoomConnectionState.Disconnected));
|
|
163
|
+
_classPrivateFieldInitSpec(this, _U, _init_whiteboardActive(this, false));
|
|
164
|
+
_classPrivateFieldInitSpec(this, _V, _init_ownerUser(this, undefined));
|
|
150
165
|
(0, _defineProperty2["default"])(this, "getAllowedOperations", (0, _mobxUtils.computedFn)(function (targetRole, isSelf) {
|
|
151
166
|
return _this._privilegeProvider.getAllowedOperations(targetRole, isSelf);
|
|
152
167
|
}));
|
|
@@ -183,7 +198,9 @@ var LayoutStoreBase = exports.LayoutStoreBase = /*#__PURE__*/function () {
|
|
|
183
198
|
this._sharedMemberDataSource = objectManager.getObject(_objectManager.FcrUIObjectKeys.S_SHARED_MEMBER_DATA_SOURCE);
|
|
184
199
|
this._pinDataSource = objectManager.getObject(_objectManager.FcrUIObjectKeys.S_SHARED_PIN_DATA_SOURCE);
|
|
185
200
|
this._sharedScreenShareDataSource = objectManager.getObject(_objectManager.FcrUIObjectKeys.S_SHARED_SCREEN_SHARE_DATA_SOURCE);
|
|
201
|
+
this._roomProvider = objectManager.getObject(_objectManager.FcrUIObjectKeys.P_ROOM_PROVIDER);
|
|
186
202
|
this.chatRoomState = this._chatRoomControl.getConnectionState();
|
|
203
|
+
this._roomProvider.addObserver(this._roomProviderObserver);
|
|
187
204
|
}
|
|
188
205
|
return (0, _createClass2["default"])(LayoutStoreBase, [{
|
|
189
206
|
key: "participant",
|
|
@@ -258,7 +275,7 @@ var LayoutStoreBase = exports.LayoutStoreBase = /*#__PURE__*/function () {
|
|
|
258
275
|
_classPrivateFieldSet(_I, this, v);
|
|
259
276
|
}
|
|
260
277
|
}, {
|
|
261
|
-
key: "
|
|
278
|
+
key: "subtitles",
|
|
262
279
|
get: function get() {
|
|
263
280
|
return _classPrivateFieldGet(_J, this);
|
|
264
281
|
},
|
|
@@ -266,7 +283,7 @@ var LayoutStoreBase = exports.LayoutStoreBase = /*#__PURE__*/function () {
|
|
|
266
283
|
_classPrivateFieldSet(_J, this, v);
|
|
267
284
|
}
|
|
268
285
|
}, {
|
|
269
|
-
key: "
|
|
286
|
+
key: "subtitlesHistory",
|
|
270
287
|
get: function get() {
|
|
271
288
|
return _classPrivateFieldGet(_K, this);
|
|
272
289
|
},
|
|
@@ -274,7 +291,7 @@ var LayoutStoreBase = exports.LayoutStoreBase = /*#__PURE__*/function () {
|
|
|
274
291
|
_classPrivateFieldSet(_K, this, v);
|
|
275
292
|
}
|
|
276
293
|
}, {
|
|
277
|
-
key: "
|
|
294
|
+
key: "subtitlesHistorySettings",
|
|
278
295
|
get: function get() {
|
|
279
296
|
return _classPrivateFieldGet(_L, this);
|
|
280
297
|
},
|
|
@@ -282,7 +299,7 @@ var LayoutStoreBase = exports.LayoutStoreBase = /*#__PURE__*/function () {
|
|
|
282
299
|
_classPrivateFieldSet(_L, this, v);
|
|
283
300
|
}
|
|
284
301
|
}, {
|
|
285
|
-
key: "
|
|
302
|
+
key: "collapsed",
|
|
286
303
|
get: function get() {
|
|
287
304
|
return _classPrivateFieldGet(_M, this);
|
|
288
305
|
},
|
|
@@ -290,7 +307,7 @@ var LayoutStoreBase = exports.LayoutStoreBase = /*#__PURE__*/function () {
|
|
|
290
307
|
_classPrivateFieldSet(_M, this, v);
|
|
291
308
|
}
|
|
292
309
|
}, {
|
|
293
|
-
key: "
|
|
310
|
+
key: "aside",
|
|
294
311
|
get: function get() {
|
|
295
312
|
return _classPrivateFieldGet(_N, this);
|
|
296
313
|
},
|
|
@@ -298,7 +315,7 @@ var LayoutStoreBase = exports.LayoutStoreBase = /*#__PURE__*/function () {
|
|
|
298
315
|
_classPrivateFieldSet(_N, this, v);
|
|
299
316
|
}
|
|
300
317
|
}, {
|
|
301
|
-
key: "
|
|
318
|
+
key: "barHovering",
|
|
302
319
|
get: function get() {
|
|
303
320
|
return _classPrivateFieldGet(_O, this);
|
|
304
321
|
},
|
|
@@ -306,7 +323,7 @@ var LayoutStoreBase = exports.LayoutStoreBase = /*#__PURE__*/function () {
|
|
|
306
323
|
_classPrivateFieldSet(_O, this, v);
|
|
307
324
|
}
|
|
308
325
|
}, {
|
|
309
|
-
key: "
|
|
326
|
+
key: "barLocked",
|
|
310
327
|
get: function get() {
|
|
311
328
|
return _classPrivateFieldGet(_P, this);
|
|
312
329
|
},
|
|
@@ -314,7 +331,7 @@ var LayoutStoreBase = exports.LayoutStoreBase = /*#__PURE__*/function () {
|
|
|
314
331
|
_classPrivateFieldSet(_P, this, v);
|
|
315
332
|
}
|
|
316
333
|
}, {
|
|
317
|
-
key: "
|
|
334
|
+
key: "barHidden",
|
|
318
335
|
get: function get() {
|
|
319
336
|
return _classPrivateFieldGet(_Q, this);
|
|
320
337
|
},
|
|
@@ -322,7 +339,7 @@ var LayoutStoreBase = exports.LayoutStoreBase = /*#__PURE__*/function () {
|
|
|
322
339
|
_classPrivateFieldSet(_Q, this, v);
|
|
323
340
|
}
|
|
324
341
|
}, {
|
|
325
|
-
key: "
|
|
342
|
+
key: "asideWidth",
|
|
326
343
|
get: function get() {
|
|
327
344
|
return _classPrivateFieldGet(_R, this);
|
|
328
345
|
},
|
|
@@ -330,13 +347,37 @@ var LayoutStoreBase = exports.LayoutStoreBase = /*#__PURE__*/function () {
|
|
|
330
347
|
_classPrivateFieldSet(_R, this, v);
|
|
331
348
|
}
|
|
332
349
|
}, {
|
|
333
|
-
key: "
|
|
350
|
+
key: "userVolumeMap",
|
|
334
351
|
get: function get() {
|
|
335
352
|
return _classPrivateFieldGet(_S, this);
|
|
336
353
|
},
|
|
337
354
|
set: function set(v) {
|
|
338
355
|
_classPrivateFieldSet(_S, this, v);
|
|
339
356
|
}
|
|
357
|
+
}, {
|
|
358
|
+
key: "chatRoomState",
|
|
359
|
+
get: function get() {
|
|
360
|
+
return _classPrivateFieldGet(_T, this);
|
|
361
|
+
},
|
|
362
|
+
set: function set(v) {
|
|
363
|
+
_classPrivateFieldSet(_T, this, v);
|
|
364
|
+
}
|
|
365
|
+
}, {
|
|
366
|
+
key: "whiteboardActive",
|
|
367
|
+
get: function get() {
|
|
368
|
+
return _classPrivateFieldGet(_U, this);
|
|
369
|
+
},
|
|
370
|
+
set: function set(v) {
|
|
371
|
+
_classPrivateFieldSet(_U, this, v);
|
|
372
|
+
}
|
|
373
|
+
}, {
|
|
374
|
+
key: "ownerUser",
|
|
375
|
+
get: function get() {
|
|
376
|
+
return _classPrivateFieldGet(_V, this);
|
|
377
|
+
},
|
|
378
|
+
set: function set(v) {
|
|
379
|
+
_classPrivateFieldSet(_V, this, v);
|
|
380
|
+
}
|
|
340
381
|
}, {
|
|
341
382
|
key: "streamControl",
|
|
342
383
|
get: function get() {
|
|
@@ -375,7 +416,7 @@ var LayoutStoreBase = exports.LayoutStoreBase = /*#__PURE__*/function () {
|
|
|
375
416
|
}, {
|
|
376
417
|
key: "isMulti",
|
|
377
418
|
get: function get() {
|
|
378
|
-
return this._privilegeProvider.
|
|
419
|
+
return this._privilegeProvider.isMultiWaterMarkEnabled();
|
|
379
420
|
}
|
|
380
421
|
}, {
|
|
381
422
|
key: "layout",
|
|
@@ -398,11 +439,6 @@ var LayoutStoreBase = exports.LayoutStoreBase = /*#__PURE__*/function () {
|
|
|
398
439
|
// return this._sharedAnnotationDataSource.annotationHasStart;
|
|
399
440
|
return false;
|
|
400
441
|
}
|
|
401
|
-
}, {
|
|
402
|
-
key: "isSharingWithAudio",
|
|
403
|
-
get: function get() {
|
|
404
|
-
return this._sharedScreenShareDataSource.isSharingWithAudio;
|
|
405
|
-
}
|
|
406
442
|
}, {
|
|
407
443
|
key: "sourceList",
|
|
408
444
|
get: function get() {
|
|
@@ -583,17 +619,17 @@ var LayoutStoreBase = exports.LayoutStoreBase = /*#__PURE__*/function () {
|
|
|
583
619
|
}, {
|
|
584
620
|
key: "allowChat",
|
|
585
621
|
get: function get() {
|
|
586
|
-
return this._privilegeProvider.
|
|
622
|
+
return this._privilegeProvider.isChatAllowed();
|
|
587
623
|
}
|
|
588
624
|
}, {
|
|
589
625
|
key: "allowUnmuteSelfAudio",
|
|
590
626
|
get: function get() {
|
|
591
|
-
return this._privilegeProvider.
|
|
627
|
+
return this._privilegeProvider.isUnmuteSelfAudioAllowed();
|
|
592
628
|
}
|
|
593
629
|
}, {
|
|
594
630
|
key: "allowUnmuteSelfVideo",
|
|
595
631
|
get: function get() {
|
|
596
|
-
return this._privilegeProvider.
|
|
632
|
+
return this._privilegeProvider.isUnmuteSelfVideoAllowed();
|
|
597
633
|
}
|
|
598
634
|
}, {
|
|
599
635
|
key: "isHostOrCoHost",
|
|
@@ -609,27 +645,27 @@ var LayoutStoreBase = exports.LayoutStoreBase = /*#__PURE__*/function () {
|
|
|
609
645
|
}, {
|
|
610
646
|
key: "allowedAllChat",
|
|
611
647
|
get: function get() {
|
|
612
|
-
return this._privilegeProvider.
|
|
648
|
+
return this._privilegeProvider.isAllChatAllowed();
|
|
613
649
|
}
|
|
614
650
|
}, {
|
|
615
651
|
key: "allowedPublicChatAndDisallowedPrivateChat",
|
|
616
652
|
get: function get() {
|
|
617
|
-
return this._privilegeProvider.
|
|
653
|
+
return this._privilegeProvider.isPublicChatAllowedAndPrivateChatDisallowed();
|
|
618
654
|
}
|
|
619
655
|
}, {
|
|
620
656
|
key: "disallowedPublicChatAndDisallowedPrivateChatToParticipant",
|
|
621
657
|
get: function get() {
|
|
622
|
-
return this._privilegeProvider.
|
|
658
|
+
return this._privilegeProvider.isPublicChatAndPrivateChatToParticipantDisallowed();
|
|
623
659
|
}
|
|
624
660
|
}, {
|
|
625
661
|
key: "disallowedAllChat",
|
|
626
662
|
get: function get() {
|
|
627
|
-
return this._privilegeProvider.
|
|
663
|
+
return this._privilegeProvider.isAllChatDisallowed();
|
|
628
664
|
}
|
|
629
665
|
}, {
|
|
630
666
|
key: "privilegeOperator",
|
|
631
667
|
get: function get() {
|
|
632
|
-
return this._privilegeProvider.
|
|
668
|
+
return this._privilegeProvider.getPrivilegeOperator();
|
|
633
669
|
}
|
|
634
670
|
}, {
|
|
635
671
|
key: "localUserId",
|
|
@@ -666,6 +702,11 @@ var LayoutStoreBase = exports.LayoutStoreBase = /*#__PURE__*/function () {
|
|
|
666
702
|
get: function get() {
|
|
667
703
|
return this._sharedLayoutDataSource.chatRenderAt;
|
|
668
704
|
}
|
|
705
|
+
}, {
|
|
706
|
+
key: "subtitlesHistoryRenderAt",
|
|
707
|
+
get: function get() {
|
|
708
|
+
return this._sharedLayoutDataSource.subtitlesHistoryRenderAt;
|
|
709
|
+
}
|
|
669
710
|
}, {
|
|
670
711
|
key: "getWaterMarkContent",
|
|
671
712
|
value: function getWaterMarkContent() {
|
|
@@ -829,6 +870,19 @@ var LayoutStoreBase = exports.LayoutStoreBase = /*#__PURE__*/function () {
|
|
|
829
870
|
userId: userId
|
|
830
871
|
});
|
|
831
872
|
}
|
|
873
|
+
}, {
|
|
874
|
+
key: "closeSubtitlesHistoryFromAside",
|
|
875
|
+
value: function closeSubtitlesHistoryFromAside() {
|
|
876
|
+
this._sharedLayoutDataSource.setAsideLayout({
|
|
877
|
+
subtitlesHistory: false
|
|
878
|
+
});
|
|
879
|
+
}
|
|
880
|
+
}, {
|
|
881
|
+
key: "moveSubtitlesHistoryFromAsideToDialog",
|
|
882
|
+
value: function moveSubtitlesHistoryFromAsideToDialog() {
|
|
883
|
+
this._sharedLayoutDataSource.setSubtitlesHistoryRenderAt('dialog');
|
|
884
|
+
this._dialogProvider.openDialog(_constant.FcrUIDialogKey.SUBTITLES_HISTORY);
|
|
885
|
+
}
|
|
832
886
|
}, {
|
|
833
887
|
key: "toggleLayout",
|
|
834
888
|
value: function toggleLayout(layout, manual) {
|
|
@@ -909,6 +963,8 @@ var LayoutStoreBase = exports.LayoutStoreBase = /*#__PURE__*/function () {
|
|
|
909
963
|
return fn();
|
|
910
964
|
});
|
|
911
965
|
this._disposers = [];
|
|
966
|
+
this._roomProvider.currentRoomControl.removeObserver(this._roomObserver);
|
|
967
|
+
this._roomProvider.removeObserver(this._roomProviderObserver);
|
|
912
968
|
}
|
|
913
969
|
}, {
|
|
914
970
|
key: "onUserInfoUpdated",
|
|
@@ -1024,8 +1080,7 @@ var LayoutStoreBase = exports.LayoutStoreBase = /*#__PURE__*/function () {
|
|
|
1024
1080
|
var streamObserver = {
|
|
1025
1081
|
onStreamsAdded: this._onStreamsAdded,
|
|
1026
1082
|
onStreamsUpdated: this._onStreamsUpdated,
|
|
1027
|
-
onStreamsRemoved: this._onStreamsRemoved
|
|
1028
|
-
onStreamVolumeIndicationUpdated: this._onAudioVolumeUpdated
|
|
1083
|
+
onStreamsRemoved: this._onStreamsRemoved
|
|
1029
1084
|
};
|
|
1030
1085
|
var userObserver = {
|
|
1031
1086
|
onUserInfoUpdated: this.onUserInfoUpdated,
|
|
@@ -1055,10 +1110,14 @@ var LayoutStoreBase = exports.LayoutStoreBase = /*#__PURE__*/function () {
|
|
|
1055
1110
|
this._videoWindowDataSource.addObserver(videoWindowObserver);
|
|
1056
1111
|
this._whiteBoardControl.addObserver(whiteboardObserver);
|
|
1057
1112
|
this._chatProvider.addObserver(chatObserver);
|
|
1113
|
+
if (this.enableSpotlight) {
|
|
1114
|
+
this._streamControl.addObserver(this._streamObserverByVolumeIndicationUpdated);
|
|
1115
|
+
}
|
|
1058
1116
|
this._disposers.push(function () {
|
|
1059
1117
|
_this5._roomControl.removeObserver(roomObserver);
|
|
1060
1118
|
_this5._eventProvider.removeObserver(eventObserver);
|
|
1061
1119
|
_this5._streamControl.removeObserver(streamObserver);
|
|
1120
|
+
_this5._streamControl.removeObserver(_this5._streamObserverByVolumeIndicationUpdated);
|
|
1062
1121
|
_this5._userControl.removeObserver(userObserver);
|
|
1063
1122
|
_this5._videoWindowDataSource.removeObserver(videoWindowObserver);
|
|
1064
1123
|
_this5._whiteBoardControl.removeObserver(whiteboardObserver);
|
|
@@ -1108,10 +1167,10 @@ var LayoutStoreBase = exports.LayoutStoreBase = /*#__PURE__*/function () {
|
|
|
1108
1167
|
}), (0, _mobx.reaction)(function () {
|
|
1109
1168
|
return _this5.asideContent;
|
|
1110
1169
|
}, function (asideContent) {
|
|
1111
|
-
if (asideContent.participant || asideContent.chat) {
|
|
1170
|
+
if (asideContent.participant || asideContent.chat || asideContent.subtitlesHistory) {
|
|
1112
1171
|
_this5.toggleAside(true);
|
|
1113
1172
|
}
|
|
1114
|
-
if (!asideContent.participant && !asideContent.chat) {
|
|
1173
|
+
if (!asideContent.participant && !asideContent.chat && !asideContent.subtitlesHistory) {
|
|
1115
1174
|
_this5.toggleAside(false);
|
|
1116
1175
|
}
|
|
1117
1176
|
}, {
|
|
@@ -1137,6 +1196,11 @@ var LayoutStoreBase = exports.LayoutStoreBase = /*#__PURE__*/function () {
|
|
|
1137
1196
|
}, function (_ref6) {
|
|
1138
1197
|
var enableSpotlight = _ref6.enableSpotlight;
|
|
1139
1198
|
_this5._videoWindowDataSource.setSpotlightEnabled(enableSpotlight);
|
|
1199
|
+
if (enableSpotlight) {
|
|
1200
|
+
_this5._streamControl.addObserver(_this5._streamObserverByVolumeIndicationUpdated);
|
|
1201
|
+
} else {
|
|
1202
|
+
_this5._streamControl.removeObserver(_this5._streamObserverByVolumeIndicationUpdated);
|
|
1203
|
+
}
|
|
1140
1204
|
}),
|
|
1141
1205
|
// 录制的特殊逻辑:
|
|
1142
1206
|
// 因为录制机器人不发流,且当前切换布局的逻辑是有多个人的视频窗口才切换到 speaker layout
|
|
@@ -1251,6 +1315,29 @@ var LayoutStoreBase = exports.LayoutStoreBase = /*#__PURE__*/function () {
|
|
|
1251
1315
|
}
|
|
1252
1316
|
});
|
|
1253
1317
|
}
|
|
1318
|
+
}, {
|
|
1319
|
+
key: "_handleRoutingChanged",
|
|
1320
|
+
value: function _handleRoutingChanged(roomControl) {
|
|
1321
|
+
var _roomControl$getRoomI;
|
|
1322
|
+
var roomType = (_roomControl$getRoomI = roomControl.getRoomInfo()) === null || _roomControl$getRoomI === void 0 ? void 0 : _roomControl$getRoomI.roomType;
|
|
1323
|
+
if (roomType === _type5.FcrRoomType.Mainroom) {
|
|
1324
|
+
if (this._roomProvider.liveStreamingState === _type.FcrLiveStreamingState.STARTED && this._videoWindowDataSource.mainList.length > 1) {
|
|
1325
|
+
this.toggleLayout(_type2.FcrUIVideoWindowLayoutType.Speaker, false);
|
|
1326
|
+
}
|
|
1327
|
+
this._roomProvider.currentRoomControl.addObserver(this._roomObserver);
|
|
1328
|
+
} else {
|
|
1329
|
+
this._roomProvider.currentRoomControl.removeObserver(this._roomObserver);
|
|
1330
|
+
}
|
|
1331
|
+
}
|
|
1332
|
+
}, {
|
|
1333
|
+
key: "_handleRoomProviderLiveStreamingStateUpdated",
|
|
1334
|
+
value: function _handleRoomProviderLiveStreamingStateUpdated(roomId, state) {
|
|
1335
|
+
if (this._roomProvider.currentRoomControl.getLiveStreamingState() === _type.FcrLiveStreamingState.STARTED && this._videoWindowDataSource.mainList.length > 1) {
|
|
1336
|
+
this.toggleLayout(_type2.FcrUIVideoWindowLayoutType.Speaker, false);
|
|
1337
|
+
} else {
|
|
1338
|
+
this.toggleLayout(this.manualLayout || _type2.FcrUIVideoWindowLayoutType.Gallery, true);
|
|
1339
|
+
}
|
|
1340
|
+
}
|
|
1254
1341
|
}, {
|
|
1255
1342
|
key: "_handleLiveStreamingStateUpdated",
|
|
1256
1343
|
value: function _handleLiveStreamingStateUpdated(_, state, url, reason) {
|
|
@@ -1266,6 +1353,10 @@ var LayoutStoreBase = exports.LayoutStoreBase = /*#__PURE__*/function () {
|
|
|
1266
1353
|
key: "_handleStreamAdded",
|
|
1267
1354
|
value: function _handleStreamAdded(modifiedStream) {
|
|
1268
1355
|
this._videoWindowDataSource.add(modifiedStream, modifiedStream.owner.userId === this.localUserId);
|
|
1356
|
+
if (this._videoWindowDataSource.mainList.length > 1 && this._roomProvider.liveStreamingState === _type.FcrLiveStreamingState.STARTED) {
|
|
1357
|
+
this._videoWindowDataSource.setLayout(_type2.FcrUIVideoWindowLayoutType.Speaker, false);
|
|
1358
|
+
return;
|
|
1359
|
+
}
|
|
1269
1360
|
if (this.isMultiDisplayActive) {
|
|
1270
1361
|
// 在开启多屏模式下,屏幕共享流添加时,保持布局不变
|
|
1271
1362
|
return;
|
|
@@ -1315,7 +1406,8 @@ var LayoutStoreBase = exports.LayoutStoreBase = /*#__PURE__*/function () {
|
|
|
1315
1406
|
// 在开启多屏模式下,屏幕共享流被移除时,保持布局不变
|
|
1316
1407
|
return;
|
|
1317
1408
|
}
|
|
1318
|
-
|
|
1409
|
+
var isLiveStreaming = this._roomProvider.currentRoomControl.getLiveStreamingState() === _type.FcrLiveStreamingState.STARTED;
|
|
1410
|
+
if (hasScreenStream && !isLiveStreaming) {
|
|
1319
1411
|
if (this.manualLayout) {
|
|
1320
1412
|
this._videoWindowDataSource.setLayout(this.manualLayout);
|
|
1321
1413
|
} else {
|
|
@@ -1355,7 +1447,7 @@ var LayoutStoreBase = exports.LayoutStoreBase = /*#__PURE__*/function () {
|
|
|
1355
1447
|
}]);
|
|
1356
1448
|
}();
|
|
1357
1449
|
_LayoutStoreBase = LayoutStoreBase;
|
|
1358
|
-
var _applyDecs$e = (0, _slicedToArray2["default"])(_applyDecs(_LayoutStoreBase, [[_participantDecs, 17, "participant"], [_chatDecs, 17, "chat"], [_chatActionDecs, 17, "chatAction"], [_stateBarDecs, 17, "stateBar"], [_actionBarDecs, 17, "actionBar"], [_layersDecs, 17, "layers"], [_whiteboardDecs, 17, "whiteboard"], [_annotationDecs, 17, "annotation"], [_screenShareControlDecs, 17, "screenShareControl"], [_mobx.observable, 1, "collapsed"], [_mobx.observable, 1, "aside"], [_mobx.observable, 1, "barHovering"], [_mobx.observable, 1, "barLocked"], [_mobx.observable, 1, "barHidden"], [_mobx.observable, 1, "asideWidth"], [_mobx.observable, 1, "userVolumeMap"], [_mobx.observable, 1, "chatRoomState"], [_mobx.observable, 1, "whiteboardActive"], [_mobx.observable, 1, "ownerUser"], [_mobx.computed, 3, "isWaterMarkEnabled"], [_mobx.computed, 3, "isMulti"], [_mobx.computed, 3, "layout"], [_mobx.computed, 3, "manualLayout"], [_mobx.computed, 3, "scalcValue"], [_mobx.computed, 3, "sourceList"], [_mobx.computed, 3, "layoutMainList"], [_mobx.computed, 3, "mainList"], [_mobx.computed, 3, "mainListMapByAudioStreamId"], [_mobx.computed, 3, "spotlightStreamId"], [_mobx.computed, 3, "foldList"], [_mobx.computed, 3, "galleryList"], [_mobx.computed, 3, "isMainWindowInScreenSharing"], [_mobx.computed, 3, "isCurrentUserInBoardSharing"], [_mobx.computed, 3, "asideLayout"], [_mobx.computed, 3, "carouselList"], [_mobx.computed, 3, "hasPinnedStream"], [_mobx.computed, 3, "isRobot"], [_mobx.computed, 3, "findSpotlightUser"], [_mobx.computed, 3, "isWhoISpeakingActive"], [_mobx.computed, 3, "microphoneEnabled"], [_mobx.computed, 3, "cameraEnabled"], [_mobx.computed, 3, "galleryMaxSize"], [_mobx.computed, 3, "asideContent"], [_mobx.computed, 3, "participantsRenderAt"], [_mobx.computed, 3, "chatRenderAt"], [_decorator.bound, 2, "getWaterMarkContent"], [_decorator.bound, 2, "hasMutePermission"], [_decorator.bound, 2, "hasUnmutePermission"], [_decorator.bound, 2, "hasRequestStartAudioPermission"], [_decorator.bound, 2, "toggleMainStream"], [_addPinMessageDecs, 18, "addPinMessage"], [_cancelPinMessageDecs, 18, "cancelPinMessage"], [_decorator.bound, 2, "addPin"], [_decorator.bound, 2, "removePin"], [_decorator.bound, 2, "setVideoOrientation"], [_decorator.bound, 2, "setAllowChat"], [_decorator.bound, 2, "handleSetPinState"], [_setWhiteboardActiveDecs, 18, "setWhiteboardActive"], [_setAsideWidthDecs, 18, "setAsideWidth"], [_updateSlotsDecs, 18, "updateSlots"], [_decorator.bound, 2, "closeParticipantFromAside"], [_decorator.bound, 2, "moveParticipantFromAsideToDialog"], [_decorator.bound, 2, "closeChatFromAside"], [_decorator.bound, 2, "closeAsideChat"], [_decorator.bound, 2, "moveChatFromAsideToDialog"], [_decorator.bound, 2, "openPrivateChat"], [_decorator.bound, 2, "openRenameDialog"], [_toggleLayoutDecs, 18, "toggleLayout"], [_toggleCollapsedDecs, 18, "toggleCollapsed"], [_toggleAsideDecs, 18, "toggleAside"], [_asideWidthChangedDecs, 18, "asideWidthChanged"], [_toggleLayoutBarLockDecs, 18, "toggleLayoutBarLock"], [_toggleLayoutBarHiddenDecs, 18, "toggleLayoutBarHidden"], [_resetLockTimerDecs, 18, "resetLockTimer"], [_setHoveringHandlerDecs, 18, "setHoveringHandler"], [_setHoveringLeaveHandlerDecs, 18, "setHoveringLeaveHandler"], [_setScreenShareSpeakerViewSizeDecs, 2, "setScreenShareSpeakerViewSize"], [_handleLiveLayoutChangeDecs, 18, "handleLiveLayoutChange"], [_onUserInfoUpdatedDecs, 18, "onUserInfoUpdated"], [_decorator.bound, 2, "stopLocalPreview"], [_decorator.bound, 2, "startLocalPreview"], [_decorator.bound, 2, "setAllowChatWithPayload"], [_decorator.bound, 2, "setScaleValue"], [_decorator.bound, 2, "muteAudio"], [_decorator.bound, 2, "sendParticipantEvent"], [_decorator.bound, 2, "onEvent"], [_decorator.bound, 2, "_addListeners"], [_mobx.computed, 3, "_hasVideoStreamUser"], [_handleMainListLengthChangedDecs, 18, "_handleMainListLengthChanged"], [_handleMainListChangedDecs, 18, "_handleMainListChanged"], [_mobx.action, 2, "_switchToSpeaker"], [_mobx.action, 2, "_switchToGallery"], [_setBarHoveringDecs, 18, "_setBarHovering"], [_handleConnectionUpdatedDecs, 18, "_handleConnectionUpdated"], [_findVideoWindowByUserIdDecs, 18, "_findVideoWindowByUserId"], [_onRemoteUsersLeftDecs, 18, "_onRemoteUsersLeft"], [_decorator.bound, 2, "_handleLiveStreamingStateUpdated"], [_decorator.bound, 2, "_handleStreamAdded"], [_decorator.bound, 2, "_onStreamsAdded"], [_decorator.bound, 2, "_onStreamsUpdated"], [_decorator.bound, 2, "_onStreamsRemoved"], [_onAudioVolumeUpdatedDecs, 18, "_onAudioVolumeUpdated"], [_handleLayoutUpdatedDecs, 16, "_handleLayoutUpdated"]], []).e,
|
|
1450
|
+
var _applyDecs$e = (0, _slicedToArray2["default"])(_applyDecs(_LayoutStoreBase, [[_participantDecs, 17, "participant"], [_chatDecs, 17, "chat"], [_chatActionDecs, 17, "chatAction"], [_stateBarDecs, 17, "stateBar"], [_actionBarDecs, 17, "actionBar"], [_layersDecs, 17, "layers"], [_whiteboardDecs, 17, "whiteboard"], [_annotationDecs, 17, "annotation"], [_screenShareControlDecs, 17, "screenShareControl"], [_subtitlesDecs, 17, "subtitles"], [_subtitlesHistoryDecs, 17, "subtitlesHistory"], [_subtitlesHistorySettingsDecs, 17, "subtitlesHistorySettings"], [_mobx.observable, 1, "collapsed"], [_mobx.observable, 1, "aside"], [_mobx.observable, 1, "barHovering"], [_mobx.observable, 1, "barLocked"], [_mobx.observable, 1, "barHidden"], [_mobx.observable, 1, "asideWidth"], [_mobx.observable, 1, "userVolumeMap"], [_mobx.observable, 1, "chatRoomState"], [_mobx.observable, 1, "whiteboardActive"], [_mobx.observable, 1, "ownerUser"], [_mobx.computed, 3, "isWaterMarkEnabled"], [_mobx.computed, 3, "isMulti"], [_mobx.computed, 3, "layout"], [_mobx.computed, 3, "manualLayout"], [_mobx.computed, 3, "scalcValue"], [_mobx.computed, 3, "sourceList"], [_mobx.computed, 3, "layoutMainList"], [_mobx.computed, 3, "mainList"], [_mobx.computed, 3, "mainListMapByAudioStreamId"], [_mobx.computed, 3, "spotlightStreamId"], [_mobx.computed, 3, "foldList"], [_mobx.computed, 3, "galleryList"], [_mobx.computed, 3, "isMainWindowInScreenSharing"], [_mobx.computed, 3, "isCurrentUserInBoardSharing"], [_mobx.computed, 3, "asideLayout"], [_mobx.computed, 3, "carouselList"], [_mobx.computed, 3, "hasPinnedStream"], [_mobx.computed, 3, "isRobot"], [_mobx.computed, 3, "findSpotlightUser"], [_mobx.computed, 3, "isWhoISpeakingActive"], [_mobx.computed, 3, "microphoneEnabled"], [_mobx.computed, 3, "cameraEnabled"], [_mobx.computed, 3, "galleryMaxSize"], [_mobx.computed, 3, "asideContent"], [_mobx.computed, 3, "participantsRenderAt"], [_mobx.computed, 3, "chatRenderAt"], [_mobx.computed, 3, "subtitlesHistoryRenderAt"], [_decorator.bound, 2, "getWaterMarkContent"], [_decorator.bound, 2, "hasMutePermission"], [_decorator.bound, 2, "hasUnmutePermission"], [_decorator.bound, 2, "hasRequestStartAudioPermission"], [_decorator.bound, 2, "toggleMainStream"], [_addPinMessageDecs, 18, "addPinMessage"], [_cancelPinMessageDecs, 18, "cancelPinMessage"], [_decorator.bound, 2, "addPin"], [_decorator.bound, 2, "removePin"], [_decorator.bound, 2, "setVideoOrientation"], [_decorator.bound, 2, "setAllowChat"], [_decorator.bound, 2, "handleSetPinState"], [_setWhiteboardActiveDecs, 18, "setWhiteboardActive"], [_setAsideWidthDecs, 18, "setAsideWidth"], [_updateSlotsDecs, 18, "updateSlots"], [_decorator.bound, 2, "closeParticipantFromAside"], [_decorator.bound, 2, "moveParticipantFromAsideToDialog"], [_decorator.bound, 2, "closeChatFromAside"], [_decorator.bound, 2, "closeAsideChat"], [_decorator.bound, 2, "moveChatFromAsideToDialog"], [_decorator.bound, 2, "openPrivateChat"], [_decorator.bound, 2, "openRenameDialog"], [_decorator.bound, 2, "closeSubtitlesHistoryFromAside"], [_decorator.bound, 2, "moveSubtitlesHistoryFromAsideToDialog"], [_toggleLayoutDecs, 18, "toggleLayout"], [_toggleCollapsedDecs, 18, "toggleCollapsed"], [_toggleAsideDecs, 18, "toggleAside"], [_asideWidthChangedDecs, 18, "asideWidthChanged"], [_toggleLayoutBarLockDecs, 18, "toggleLayoutBarLock"], [_toggleLayoutBarHiddenDecs, 18, "toggleLayoutBarHidden"], [_resetLockTimerDecs, 18, "resetLockTimer"], [_setHoveringHandlerDecs, 18, "setHoveringHandler"], [_setHoveringLeaveHandlerDecs, 18, "setHoveringLeaveHandler"], [_setScreenShareSpeakerViewSizeDecs, 2, "setScreenShareSpeakerViewSize"], [_handleLiveLayoutChangeDecs, 18, "handleLiveLayoutChange"], [_onUserInfoUpdatedDecs, 18, "onUserInfoUpdated"], [_decorator.bound, 2, "stopLocalPreview"], [_decorator.bound, 2, "startLocalPreview"], [_decorator.bound, 2, "setAllowChatWithPayload"], [_decorator.bound, 2, "setScaleValue"], [_decorator.bound, 2, "muteAudio"], [_decorator.bound, 2, "sendParticipantEvent"], [_decorator.bound, 2, "onEvent"], [_decorator.bound, 2, "_addListeners"], [_mobx.computed, 3, "_hasVideoStreamUser"], [_handleMainListLengthChangedDecs, 18, "_handleMainListLengthChanged"], [_handleMainListChangedDecs, 18, "_handleMainListChanged"], [_mobx.action, 2, "_switchToSpeaker"], [_mobx.action, 2, "_switchToGallery"], [_setBarHoveringDecs, 18, "_setBarHovering"], [_handleConnectionUpdatedDecs, 18, "_handleConnectionUpdated"], [_findVideoWindowByUserIdDecs, 18, "_findVideoWindowByUserId"], [_onRemoteUsersLeftDecs, 18, "_onRemoteUsersLeft"], [_decorator.bound, 2, "_handleRoutingChanged"], [_decorator.bound, 2, "_handleRoomProviderLiveStreamingStateUpdated"], [_decorator.bound, 2, "_handleLiveStreamingStateUpdated"], [_decorator.bound, 2, "_handleStreamAdded"], [_decorator.bound, 2, "_onStreamsAdded"], [_decorator.bound, 2, "_onStreamsUpdated"], [_decorator.bound, 2, "_onStreamsRemoved"], [_onAudioVolumeUpdatedDecs, 18, "_onAudioVolumeUpdated"], [_handleLayoutUpdatedDecs, 16, "_handleLayoutUpdated"]], []).e, 24);
|
|
1359
1451
|
_init_participant = _applyDecs$e[0];
|
|
1360
1452
|
_init_chat = _applyDecs$e[1];
|
|
1361
1453
|
_init_chatAction = _applyDecs$e[2];
|
|
@@ -1365,16 +1457,19 @@ _init_layers = _applyDecs$e[5];
|
|
|
1365
1457
|
_init_whiteboard = _applyDecs$e[6];
|
|
1366
1458
|
_init_annotation = _applyDecs$e[7];
|
|
1367
1459
|
_init_screenShareControl = _applyDecs$e[8];
|
|
1368
|
-
|
|
1369
|
-
|
|
1370
|
-
|
|
1371
|
-
|
|
1372
|
-
|
|
1373
|
-
|
|
1374
|
-
|
|
1375
|
-
|
|
1376
|
-
|
|
1377
|
-
|
|
1378
|
-
|
|
1379
|
-
|
|
1460
|
+
_init_subtitles = _applyDecs$e[9];
|
|
1461
|
+
_init_subtitlesHistory = _applyDecs$e[10];
|
|
1462
|
+
_init_subtitlesHistorySettings = _applyDecs$e[11];
|
|
1463
|
+
_init_collapsed = _applyDecs$e[12];
|
|
1464
|
+
_init_aside = _applyDecs$e[13];
|
|
1465
|
+
_init_barHovering = _applyDecs$e[14];
|
|
1466
|
+
_init_barLocked = _applyDecs$e[15];
|
|
1467
|
+
_init_barHidden = _applyDecs$e[16];
|
|
1468
|
+
_init_asideWidth = _applyDecs$e[17];
|
|
1469
|
+
_init_userVolumeMap = _applyDecs$e[18];
|
|
1470
|
+
_init_chatRoomState = _applyDecs$e[19];
|
|
1471
|
+
_init_whiteboardActive = _applyDecs$e[20];
|
|
1472
|
+
_init_ownerUser = _applyDecs$e[21];
|
|
1473
|
+
_init__handleLayoutUpdated = _applyDecs$e[22];
|
|
1474
|
+
_initProto = _applyDecs$e[23];
|
|
1380
1475
|
var StoreContext = exports.StoreContext = /*#__PURE__*/(0, _react.createContext)(null);
|
|
@@ -56,6 +56,7 @@ var _store = require("./store.base");
|
|
|
56
56
|
var _type = require("./type");
|
|
57
57
|
var _constant = require("../../utilities/constant");
|
|
58
58
|
var _videoWindow = require("../dialog/dialogs/video-window");
|
|
59
|
+
var _lodash = require("lodash");
|
|
59
60
|
var _LayoutStoreElectron;
|
|
60
61
|
var _initProto;
|
|
61
62
|
function _callSuper(t, o, e) { return o = (0, _getPrototypeOf2["default"])(o), (0, _possibleConstructorReturn2["default"])(t, _isNativeReflectConstruct() ? Reflect.construct(o, e || [], (0, _getPrototypeOf2["default"])(t).constructor) : o.apply(t, e)); }
|
|
@@ -86,9 +87,7 @@ var LayoutStoreElectron = exports["default"] = /*#__PURE__*/function (_LayoutSto
|
|
|
86
87
|
if (_this._multiDisplayProvider.isActive) {
|
|
87
88
|
_this._multiDisplayProvider.setMainWindowMaximize();
|
|
88
89
|
}
|
|
89
|
-
|
|
90
|
-
return _this.isMultiDisplayActive;
|
|
91
|
-
}, function (isActive) {
|
|
90
|
+
var handleMultiDisplayActiveChange = (0, _lodash.debounce)(function (isActive) {
|
|
92
91
|
var _this$_multiDisplayPr = _this._multiDisplayProvider.displayState,
|
|
93
92
|
sharingBySelf = _this$_multiDisplayPr.sharingBySelf,
|
|
94
93
|
isSharingScreen = _this$_multiDisplayPr.isSharingScreen;
|
|
@@ -119,6 +118,11 @@ var LayoutStoreElectron = exports["default"] = /*#__PURE__*/function (_LayoutSto
|
|
|
119
118
|
} else if (isSharingScreen) {
|
|
120
119
|
_this.toggleLayout(_type.FcrUIVideoWindowLayoutType.Speaker);
|
|
121
120
|
}
|
|
121
|
+
}, 100);
|
|
122
|
+
_this._disposers.push((0, _mobx.reaction)(function () {
|
|
123
|
+
return _this.isMultiDisplayActive;
|
|
124
|
+
}, function (isActive) {
|
|
125
|
+
handleMultiDisplayActiveChange(isActive);
|
|
122
126
|
}));
|
|
123
127
|
return _this;
|
|
124
128
|
}
|
|
@@ -87,10 +87,14 @@ export interface FcrLayoutSlots {
|
|
|
87
87
|
whiteboard: React.ReactNode;
|
|
88
88
|
annotation: React.ReactNode;
|
|
89
89
|
screenShareControl: React.ReactNode;
|
|
90
|
+
subtitles: React.ReactNode;
|
|
91
|
+
subtitlesHistory: React.ReactNode;
|
|
92
|
+
subtitlesHistorySettings: React.ReactNode;
|
|
90
93
|
}
|
|
91
94
|
export interface FcrUILayoutAsideContent {
|
|
92
95
|
participant: boolean;
|
|
93
96
|
chat: boolean;
|
|
97
|
+
subtitlesHistory: boolean;
|
|
94
98
|
}
|
|
95
99
|
export interface LayoutStoreArgs {
|
|
96
100
|
objectManager: FcrUIObjectManager;
|
|
@@ -33,6 +33,7 @@ var Layout = exports.Layout = (0, _mobxReact.observer)(function () {
|
|
|
33
33
|
setHoveringLeaveHandler = layoutStore.setHoveringLeaveHandler,
|
|
34
34
|
asideWidth = layoutStore.asideWidth,
|
|
35
35
|
chatAction = layoutStore.chatAction,
|
|
36
|
+
subtitlesHistorySettings = layoutStore.subtitlesHistorySettings,
|
|
36
37
|
barHidden = layoutStore.barHidden,
|
|
37
38
|
isRobot = layoutStore.isRobot,
|
|
38
39
|
getWaterMarkContent = layoutStore.getWaterMarkContent,
|
|
@@ -41,11 +42,31 @@ var Layout = exports.Layout = (0, _mobxReact.observer)(function () {
|
|
|
41
42
|
localUser = layoutStore.localUser,
|
|
42
43
|
setAsideWidth = layoutStore.setAsideWidth,
|
|
43
44
|
toggleAside = layoutStore.toggleAside,
|
|
44
|
-
asideWidthChanged = layoutStore.asideWidthChanged
|
|
45
|
+
asideWidthChanged = layoutStore.asideWidthChanged,
|
|
46
|
+
subtitles = layoutStore.subtitles,
|
|
47
|
+
subtitlesHistoryRenderAt = layoutStore.subtitlesHistoryRenderAt,
|
|
48
|
+
chatRenderAt = layoutStore.chatRenderAt,
|
|
49
|
+
participantsRenderAt = layoutStore.participantsRenderAt,
|
|
50
|
+
asideContent = layoutStore.asideContent;
|
|
45
51
|
var _useDelayedMeasure = (0, _hooks.useDelayedMeasure)(),
|
|
46
52
|
_useDelayedMeasure2 = (0, _slicedToArray2["default"])(_useDelayedMeasure, 2),
|
|
47
53
|
_ref = _useDelayedMeasure2[0],
|
|
48
54
|
bounds = _useDelayedMeasure2[1];
|
|
55
|
+
var translateWidth = (0, _react.useMemo)(function () {
|
|
56
|
+
if (asideContent.subtitlesHistory && subtitlesHistoryRenderAt === 'aside') {
|
|
57
|
+
return 320;
|
|
58
|
+
}
|
|
59
|
+
return 0;
|
|
60
|
+
}, [asideContent.subtitlesHistory, subtitlesHistoryRenderAt]);
|
|
61
|
+
var chatAndParticipantWidth = (0, _react.useMemo)(function () {
|
|
62
|
+
if (asideContent.chat && chatRenderAt === 'aside') {
|
|
63
|
+
return asideWidth;
|
|
64
|
+
}
|
|
65
|
+
if (asideContent.participant && participantsRenderAt === 'aside') {
|
|
66
|
+
return asideWidth;
|
|
67
|
+
}
|
|
68
|
+
return 0;
|
|
69
|
+
}, [asideWidth, asideContent.chat, asideContent.participant, chatRenderAt, participantsRenderAt]);
|
|
49
70
|
var getContainer;
|
|
50
71
|
var onDragHandler = (0, _react.useCallback)(function (event) {
|
|
51
72
|
event.preventDefault();
|
|
@@ -102,7 +123,7 @@ var Layout = exports.Layout = (0, _mobxReact.observer)(function () {
|
|
|
102
123
|
children: [/*#__PURE__*/(0, _jsxRuntime.jsxs)("div", {
|
|
103
124
|
className: "fcr-layout-content",
|
|
104
125
|
style: {
|
|
105
|
-
width: bounds.width - asideWidth
|
|
126
|
+
width: bounds.width - asideWidth - translateWidth
|
|
106
127
|
},
|
|
107
128
|
children: [!isRobot && /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
108
129
|
className: "fcr-layout-content-bar fcr-layout-content-top",
|
|
@@ -112,7 +133,7 @@ var Layout = exports.Layout = (0, _mobxReact.observer)(function () {
|
|
|
112
133
|
className: "fcr-layout-content-bar-body",
|
|
113
134
|
children: stateBar
|
|
114
135
|
})
|
|
115
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_components.Carousel, {}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_components.CarouselExpandButton, {}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_components.WhoIsSpeaking, {}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_components.Gallery, {}), !isRobot && /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
136
|
+
}), subtitles, /*#__PURE__*/(0, _jsxRuntime.jsx)(_components.Carousel, {}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_components.CarouselExpandButton, {}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_components.WhoIsSpeaking, {}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_components.Gallery, {}), !isRobot && /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
116
137
|
className: cls,
|
|
117
138
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
118
139
|
className: "fcr-layout-content-bar-body",
|
|
@@ -122,9 +143,10 @@ var Layout = exports.Layout = (0, _mobxReact.observer)(function () {
|
|
|
122
143
|
})
|
|
123
144
|
})]
|
|
124
145
|
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_components.Aside, {
|
|
125
|
-
width: aside ?
|
|
146
|
+
width: aside ? chatAndParticipantWidth + translateWidth : 0,
|
|
126
147
|
onDragHandler: onDragHandler,
|
|
127
|
-
chatAction: chatAction
|
|
148
|
+
chatAction: chatAction,
|
|
149
|
+
subtitlesHistorySettings: subtitlesHistorySettings
|
|
128
150
|
}), /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
129
151
|
className: "fcr-layer",
|
|
130
152
|
children: layers
|
|
@@ -15,14 +15,14 @@
|
|
|
15
15
|
align-items: center;
|
|
16
16
|
}
|
|
17
17
|
|
|
18
|
-
.fcr-notification-root .
|
|
18
|
+
.fcr-notification-root .fcr-notification {
|
|
19
19
|
position: absolute;
|
|
20
20
|
top: 40px;
|
|
21
21
|
z-index: 999;
|
|
22
22
|
height: calc(100vh - 40px);
|
|
23
23
|
}
|
|
24
24
|
|
|
25
|
-
.
|
|
25
|
+
.fcr-notification-notice-wrapper {
|
|
26
26
|
border-radius: 10px;
|
|
27
27
|
left: 10px;
|
|
28
28
|
}
|
|
@@ -64,14 +64,14 @@
|
|
|
64
64
|
transform: translateX(-50%);
|
|
65
65
|
bottom: 0;
|
|
66
66
|
}
|
|
67
|
-
.fcr-notification_bottom .
|
|
67
|
+
.fcr-notification_bottom .fcr-notification-notice-wrapper {
|
|
68
68
|
transform: translate3d(0px, 0px, 0px) !important;
|
|
69
69
|
top: unset;
|
|
70
70
|
bottom: 59px;
|
|
71
71
|
background-color: transparent;
|
|
72
72
|
box-shadow: none;
|
|
73
73
|
}
|
|
74
|
-
.fcr-notification_bottom .
|
|
74
|
+
.fcr-notification_bottom .fcr-notification-notice-content {
|
|
75
75
|
padding: 0;
|
|
76
76
|
text-align: center;
|
|
77
77
|
}
|
|
@@ -1,16 +1,18 @@
|
|
|
1
1
|
import { NotificationStoreArgs } from './type';
|
|
2
2
|
import { FcrUIManagedObject } from '../../object-manager';
|
|
3
|
-
import {
|
|
3
|
+
import { WarpNotificationAPI } from 'agora-ui-foundation/lib/components/notification';
|
|
4
4
|
export default class NotificationStore implements FcrUIManagedObject {
|
|
5
5
|
protected logger: import("agora-foundation/lib/logger").Logger;
|
|
6
6
|
private _notification;
|
|
7
7
|
private _messageProvider;
|
|
8
8
|
private _sharedWaitingRoomDataSource;
|
|
9
|
+
private _sharedVideoWindowDataSource;
|
|
9
10
|
private _messageObserver;
|
|
10
|
-
get notification():
|
|
11
|
+
get notification(): WarpNotificationAPI;
|
|
11
12
|
constructor({ objectManager }: NotificationStoreArgs);
|
|
12
13
|
get waitingRoomUserCount(): number;
|
|
13
|
-
|
|
14
|
+
get layoutType(): import("../../type").FcrUIVideoWindowLayoutType;
|
|
15
|
+
setNotification(notification: WarpNotificationAPI): void;
|
|
14
16
|
release(): void;
|
|
15
17
|
}
|
|
16
18
|
export declare const StoreContext: import("react").Context<NotificationStore>;
|