fcr-ui-scene 3.1.1 → 3.3.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/installer/icons/favicon.ico +0 -0
- package/installer/icons/favicon.png +0 -0
- package/installer/mac/entitlements.mac.plist +16 -0
- package/lib/base.d.ts +0 -1
- package/lib/base.js +16 -0
- package/lib/common/device-store.d.ts +4 -5
- package/lib/common/device-store.js +178 -86
- package/lib/common/device-stream-store.d.ts +3 -2
- package/lib/common/device-stream-store.js +94 -72
- package/lib/common/event-store.d.ts +20 -3
- package/lib/common/event-store.js +43 -5
- package/lib/common/security-store.d.ts +16 -16
- package/lib/common/security-store.js +278 -124
- package/lib/electron/app.js +13 -5
- package/lib/electron/bootstrap-dev.d.ts +1 -0
- package/lib/electron/bootstrap-dev.js +51 -0
- package/lib/electron/bootstrap-sdk.d.ts +1 -0
- package/lib/electron/bootstrap-sdk.js +56 -0
- package/lib/electron/bootstrap.d.ts +1 -0
- package/lib/electron/bootstrap.js +56 -0
- package/lib/electron/default-options.js +1 -1
- package/lib/electron/dev.d.ts +1 -0
- package/lib/electron/dev.js +51 -0
- package/lib/electron/injections.d.ts +3 -4
- package/lib/electron/injections.js +46 -33
- package/lib/electron/logger.d.ts +6 -0
- package/lib/electron/logger.js +66 -0
- package/lib/electron/main.js +15 -11
- package/lib/electron/plugins/meeting-state.d.ts +2 -0
- package/lib/electron/plugins/meeting-state.js +39 -0
- package/lib/electron/preload.js +2 -1
- package/lib/electron/tools.js +9 -0
- package/lib/electron/window.d.ts +1 -1
- package/lib/electron/window.js +14 -2
- package/lib/fragments/control-bar/context.d.ts +0 -1
- package/lib/fragments/control-bar/control-bar-store.d.ts +34 -1
- package/lib/fragments/control-bar/control-bar-store.js +394 -81
- package/lib/fragments/control-bar/device/index.js +12 -3
- package/lib/fragments/control-bar/index.css +15 -10
- package/lib/fragments/control-bar/index.js +19 -1
- package/lib/fragments/control-bar/meeting-details/meeting-detail.css +109 -0
- package/lib/fragments/control-bar/meeting-details/meeting-details-portal.d.ts +3 -0
- package/lib/fragments/control-bar/meeting-details/meeting-details-portal.js +60 -0
- package/lib/fragments/control-bar/meeting-details/meeting-details.d.ts +2 -0
- package/lib/fragments/control-bar/meeting-details/meeting-details.js +179 -0
- package/lib/fragments/control-bar/more-actions/index.css +53 -0
- package/lib/fragments/control-bar/more-actions/index.js +77 -37
- package/lib/fragments/control-bar/security-content/index.css +10 -0
- package/lib/fragments/control-bar/security-content/index.js +43 -18
- package/lib/fragments/control-bar/view.js +8 -2
- package/lib/fragments/live-streaming/context.d.ts +0 -1
- package/lib/fragments/live-streaming/store.js +27 -17
- package/lib/fragments/share-screen-selection/context.d.ts +0 -1
- package/lib/fragments/share-screen-selection/selection-store.d.ts +0 -1
- package/lib/fragments/share-screen-selection/selection-store.js +34 -33
- package/lib/fragments/share-screen-selection/view.js +7 -0
- package/lib/fragments/toolbar/components/color-picker/components/color.js +2 -0
- package/lib/fragments/toolbar/components/color-picker/components/panel.js +4 -0
- package/lib/fragments/toolbar/components/color-picker/components/picker.js +2 -0
- package/lib/fragments/toolbar/components/color-picker/index.js +5 -1
- package/lib/fragments/toolbar/components/color-picker.js +3 -1
- package/lib/fragments/toolbar/components/eraser-picker.js +4 -13
- package/lib/fragments/toolbar/components/extension-toolbar-item.js +5 -0
- package/lib/fragments/toolbar/components/extra-tool-picker.js +4 -0
- package/lib/fragments/toolbar/components/pen-picker.js +2 -0
- package/lib/fragments/toolbar/components/screen-capture-picker.js +2 -0
- package/lib/fragments/toolbar/components/shape-picker.js +2 -0
- package/lib/fragments/toolbar/hooks.d.ts +1 -1
- package/lib/fragments/toolbar/hooks.js +13 -8
- package/lib/fragments/toolbar/store.d.ts +4 -4
- package/lib/fragments/toolbar/store.js +20 -2
- package/lib/fragments/toolbar/view.js +2 -0
- package/lib/global.d.ts +1 -0
- package/lib/hooks/meeting-time.d.ts +2 -2
- package/lib/login-confirm-dialog.d.ts +12 -0
- package/lib/login-confirm-dialog.js +80 -0
- package/lib/modules/action-bar/action-bar-collapes-items.js +14 -5
- package/lib/modules/action-bar/chat/index.js +6 -6
- package/lib/modules/action-bar/context.d.ts +0 -1
- package/lib/modules/action-bar/device/index.css +7 -2
- package/lib/modules/action-bar/device/index.d.ts +2 -2
- package/lib/modules/action-bar/device/index.js +6 -4
- package/lib/modules/action-bar/index.css +63 -12
- package/lib/modules/action-bar/index.d.ts +3 -2
- package/lib/modules/action-bar/index.dev.js +8 -7
- package/lib/modules/action-bar/index.js +21 -0
- package/lib/modules/action-bar/item-placement.d.ts +1 -2
- package/lib/modules/action-bar/item.js +5 -0
- package/lib/modules/action-bar/leave/assign-host.d.ts +3 -1
- package/lib/modules/action-bar/leave/assign-host.js +7 -7
- package/lib/modules/action-bar/leave/index.js +35 -7
- package/lib/modules/action-bar/leave/leave-meeting.d.ts +11 -1
- package/lib/modules/action-bar/leave/leave-meeting.js +25 -16
- package/lib/modules/action-bar/more/poppover-content.d.ts +0 -1
- package/lib/modules/action-bar/more/poppover-content.js +14 -4
- package/lib/modules/action-bar/participants/index.css +12 -0
- package/lib/modules/action-bar/participants/index.js +21 -14
- package/lib/modules/action-bar/screen-share/index.js +5 -1
- package/lib/modules/action-bar/screen-share/submenu.js +17 -22
- package/lib/modules/action-bar/security/drop-menu.js +124 -14
- package/lib/modules/action-bar/security/index.js +1 -1
- package/lib/modules/action-bar/settings/index.js +1 -1
- package/lib/modules/action-bar/store.d.ts +45 -21
- package/lib/modules/action-bar/store.js +544 -134
- package/lib/modules/action-bar/view.js +65 -42
- package/lib/modules/audio-stream/index.js +12 -6
- package/lib/modules/chat/chat-bar/index.js +46 -27
- package/lib/modules/chat/chat-select/index.css +19 -4
- package/lib/modules/chat/chat-select/index.d.ts +0 -1
- package/lib/modules/chat/chat-select/index.js +29 -3
- package/lib/modules/chat/chat.d.ts +2 -3
- package/lib/modules/chat/chat.js +210 -107
- package/lib/modules/chat/contex.d.ts +0 -1
- package/lib/modules/chat/demo-wrapper.d.ts +0 -1
- package/lib/modules/chat/index.css +49 -0
- package/lib/modules/chat/index.d.ts +3 -3
- package/lib/modules/chat/index.dev.js +4 -4
- package/lib/modules/chat/index.js +32 -11
- package/lib/modules/chat/message-list.js +81 -49
- package/lib/modules/chat/store.d.ts +50 -4
- package/lib/modules/chat/store.js +303 -124
- package/lib/modules/chat/util.js +1 -1
- package/lib/modules/connection-gateway/components/phone/components/callinfo/index.js +2 -0
- package/lib/modules/connection-gateway/components/phone/index.js +2 -0
- package/lib/modules/connection-gateway/index.d.ts +3 -2
- package/lib/modules/connection-gateway/index.js +2 -0
- package/lib/modules/connection-gateway/store.d.ts +6 -4
- package/lib/modules/connection-gateway/store.js +46 -15
- package/lib/modules/device-pretest/audio-preview/microphone-detection.d.ts +1 -0
- package/lib/modules/device-pretest/audio-preview/microphone-detection.js +3 -2
- package/lib/modules/device-pretest/audio-preview/speaker-control.d.ts +0 -1
- package/lib/modules/device-pretest/audio-preview/speaker-control.js +1 -1
- package/lib/modules/device-pretest/context.d.ts +0 -1
- package/lib/modules/device-pretest/index.css +0 -4
- package/lib/modules/device-pretest/index.d.ts +0 -1
- package/lib/modules/device-pretest/index.js +2 -1
- package/lib/modules/device-pretest/settings/beauty.js +19 -6
- package/lib/modules/device-pretest/settings/video-effect.d.ts +0 -1
- package/lib/modules/device-pretest/settings/video-settings-basic.js +1 -0
- package/lib/modules/device-pretest/settings/virtual-background-setting.js +2 -0
- package/lib/modules/device-pretest/store.js +34 -19
- package/lib/modules/dialog/components/chat/electron.js +3 -2
- package/lib/modules/dialog/components/chat/index.js +1 -1
- package/lib/modules/dialog/components/confirm/electron.js +7 -5
- package/lib/modules/dialog/components/confirm/index.js +16 -2
- package/lib/modules/dialog/components/connection-gateway/electron.js +4 -2
- package/lib/modules/dialog/components/connection-gateway/index.css +0 -2
- package/lib/modules/dialog/components/device-setting/electron.d.ts +2 -0
- package/lib/modules/dialog/components/device-setting/electron.js +74 -0
- package/lib/modules/dialog/components/device-setting/index.css +26 -0
- package/lib/modules/dialog/components/device-setting/index.d.ts +4 -0
- package/lib/modules/dialog/components/device-setting/index.js +60 -0
- package/lib/modules/dialog/components/operation-waiting-room/electron.d.ts +5 -0
- package/lib/modules/dialog/components/operation-waiting-room/electron.js +89 -0
- package/lib/modules/dialog/components/operation-waiting-room/index.css +44 -0
- package/lib/modules/dialog/components/operation-waiting-room/index.d.ts +5 -0
- package/lib/modules/dialog/components/operation-waiting-room/index.js +156 -0
- package/lib/modules/dialog/components/participant/electron.js +8 -2
- package/lib/modules/dialog/components/remove-admit-waiting-room/electron.d.ts +5 -0
- package/lib/modules/dialog/components/remove-admit-waiting-room/electron.js +89 -0
- package/lib/modules/dialog/components/remove-admit-waiting-room/index.css +50 -0
- package/lib/modules/dialog/components/remove-admit-waiting-room/index.d.ts +5 -0
- package/lib/modules/dialog/components/remove-admit-waiting-room/index.js +90 -0
- package/lib/modules/dialog/components/share-screen-selection/index.js +1 -1
- package/lib/modules/dialog/components/whiteboard/index.js +2 -1
- package/lib/modules/dialog/context.d.ts +0 -1
- package/lib/modules/dialog/dialogs.d.ts +0 -2
- package/lib/modules/dialog/dialogs.js +62 -103
- package/lib/modules/dialog/index.css +7 -6
- package/lib/modules/dialog/index.d.ts +1 -1
- package/lib/modules/dialog/index.js +17 -0
- package/lib/modules/dialog/store.d.ts +6 -2
- package/lib/modules/dialog/store.js +52 -9
- package/lib/modules/dialog/view.js +2 -0
- package/lib/modules/event-notification/context.d.ts +2 -0
- package/lib/modules/event-notification/context.js +9 -0
- package/lib/modules/event-notification/index.css +58 -0
- package/lib/modules/event-notification/index.d.ts +13 -0
- package/lib/modules/event-notification/index.js +48 -0
- package/lib/modules/event-notification/store.d.ts +17 -0
- package/lib/modules/event-notification/store.js +133 -0
- package/lib/modules/event-notification/view.d.ts +5 -0
- package/lib/modules/event-notification/view.js +114 -0
- package/lib/modules/event-toast/context.d.ts +0 -1
- package/lib/modules/event-toast/store.js +16 -0
- package/lib/modules/invite/context.d.ts +0 -1
- package/lib/modules/invite/index.css +4 -4
- package/lib/modules/invite/index.d.ts +2 -2
- package/lib/modules/invite/pstn-invite.js +4 -1
- package/lib/modules/invite/store.d.ts +2 -2
- package/lib/modules/invite/store.js +27 -7
- package/lib/modules/invite/voip-invite.d.ts +0 -1
- package/lib/modules/invite/voip-invite.js +1 -1
- package/lib/modules/layout/components/Aside.d.ts +0 -1
- package/lib/modules/layout/components/Aside.js +4 -1
- package/lib/modules/layout/components/Carousel.js +6 -5
- package/lib/modules/layout/components/Gallery.js +16 -9
- package/lib/modules/layout/components/Layout.js +82 -57
- package/lib/modules/layout/components/index.css +42 -5
- package/lib/modules/layout/components/index.js +3 -0
- package/lib/modules/layout/context.d.ts +0 -1
- package/lib/modules/layout/index.css +30 -0
- package/lib/modules/layout/index.dev.js +11 -11
- package/lib/modules/layout/index.js +0 -6
- package/lib/modules/layout/member-window/index.css +5 -5
- package/lib/modules/layout/member-window/index.d.ts +7 -7
- package/lib/modules/layout/member-window/index.js +59 -13
- package/lib/modules/layout/store.d.ts +61 -50
- package/lib/modules/layout/store.js +517 -342
- package/lib/modules/layout/type.d.ts +2 -1
- package/lib/modules/layout/video-window-datasource.d.ts +14 -8
- package/lib/modules/layout/video-window-datasource.js +129 -78
- package/lib/modules/live-streaming/context.d.ts +0 -1
- package/lib/modules/live-streaming/index.d.ts +2 -2
- package/lib/modules/live-streaming/index.dev.js +5 -4
- package/lib/modules/live-streaming/store.d.ts +2 -2
- package/lib/modules/live-streaming/store.js +32 -11
- package/lib/modules/participant/attendee/index.d.ts +12 -3
- package/lib/modules/participant/attendee/index.js +142 -30
- package/lib/modules/participant/context.d.ts +0 -1
- package/lib/modules/participant/index.css +20 -0
- package/lib/modules/participant/index.d.ts +5 -2
- package/lib/modules/participant/index.dev.js +14 -12
- package/lib/modules/participant/index.js +27 -0
- package/lib/modules/participant/member-list-data-source.d.ts +3 -3
- package/lib/modules/participant/member-list-data-source.js +29 -3
- package/lib/modules/participant/room-control-drop-menu/index.css +37 -0
- package/lib/modules/participant/room-control-drop-menu/index.js +35 -1
- package/lib/modules/participant/store.d.ts +59 -34
- package/lib/modules/participant/store.js +541 -222
- package/lib/modules/participant/view.d.ts +6 -6
- package/lib/modules/participant/view.js +138 -34
- package/lib/modules/setting/audio-settings/audio-settings.js +16 -12
- package/lib/modules/setting/audio-settings/index.css +2 -2
- package/lib/modules/setting/context.d.ts +0 -1
- package/lib/modules/setting/general-settings/general-settings.js +2 -1
- package/lib/modules/setting/general-settings/index.css +2 -2
- package/lib/modules/setting/index.css +1 -5
- package/lib/modules/setting/index.d.ts +2 -2
- package/lib/modules/setting/index.dev.js +14 -12
- package/lib/modules/setting/index.js +16 -0
- package/lib/modules/setting/minutes-settings/index.css +65 -0
- package/lib/modules/setting/minutes-settings/minutes-settings.d.ts +4 -0
- package/lib/modules/setting/minutes-settings/minutes-settings.js +159 -0
- package/lib/modules/setting/state/index.css +0 -4
- package/lib/modules/setting/state/index.js +11 -1
- package/lib/modules/setting/storage-settings/storage-settings.js +1 -1
- package/lib/modules/setting/store.d.ts +7 -5
- package/lib/modules/setting/store.js +69 -46
- package/lib/modules/setting/translate-settings/index.css +45 -0
- package/lib/modules/setting/translate-settings/language-select.d.ts +12 -0
- package/lib/modules/setting/translate-settings/language-select.js +50 -0
- package/lib/modules/setting/translate-settings/translate-settings.d.ts +4 -0
- package/lib/modules/setting/translate-settings/translate-settings.js +139 -0
- package/lib/modules/setting/video-settings/index.css +15 -6
- package/lib/modules/setting/video-settings/video-settings-basic.js +3 -2
- package/lib/modules/setting/video-settings/video-settings.js +5 -1
- package/lib/modules/setting/view.js +34 -2
- package/lib/modules/share-screen/index.d.ts +4 -2
- package/lib/modules/share-screen/index.dev.js +17 -14
- package/lib/modules/share-screen/index.js +2 -0
- package/lib/modules/share-screen/selection/index.css +2 -0
- package/lib/modules/share-screen/selection/index.js +44 -6
- package/lib/modules/share-screen/share-state-bar/index.css +49 -11
- package/lib/modules/share-screen/share-state-bar/index.d.ts +0 -1
- package/lib/modules/share-screen/share-state-bar/index.js +51 -20
- package/lib/modules/share-screen/store.d.ts +23 -13
- package/lib/modules/share-screen/store.js +733 -606
- package/lib/modules/state-bar/context.d.ts +0 -1
- package/lib/modules/state-bar/index.css +2 -2
- package/lib/modules/state-bar/index.d.ts +2 -2
- package/lib/modules/state-bar/index.dev.js +12 -10
- package/lib/modules/state-bar/layout-config.js +2 -0
- package/lib/modules/state-bar/live-streaming-state.js +3 -0
- package/lib/modules/state-bar/meeting-detail.css +6 -4
- package/lib/modules/state-bar/meeting-details.js +29 -3
- package/lib/modules/state-bar/meeting-network-state.css +14 -3
- package/lib/modules/state-bar/meeting-network-state.js +10 -4
- package/lib/modules/state-bar/recording.js +9 -11
- package/lib/modules/state-bar/store.d.ts +7 -5
- package/lib/modules/state-bar/store.js +68 -8
- package/lib/modules/state-bar/view.js +4 -8
- package/lib/modules/video-window/context.d.ts +0 -1
- package/lib/modules/video-window/deviceState/index.d.ts +3 -3
- package/lib/modules/video-window/index.css +1 -0
- package/lib/modules/video-window/members/index.js +7 -4
- package/lib/modules/video-window/store.d.ts +5 -4
- package/lib/modules/video-window/store.js +49 -17
- package/lib/modules/video-window/topControl/index.js +7 -0
- package/lib/modules/video-window/view.js +2 -0
- package/lib/modules/waiting-room-layout/context.d.ts +2 -0
- package/lib/modules/waiting-room-layout/context.js +9 -0
- package/lib/modules/waiting-room-layout/index.css +71 -0
- package/lib/modules/waiting-room-layout/index.d.ts +8 -0
- package/lib/modules/waiting-room-layout/index.js +47 -0
- package/lib/modules/waiting-room-layout/store.d.ts +30 -0
- package/lib/modules/waiting-room-layout/store.js +189 -0
- package/lib/modules/waiting-room-layout/type.d.ts +0 -0
- package/lib/modules/waiting-room-layout/type.js +1 -0
- package/lib/modules/waiting-room-layout/view.d.ts +3 -0
- package/lib/modules/waiting-room-layout/view.js +67 -0
- package/lib/modules/whiteboard/app.js +2 -8
- package/lib/modules/whiteboard/components/control-bar/index.css +3 -0
- package/lib/modules/whiteboard/components/control-bar/store.d.ts +0 -1
- package/lib/modules/whiteboard/components/control-bar/store.js +29 -29
- package/lib/modules/whiteboard/components/loading/index.js +2 -2
- package/lib/modules/whiteboard/components/multi-window/index.js +8 -3
- package/lib/modules/whiteboard/components/pagination/store.d.ts +0 -1
- package/lib/modules/whiteboard/components/progress/electron.js +3 -2
- package/lib/modules/whiteboard/components/progress/style.css +4 -3
- package/lib/modules/whiteboard/components/switch-theme/index.css +4 -0
- package/lib/modules/whiteboard/components/switch-theme/index.d.ts +2 -1
- package/lib/modules/whiteboard/components/switch-theme/index.js +29 -17
- package/lib/modules/whiteboard/components/switch-theme/item.d.ts +1 -0
- package/lib/modules/whiteboard/components/switch-theme/item.js +11 -2
- package/lib/modules/whiteboard/components/switch-theme/libs.d.ts +2 -1
- package/lib/modules/whiteboard/components/switch-theme/libs.js +21 -20
- package/lib/modules/whiteboard/components/toolbar/components/color-picker/components/panel.js +2 -0
- package/lib/modules/whiteboard/components/toolbar/components/color-picker/index.js +3 -1
- package/lib/modules/whiteboard/components/toolbar/components/eraser-picker.js +11 -9
- package/lib/modules/whiteboard/components/toolbar/components/extra-tool-picker.js +4 -0
- package/lib/modules/whiteboard/components/toolbar/components/move-handle.js +5 -0
- package/lib/modules/whiteboard/components/toolbar/components/pen-picker.js +2 -0
- package/lib/modules/whiteboard/components/toolbar/components/shape-picker.js +18 -12
- package/lib/modules/whiteboard/components/toolbar/hooks/index.d.ts +3 -3
- package/lib/modules/whiteboard/components/toolbar/hooks/index.js +16 -11
- package/lib/modules/whiteboard/components/toolbar/index.js +9 -0
- package/lib/modules/whiteboard/components/toolbar/store.d.ts +8 -7
- package/lib/modules/whiteboard/components/toolbar/store.js +25 -4
- package/lib/modules/whiteboard/context.d.ts +7 -3
- package/lib/modules/whiteboard/context.js +6 -4
- package/lib/modules/whiteboard/index.d.ts +6 -8
- package/lib/modules/whiteboard/index.js +310 -255
- package/lib/modules/whiteboard/type.d.ts +4 -12
- package/lib/modules/whiteboard/type.js +6 -16
- package/lib/modules/whiteboard/utils.d.ts +1 -0
- package/lib/modules/whiteboard/utils.js +12 -1
- package/lib/plugins/browser-runtime-plugin.js +2 -1
- package/lib/plugins/module-dev-plugin.js +12 -10
- package/lib/plugins/multi-lang-plugin.d.ts +1 -5
- package/lib/plugins/multi-lang-plugin.js +2 -0
- package/lib/runtime.d.ts +3 -5
- package/lib/translations/enUS.d.ts +590 -0
- package/lib/translations/enUS.js +608 -6
- package/lib/translations/zhCN.d.ts +588 -0
- package/lib/translations/zhCN.js +604 -4
- package/lib/type.d.ts +6 -2
- package/lib/ui-manager.d.ts +7 -3
- package/lib/ui-manager.js +597 -143
- package/lib/ui-scene.d.ts +1 -0
- package/lib/ui-scene.js +32 -22
- package/lib/utilities/board-context.d.ts +0 -1
- package/lib/utilities/constant.d.ts +47 -5
- package/lib/utilities/constant.js +44 -1
- package/lib/utilities/copyText.js +1 -1
- package/lib/utilities/extract.js +26 -3
- package/lib/utilities/hooks.js +2 -0
- package/lib/utilities/parameters.js +2 -2
- package/lib/utilities/renderer-event.js +28 -0
- package/lib/utilities/renderer.d.ts +1 -0
- package/lib/utilities/renderer.js +15 -6
- package/lib/utilities/tools.js +5 -2
- package/lib/utilities/ui-resources.d.ts +2 -2
- package/lib/utilities/ui-resources.js +20 -3
- package/lib/utilities/video-track-render-context.d.ts +0 -1
- package/package.json +17 -16
- package/public/assets/fcr_defaultpage.png +0 -0
- package/public/assets/login_confirm.png +0 -0
- package/public/index.html +29 -11
- package/lib/modules/device-pretest/settings/index.css +0 -15
- package/lib/modules/participant/attendee/participants-more-action.d.ts +0 -18
- package/lib/modules/participant/attendee/participants-more-action.js +0 -275
package/lib/ui-scene.d.ts
CHANGED
package/lib/ui-scene.js
CHANGED
|
@@ -10,6 +10,11 @@ require("core-js/modules/es.object.get-own-property-descriptor.js");
|
|
|
10
10
|
require("core-js/modules/es.object.get-own-property-descriptors.js");
|
|
11
11
|
require("core-js/modules/es.object.keys.js");
|
|
12
12
|
require("core-js/modules/es.object.to-string.js");
|
|
13
|
+
require("core-js/modules/esnext.async-iterator.filter.js");
|
|
14
|
+
require("core-js/modules/esnext.async-iterator.for-each.js");
|
|
15
|
+
require("core-js/modules/esnext.iterator.constructor.js");
|
|
16
|
+
require("core-js/modules/esnext.iterator.filter.js");
|
|
17
|
+
require("core-js/modules/esnext.iterator.for-each.js");
|
|
13
18
|
require("core-js/modules/web.dom-collections.for-each.js");
|
|
14
19
|
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
15
20
|
Object.defineProperty(exports, "__esModule", {
|
|
@@ -27,6 +32,7 @@ var _i18n = require("agora-ui-foundation/lib/i18n");
|
|
|
27
32
|
var _uiManager = require("./ui-manager");
|
|
28
33
|
var _tools = require("./utilities/tools");
|
|
29
34
|
var _defaultConfig = require("./utilities/default-config");
|
|
35
|
+
var _renderer = require("./utilities/renderer");
|
|
30
36
|
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; }
|
|
31
37
|
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; }
|
|
32
38
|
var FcrUIDefaultScene = exports.FcrUIDefaultScene = /*#__PURE__*/function () {
|
|
@@ -37,19 +43,28 @@ var FcrUIDefaultScene = exports.FcrUIDefaultScene = /*#__PURE__*/function () {
|
|
|
37
43
|
//@internal
|
|
38
44
|
// @internal
|
|
39
45
|
(0, _defineProperty2["default"])(this, "_observable", new _observable.AgoraObservable());
|
|
46
|
+
(0, _defineProperty2["default"])(this, "_handleBeforeUnload", function () {
|
|
47
|
+
(0, _renderer.setInMeetingState)(0);
|
|
48
|
+
(0, _renderer.releaseSubAllWindowRefs)();
|
|
49
|
+
});
|
|
40
50
|
this._config = _config;
|
|
41
51
|
this._creatorConfig = _creatorConfig;
|
|
42
52
|
this._dom = _dom;
|
|
43
53
|
this._observable.addObserver({
|
|
54
|
+
onLaunchSuccess: function onLaunchSuccess() {
|
|
55
|
+
(0, _renderer.setInMeetingState)(1);
|
|
56
|
+
},
|
|
44
57
|
onLaunchFailure: function onLaunchFailure() {
|
|
45
58
|
_this._release();
|
|
46
59
|
},
|
|
47
|
-
onExited: function onExited() {
|
|
60
|
+
onExited: function onExited(roomId, reason, roomControl) {
|
|
61
|
+
_this._roomControl = roomControl;
|
|
48
62
|
_this._release();
|
|
49
63
|
}
|
|
50
64
|
});
|
|
51
65
|
var language = (0, _i18n.getLanguage)();
|
|
52
66
|
(0, _tools.setLanguage)(language);
|
|
67
|
+
window.addEventListener('beforeunload', this._handleBeforeUnload);
|
|
53
68
|
}
|
|
54
69
|
return (0, _createClass2["default"])(FcrUIDefaultScene, [{
|
|
55
70
|
key: "exit",
|
|
@@ -69,8 +84,8 @@ var FcrUIDefaultScene = exports.FcrUIDefaultScene = /*#__PURE__*/function () {
|
|
|
69
84
|
}, {
|
|
70
85
|
key: "launch",
|
|
71
86
|
value: function () {
|
|
72
|
-
var _launch = (0, _asyncToGenerator2["default"])(
|
|
73
|
-
var config, engine,
|
|
87
|
+
var _launch = (0, _asyncToGenerator2["default"])(/*#__PURE__*/_regenerator["default"].mark(function _callee() {
|
|
88
|
+
var config, engine, uiManager;
|
|
74
89
|
return _regenerator["default"].wrap(function _callee$(_context) {
|
|
75
90
|
while (1) switch (_context.prev = _context.next) {
|
|
76
91
|
case 0:
|
|
@@ -94,30 +109,14 @@ var FcrUIDefaultScene = exports.FcrUIDefaultScene = /*#__PURE__*/function () {
|
|
|
94
109
|
if (config.parameters) {
|
|
95
110
|
engine.setParameters(config.parameters);
|
|
96
111
|
}
|
|
97
|
-
|
|
98
|
-
_context.next = 8;
|
|
99
|
-
return engine.login();
|
|
100
|
-
case 8:
|
|
101
|
-
_context.next = 14;
|
|
102
|
-
break;
|
|
103
|
-
case 10:
|
|
104
|
-
_context.prev = 10;
|
|
105
|
-
_context.t0 = _context["catch"](5);
|
|
106
|
-
this._observable.notifyObservers('onLaunchFailure', this._config.roomId, _context.t0);
|
|
107
|
-
return _context.abrupt("return");
|
|
108
|
-
case 14:
|
|
109
|
-
room = engine.createRoomControl(config.roomId);
|
|
110
|
-
this._roomControl = room;
|
|
111
|
-
// @ts-ignore
|
|
112
|
-
window.__room_control = room;
|
|
113
|
-
uiManager = new _uiManager.DefaultSceneUIManager(this._config, config, engine, room, this._observable);
|
|
112
|
+
uiManager = new _uiManager.DefaultSceneUIManager(this._config, config, engine, this._observable);
|
|
114
113
|
this._uiManager = uiManager;
|
|
115
114
|
uiManager.render(this._dom);
|
|
116
|
-
case
|
|
115
|
+
case 8:
|
|
117
116
|
case "end":
|
|
118
117
|
return _context.stop();
|
|
119
118
|
}
|
|
120
|
-
}, _callee, this
|
|
119
|
+
}, _callee, this);
|
|
121
120
|
}));
|
|
122
121
|
function launch() {
|
|
123
122
|
return _launch.apply(this, arguments);
|
|
@@ -129,7 +128,15 @@ var FcrUIDefaultScene = exports.FcrUIDefaultScene = /*#__PURE__*/function () {
|
|
|
129
128
|
value: function _release() {
|
|
130
129
|
var _this$_uiManager, _this$_engine, _this$_engine2;
|
|
131
130
|
if (this._roomControl) {
|
|
131
|
+
var _this$_roomControl$ge;
|
|
132
132
|
this._roomControl.leave();
|
|
133
|
+
if (((_this$_roomControl$ge = this._roomControl.getRoomInfo()) === null || _this$_roomControl$ge === void 0 ? void 0 : _this$_roomControl$ge.roomType) === 11) {
|
|
134
|
+
// @ts-ignore
|
|
135
|
+
window.__mainRoom_control = null;
|
|
136
|
+
} else {
|
|
137
|
+
// @ts-ignore
|
|
138
|
+
window.__waitingRoom_control = null;
|
|
139
|
+
}
|
|
133
140
|
this._roomControl = undefined;
|
|
134
141
|
}
|
|
135
142
|
(_this$_uiManager = this._uiManager) === null || _this$_uiManager === void 0 || _this$_uiManager.destroy();
|
|
@@ -137,6 +144,9 @@ var FcrUIDefaultScene = exports.FcrUIDefaultScene = /*#__PURE__*/function () {
|
|
|
137
144
|
(_this$_engine2 = this._engine) === null || _this$_engine2 === void 0 || _this$_engine2.release();
|
|
138
145
|
this._uiManager = undefined;
|
|
139
146
|
this._engine = undefined;
|
|
147
|
+
(0, _renderer.setInMeetingState)(0);
|
|
148
|
+
(0, _renderer.releaseSubAllWindowRefs)();
|
|
149
|
+
window.removeEventListener('beforeunload', this._handleBeforeUnload);
|
|
140
150
|
}
|
|
141
151
|
}]);
|
|
142
152
|
}();
|
|
@@ -66,12 +66,14 @@ export declare enum RendererEventAction {
|
|
|
66
66
|
MAIN_SET_ALLOW_UNMUTE_SELF_VIDEO = "MAIN_SET_ALLOW_UNMUTE_SELF_VIDEO",
|
|
67
67
|
MAIN_SET_ALLOW_UNMUTE_SELF_AUDIO = "MAIN_SET_ALLOW_UNMUTE_SELF_AUDIO",
|
|
68
68
|
MAIN_SET_ALLOW_CLOUD_RECORDING_START = "MAIN_SET_ALLOW_CLOUD_RECORDING_START",
|
|
69
|
+
MAIN_SET_ALLOW_BOARD_WRITE = "MAIN_SET_ALLOW_BOARD_WRITE",
|
|
69
70
|
FRAGMENT_SET_LOCK_ROOM = "FRAGMENT_SET_LOCK_ROOM",
|
|
70
71
|
FRAGMENT_SET_ENABLE_WAITING_ROOM = "FRAGMENT_SET_ENABLE_WAITING_ROOM",
|
|
71
72
|
FRAGMENT_SET_ALLOW_CHANGE_SELF_NAME = "FRAGMENT_SET_ALLOW_CHANGE_SELF_NAME",
|
|
72
73
|
FRAGMENT_SET_ALLOW_CHAT = "FRAGMENT_SET_ALLOW_CHAT",
|
|
73
74
|
FRAGMENT_SET_ALLOW_JOIN_WITH_MUTE_AUDIO = "FRAGMENT_SET_ALLOW_JOIN_WITH_MUTE_AUDIO",
|
|
74
75
|
FRAGMENT_SET_ALLOW_SHARE_SCREEN = "FRAGMENT_SET_ALLOW_SHARE_SCREEN",
|
|
76
|
+
FRAGMENT_SET_ALLOW_BOARD_WRITE = "FRAGMENT_SET_ALLOW_BOARD_WRITE",
|
|
75
77
|
FRAGMENT_SET_ALLOW_UNMUTE_SELF_VIDEO = "FRAGMENT_SET_ALLOW_UNMUTE_SELF_VIDEO",
|
|
76
78
|
FRAGMENT_SET_ALLOW_UNMUTE_SELF_AUDIO = "FRAGMENT_SET_ALLOW_UNMUTE_SELF_AUDIO",
|
|
77
79
|
START_SCREEN_SHARE_PERMISSION = "START_SCREEN_SHARE_PERMISSION",
|
|
@@ -132,7 +134,16 @@ export declare enum RendererEventAction {
|
|
|
132
134
|
* Window is shown by invoking window.show()
|
|
133
135
|
*/
|
|
134
136
|
CALL_SHOW = "CALL_SHOW",
|
|
135
|
-
SET_SHARE_WITH_AUDIO_CONTROL_BAR = "SET_SHARE_WITH_AUDIO_CONTROL_BAR"
|
|
137
|
+
SET_SHARE_WITH_AUDIO_CONTROL_BAR = "SET_SHARE_WITH_AUDIO_CONTROL_BAR",
|
|
138
|
+
SET_REMOTE_USERS = "SET_REMOTE_USERS",
|
|
139
|
+
SET_HAS_ASSIGN_HOST_BEFORE_LEAVING_PERMISSION = "SET_HAS_ASSIGN_HOST_BEFORE_LEAVING_PERMISSION",
|
|
140
|
+
SET_IS_PSTN_USER = "SET_IS_PSTN_USER",
|
|
141
|
+
SET_IS_LOCKED = "SET_IS_LOCKED",
|
|
142
|
+
SET_HAS_END_ROOM_PERMISSION = "SET_HAS_END_ROOM_PERMISSION",
|
|
143
|
+
KEEP_PHONE_AUDIO_CONNECTION = "KEEP_PHONE_AUDIO_CONNECTION",
|
|
144
|
+
REISSUE_CONTROLBAR_INFO = "REISSUE_CONTROLBAR_INFO",
|
|
145
|
+
ASSIGN_HOST = "ASSIGN_HOST",
|
|
146
|
+
CALL_CLOSE_MAIN_WINDOW = "CALL_CLOSE_MAIN_WINDOW"
|
|
136
147
|
}
|
|
137
148
|
export declare enum ParticipantType {
|
|
138
149
|
MUTE_AUDIO = "MUTE_AUDIO",
|
|
@@ -151,7 +162,8 @@ export declare enum ParticipantType {
|
|
|
151
162
|
PUT_IN_WAITING_ROOM = "PUT_IN_WAITING_ROOM",
|
|
152
163
|
STOP_RAISE_HAND = "STOP_RAISE_HAND",
|
|
153
164
|
SET_MAIN_SPEAKER = "SET_MAIN_SPEAKER",
|
|
154
|
-
MERGE_VIDEO = "MERGE_VIDEO"
|
|
165
|
+
MERGE_VIDEO = "MERGE_VIDEO",
|
|
166
|
+
REMOVE_WAITING_ROOM = "REMOVE_WAITING_ROOM"
|
|
155
167
|
}
|
|
156
168
|
export declare enum VideoWindowPinType {
|
|
157
169
|
REMOVE_PIN = "REMOVE_PIN",
|
|
@@ -218,7 +230,26 @@ export declare enum UIAction {
|
|
|
218
230
|
CAROUSEL_COLLAPSED = 44,
|
|
219
231
|
STOP_SCREEN_CAPTURE = 45,
|
|
220
232
|
ENGINE_RECONNECTED = 46,
|
|
221
|
-
SET_CURRENT_SHARE_SCREEN = 47
|
|
233
|
+
SET_CURRENT_SHARE_SCREEN = 47,
|
|
234
|
+
WAITING_ROOM_CREATED = 48,
|
|
235
|
+
TOGGLE_PARTICIPANT_TAB = 49,
|
|
236
|
+
CURRENT_PARTITIPANT_TAB = 50,
|
|
237
|
+
RECEIVE_NEW_CHAT_MESSAGES_FOR_RED = 51,
|
|
238
|
+
CHAT_ROOM_CLOSED = 52,
|
|
239
|
+
CHAT_ROOM_TAB_CHANGE = 53,
|
|
240
|
+
CHAT_VISIBLE = 54,
|
|
241
|
+
WAITING_ROOM_DESTROYED = 55,
|
|
242
|
+
MOVE_TO_MAIN_ROOM_ALL_MEMBER = 56,
|
|
243
|
+
CLOSE_WAITING_ROOM_DIALOG = 57,
|
|
244
|
+
SET_REMOTE_USERS = 58,
|
|
245
|
+
SET_HAS_ASSIGN_HOST_BEFORE_LEAVING_PERMISSION = 59,
|
|
246
|
+
SET_IS_PSTN_USER = 60,
|
|
247
|
+
SET_HAS_END_ROOM_PERMISSION = 61,
|
|
248
|
+
WATERMARK_INFO_UPDATE = 62,
|
|
249
|
+
CHANGE_PARTICIPANT_TAB = 63,
|
|
250
|
+
SHOW_NOTIFICATION = 64,
|
|
251
|
+
COLSE_NOTIFICATION = 65,
|
|
252
|
+
CLOSE_REMOVE_ADMIT_WAITING_ROOM_DIALOG = 66
|
|
222
253
|
}
|
|
223
254
|
export declare enum DialogKey {
|
|
224
255
|
DEVICE_SETTINGS = "device-settings",
|
|
@@ -233,7 +264,11 @@ export declare enum DialogKey {
|
|
|
233
264
|
INVITE = "invite",
|
|
234
265
|
TOOLBAR = "toolbar",
|
|
235
266
|
WHITEBOARD = "whiteboard",
|
|
236
|
-
PROGRESS_DIALOG = "progress-dialog"
|
|
267
|
+
PROGRESS_DIALOG = "progress-dialog",
|
|
268
|
+
WAITING_ROOM = "waiting-room",
|
|
269
|
+
WAITING_ROOM_SINGLE_REMOVE = "waiting-room-single-remove",
|
|
270
|
+
WAITING_ROOM_ALL_REMOVE = "waiting-room-all-remove",
|
|
271
|
+
WAITING_ROOM_ALL_ADMIT = "waiting-room-all-admit"
|
|
237
272
|
}
|
|
238
273
|
export declare enum HighlightElement {
|
|
239
274
|
VIDEO_BASIC = "fcr_VIDEO_BASIC_highlighter",
|
|
@@ -244,5 +279,12 @@ export declare enum HighlightElement {
|
|
|
244
279
|
AUDIO_PRO_AUDIO = "fcr_AUDIO_PRO_AUDIO_highlighter",
|
|
245
280
|
CPU_STATE = "fcr_CPU_STATE_highlighter",
|
|
246
281
|
MEMORY_STATE = "fcr_MEMORY_STATE_highlighter",
|
|
247
|
-
NETWORK_STATE = "fcr_NETWORK_STATE_highlighter"
|
|
282
|
+
NETWORK_STATE = "fcr_NETWORK_STATE_highlighter",
|
|
283
|
+
TRANSLATE_SOURCE = "fcr_TRANSLATE_SOURCE_highlighter",
|
|
284
|
+
TRANSLATE_TARGET = "fcr_TRANSLATE_TARGET_highlighter",
|
|
285
|
+
TRANSLATE_INTERPRETER = "fcr_TRANSLATE_INTERPRETER_highlighter"
|
|
286
|
+
}
|
|
287
|
+
export declare enum RoomType {
|
|
288
|
+
MAIN_ROOM = "MAIN_ROOM",
|
|
289
|
+
WAITING_ROOM = "WAITING_ROOM"
|
|
248
290
|
}
|
|
@@ -4,7 +4,7 @@ require("core-js/modules/es.object.define-property.js");
|
|
|
4
4
|
Object.defineProperty(exports, "__esModule", {
|
|
5
5
|
value: true
|
|
6
6
|
});
|
|
7
|
-
exports.VideoWindowPinType = exports.UIAction = exports.RoomControlType = exports.RendererEventAction = exports.ParticipantType = exports.HighlightElement = exports.DialogKey = void 0;
|
|
7
|
+
exports.VideoWindowPinType = exports.UIAction = exports.RoomType = exports.RoomControlType = exports.RendererEventAction = exports.ParticipantType = exports.HighlightElement = exports.DialogKey = void 0;
|
|
8
8
|
var RendererEventAction = exports.RendererEventAction = /*#__PURE__*/function (RendererEventAction) {
|
|
9
9
|
RendererEventAction["FRAGMENT_LOADED"] = "FRAGMENT_LOADED";
|
|
10
10
|
RendererEventAction["FRAGMENT_CLOSED"] = "FRAGMENT_CLOSED";
|
|
@@ -52,12 +52,14 @@ var RendererEventAction = exports.RendererEventAction = /*#__PURE__*/function (R
|
|
|
52
52
|
RendererEventAction["MAIN_SET_ALLOW_UNMUTE_SELF_VIDEO"] = "MAIN_SET_ALLOW_UNMUTE_SELF_VIDEO";
|
|
53
53
|
RendererEventAction["MAIN_SET_ALLOW_UNMUTE_SELF_AUDIO"] = "MAIN_SET_ALLOW_UNMUTE_SELF_AUDIO";
|
|
54
54
|
RendererEventAction["MAIN_SET_ALLOW_CLOUD_RECORDING_START"] = "MAIN_SET_ALLOW_CLOUD_RECORDING_START";
|
|
55
|
+
RendererEventAction["MAIN_SET_ALLOW_BOARD_WRITE"] = "MAIN_SET_ALLOW_BOARD_WRITE";
|
|
55
56
|
RendererEventAction["FRAGMENT_SET_LOCK_ROOM"] = "FRAGMENT_SET_LOCK_ROOM";
|
|
56
57
|
RendererEventAction["FRAGMENT_SET_ENABLE_WAITING_ROOM"] = "FRAGMENT_SET_ENABLE_WAITING_ROOM";
|
|
57
58
|
RendererEventAction["FRAGMENT_SET_ALLOW_CHANGE_SELF_NAME"] = "FRAGMENT_SET_ALLOW_CHANGE_SELF_NAME";
|
|
58
59
|
RendererEventAction["FRAGMENT_SET_ALLOW_CHAT"] = "FRAGMENT_SET_ALLOW_CHAT";
|
|
59
60
|
RendererEventAction["FRAGMENT_SET_ALLOW_JOIN_WITH_MUTE_AUDIO"] = "FRAGMENT_SET_ALLOW_JOIN_WITH_MUTE_AUDIO";
|
|
60
61
|
RendererEventAction["FRAGMENT_SET_ALLOW_SHARE_SCREEN"] = "FRAGMENT_SET_ALLOW_SHARE_SCREEN";
|
|
62
|
+
RendererEventAction["FRAGMENT_SET_ALLOW_BOARD_WRITE"] = "FRAGMENT_SET_ALLOW_BOARD_WRITE";
|
|
61
63
|
RendererEventAction["FRAGMENT_SET_ALLOW_UNMUTE_SELF_VIDEO"] = "FRAGMENT_SET_ALLOW_UNMUTE_SELF_VIDEO";
|
|
62
64
|
RendererEventAction["FRAGMENT_SET_ALLOW_UNMUTE_SELF_AUDIO"] = "FRAGMENT_SET_ALLOW_UNMUTE_SELF_AUDIO";
|
|
63
65
|
RendererEventAction["START_SCREEN_SHARE_PERMISSION"] = "START_SCREEN_SHARE_PERMISSION";
|
|
@@ -110,6 +112,15 @@ var RendererEventAction = exports.RendererEventAction = /*#__PURE__*/function (R
|
|
|
110
112
|
RendererEventAction["CALL_HIDE"] = "CALL_HIDE";
|
|
111
113
|
RendererEventAction["CALL_SHOW"] = "CALL_SHOW";
|
|
112
114
|
RendererEventAction["SET_SHARE_WITH_AUDIO_CONTROL_BAR"] = "SET_SHARE_WITH_AUDIO_CONTROL_BAR";
|
|
115
|
+
RendererEventAction["SET_REMOTE_USERS"] = "SET_REMOTE_USERS";
|
|
116
|
+
RendererEventAction["SET_HAS_ASSIGN_HOST_BEFORE_LEAVING_PERMISSION"] = "SET_HAS_ASSIGN_HOST_BEFORE_LEAVING_PERMISSION";
|
|
117
|
+
RendererEventAction["SET_IS_PSTN_USER"] = "SET_IS_PSTN_USER";
|
|
118
|
+
RendererEventAction["SET_IS_LOCKED"] = "SET_IS_LOCKED";
|
|
119
|
+
RendererEventAction["SET_HAS_END_ROOM_PERMISSION"] = "SET_HAS_END_ROOM_PERMISSION";
|
|
120
|
+
RendererEventAction["KEEP_PHONE_AUDIO_CONNECTION"] = "KEEP_PHONE_AUDIO_CONNECTION";
|
|
121
|
+
RendererEventAction["REISSUE_CONTROLBAR_INFO"] = "REISSUE_CONTROLBAR_INFO";
|
|
122
|
+
RendererEventAction["ASSIGN_HOST"] = "ASSIGN_HOST";
|
|
123
|
+
RendererEventAction["CALL_CLOSE_MAIN_WINDOW"] = "CALL_CLOSE_MAIN_WINDOW";
|
|
113
124
|
return RendererEventAction;
|
|
114
125
|
}({});
|
|
115
126
|
var ParticipantType = exports.ParticipantType = /*#__PURE__*/function (ParticipantType) {
|
|
@@ -130,6 +141,7 @@ var ParticipantType = exports.ParticipantType = /*#__PURE__*/function (Participa
|
|
|
130
141
|
ParticipantType["STOP_RAISE_HAND"] = "STOP_RAISE_HAND";
|
|
131
142
|
ParticipantType["SET_MAIN_SPEAKER"] = "SET_MAIN_SPEAKER";
|
|
132
143
|
ParticipantType["MERGE_VIDEO"] = "MERGE_VIDEO";
|
|
144
|
+
ParticipantType["REMOVE_WAITING_ROOM"] = "REMOVE_WAITING_ROOM";
|
|
133
145
|
return ParticipantType;
|
|
134
146
|
}({});
|
|
135
147
|
var VideoWindowPinType = exports.VideoWindowPinType = /*#__PURE__*/function (VideoWindowPinType) {
|
|
@@ -200,6 +212,25 @@ var UIAction = exports.UIAction = /*#__PURE__*/function (UIAction) {
|
|
|
200
212
|
UIAction[UIAction["STOP_SCREEN_CAPTURE"] = 45] = "STOP_SCREEN_CAPTURE";
|
|
201
213
|
UIAction[UIAction["ENGINE_RECONNECTED"] = 46] = "ENGINE_RECONNECTED";
|
|
202
214
|
UIAction[UIAction["SET_CURRENT_SHARE_SCREEN"] = 47] = "SET_CURRENT_SHARE_SCREEN";
|
|
215
|
+
UIAction[UIAction["WAITING_ROOM_CREATED"] = 48] = "WAITING_ROOM_CREATED";
|
|
216
|
+
UIAction[UIAction["TOGGLE_PARTICIPANT_TAB"] = 49] = "TOGGLE_PARTICIPANT_TAB";
|
|
217
|
+
UIAction[UIAction["CURRENT_PARTITIPANT_TAB"] = 50] = "CURRENT_PARTITIPANT_TAB";
|
|
218
|
+
UIAction[UIAction["RECEIVE_NEW_CHAT_MESSAGES_FOR_RED"] = 51] = "RECEIVE_NEW_CHAT_MESSAGES_FOR_RED";
|
|
219
|
+
UIAction[UIAction["CHAT_ROOM_CLOSED"] = 52] = "CHAT_ROOM_CLOSED";
|
|
220
|
+
UIAction[UIAction["CHAT_ROOM_TAB_CHANGE"] = 53] = "CHAT_ROOM_TAB_CHANGE";
|
|
221
|
+
UIAction[UIAction["CHAT_VISIBLE"] = 54] = "CHAT_VISIBLE";
|
|
222
|
+
UIAction[UIAction["WAITING_ROOM_DESTROYED"] = 55] = "WAITING_ROOM_DESTROYED";
|
|
223
|
+
UIAction[UIAction["MOVE_TO_MAIN_ROOM_ALL_MEMBER"] = 56] = "MOVE_TO_MAIN_ROOM_ALL_MEMBER";
|
|
224
|
+
UIAction[UIAction["CLOSE_WAITING_ROOM_DIALOG"] = 57] = "CLOSE_WAITING_ROOM_DIALOG";
|
|
225
|
+
UIAction[UIAction["SET_REMOTE_USERS"] = 58] = "SET_REMOTE_USERS";
|
|
226
|
+
UIAction[UIAction["SET_HAS_ASSIGN_HOST_BEFORE_LEAVING_PERMISSION"] = 59] = "SET_HAS_ASSIGN_HOST_BEFORE_LEAVING_PERMISSION";
|
|
227
|
+
UIAction[UIAction["SET_IS_PSTN_USER"] = 60] = "SET_IS_PSTN_USER";
|
|
228
|
+
UIAction[UIAction["SET_HAS_END_ROOM_PERMISSION"] = 61] = "SET_HAS_END_ROOM_PERMISSION";
|
|
229
|
+
UIAction[UIAction["WATERMARK_INFO_UPDATE"] = 62] = "WATERMARK_INFO_UPDATE";
|
|
230
|
+
UIAction[UIAction["CHANGE_PARTICIPANT_TAB"] = 63] = "CHANGE_PARTICIPANT_TAB";
|
|
231
|
+
UIAction[UIAction["SHOW_NOTIFICATION"] = 64] = "SHOW_NOTIFICATION";
|
|
232
|
+
UIAction[UIAction["COLSE_NOTIFICATION"] = 65] = "COLSE_NOTIFICATION";
|
|
233
|
+
UIAction[UIAction["CLOSE_REMOVE_ADMIT_WAITING_ROOM_DIALOG"] = 66] = "CLOSE_REMOVE_ADMIT_WAITING_ROOM_DIALOG";
|
|
203
234
|
return UIAction;
|
|
204
235
|
}({});
|
|
205
236
|
var DialogKey = exports.DialogKey = /*#__PURE__*/function (DialogKey) {
|
|
@@ -216,6 +247,10 @@ var DialogKey = exports.DialogKey = /*#__PURE__*/function (DialogKey) {
|
|
|
216
247
|
DialogKey["TOOLBAR"] = "toolbar";
|
|
217
248
|
DialogKey["WHITEBOARD"] = "whiteboard";
|
|
218
249
|
DialogKey["PROGRESS_DIALOG"] = "progress-dialog";
|
|
250
|
+
DialogKey["WAITING_ROOM"] = "waiting-room";
|
|
251
|
+
DialogKey["WAITING_ROOM_SINGLE_REMOVE"] = "waiting-room-single-remove";
|
|
252
|
+
DialogKey["WAITING_ROOM_ALL_REMOVE"] = "waiting-room-all-remove";
|
|
253
|
+
DialogKey["WAITING_ROOM_ALL_ADMIT"] = "waiting-room-all-admit";
|
|
219
254
|
return DialogKey;
|
|
220
255
|
}({});
|
|
221
256
|
var HighlightElement = exports.HighlightElement = /*#__PURE__*/function (HighlightElement) {
|
|
@@ -228,5 +263,13 @@ var HighlightElement = exports.HighlightElement = /*#__PURE__*/function (Highlig
|
|
|
228
263
|
HighlightElement["CPU_STATE"] = "fcr_CPU_STATE_highlighter";
|
|
229
264
|
HighlightElement["MEMORY_STATE"] = "fcr_MEMORY_STATE_highlighter";
|
|
230
265
|
HighlightElement["NETWORK_STATE"] = "fcr_NETWORK_STATE_highlighter";
|
|
266
|
+
HighlightElement["TRANSLATE_SOURCE"] = "fcr_TRANSLATE_SOURCE_highlighter";
|
|
267
|
+
HighlightElement["TRANSLATE_TARGET"] = "fcr_TRANSLATE_TARGET_highlighter";
|
|
268
|
+
HighlightElement["TRANSLATE_INTERPRETER"] = "fcr_TRANSLATE_INTERPRETER_highlighter";
|
|
231
269
|
return HighlightElement;
|
|
270
|
+
}({});
|
|
271
|
+
var RoomType = exports.RoomType = /*#__PURE__*/function (RoomType) {
|
|
272
|
+
RoomType["MAIN_ROOM"] = "MAIN_ROOM";
|
|
273
|
+
RoomType["WAITING_ROOM"] = "WAITING_ROOM";
|
|
274
|
+
return RoomType;
|
|
232
275
|
}({});
|
|
@@ -12,7 +12,7 @@ function copyText(_x) {
|
|
|
12
12
|
return _copyText.apply(this, arguments);
|
|
13
13
|
}
|
|
14
14
|
function _copyText() {
|
|
15
|
-
_copyText = (0, _asyncToGenerator2["default"])(
|
|
15
|
+
_copyText = (0, _asyncToGenerator2["default"])(/*#__PURE__*/_regenerator["default"].mark(function _callee(text) {
|
|
16
16
|
var input;
|
|
17
17
|
return _regenerator["default"].wrap(function _callee$(_context) {
|
|
18
18
|
while (1) switch (_context.prev = _context.next) {
|
package/lib/utilities/extract.js
CHANGED
|
@@ -26,10 +26,33 @@ require("core-js/modules/es.object.to-string.js");
|
|
|
26
26
|
require("core-js/modules/es.set.js");
|
|
27
27
|
require("core-js/modules/es.string.includes.js");
|
|
28
28
|
require("core-js/modules/es.string.iterator.js");
|
|
29
|
+
require("core-js/modules/esnext.set.add-all.js");
|
|
30
|
+
require("core-js/modules/esnext.set.delete-all.js");
|
|
31
|
+
require("core-js/modules/esnext.set.difference.v2.js");
|
|
32
|
+
require("core-js/modules/esnext.set.difference.js");
|
|
33
|
+
require("core-js/modules/esnext.set.every.js");
|
|
34
|
+
require("core-js/modules/esnext.set.filter.js");
|
|
35
|
+
require("core-js/modules/esnext.set.find.js");
|
|
36
|
+
require("core-js/modules/esnext.set.intersection.v2.js");
|
|
37
|
+
require("core-js/modules/esnext.set.intersection.js");
|
|
38
|
+
require("core-js/modules/esnext.set.is-disjoint-from.v2.js");
|
|
39
|
+
require("core-js/modules/esnext.set.is-disjoint-from.js");
|
|
40
|
+
require("core-js/modules/esnext.set.is-subset-of.v2.js");
|
|
41
|
+
require("core-js/modules/esnext.set.is-subset-of.js");
|
|
42
|
+
require("core-js/modules/esnext.set.is-superset-of.v2.js");
|
|
43
|
+
require("core-js/modules/esnext.set.is-superset-of.js");
|
|
44
|
+
require("core-js/modules/esnext.set.join.js");
|
|
45
|
+
require("core-js/modules/esnext.set.map.js");
|
|
46
|
+
require("core-js/modules/esnext.set.reduce.js");
|
|
47
|
+
require("core-js/modules/esnext.set.some.js");
|
|
48
|
+
require("core-js/modules/esnext.set.symmetric-difference.v2.js");
|
|
49
|
+
require("core-js/modules/esnext.set.symmetric-difference.js");
|
|
50
|
+
require("core-js/modules/esnext.set.union.v2.js");
|
|
51
|
+
require("core-js/modules/esnext.set.union.js");
|
|
29
52
|
require("core-js/modules/web.dom-collections.iterator.js");
|
|
30
|
-
function _createForOfIteratorHelper(
|
|
31
|
-
function _unsupportedIterableToArray(
|
|
32
|
-
function _arrayLikeToArray(
|
|
53
|
+
function _createForOfIteratorHelper(r, e) { var t = "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"]; if (!t) { if (Array.isArray(r) || (t = _unsupportedIterableToArray(r)) || e && r && "number" == typeof r.length) { t && (r = t); var _n = 0, F = function F() {}; return { s: F, n: function n() { return _n >= r.length ? { done: !0 } : { done: !1, value: r[_n++] }; }, e: function e(r) { throw r; }, f: F }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } var o, a = !0, u = !1; return { s: function s() { t = t.call(r); }, n: function n() { var r = t.next(); return a = r.done, r; }, e: function e(r) { u = !0, o = r; }, f: function f() { try { a || null == t["return"] || t["return"](); } finally { if (u) throw o; } } }; }
|
|
54
|
+
function _unsupportedIterableToArray(r, a) { if (r) { if ("string" == typeof r) return _arrayLikeToArray(r, a); var t = {}.toString.call(r).slice(8, -1); return "Object" === t && r.constructor && (t = r.constructor.name), "Map" === t || "Set" === t ? Array.from(r) : "Arguments" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0; } }
|
|
55
|
+
function _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length); for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e]; return n; }
|
|
33
56
|
var extractUserStreams = exports.extractUserStreams = function extractUserStreams(users, streamByUid, sourceTypes) {
|
|
34
57
|
var streams = new Set();
|
|
35
58
|
var _iterator = _createForOfIteratorHelper(users),
|
package/lib/utilities/hooks.js
CHANGED
|
@@ -6,6 +6,8 @@ require("core-js/modules/es.object.get-own-property-descriptor.js");
|
|
|
6
6
|
require("core-js/modules/es.object.to-string.js");
|
|
7
7
|
require("core-js/modules/es.string.iterator.js");
|
|
8
8
|
require("core-js/modules/es.weak-map.js");
|
|
9
|
+
require("core-js/modules/esnext.weak-map.delete-all.js");
|
|
10
|
+
require("core-js/modules/esnext.weak-map.emplace.js");
|
|
9
11
|
require("core-js/modules/web.dom-collections.iterator.js");
|
|
10
12
|
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
11
13
|
var _typeof = require("@babel/runtime/helpers/typeof");
|
|
@@ -7,8 +7,8 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
7
7
|
exports.isSkipPretest = exports.isOpenDefaultMicrophone = exports.isOpenDefaultCamera = void 0;
|
|
8
8
|
var _valueCheck = require("agora-foundation/lib/utilities/value-check");
|
|
9
9
|
var isSkipPretest = exports.isSkipPretest = function isSkipPretest(parameters) {
|
|
10
|
-
var _parameters$scene;
|
|
11
|
-
return (0, _valueCheck.isTrueValue)(parameters === null || parameters === void 0 || (_parameters$scene = parameters.scene) === null || _parameters$scene === void 0 ? void 0 : _parameters$scene.skipPretest);
|
|
10
|
+
var _parameters$scene$ski, _parameters$scene;
|
|
11
|
+
return (0, _valueCheck.isTrueValue)((_parameters$scene$ski = parameters === null || parameters === void 0 || (_parameters$scene = parameters.scene) === null || _parameters$scene === void 0 ? void 0 : _parameters$scene.skipPretest) !== null && _parameters$scene$ski !== void 0 ? _parameters$scene$ski : true);
|
|
12
12
|
};
|
|
13
13
|
var isOpenDefaultCamera = exports.isOpenDefaultCamera = function isOpenDefaultCamera(parameters) {
|
|
14
14
|
var _parameters$scene2;
|
|
@@ -11,6 +11,34 @@ require("core-js/modules/es.array.iterator.js");
|
|
|
11
11
|
require("core-js/modules/es.object.to-string.js");
|
|
12
12
|
require("core-js/modules/es.set.js");
|
|
13
13
|
require("core-js/modules/es.string.iterator.js");
|
|
14
|
+
require("core-js/modules/esnext.async-iterator.find.js");
|
|
15
|
+
require("core-js/modules/esnext.async-iterator.for-each.js");
|
|
16
|
+
require("core-js/modules/esnext.iterator.constructor.js");
|
|
17
|
+
require("core-js/modules/esnext.iterator.find.js");
|
|
18
|
+
require("core-js/modules/esnext.iterator.for-each.js");
|
|
19
|
+
require("core-js/modules/esnext.set.add-all.js");
|
|
20
|
+
require("core-js/modules/esnext.set.delete-all.js");
|
|
21
|
+
require("core-js/modules/esnext.set.difference.v2.js");
|
|
22
|
+
require("core-js/modules/esnext.set.difference.js");
|
|
23
|
+
require("core-js/modules/esnext.set.every.js");
|
|
24
|
+
require("core-js/modules/esnext.set.filter.js");
|
|
25
|
+
require("core-js/modules/esnext.set.find.js");
|
|
26
|
+
require("core-js/modules/esnext.set.intersection.v2.js");
|
|
27
|
+
require("core-js/modules/esnext.set.intersection.js");
|
|
28
|
+
require("core-js/modules/esnext.set.is-disjoint-from.v2.js");
|
|
29
|
+
require("core-js/modules/esnext.set.is-disjoint-from.js");
|
|
30
|
+
require("core-js/modules/esnext.set.is-subset-of.v2.js");
|
|
31
|
+
require("core-js/modules/esnext.set.is-subset-of.js");
|
|
32
|
+
require("core-js/modules/esnext.set.is-superset-of.v2.js");
|
|
33
|
+
require("core-js/modules/esnext.set.is-superset-of.js");
|
|
34
|
+
require("core-js/modules/esnext.set.join.js");
|
|
35
|
+
require("core-js/modules/esnext.set.map.js");
|
|
36
|
+
require("core-js/modules/esnext.set.reduce.js");
|
|
37
|
+
require("core-js/modules/esnext.set.some.js");
|
|
38
|
+
require("core-js/modules/esnext.set.symmetric-difference.v2.js");
|
|
39
|
+
require("core-js/modules/esnext.set.symmetric-difference.js");
|
|
40
|
+
require("core-js/modules/esnext.set.union.v2.js");
|
|
41
|
+
require("core-js/modules/esnext.set.union.js");
|
|
14
42
|
require("core-js/modules/web.dom-collections.for-each.js");
|
|
15
43
|
require("core-js/modules/web.dom-collections.iterator.js");
|
|
16
44
|
var listeners = new Set();
|
|
@@ -21,3 +21,4 @@ export declare const getCurrentWorkArea: (currentShareId: string, currentShareTy
|
|
|
21
21
|
*/
|
|
22
22
|
export declare const handleWillClose: (browserWindow: Electron.BrowserWindow, callback?: () => void) => void;
|
|
23
23
|
export declare const releaseSubAllWindowRefs: () => void;
|
|
24
|
+
export declare const setInMeetingState: (state: 0 | 1) => void;
|
|
@@ -4,12 +4,15 @@ require("core-js/modules/es.object.define-property.js");
|
|
|
4
4
|
Object.defineProperty(exports, "__esModule", {
|
|
5
5
|
value: true
|
|
6
6
|
});
|
|
7
|
-
exports.releaseSubAllWindowRefs = exports.open = exports.isWindows = exports.handleWillClose = exports.getCurrentWorkArea = exports.close = void 0;
|
|
7
|
+
exports.setInMeetingState = exports.releaseSubAllWindowRefs = exports.open = exports.isWindows = exports.handleWillClose = exports.getCurrentWorkArea = exports.close = void 0;
|
|
8
8
|
require("core-js/modules/es.array.concat.js");
|
|
9
9
|
require("core-js/modules/es.array.find.js");
|
|
10
10
|
require("core-js/modules/es.array.index-of.js");
|
|
11
11
|
require("core-js/modules/es.number.constructor.js");
|
|
12
12
|
require("core-js/modules/es.object.to-string.js");
|
|
13
|
+
require("core-js/modules/esnext.async-iterator.find.js");
|
|
14
|
+
require("core-js/modules/esnext.iterator.constructor.js");
|
|
15
|
+
require("core-js/modules/esnext.iterator.find.js");
|
|
13
16
|
var _type = require("agora-rte-sdk/lib/core/rtc/type");
|
|
14
17
|
var open = exports.open = function open(path) {
|
|
15
18
|
window.runtime.open(path);
|
|
@@ -93,17 +96,23 @@ var getCurrentWorkArea = exports.getCurrentWorkArea = function getCurrentWorkAre
|
|
|
93
96
|
*/
|
|
94
97
|
var handleWillClose = exports.handleWillClose = function handleWillClose(browserWindow) {
|
|
95
98
|
var callback = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : function () {};
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
console.log('browserWindow will-close fired');
|
|
99
|
+
var _callback = function _callback() {
|
|
100
|
+
// console.log('browserWindow will-close fired');
|
|
101
|
+
|
|
100
102
|
callback();
|
|
101
103
|
if (!browserWindow.isDestroyed()) {
|
|
102
104
|
// dont close the window as it will carsh the renderer process of the main window
|
|
103
105
|
browserWindow.hide();
|
|
104
106
|
}
|
|
105
|
-
}
|
|
107
|
+
};
|
|
108
|
+
browserWindow.removeAllListeners('will-close');
|
|
109
|
+
browserWindow.addListener(
|
|
110
|
+
// @ts-ignore
|
|
111
|
+
'will-close', _callback);
|
|
106
112
|
};
|
|
107
113
|
var releaseSubAllWindowRefs = exports.releaseSubAllWindowRefs = function releaseSubAllWindowRefs() {
|
|
108
114
|
window.runtime.releaseSubAllWindowRefs();
|
|
115
|
+
};
|
|
116
|
+
var setInMeetingState = exports.setInMeetingState = function setInMeetingState(state) {
|
|
117
|
+
window.runtime.setInMeetingState(state);
|
|
109
118
|
};
|
package/lib/utilities/tools.js
CHANGED
|
@@ -19,6 +19,9 @@ require("core-js/modules/es.regexp.exec.js");
|
|
|
19
19
|
require("core-js/modules/es.regexp.test.js");
|
|
20
20
|
require("core-js/modules/es.string.ends-with.js");
|
|
21
21
|
require("core-js/modules/es.string.match.js");
|
|
22
|
+
require("core-js/modules/esnext.async-iterator.reduce.js");
|
|
23
|
+
require("core-js/modules/esnext.iterator.constructor.js");
|
|
24
|
+
require("core-js/modules/esnext.iterator.reduce.js");
|
|
22
25
|
var _asyncToGenerator2 = _interopRequireDefault(require("@babel/runtime/helpers/asyncToGenerator"));
|
|
23
26
|
var _classCallCheck2 = _interopRequireDefault(require("@babel/runtime/helpers/classCallCheck"));
|
|
24
27
|
var _createClass2 = _interopRequireDefault(require("@babel/runtime/helpers/createClass"));
|
|
@@ -124,7 +127,7 @@ var getLanguage = exports.getLanguage = function getLanguage() {
|
|
|
124
127
|
return storage.get('$$fcr_language');
|
|
125
128
|
};
|
|
126
129
|
var waitUntil = exports.waitUntil = /*#__PURE__*/function () {
|
|
127
|
-
var _ref = (0, _asyncToGenerator2["default"])(
|
|
130
|
+
var _ref = (0, _asyncToGenerator2["default"])(/*#__PURE__*/_regenerator["default"].mark(function _callee2(prediction, memo) {
|
|
128
131
|
var intervalMs,
|
|
129
132
|
logger,
|
|
130
133
|
_args2 = arguments;
|
|
@@ -134,7 +137,7 @@ var waitUntil = exports.waitUntil = /*#__PURE__*/function () {
|
|
|
134
137
|
intervalMs = _args2.length > 2 && _args2[2] !== undefined ? _args2[2] : 100;
|
|
135
138
|
logger = (0, _logger.getLogger)();
|
|
136
139
|
return _context2.abrupt("return", new Promise(function (resolve) {
|
|
137
|
-
var task = _schedule.AgoraScheduler.shared.addPollingTask(
|
|
140
|
+
var task = _schedule.AgoraScheduler.shared.addPollingTask(/*#__PURE__*/(0, _asyncToGenerator2["default"])(/*#__PURE__*/_regenerator["default"].mark(function _callee() {
|
|
138
141
|
var isTrue;
|
|
139
142
|
return _regenerator["default"].wrap(function _callee$(_context) {
|
|
140
143
|
while (1) switch (_context.prev = _context.next) {
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const
|
|
2
|
-
export declare const
|
|
1
|
+
export declare const BUILTIN_VIRTUAL_BACKGROUND_IMAGE_URL_LIST: string[];
|
|
2
|
+
export declare const BUILTIN_VIRTUAL_BACKGROUND_VIDEO_URL_LIST: string[];
|
|
@@ -4,6 +4,23 @@ require("core-js/modules/es.object.define-property.js");
|
|
|
4
4
|
Object.defineProperty(exports, "__esModule", {
|
|
5
5
|
value: true
|
|
6
6
|
});
|
|
7
|
-
exports.
|
|
8
|
-
var
|
|
9
|
-
|
|
7
|
+
exports.BUILTIN_VIRTUAL_BACKGROUND_VIDEO_URL_LIST = exports.BUILTIN_VIRTUAL_BACKGROUND_IMAGE_URL_LIST = void 0;
|
|
8
|
+
var BUILTIN_VIRTUAL_BACKGROUND_IMAGE_URL_LIST = exports.BUILTIN_VIRTUAL_BACKGROUND_IMAGE_URL_LIST = [
|
|
9
|
+
// electron zip
|
|
10
|
+
'https://solutions-apaas.agora.io/fcr-ui-scene/picture/common/virtual_background_images.zip'
|
|
11
|
+
// browser png
|
|
12
|
+
// 'https://solutions-apaas.agora.io/fcr-ui-scene/picture/common/default1.jpg',
|
|
13
|
+
// 'https://solutions-apaas.agora.io/fcr-ui-scene/picture/common/default2.jpg',
|
|
14
|
+
// 'https://solutions-apaas.agora.io/fcr-ui-scene/picture/common/default3.jpg',
|
|
15
|
+
// 'https://solutions-apaas.agora.io/fcr-ui-scene/picture/common/default4.jpg',
|
|
16
|
+
// 'https://solutions-apaas.agora.io/fcr-ui-scene/picture/common/default5.jpg',
|
|
17
|
+
// 'https://solutions-apaas.agora.io/fcr-ui-scene/picture/common/default6.jpg',
|
|
18
|
+
// 'https://solutions-apaas.agora.io/fcr-ui-scene/picture/common/default7.jpg',
|
|
19
|
+
];
|
|
20
|
+
var BUILTIN_VIRTUAL_BACKGROUND_VIDEO_URL_LIST = exports.BUILTIN_VIRTUAL_BACKGROUND_VIDEO_URL_LIST = [
|
|
21
|
+
// electron zip
|
|
22
|
+
'https://solutions-apaas.agora.io/fcr-ui-scene/video/common/virtual_background_videos.zip'
|
|
23
|
+
// browser png
|
|
24
|
+
// 'https://solutions-apaas.agora.io/fcr-ui-scene/video/common/default8.mp4',
|
|
25
|
+
// 'https://solutions-apaas.agora.io/fcr-ui-scene/video/common/default9.mp4',
|
|
26
|
+
];
|