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
|
@@ -35,6 +35,7 @@ var MorePopoverContent = exports.MorePopoverContent = (0, _mobxReact.observer)(f
|
|
|
35
35
|
hasStartLiveStreamingPermission = _useContext.hasStartLiveStreamingPermission,
|
|
36
36
|
hasGetLiveStreamingUrlPermission = _useContext.hasGetLiveStreamingUrlPermission,
|
|
37
37
|
hasEndRoomPermission = _useContext.hasEndRoomPermission,
|
|
38
|
+
isRecordingSupported = _useContext.isRecordingSupported,
|
|
38
39
|
newMessageCount = _useContext.newMessageCount,
|
|
39
40
|
isRoomDetailSupported = _useContext.isRoomDetailSupported;
|
|
40
41
|
var transI18n = (0, _i18n.useI18n)();
|
|
@@ -65,7 +66,14 @@ var MorePopoverContent = exports.MorePopoverContent = (0, _mobxReact.observer)(f
|
|
|
65
66
|
text: transI18n('fmt_screenshare_controlbar_button_more_cloudRecord'),
|
|
66
67
|
displayWhenNoPermission: 'hidden',
|
|
67
68
|
key: cloudRecordingState === _type2.FcrRecordingState.Stopped ? _enums.MoreAction.CLOUD_RECORDING_START : _enums.MoreAction.CLOUD_RECORDING_STOP,
|
|
68
|
-
hasPermission: hasStartCloudRecordingPermission && cloudRecordingState === _type2.FcrRecordingState.Stopped
|
|
69
|
+
hasPermission: isRecordingSupported && hasStartCloudRecordingPermission && cloudRecordingState === _type2.FcrRecordingState.Stopped
|
|
70
|
+
}, {
|
|
71
|
+
icon: _type.FcrIconType.FCR_MOREAPP,
|
|
72
|
+
text: 'Apps',
|
|
73
|
+
displayWhenNoPermission: 'hidden',
|
|
74
|
+
key: _enums.MoreAction.OPEN_APPS,
|
|
75
|
+
hasPermission: true,
|
|
76
|
+
classNames: 'share-action-nav__media-list-item-with-divider'
|
|
69
77
|
},
|
|
70
78
|
// {
|
|
71
79
|
// icon: null,
|
|
@@ -8,6 +8,8 @@ export interface ShareAudioProps {
|
|
|
8
8
|
currentAudioChannel?: AudioProcessingChannel;
|
|
9
9
|
onSwitchAudioChannel?: (target: AudioProcessingChannel) => void;
|
|
10
10
|
toggleShareWithAudio?: (target: boolean) => void;
|
|
11
|
+
popoverVisible: boolean;
|
|
12
|
+
setPopoverVisible: (visible: boolean) => void;
|
|
11
13
|
showInfoTip?: boolean;
|
|
12
14
|
}
|
|
13
15
|
export declare const ShareAudio: (props: ShareAudioProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -20,7 +20,6 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
20
20
|
});
|
|
21
21
|
exports.ShareAudio = exports.AudioProcessingChannel = void 0;
|
|
22
22
|
var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
|
|
23
|
-
var _slicedToArray2 = _interopRequireDefault(require("@babel/runtime/helpers/slicedToArray"));
|
|
24
23
|
var _react = require("react");
|
|
25
24
|
require("./index.css");
|
|
26
25
|
var _i18n = require("agora-ui-foundation/lib/i18n");
|
|
@@ -45,14 +44,9 @@ var ShareAudio = exports.ShareAudio = function ShareAudio(props) {
|
|
|
45
44
|
currentAudioChannel = _props$currentAudioCh === void 0 ? AudioProcessingChannel.MONO : _props$currentAudioCh,
|
|
46
45
|
toggleShareWithAudio = props.toggleShareWithAudio,
|
|
47
46
|
_props$showInfoTip = props.showInfoTip,
|
|
48
|
-
showInfoTip = _props$showInfoTip === void 0 ? false : _props$showInfoTip
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
popoverVisible = _useState2[0],
|
|
52
|
-
setVisible = _useState2[1];
|
|
53
|
-
var handlerVisibleChange = function handlerVisibleChange(visible) {
|
|
54
|
-
setVisible(visible);
|
|
55
|
-
};
|
|
47
|
+
showInfoTip = _props$showInfoTip === void 0 ? false : _props$showInfoTip,
|
|
48
|
+
popoverVisible = props.popoverVisible,
|
|
49
|
+
setPopoverVisible = props.setPopoverVisible;
|
|
56
50
|
var shareAudioTips = (0, _react.useMemo)(function () {
|
|
57
51
|
if (!shareWithAudio) {
|
|
58
52
|
return t('fmt_screenshare_window_checkbox_shareAudio');
|
|
@@ -89,7 +83,7 @@ var ShareAudio = exports.ShareAudio = function ShareAudio(props) {
|
|
|
89
83
|
content: /*#__PURE__*/(0, _jsxRuntime.jsx)(ShareAudioOptions, _objectSpread({}, props)),
|
|
90
84
|
trigger: "click",
|
|
91
85
|
visible: popoverVisible,
|
|
92
|
-
onVisibleChange:
|
|
86
|
+
onVisibleChange: setPopoverVisible,
|
|
93
87
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
94
88
|
className: "share-audio-action-button share-selectrion",
|
|
95
89
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_icon.FcrIcon, {
|
|
@@ -29,5 +29,6 @@ var MoreAction = exports.MoreAction = /*#__PURE__*/function (MoreAction) {
|
|
|
29
29
|
MoreAction[MoreAction["LEAVE_ROOM"] = 8] = "LEAVE_ROOM";
|
|
30
30
|
MoreAction[MoreAction["COPY_INVITE_LINK"] = 9] = "COPY_INVITE_LINK";
|
|
31
31
|
MoreAction[MoreAction["COPY_MEETING_INFO"] = 10] = "COPY_MEETING_INFO";
|
|
32
|
+
MoreAction[MoreAction["OPEN_APPS"] = 11] = "OPEN_APPS";
|
|
32
33
|
return MoreAction;
|
|
33
34
|
}({});
|
|
@@ -1,3 +1,4 @@
|
|
|
1
1
|
export declare const useBoundaryDetect: (ref: React.RefObject<HTMLDivElement>, callbacks: {
|
|
2
2
|
onBoundariesChanged: (rect: FcrUI.FcrUIRectangle) => void;
|
|
3
3
|
}) => void;
|
|
4
|
+
export declare const usePopoverWatcher: (containerRef: React.RefObject<HTMLDivElement>, setArea: (id: string, area: FcrUI.FcrUIRectangle) => void, removeArea: (id: string) => void) => void;
|
|
@@ -4,8 +4,36 @@ require("core-js/modules/es.object.define-property.js");
|
|
|
4
4
|
Object.defineProperty(exports, "__esModule", {
|
|
5
5
|
value: true
|
|
6
6
|
});
|
|
7
|
-
exports.useBoundaryDetect = void 0;
|
|
7
|
+
exports.usePopoverWatcher = exports.useBoundaryDetect = void 0;
|
|
8
|
+
require("core-js/modules/es.array.concat.js");
|
|
9
|
+
require("core-js/modules/es.array.for-each.js");
|
|
10
|
+
require("core-js/modules/es.array.iterator.js");
|
|
11
|
+
require("core-js/modules/es.array.some.js");
|
|
12
|
+
require("core-js/modules/es.date.now.js");
|
|
13
|
+
require("core-js/modules/es.map.js");
|
|
14
|
+
require("core-js/modules/es.object.to-string.js");
|
|
15
|
+
require("core-js/modules/es.string.iterator.js");
|
|
16
|
+
require("core-js/modules/esnext.iterator.constructor.js");
|
|
17
|
+
require("core-js/modules/esnext.iterator.for-each.js");
|
|
18
|
+
require("core-js/modules/esnext.iterator.some.js");
|
|
19
|
+
require("core-js/modules/esnext.map.delete-all.js");
|
|
20
|
+
require("core-js/modules/esnext.map.emplace.js");
|
|
21
|
+
require("core-js/modules/esnext.map.every.js");
|
|
22
|
+
require("core-js/modules/esnext.map.filter.js");
|
|
23
|
+
require("core-js/modules/esnext.map.find.js");
|
|
24
|
+
require("core-js/modules/esnext.map.find-key.js");
|
|
25
|
+
require("core-js/modules/esnext.map.includes.js");
|
|
26
|
+
require("core-js/modules/esnext.map.key-of.js");
|
|
27
|
+
require("core-js/modules/esnext.map.map-keys.js");
|
|
28
|
+
require("core-js/modules/esnext.map.map-values.js");
|
|
29
|
+
require("core-js/modules/esnext.map.merge.js");
|
|
30
|
+
require("core-js/modules/esnext.map.reduce.js");
|
|
31
|
+
require("core-js/modules/esnext.map.some.js");
|
|
32
|
+
require("core-js/modules/esnext.map.update.js");
|
|
33
|
+
require("core-js/modules/web.dom-collections.for-each.js");
|
|
34
|
+
require("core-js/modules/web.dom-collections.iterator.js");
|
|
8
35
|
var _schedule = require("agora-foundation/lib/schedule");
|
|
36
|
+
var _lodash = require("lodash");
|
|
9
37
|
var _react = require("react");
|
|
10
38
|
var useBoundaryDetect = exports.useBoundaryDetect = function useBoundaryDetect(ref, callbacks) {
|
|
11
39
|
(0, _react.useEffect)(function () {
|
|
@@ -33,4 +61,115 @@ var useBoundaryDetect = exports.useBoundaryDetect = function useBoundaryDetect(r
|
|
|
33
61
|
}
|
|
34
62
|
};
|
|
35
63
|
}, [callbacks]);
|
|
64
|
+
};
|
|
65
|
+
var handlePositionChange = function handlePositionChange(popover, _onChange) {
|
|
66
|
+
var lastRect = null;
|
|
67
|
+
var onChange = (0, _lodash.debounce)(_onChange, 300);
|
|
68
|
+
var readRect = function readRect() {
|
|
69
|
+
var domRect = popover.getBoundingClientRect();
|
|
70
|
+
return {
|
|
71
|
+
x: domRect.left,
|
|
72
|
+
y: domRect.top,
|
|
73
|
+
width: domRect.width,
|
|
74
|
+
height: domRect.height
|
|
75
|
+
};
|
|
76
|
+
};
|
|
77
|
+
var notifyIfChanged = function notifyIfChanged() {
|
|
78
|
+
var nextRect = readRect();
|
|
79
|
+
if (!lastRect || lastRect.x !== nextRect.x || lastRect.y !== nextRect.y || lastRect.width !== nextRect.width || lastRect.height !== nextRect.height) {
|
|
80
|
+
lastRect = nextRect;
|
|
81
|
+
onChange(nextRect);
|
|
82
|
+
}
|
|
83
|
+
};
|
|
84
|
+
notifyIfChanged();
|
|
85
|
+
var observer = new MutationObserver(function (mutationsList) {
|
|
86
|
+
var shouldUpdate = mutationsList.some(function (mutation) {
|
|
87
|
+
return mutation.type === 'attributes' && mutation.attributeName === 'style';
|
|
88
|
+
});
|
|
89
|
+
if (shouldUpdate) {
|
|
90
|
+
notifyIfChanged();
|
|
91
|
+
}
|
|
92
|
+
});
|
|
93
|
+
observer.observe(popover, {
|
|
94
|
+
attributes: true,
|
|
95
|
+
attributeFilter: ['style']
|
|
96
|
+
});
|
|
97
|
+
return function () {
|
|
98
|
+
onChange.cancel();
|
|
99
|
+
observer.disconnect();
|
|
100
|
+
};
|
|
101
|
+
};
|
|
102
|
+
var usePopoverWatcher = exports.usePopoverWatcher = function usePopoverWatcher(containerRef, setArea, removeArea) {
|
|
103
|
+
(0, _react.useEffect)(function () {
|
|
104
|
+
if (containerRef.current === null) return;
|
|
105
|
+
var countNum = 0;
|
|
106
|
+
var body = containerRef.current.ownerDocument.body;
|
|
107
|
+
var popoverClassName = 'fcr-popover';
|
|
108
|
+
var popoverObservers = new Map();
|
|
109
|
+
var getPopoverElement = function getPopoverElement(node) {
|
|
110
|
+
if (node.classList.contains(popoverClassName)) {
|
|
111
|
+
return node;
|
|
112
|
+
} else {
|
|
113
|
+
return node.querySelector(".".concat(popoverClassName));
|
|
114
|
+
}
|
|
115
|
+
};
|
|
116
|
+
var observer = new MutationObserver(function (mutationsList) {
|
|
117
|
+
mutationsList.forEach(function (mutation) {
|
|
118
|
+
if (mutation.type !== 'childList') {
|
|
119
|
+
return;
|
|
120
|
+
}
|
|
121
|
+
mutation.addedNodes.forEach(function (node) {
|
|
122
|
+
if (node.nodeType !== Node.ELEMENT_NODE) {
|
|
123
|
+
return;
|
|
124
|
+
}
|
|
125
|
+
var popover = getPopoverElement(node);
|
|
126
|
+
if (!popover) {
|
|
127
|
+
return;
|
|
128
|
+
}
|
|
129
|
+
var popoverElementId = popover.getAttribute('data-popover-id');
|
|
130
|
+
if (popoverElementId) {
|
|
131
|
+
if (popoverObservers.has(popoverElementId)) {
|
|
132
|
+
return;
|
|
133
|
+
}
|
|
134
|
+
} else {
|
|
135
|
+
popoverElementId = "".concat(popoverClassName, "-").concat(Date.now(), "-").concat(countNum++, "}");
|
|
136
|
+
popover.setAttribute('data-popover-id', popoverElementId);
|
|
137
|
+
}
|
|
138
|
+
popoverObservers.set(popoverElementId, handlePositionChange(popover, function (rect) {
|
|
139
|
+
setArea(popoverElementId, rect);
|
|
140
|
+
}));
|
|
141
|
+
});
|
|
142
|
+
mutation.removedNodes.forEach(function (node) {
|
|
143
|
+
if (node.nodeType !== Node.ELEMENT_NODE) {
|
|
144
|
+
return;
|
|
145
|
+
}
|
|
146
|
+
var popover = getPopoverElement(node);
|
|
147
|
+
if (!popover) {
|
|
148
|
+
return;
|
|
149
|
+
}
|
|
150
|
+
var popoverElementId = popover.getAttribute('data-popover-id');
|
|
151
|
+
if (popoverElementId) {
|
|
152
|
+
var disconnect = popoverObservers.get(popoverElementId);
|
|
153
|
+
if (disconnect) {
|
|
154
|
+
disconnect();
|
|
155
|
+
popoverObservers["delete"](popoverElementId);
|
|
156
|
+
}
|
|
157
|
+
removeArea(popoverElementId);
|
|
158
|
+
}
|
|
159
|
+
});
|
|
160
|
+
});
|
|
161
|
+
});
|
|
162
|
+
observer.observe(body, {
|
|
163
|
+
childList: true,
|
|
164
|
+
subtree: true
|
|
165
|
+
});
|
|
166
|
+
return function () {
|
|
167
|
+
observer.disconnect();
|
|
168
|
+
popoverObservers.forEach(function (disconnect, key) {
|
|
169
|
+
disconnect();
|
|
170
|
+
removeArea(key);
|
|
171
|
+
});
|
|
172
|
+
popoverObservers.clear();
|
|
173
|
+
};
|
|
174
|
+
}, [containerRef.current]);
|
|
36
175
|
};
|
|
@@ -22,15 +22,13 @@ export default class ControlBarStore implements FcrUIManagedObject {
|
|
|
22
22
|
private _messageProvider;
|
|
23
23
|
private _dialogProvider;
|
|
24
24
|
private _facilityProvider;
|
|
25
|
+
private _applistProvider;
|
|
25
26
|
private _sharedMeetingTimeDataSource;
|
|
26
27
|
private _sharedChatDataSource;
|
|
27
28
|
private _sharedLayoutDataSource;
|
|
28
29
|
private _controlBarWindow;
|
|
29
30
|
private _screenShareObserver;
|
|
30
31
|
private _mouseDetectObserver;
|
|
31
|
-
private _stateNavArea;
|
|
32
|
-
private _contentArea;
|
|
33
|
-
private _popoverArea;
|
|
34
32
|
accessor roomDuration: number;
|
|
35
33
|
accessor startTime: number;
|
|
36
34
|
accessor cloudRecordingState: FcrRecordingState;
|
|
@@ -43,11 +41,13 @@ export default class ControlBarStore implements FcrUIManagedObject {
|
|
|
43
41
|
x: number;
|
|
44
42
|
y: number;
|
|
45
43
|
};
|
|
44
|
+
accessor appActionbarPopoverVisible: boolean;
|
|
46
45
|
accessor roomInfo: FcrRoomInfo;
|
|
47
46
|
accessor roomSchedule: FcrRoomSchedule;
|
|
48
47
|
accessor meetingId: string;
|
|
49
48
|
accessor localUserName: string;
|
|
50
49
|
accessor titleHeight: number;
|
|
50
|
+
private _detectAreas;
|
|
51
51
|
get isSharingWithAudio(): boolean;
|
|
52
52
|
get isInSmoothMode(): boolean;
|
|
53
53
|
get hasSecurityPermission(): boolean;
|
|
@@ -62,6 +62,7 @@ export default class ControlBarStore implements FcrUIManagedObject {
|
|
|
62
62
|
get meetingTime(): string;
|
|
63
63
|
get isMuteAudio(): boolean;
|
|
64
64
|
get isRoomDetailSupported(): boolean;
|
|
65
|
+
get isRecordingSupported(): boolean;
|
|
65
66
|
get meetingTimeKey(): string;
|
|
66
67
|
get roomId(): string;
|
|
67
68
|
get checkedStateMap(): FcrSecurityCheckedStateType;
|
|
@@ -73,6 +74,7 @@ export default class ControlBarStore implements FcrUIManagedObject {
|
|
|
73
74
|
get roomDetailCopyText(): string;
|
|
74
75
|
get audioShareMode(): AudioProcessingChannel;
|
|
75
76
|
get newMessageCount(): number;
|
|
77
|
+
get appItemOptions(): import("../components/apps/types").AppItemProps[];
|
|
76
78
|
constructor({ objectManager }: ControlBarStoreArgs);
|
|
77
79
|
setCheckedStateMap(val: FcrSecurityCheckedStateType): void;
|
|
78
80
|
setShareWithAudioState(withAudio: boolean): void;
|
|
@@ -96,12 +98,14 @@ export default class ControlBarStore implements FcrUIManagedObject {
|
|
|
96
98
|
setEnableWaitingRoom(enable: boolean): void;
|
|
97
99
|
getLocalMeetingTime(): string | null;
|
|
98
100
|
release(): void;
|
|
101
|
+
setArea(id: string, area: FcrUI.FcrUIRectangle): void;
|
|
102
|
+
removeArea(id: string): void;
|
|
99
103
|
setStateNavArea(area: FcrUI.FcrUIRectangle): void;
|
|
100
104
|
setControlBarContentArea(area: FcrUI.FcrUIRectangle): void;
|
|
101
|
-
setPopoverArea(area: FcrUI.FcrUIRectangle): void;
|
|
102
105
|
handleLeaveRoom(): void;
|
|
103
106
|
closeLeaveMeetingDialog(): void;
|
|
104
107
|
handleMoreClick(actionKey: MoreAction): void;
|
|
105
|
-
updateWindowBounds(): void;
|
|
108
|
+
updateWindowBounds(bounds: FcrUI.FcrUIRectangle): void;
|
|
109
|
+
setAppActionbarPopoverVisible(visible: boolean): void;
|
|
106
110
|
}
|
|
107
111
|
export declare const StoreContext: import("react").Context<ControlBarStore>;
|
|
@@ -6,15 +6,17 @@ require("core-js/modules/es.symbol.to-primitive.js");
|
|
|
6
6
|
require("core-js/modules/es.error.cause.js");
|
|
7
7
|
require("core-js/modules/es.error.to-string.js");
|
|
8
8
|
require("core-js/modules/es.array.is-array.js");
|
|
9
|
-
require("core-js/modules/es.array.push.js");
|
|
10
9
|
require("core-js/modules/es.date.to-primitive.js");
|
|
11
10
|
require("core-js/modules/es.function.bind.js");
|
|
12
11
|
require("core-js/modules/es.function.name.js");
|
|
13
12
|
require("core-js/modules/es.map.js");
|
|
14
13
|
require("core-js/modules/es.number.constructor.js");
|
|
15
14
|
require("core-js/modules/es.object.create.js");
|
|
15
|
+
require("core-js/modules/es.object.define-properties.js");
|
|
16
16
|
require("core-js/modules/es.object.define-property.js");
|
|
17
17
|
require("core-js/modules/es.object.get-own-property-descriptor.js");
|
|
18
|
+
require("core-js/modules/es.object.get-own-property-descriptors.js");
|
|
19
|
+
require("core-js/modules/es.object.keys.js");
|
|
18
20
|
require("core-js/modules/esnext.function.metadata.js");
|
|
19
21
|
require("core-js/modules/esnext.map.delete-all.js");
|
|
20
22
|
require("core-js/modules/esnext.map.emplace.js");
|
|
@@ -37,14 +39,17 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
37
39
|
value: true
|
|
38
40
|
});
|
|
39
41
|
exports["default"] = exports.StoreContext = void 0;
|
|
42
|
+
require("core-js/modules/es.array.filter.js");
|
|
40
43
|
require("core-js/modules/es.array.for-each.js");
|
|
41
44
|
require("core-js/modules/es.array.includes.js");
|
|
42
45
|
require("core-js/modules/es.array.iterator.js");
|
|
46
|
+
require("core-js/modules/es.array.push.js");
|
|
43
47
|
require("core-js/modules/es.date.to-string.js");
|
|
44
48
|
require("core-js/modules/es.object.to-string.js");
|
|
45
49
|
require("core-js/modules/es.string.iterator.js");
|
|
46
50
|
require("core-js/modules/es.weak-map.js");
|
|
47
51
|
require("core-js/modules/esnext.iterator.constructor.js");
|
|
52
|
+
require("core-js/modules/esnext.iterator.filter.js");
|
|
48
53
|
require("core-js/modules/esnext.iterator.for-each.js");
|
|
49
54
|
require("core-js/modules/esnext.weak-map.delete-all.js");
|
|
50
55
|
require("core-js/modules/esnext.weak-map.emplace.js");
|
|
@@ -72,7 +77,9 @@ var _controlBar = require("../dialog/dialogs/control-bar");
|
|
|
72
77
|
var _platform = require("../../utilities/platform");
|
|
73
78
|
var _struct = require("../../providers/mouse-detect/struct");
|
|
74
79
|
var _ControlBarStore;
|
|
75
|
-
var _initProto, _init_roomDuration, _init_startTime, _init_cloudRecordingState, _init_playUrl, _init_liveStreamingState, _init_allApplicationWindows, _init_boardOwnerUser, _init_currentShareDisplayId, _init_position, _setCheckedStateMapDecs, _showLockedRoomToastDecs, _handleNewShareDecs, _handlerStopShareDecs, _pauseCloudRecordingDecs, _resumeCloudRecordingDecs, _stopCloudRecordingDecs, _showToastDecs, _handleLeaveRoomDecs, _closeLeaveMeetingDialogDecs, _handleMoreClickDecs, _ref;
|
|
80
|
+
var _initProto, _init_roomDuration, _init_startTime, _init_cloudRecordingState, _init_playUrl, _init_liveStreamingState, _init_allApplicationWindows, _init_boardOwnerUser, _init_currentShareDisplayId, _init_position, _init_appActionbarPopoverVisible, _setCheckedStateMapDecs, _showLockedRoomToastDecs, _handleNewShareDecs, _handlerStopShareDecs, _pauseCloudRecordingDecs, _resumeCloudRecordingDecs, _stopCloudRecordingDecs, _showToastDecs, _handleLeaveRoomDecs, _closeLeaveMeetingDialogDecs, _handleMoreClickDecs, _setAppActionbarPopoverVisibleDecs, _ref;
|
|
81
|
+
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
82
|
+
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { (0, _defineProperty2["default"])(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
76
83
|
function _classPrivateFieldInitSpec(e, t, a) { _checkPrivateRedeclaration(e, t), t.set(e, a); }
|
|
77
84
|
function _checkPrivateRedeclaration(e, t) { if (t.has(e)) throw new TypeError("Cannot initialize the same private elements twice on an object"); }
|
|
78
85
|
function _classPrivateFieldSet(s, a, r) { return s.set(_assertClassBrand(s, a), r), r; }
|
|
@@ -92,6 +99,7 @@ var _K = /*#__PURE__*/new WeakMap();
|
|
|
92
99
|
var _L = /*#__PURE__*/new WeakMap();
|
|
93
100
|
var _M = /*#__PURE__*/new WeakMap();
|
|
94
101
|
var _N = /*#__PURE__*/new WeakMap();
|
|
102
|
+
var _O = /*#__PURE__*/new WeakMap();
|
|
95
103
|
var _A = /*#__PURE__*/new WeakMap();
|
|
96
104
|
var _B = /*#__PURE__*/new WeakMap();
|
|
97
105
|
var _C = /*#__PURE__*/new WeakMap();
|
|
@@ -103,7 +111,7 @@ _ref = (_setCheckedStateMapDecs = [_mobx.action, _mobx.action.bound], _showLocke
|
|
|
103
111
|
leading: true
|
|
104
112
|
})], _stopCloudRecordingDecs = [_decorator.bound, (0, _decorator.debounced)(500, {
|
|
105
113
|
leading: true
|
|
106
|
-
})], _showToastDecs = [_mobx.action, _mobx.action.bound], _handleLeaveRoomDecs = [_mobx.action, _mobx.action.bound], _closeLeaveMeetingDialogDecs = [_mobx.action, _mobx.action.bound], _handleMoreClickDecs = [_mobx.action, _mobx.action.bound], "logger");
|
|
114
|
+
})], _showToastDecs = [_mobx.action, _mobx.action.bound], _handleLeaveRoomDecs = [_mobx.action, _mobx.action.bound], _closeLeaveMeetingDialogDecs = [_mobx.action, _mobx.action.bound], _handleMoreClickDecs = [_mobx.action, _mobx.action.bound], _setAppActionbarPopoverVisibleDecs = [_mobx.action, _mobx.action.bound], "logger");
|
|
107
115
|
var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
|
|
108
116
|
function ControlBarStore(_ref2) {
|
|
109
117
|
var _this = this,
|
|
@@ -120,17 +128,18 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
|
|
|
120
128
|
(0, _defineProperty2["default"])(this, "_disposers", []);
|
|
121
129
|
(0, _defineProperty2["default"])(this, "_screenShareObserver", {
|
|
122
130
|
onPrepreScreenCapture: function onPrepreScreenCapture() {
|
|
123
|
-
var display = _this._renderer.getDisplayNearestPoint(_this.
|
|
131
|
+
var display = _this._renderer.getDisplayNearestPoint(_this._screenShareProvider.sharingDisplayBounds);
|
|
124
132
|
var y = display.bounds.y,
|
|
125
133
|
workAreaY = display.workArea.y;
|
|
126
134
|
var topOffset = workAreaY - y;
|
|
127
135
|
_this.titleHeight = (0, _platform.isWindows)() ? 0 : topOffset !== null && topOffset !== void 0 ? topOffset : 0;
|
|
128
136
|
(0, _mobx.runInAction)(function () {
|
|
129
|
-
_this.currentShareDisplayId =
|
|
130
|
-
_this._mouseDetectProvider.setDisplayId(_this.currentShareDisplayId);
|
|
137
|
+
_this.currentShareDisplayId = display.id;
|
|
131
138
|
});
|
|
139
|
+
_this._mouseDetectProvider.setDisplayId(_this.currentShareDisplayId);
|
|
132
140
|
_this._mouseDetectProvider.setDetectionPositionOffset(display.bounds);
|
|
133
|
-
_this.
|
|
141
|
+
var sharingDisplayBounds = _this._screenShareProvider.sharingDisplayBounds;
|
|
142
|
+
_this.updateWindowBounds(sharingDisplayBounds);
|
|
134
143
|
},
|
|
135
144
|
onShareSourceReplaced: function onShareSourceReplaced() {
|
|
136
145
|
var display = _this._renderer.getDisplayNearestPoint(_this.draggableArea);
|
|
@@ -146,6 +155,20 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
|
|
|
146
155
|
},
|
|
147
156
|
onScreenShareStopped: function onScreenShareStopped() {
|
|
148
157
|
_this._mouseDetectProvider.deleteDetectArea(_struct.FcrUIDetectAreaID.ControlBar);
|
|
158
|
+
},
|
|
159
|
+
onSelectionBoundsChanged: function onSelectionBoundsChanged() {
|
|
160
|
+
var display = _this._renderer.getDisplayNearestPoint(_this._screenShareProvider.sharingDisplayBounds);
|
|
161
|
+
var y = display.bounds.y,
|
|
162
|
+
workAreaY = display.workArea.y;
|
|
163
|
+
var topOffset = workAreaY - y;
|
|
164
|
+
_this.titleHeight = (0, _platform.isWindows)() ? 0 : topOffset !== null && topOffset !== void 0 ? topOffset : 0;
|
|
165
|
+
(0, _mobx.runInAction)(function () {
|
|
166
|
+
_this.currentShareDisplayId = display.id;
|
|
167
|
+
});
|
|
168
|
+
_this._mouseDetectProvider.setDisplayId(_this.currentShareDisplayId);
|
|
169
|
+
_this._mouseDetectProvider.setDetectionPositionOffset(display.bounds);
|
|
170
|
+
var sharingDisplayBounds = _this._screenShareProvider.sharingDisplayBounds;
|
|
171
|
+
_this.updateWindowBounds(sharingDisplayBounds);
|
|
149
172
|
}
|
|
150
173
|
});
|
|
151
174
|
(0, _defineProperty2["default"])(this, "_mouseDetectObserver", {
|
|
@@ -162,24 +185,6 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
|
|
|
162
185
|
}
|
|
163
186
|
}
|
|
164
187
|
});
|
|
165
|
-
(0, _defineProperty2["default"])(this, "_stateNavArea", {
|
|
166
|
-
x: 0,
|
|
167
|
-
y: 0,
|
|
168
|
-
width: 0,
|
|
169
|
-
height: 0
|
|
170
|
-
});
|
|
171
|
-
(0, _defineProperty2["default"])(this, "_contentArea", {
|
|
172
|
-
x: 0,
|
|
173
|
-
y: 0,
|
|
174
|
-
width: 0,
|
|
175
|
-
height: 0
|
|
176
|
-
});
|
|
177
|
-
(0, _defineProperty2["default"])(this, "_popoverArea", {
|
|
178
|
-
x: 0,
|
|
179
|
-
y: 0,
|
|
180
|
-
width: 0,
|
|
181
|
-
height: 0
|
|
182
|
-
});
|
|
183
188
|
_classPrivateFieldInitSpec(this, _F, _init_roomDuration(this));
|
|
184
189
|
_classPrivateFieldInitSpec(this, _G, _init_startTime(this));
|
|
185
190
|
_classPrivateFieldInitSpec(this, _H, _init_cloudRecordingState(this, _type.FcrRecordingState.Stopped));
|
|
@@ -192,12 +197,14 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
|
|
|
192
197
|
x: 0,
|
|
193
198
|
y: 0
|
|
194
199
|
}));
|
|
200
|
+
_classPrivateFieldInitSpec(this, _O, _init_appActionbarPopoverVisible(this, false));
|
|
195
201
|
_classPrivateFieldInitSpec(this, _A, void 0);
|
|
196
202
|
_classPrivateFieldInitSpec(this, _B, void 0);
|
|
197
203
|
_classPrivateFieldInitSpec(this, _C, '');
|
|
198
204
|
_classPrivateFieldInitSpec(this, _D, '');
|
|
199
205
|
_classPrivateFieldInitSpec(this, _E, 0);
|
|
200
206
|
this._privilegeProvider = objectManager.getObject(_objectManager.FcrUIObjectKeys.P_PRIVILEGE_PROVIDER);
|
|
207
|
+
this._applistProvider = objectManager.getObject(_objectManager.FcrUIObjectKeys.P_APPLIST_PROVIDER);
|
|
201
208
|
this._facilityProvider = objectManager.getObject(_objectManager.FcrUIObjectKeys.P_FACILITY_PROVIDER);
|
|
202
209
|
this._sharedChatDataSource = objectManager.getObject(_objectManager.FcrUIObjectKeys.S_SHARED_CHAT_DATA_SOURCE);
|
|
203
210
|
this._mainRoomControl = objectManager.getObject(_objectManager.FcrUIObjectKeys.P_MAIN_ROOM_CONTROL_PROVIDER).mainRoomControl;
|
|
@@ -322,6 +329,14 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
|
|
|
322
329
|
set: function set(v) {
|
|
323
330
|
_classPrivateFieldSet(_N, this, v);
|
|
324
331
|
}
|
|
332
|
+
}, {
|
|
333
|
+
key: "appActionbarPopoverVisible",
|
|
334
|
+
get: function get() {
|
|
335
|
+
return _classPrivateFieldGet(_O, this);
|
|
336
|
+
},
|
|
337
|
+
set: function set(v) {
|
|
338
|
+
_classPrivateFieldSet(_O, this, v);
|
|
339
|
+
}
|
|
325
340
|
}, {
|
|
326
341
|
key: "roomInfo",
|
|
327
342
|
get: function get() {
|
|
@@ -362,6 +377,11 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
|
|
|
362
377
|
set: function set(v) {
|
|
363
378
|
_classPrivateFieldSet(_E, this, v);
|
|
364
379
|
}
|
|
380
|
+
}, {
|
|
381
|
+
key: "_detectAreas",
|
|
382
|
+
value: function _detectAreas() {
|
|
383
|
+
return this._mouseDetectProvider.getDetectAreas(_struct.FcrUIDetectAreaID.ControlBar);
|
|
384
|
+
}
|
|
365
385
|
}, {
|
|
366
386
|
key: "isSharingWithAudio",
|
|
367
387
|
get: function get() {
|
|
@@ -375,7 +395,7 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
|
|
|
375
395
|
}, {
|
|
376
396
|
key: "hasSecurityPermission",
|
|
377
397
|
get: function get() {
|
|
378
|
-
return this._privilegeProvider.hasSecurityPermission;
|
|
398
|
+
return this._privilegeProvider.hasSecurityPermission();
|
|
379
399
|
}
|
|
380
400
|
}, {
|
|
381
401
|
key: "hasEndRoomPermission",
|
|
@@ -432,6 +452,11 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
|
|
|
432
452
|
get: function get() {
|
|
433
453
|
return this._abilityProvider.isRoomDetailSupported();
|
|
434
454
|
}
|
|
455
|
+
}, {
|
|
456
|
+
key: "isRecordingSupported",
|
|
457
|
+
get: function get() {
|
|
458
|
+
return this._abilityProvider.isRecordingSupported();
|
|
459
|
+
}
|
|
435
460
|
}, {
|
|
436
461
|
key: "meetingTimeKey",
|
|
437
462
|
get: function get() {
|
|
@@ -488,6 +513,11 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
|
|
|
488
513
|
var _this$_sharedChatData;
|
|
489
514
|
return (_this$_sharedChatData = this._sharedChatDataSource.newMessageCount[_type2.FcrUIRoomType.MAIN_ROOM]) !== null && _this$_sharedChatData !== void 0 ? _this$_sharedChatData : 0;
|
|
490
515
|
}
|
|
516
|
+
}, {
|
|
517
|
+
key: "appItemOptions",
|
|
518
|
+
get: function get() {
|
|
519
|
+
return this._applistProvider.appItemOptions;
|
|
520
|
+
}
|
|
491
521
|
}, {
|
|
492
522
|
key: "setCheckedStateMap",
|
|
493
523
|
value: function setCheckedStateMap(val) {
|
|
@@ -628,23 +658,36 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
|
|
|
628
658
|
this._mouseDetectProvider.removeObserver(this._mouseDetectObserver);
|
|
629
659
|
this._mouseDetectProvider.deleteDetectArea(_struct.FcrUIDetectAreaID.ControlBar);
|
|
630
660
|
}
|
|
661
|
+
}, {
|
|
662
|
+
key: "setArea",
|
|
663
|
+
value: function setArea(id, area) {
|
|
664
|
+
var currentOtherAreas = this._detectAreas().filter(function (item) {
|
|
665
|
+
return item.id !== id;
|
|
666
|
+
});
|
|
667
|
+
currentOtherAreas.push(_objectSpread({
|
|
668
|
+
id: id
|
|
669
|
+
}, area));
|
|
670
|
+
this._mouseDetectProvider.setDetectArea(_struct.FcrUIDetectAreaID.ControlBar, currentOtherAreas);
|
|
671
|
+
}
|
|
672
|
+
}, {
|
|
673
|
+
key: "removeArea",
|
|
674
|
+
value: function removeArea(id) {
|
|
675
|
+
var currentOtherAreas = this._detectAreas().filter(function (item) {
|
|
676
|
+
return item.id !== id;
|
|
677
|
+
});
|
|
678
|
+
this._mouseDetectProvider.setDetectArea(_struct.FcrUIDetectAreaID.ControlBar, currentOtherAreas);
|
|
679
|
+
}
|
|
631
680
|
}, {
|
|
632
681
|
key: "setStateNavArea",
|
|
633
682
|
value: function setStateNavArea(area) {
|
|
634
|
-
|
|
635
|
-
this.
|
|
683
|
+
var id = 'state-nav-area';
|
|
684
|
+
this.setArea(id, area);
|
|
636
685
|
}
|
|
637
686
|
}, {
|
|
638
687
|
key: "setControlBarContentArea",
|
|
639
688
|
value: function setControlBarContentArea(area) {
|
|
640
|
-
|
|
641
|
-
this.
|
|
642
|
-
}
|
|
643
|
-
}, {
|
|
644
|
-
key: "setPopoverArea",
|
|
645
|
-
value: function setPopoverArea(area) {
|
|
646
|
-
this._popoverArea = area;
|
|
647
|
-
this._mouseDetectProvider.setDetectArea(_struct.FcrUIDetectAreaID.ControlBar, [this._stateNavArea, this._contentArea, this._popoverArea]);
|
|
689
|
+
var id = 'control-bar-content-area';
|
|
690
|
+
this.setArea(id, area);
|
|
648
691
|
}
|
|
649
692
|
}, {
|
|
650
693
|
key: "handleLeaveRoom",
|
|
@@ -708,20 +751,27 @@ var ControlBarStore = exports["default"] = /*#__PURE__*/function () {
|
|
|
708
751
|
});
|
|
709
752
|
});
|
|
710
753
|
break;
|
|
754
|
+
case _enums.MoreAction.OPEN_APPS:
|
|
755
|
+
this.setAppActionbarPopoverVisible(true);
|
|
756
|
+
break;
|
|
711
757
|
default:
|
|
712
758
|
break;
|
|
713
759
|
}
|
|
714
760
|
}
|
|
715
761
|
}, {
|
|
716
762
|
key: "updateWindowBounds",
|
|
717
|
-
value: function updateWindowBounds() {
|
|
718
|
-
|
|
719
|
-
|
|
763
|
+
value: function updateWindowBounds(bounds) {
|
|
764
|
+
this._controlBarWindow.setBounds(bounds);
|
|
765
|
+
}
|
|
766
|
+
}, {
|
|
767
|
+
key: "setAppActionbarPopoverVisible",
|
|
768
|
+
value: function setAppActionbarPopoverVisible(visible) {
|
|
769
|
+
this.appActionbarPopoverVisible = visible;
|
|
720
770
|
}
|
|
721
771
|
}]);
|
|
722
772
|
}();
|
|
723
773
|
_ControlBarStore = ControlBarStore;
|
|
724
|
-
var _applyDecs$e = (0, _slicedToArray2["default"])(_applyDecs(_ControlBarStore, [[_mobx.observable, 1, "roomDuration"], [_mobx.observable, 1, "startTime"], [_mobx.observable, 1, "cloudRecordingState"], [_mobx.observable, 1, "playUrl"], [_mobx.observable, 1, "liveStreamingState"], [_mobx.observable, 1, "allApplicationWindows"], [_mobx.observable, 1, "boardOwnerUser"], [_mobx.observable, 1, "currentShareDisplayId"], [_mobx.observable, 1, "position"], [_mobx.computed, 3, "hasEndRoomPermission"], [_mobx.computed, 3, "hasGetLiveStreamingUrlPermission"], [_mobx.computed, 3, "hasStartCloudRecordingPermission"], [_mobx.computed, 3, "hasStartLiveStreamingPermission"], [_mobx.computed, 3, "hasChatPermission"], [_mobx.computed, 3, "liveStreamingButtonVisible"], [_mobx.computed, 3, "recordingButtonVisible"], [_mobx.computed, 3, "isConnecting"], [_setCheckedStateMapDecs, 18, "setCheckedStateMap"], [_decorator.bound, 2, "setShareWithAudioState"], [_decorator.bound, 2, "setShareInSmoothMode"], [_showLockedRoomToastDecs, 18, "showLockedRoomToast"], [_handleNewShareDecs, 18, "handleNewShare"], [_handlerStopShareDecs, 18, "handlerStopShare"], [_decorator.bound, 2, "handleMouseEnter"], [_decorator.bound, 2, "handleMouseLeave"], [_decorator.bound, 2, "openLiveStreamingDialog"], [_decorator.bound, 2, "setShareAudioMode"], [_pauseCloudRecordingDecs, 2, "pauseCloudRecording"], [_resumeCloudRecordingDecs, 2, "resumeCloudRecording"], [_stopCloudRecordingDecs, 2, "stopCloudRecording"], [_decorator.bound, 2, "startCloudRecording"], [_decorator.bound, 2, "startLiveStreaming"], [_decorator.bound, 2, "stopLiveStreaming"], [_showToastDecs, 18, "showToast"], [_decorator.bound, 2, "handleOpenParticipant"], [_decorator.bound, 2, "handleOpenLiveStreaming"], [_decorator.bound, 2, "setEnableWaitingRoom"], [_decorator.bound, 2, "getLocalMeetingTime"], [[_decorator.bound, _decorator.trace], 2, "
|
|
774
|
+
var _applyDecs$e = (0, _slicedToArray2["default"])(_applyDecs(_ControlBarStore, [[_mobx.observable, 1, "roomDuration"], [_mobx.observable, 1, "startTime"], [_mobx.observable, 1, "cloudRecordingState"], [_mobx.observable, 1, "playUrl"], [_mobx.observable, 1, "liveStreamingState"], [_mobx.observable, 1, "allApplicationWindows"], [_mobx.observable, 1, "boardOwnerUser"], [_mobx.observable, 1, "currentShareDisplayId"], [_mobx.observable, 1, "position"], [_mobx.observable, 1, "appActionbarPopoverVisible"], [_mobx.computed, 3, "hasEndRoomPermission"], [_mobx.computed, 3, "hasGetLiveStreamingUrlPermission"], [_mobx.computed, 3, "hasStartCloudRecordingPermission"], [_mobx.computed, 3, "hasStartLiveStreamingPermission"], [_mobx.computed, 3, "hasChatPermission"], [_mobx.computed, 3, "liveStreamingButtonVisible"], [_mobx.computed, 3, "recordingButtonVisible"], [_mobx.computed, 3, "isConnecting"], [_setCheckedStateMapDecs, 18, "setCheckedStateMap"], [_decorator.bound, 2, "setShareWithAudioState"], [_decorator.bound, 2, "setShareInSmoothMode"], [_showLockedRoomToastDecs, 18, "showLockedRoomToast"], [_handleNewShareDecs, 18, "handleNewShare"], [_handlerStopShareDecs, 18, "handlerStopShare"], [_decorator.bound, 2, "handleMouseEnter"], [_decorator.bound, 2, "handleMouseLeave"], [_decorator.bound, 2, "openLiveStreamingDialog"], [_decorator.bound, 2, "setShareAudioMode"], [_pauseCloudRecordingDecs, 2, "pauseCloudRecording"], [_resumeCloudRecordingDecs, 2, "resumeCloudRecording"], [_stopCloudRecordingDecs, 2, "stopCloudRecording"], [_decorator.bound, 2, "startCloudRecording"], [_decorator.bound, 2, "startLiveStreaming"], [_decorator.bound, 2, "stopLiveStreaming"], [_showToastDecs, 18, "showToast"], [_decorator.bound, 2, "handleOpenParticipant"], [_decorator.bound, 2, "handleOpenLiveStreaming"], [_decorator.bound, 2, "setEnableWaitingRoom"], [_decorator.bound, 2, "getLocalMeetingTime"], [[_decorator.bound, _decorator.trace], 2, "setArea"], [[_decorator.bound, _decorator.trace], 2, "removeArea"], [_decorator.bound, 2, "setStateNavArea"], [_decorator.bound, 2, "setControlBarContentArea"], [_handleLeaveRoomDecs, 18, "handleLeaveRoom"], [_closeLeaveMeetingDialogDecs, 18, "closeLeaveMeetingDialog"], [_handleMoreClickDecs, 18, "handleMoreClick"], [[_decorator.trace, _decorator.bound], 2, "updateWindowBounds"], [_setAppActionbarPopoverVisibleDecs, 18, "setAppActionbarPopoverVisible"]], []).e, 11);
|
|
725
775
|
_init_roomDuration = _applyDecs$e[0];
|
|
726
776
|
_init_startTime = _applyDecs$e[1];
|
|
727
777
|
_init_cloudRecordingState = _applyDecs$e[2];
|
|
@@ -731,5 +781,6 @@ _init_allApplicationWindows = _applyDecs$e[5];
|
|
|
731
781
|
_init_boardOwnerUser = _applyDecs$e[6];
|
|
732
782
|
_init_currentShareDisplayId = _applyDecs$e[7];
|
|
733
783
|
_init_position = _applyDecs$e[8];
|
|
734
|
-
|
|
784
|
+
_init_appActionbarPopoverVisible = _applyDecs$e[9];
|
|
785
|
+
_initProto = _applyDecs$e[10];
|
|
735
786
|
var StoreContext = exports.StoreContext = /*#__PURE__*/(0, _react.createContext)(null);
|