fcr-ui-scene 3.4.3 → 3.4.4
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/ scenes/base.d.ts +10 -0
- package/lib/ scenes/base.js +75 -0
- package/lib/ scenes/main-scene.d.ts +43 -0
- package/lib/ scenes/main-scene.js +368 -0
- package/lib/ scenes/waiting-scene.d.ts +31 -0
- package/lib/ scenes/waiting-scene.js +119 -0
- package/lib/base.js +3 -0
- package/lib/common/device-store.d.ts +2 -3
- package/lib/common/device-store.js +194 -174
- package/lib/common/device-stream-store.d.ts +7 -27
- package/lib/common/device-stream-store.js +176 -190
- package/lib/common/event-store.d.ts +13 -4
- package/lib/common/event-store.js +18 -7
- package/lib/common/remote-renderer.d.ts +15 -0
- package/lib/common/remote-renderer.js +138 -0
- package/lib/common/room-store.js +6 -6
- package/lib/common/security-store.d.ts +9 -19
- package/lib/common/security-store.js +39 -27
- package/lib/common/type.d.ts +8 -0
- package/lib/common/type.js +6 -0
- package/lib/electron/app.js +2 -0
- package/lib/electron/bootstrap-dev.js +2 -0
- package/lib/electron/bootstrap-sdk.js +2 -0
- package/lib/electron/bootstrap.d.ts +1 -0
- package/lib/electron/bootstrap.js +56 -0
- package/lib/electron/dev.d.ts +1 -0
- package/lib/electron/dev.js +51 -0
- package/lib/electron/injections.js +5 -0
- package/lib/electron/tools.js +4 -0
- package/lib/electron/window.js +2 -0
- package/lib/error-fallback.css +62 -0
- package/lib/error-fallback.d.ts +2 -0
- package/lib/error-fallback.js +19 -0
- package/lib/fragments/control-bar/cloud-recording-buttons.js +1 -1
- package/lib/fragments/control-bar/control-bar-store.d.ts +1 -45
- package/lib/fragments/control-bar/control-bar-store.js +83 -465
- package/lib/fragments/control-bar/device/index.js +3 -5
- package/lib/fragments/control-bar/index.css +10 -15
- package/lib/fragments/control-bar/index.js +0 -24
- package/lib/fragments/control-bar/meeting-details/meeting-detail.css +12 -31
- package/lib/fragments/control-bar/meeting-details/meeting-details.js +16 -117
- package/lib/fragments/control-bar/more-actions/index.css +0 -53
- package/lib/fragments/control-bar/more-actions/index.js +38 -73
- package/lib/fragments/control-bar/security-content/index.css +0 -75
- package/lib/fragments/control-bar/security-content/index.js +19 -105
- package/lib/fragments/control-bar/share-state-nav/index.js +1 -1
- package/lib/fragments/control-bar/view.js +8 -23
- package/lib/fragments/live-streaming/store.d.ts +1 -1
- package/lib/fragments/live-streaming/store.js +1 -1
- package/lib/fragments/live-streaming/view.js +2 -4
- package/lib/fragments/share-screen-selection/selection-store.d.ts +1 -1
- package/lib/fragments/share-screen-selection/selection-store.js +1 -1
- package/lib/fragments/share-screen-selection/view.js +20 -20
- package/lib/fragments/toolbar/components/eraser-picker.js +1 -1
- package/lib/fragments/toolbar/components/pen-picker.js +1 -1
- package/lib/fragments/toolbar/components/shape-picker.js +1 -1
- package/lib/fragments/toolbar/components/wrapper.js +1 -1
- package/lib/fragments/toolbar/hooks.js +1 -1
- package/lib/fragments/toolbar/store.d.ts +1 -1
- package/lib/modules/{interpreter → Interpreter}/constant.d.ts +4 -0
- package/lib/modules/{interpreter → Interpreter}/constant.js +45 -3
- package/lib/modules/Interpreter/context.d.ts +2 -0
- package/lib/modules/Interpreter/context.js +9 -0
- package/lib/modules/{interpreter → Interpreter}/interpreter-list/index.js +2 -2
- package/lib/modules/{interpreter → Interpreter}/interpreter-list/interpreter-item/components/pick-language/index.js +5 -2
- package/lib/modules/{interpreter → Interpreter}/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/index.js +2 -0
- package/lib/modules/{interpreter → Interpreter}/interpreter-list/interpreter-item/components/pick-user/index.js +4 -0
- package/lib/modules/{interpreter → Interpreter}/store.js +5 -0
- package/lib/modules/{interpreter → Interpreter}/utils.js +1 -0
- package/lib/modules/action-bar/action-bar-collapes-items.d.ts +1 -1
- package/lib/modules/action-bar/action-bar-collapes-items.js +11 -11
- package/lib/modules/action-bar/apps/useInterpreter.js +4 -2
- package/lib/modules/action-bar/chat/index.js +8 -8
- package/lib/modules/action-bar/components/apps/app-item/index.js +2 -0
- package/lib/modules/action-bar/components/apps/appitems.js +5 -2
- package/lib/modules/action-bar/components/apps/useAppItemOptions.js +1 -0
- package/lib/modules/action-bar/components/apps/useWidgetList.d.ts +7 -0
- package/lib/modules/action-bar/components/apps/useWidgetList.js +43 -0
- package/lib/modules/action-bar/components/collapse/index.js +4 -0
- package/lib/modules/action-bar/components/device/index.css +162 -0
- package/lib/modules/action-bar/components/device/index.d.ts +8 -0
- package/lib/modules/action-bar/components/device/index.js +611 -0
- package/lib/modules/action-bar/components/item/index.js +2 -0
- package/lib/modules/action-bar/components/item.d.ts +27 -0
- package/lib/modules/action-bar/components/item.js +164 -0
- package/lib/modules/action-bar/components/leave/assign-host.d.ts +8 -1
- package/lib/modules/action-bar/components/leave/assign-host.js +1 -1
- package/lib/modules/action-bar/components/leave/index.js +2 -0
- package/lib/modules/action-bar/components/leave/leave-meeting.d.ts +16 -1
- package/lib/modules/action-bar/components/more/poppover-content.js +4 -0
- package/lib/modules/action-bar/components/notification-bar/components/interpreter/index.js +1 -2
- package/lib/modules/action-bar/components/notification-bar/index.js +2 -0
- package/lib/modules/action-bar/components/trigger-input-language-room/fcr_translateswitch.png +0 -0
- package/lib/modules/action-bar/components/trigger-input-language-room/index.css +86 -0
- package/lib/modules/action-bar/components/trigger-input-language-room/index.d.ts +3 -0
- package/lib/modules/action-bar/components/trigger-input-language-room/index.js +215 -0
- package/lib/modules/action-bar/components/trigger-output-language/index.js +1 -2
- package/lib/modules/action-bar/components/trigger-output-language-room/constant.d.ts +10 -0
- package/lib/modules/action-bar/components/trigger-output-language-room/constant.js +8 -0
- package/lib/modules/action-bar/components/trigger-output-language-room/guide-tooltip/index.css +22 -0
- package/lib/modules/action-bar/components/trigger-output-language-room/guide-tooltip/index.d.ts +3 -0
- package/lib/modules/action-bar/components/trigger-output-language-room/guide-tooltip/index.js +75 -0
- package/lib/modules/action-bar/components/trigger-output-language-room/index.d.ts +8 -0
- package/lib/modules/action-bar/components/trigger-output-language-room/index.js +98 -0
- package/lib/modules/action-bar/components/trigger-output-language-room/trigger-language-room.d.ts +5 -0
- package/lib/modules/action-bar/components/trigger-output-language-room/trigger-language-room.js +66 -0
- package/lib/modules/action-bar/components/trigger-output-language-room/trigger-main-room.d.ts +5 -0
- package/lib/modules/action-bar/components/trigger-output-language-room/trigger-main-room.js +37 -0
- package/lib/modules/action-bar/components/trigger-output-language-room/useChangeOutputRoomTool.d.ts +12 -0
- package/lib/modules/action-bar/components/trigger-output-language-room/useChangeOutputRoomTool.js +138 -0
- package/lib/modules/action-bar/components/trigger-subscribe-language/index.js +3 -0
- package/lib/modules/action-bar/device/index.css +2 -7
- package/lib/modules/action-bar/device/index.js +25 -25
- package/lib/modules/action-bar/leave/assign-host.d.ts +0 -3
- package/lib/modules/action-bar/leave/assign-host.js +4 -2
- package/lib/modules/action-bar/leave/index.css +0 -10
- package/lib/modules/action-bar/leave/index.js +34 -84
- package/lib/modules/action-bar/leave/leave-meeting.d.ts +1 -13
- package/lib/modules/action-bar/leave/leave-meeting.js +19 -37
- package/lib/modules/action-bar/live-streaming/index.js +3 -3
- package/lib/modules/action-bar/more/index.js +5 -5
- package/lib/modules/action-bar/more/poppover-content.js +16 -37
- package/lib/modules/action-bar/notification-bar/components/interpreter/index.css +58 -0
- package/lib/modules/action-bar/notification-bar/components/interpreter/index.d.ts +8 -0
- package/lib/modules/action-bar/notification-bar/components/interpreter/index.js +100 -0
- package/lib/modules/action-bar/notification-bar/components/virtual-image/index.css +56 -0
- package/lib/modules/action-bar/notification-bar/components/virtual-image/index.d.ts +5 -0
- package/lib/modules/action-bar/notification-bar/components/virtual-image/index.js +33 -0
- package/lib/modules/action-bar/notification-bar/dome.png +0 -0
- package/lib/modules/action-bar/notification-bar/fcr_translateswitch.png +0 -0
- package/lib/modules/action-bar/notification-bar/index.css +74 -0
- package/lib/modules/action-bar/notification-bar/index.d.ts +2 -0
- package/lib/modules/action-bar/notification-bar/index.js +99 -0
- package/lib/modules/action-bar/participants/index.css +0 -12
- package/lib/modules/action-bar/participants/index.js +16 -23
- package/lib/modules/action-bar/record/index.js +4 -4
- package/lib/modules/action-bar/screen-share/index.js +5 -9
- package/lib/modules/action-bar/screen-share/submenu.js +26 -20
- package/lib/modules/action-bar/security/drop-menu.js +22 -137
- package/lib/modules/action-bar/security/index.js +5 -11
- package/lib/modules/action-bar/settings/index.js +4 -4
- package/lib/modules/action-bar/smaller.js +2 -2
- package/lib/modules/action-bar/store.js +6 -0
- package/lib/modules/action-bar/switch-output-language-room/index.js +2 -8
- package/lib/modules/action-bar/trigger-input-language-room/fcr_translateswitch.png +0 -0
- package/lib/modules/action-bar/trigger-input-language-room/index.css +86 -0
- package/lib/modules/action-bar/trigger-input-language-room/index.d.ts +15 -0
- package/lib/modules/action-bar/trigger-input-language-room/index.js +220 -0
- package/lib/modules/action-bar/trigger-output-language-room/constant.d.ts +10 -0
- package/lib/modules/action-bar/trigger-output-language-room/constant.js +8 -0
- package/lib/modules/action-bar/trigger-output-language-room/guide-tooltip/index.css +22 -0
- package/lib/modules/action-bar/trigger-output-language-room/guide-tooltip/index.d.ts +14 -0
- package/lib/modules/action-bar/trigger-output-language-room/guide-tooltip/index.js +75 -0
- package/lib/modules/action-bar/trigger-output-language-room/index.d.ts +4 -0
- package/lib/modules/action-bar/trigger-output-language-room/index.js +98 -0
- package/lib/modules/action-bar/trigger-output-language-room/trigger-language-room.d.ts +5 -0
- package/lib/modules/action-bar/trigger-output-language-room/trigger-language-room.js +66 -0
- package/lib/modules/action-bar/trigger-output-language-room/trigger-main-room.d.ts +5 -0
- package/lib/modules/action-bar/trigger-output-language-room/trigger-main-room.js +36 -0
- package/lib/modules/action-bar/trigger-output-language-room/useChangeOutputRoomTool.d.ts +12 -0
- package/lib/modules/action-bar/trigger-output-language-room/useChangeOutputRoomTool.js +138 -0
- package/lib/modules/audio-stream/index.js +3 -0
- package/lib/modules/chat/chat-bar/index.css +5 -0
- package/lib/modules/chat/chat-bar/index.js +16 -14
- package/lib/modules/chat/chat-room-store.js +4 -0
- package/lib/modules/chat/chat-select/index.css +6 -3
- package/lib/modules/chat/chat-select/index.js +15 -1
- package/lib/modules/chat/chat.js +7 -6
- package/lib/modules/chat/components/chat-bar/index.js +2 -0
- package/lib/modules/chat/components/chat-select/index.js +3 -0
- package/lib/modules/chat/components/chat-select/select-input/index.d.ts +7 -0
- package/lib/modules/chat/components/chat-select/select-input/index.js +35 -0
- package/lib/modules/chat/components/chat-select/select-item/index.d.ts +12 -0
- package/lib/modules/chat/components/chat-select/select-item/index.js +153 -0
- package/lib/modules/chat/components/chat-tabs/index.d.ts +2 -0
- package/lib/modules/chat/components/chat-tabs/index.js +61 -0
- package/lib/modules/chat/components/message-list/chat-empty/index.d.ts +2 -0
- package/lib/modules/chat/components/message-list/chat-empty/index.js +26 -0
- package/lib/modules/chat/components/message-list/history-unread-message-button/index.d.ts +7 -0
- package/lib/modules/chat/components/message-list/history-unread-message-button/index.js +55 -0
- package/lib/modules/chat/components/message-list/index.js +2 -0
- package/lib/modules/chat/components/message-list/message-item/index.d.ts +15 -0
- package/lib/modules/chat/components/message-list/message-item/index.js +279 -0
- package/lib/modules/chat/components/message-list/scroll-bottom-button/index.d.ts +9 -0
- package/lib/modules/chat/components/message-list/scroll-bottom-button/index.js +67 -0
- package/lib/modules/chat/message-list.js +4 -1
- package/lib/modules/chat/store.js +1 -0
- package/lib/modules/chat/view.js +4 -0
- package/lib/modules/components/device-control/components/audio-menu/index.js +1 -2
- package/lib/modules/components/device-control/components/video-menu/index.js +1 -2
- package/lib/modules/components/device-control/store.js +1 -0
- package/lib/modules/components/dialog-container/component/body.d.ts +7 -0
- package/lib/modules/components/dialog-container/component/body.js +46 -0
- package/lib/modules/components/dialog-container/index.css +78 -0
- package/lib/modules/components/dialog-container/index.d.ts +11 -0
- package/lib/modules/components/dialog-container/index.js +110 -0
- package/lib/modules/components/leave-meeting/store.js +2 -0
- package/lib/modules/components/member-window/components/member-actions/components/audio-control.d.ts +6 -0
- package/lib/modules/components/member-window/components/member-actions/components/audio-control.js +36 -0
- package/lib/modules/components/member-window/components/member-actions/components/icon-buttons/index.d.ts +40 -0
- package/lib/modules/components/member-window/components/member-actions/components/icon-buttons/index.js +170 -0
- package/lib/modules/components/member-window/components/member-actions/components/icon-status.d.ts +11 -0
- package/lib/modules/components/member-window/components/member-actions/components/icon-status.js +105 -0
- package/lib/modules/components/member-window/components/member-actions/components/layout/index.d.ts +9 -0
- package/lib/modules/components/member-window/components/member-actions/components/layout/index.js +42 -0
- package/lib/modules/components/member-window/components/member-actions/components/more-actions.d.ts +11 -0
- package/lib/modules/components/member-window/components/member-actions/components/more-actions.js +159 -0
- package/lib/modules/components/member-window/components/member-actions/components/share-status.d.ts +2 -0
- package/lib/modules/components/member-window/components/member-actions/components/share-status.js +32 -0
- package/lib/modules/components/member-window/components/member-actions/components/user-info.d.ts +16 -0
- package/lib/modules/components/member-window/components/member-actions/components/user-info.js +130 -0
- package/lib/modules/components/member-window/components/member-actions/components/user-tag.d.ts +12 -0
- package/lib/modules/components/member-window/components/member-actions/components/user-tag.js +57 -0
- package/lib/modules/components/member-window/components/member-actions/index.d.ts +3 -0
- package/lib/modules/components/member-window/components/member-actions/index.js +122 -0
- package/lib/modules/components/member-window/components/member-actions/libs/index.d.ts +2 -0
- package/lib/modules/components/member-window/components/member-actions/libs/index.js +24 -0
- package/lib/modules/components/member-window/components/member-actions/provider.d.ts +21 -0
- package/lib/modules/components/member-window/components/member-actions/provider.js +77 -0
- package/lib/modules/components/member-window/components/member-actions/store.d.ts +48 -0
- package/lib/modules/components/member-window/components/member-actions/store.js +306 -0
- package/lib/modules/components/member-window/components/member-board.d.ts +2 -0
- package/lib/modules/components/member-window/components/member-board.js +63 -0
- package/lib/modules/components/member-window/components/mic-volume.d.ts +2 -0
- package/lib/modules/components/member-window/components/mic-volume.js +23 -0
- package/lib/modules/components/member-window/components/video-player/components/local-video-player.d.ts +4 -0
- package/lib/modules/components/member-window/components/video-player/components/local-video-player.js +40 -0
- package/lib/modules/components/member-window/components/video-player/components/remote-video-player.d.ts +8 -0
- package/lib/modules/components/member-window/components/video-player/components/remote-video-player.js +62 -0
- package/lib/modules/components/member-window/components/video-player/index.d.ts +9 -0
- package/lib/modules/components/member-window/components/video-player/index.js +38 -0
- package/lib/modules/components/member-window/index.js +4 -0
- package/lib/modules/components/member-window/types.d.ts +78 -0
- package/lib/modules/components/member-window/types.js +6 -0
- package/lib/modules/components/security-menu/index.js +4 -1
- package/lib/modules/components/tab-frame/index.js +4 -0
- package/lib/modules/connection-gateway/components/phone/components/callinfo/index.js +1 -2
- package/lib/modules/connection-gateway/components/phone/index.js +1 -2
- package/lib/modules/connection-gateway/store.js +4 -0
- package/lib/modules/control-bar/components/more-actions/index.js +2 -0
- package/lib/modules/control-bar/index.js +2 -0
- package/lib/modules/control-bar/store.js +4 -0
- package/lib/modules/control-bar/view.js +2 -0
- package/lib/modules/device-pretest/settings/beauty.js +1 -2
- package/lib/modules/device-pretest/settings/virtual-background-setting.js +1 -2
- package/lib/modules/device-pretest/store.js +2 -0
- package/lib/modules/dialog/components/Interpreter/user-queue/index.css +36 -0
- package/lib/modules/dialog/components/Interpreter/user-queue/index.d.ts +3 -0
- package/lib/modules/dialog/components/Interpreter/user-queue/index.js +47 -0
- package/lib/modules/dialog/components/confirm/electron.d.ts +1 -1
- package/lib/modules/dialog/components/confirm/electron.js +68 -38
- package/lib/modules/dialog/components/connection-gateway/index.css +2 -0
- package/lib/modules/dialog/components/dialog-container/component/body.js +2 -0
- package/lib/modules/dialog/components/remove-admit-waiting-room/electron.js +3 -6
- package/lib/modules/dialog/components/remove-admit-waiting-room/index.d.ts +1 -1
- package/lib/modules/dialog/components/remove-admit-waiting-room/index.js +4 -14
- package/lib/modules/dialog/components/system-preference/assets/bg1.png +0 -0
- package/lib/modules/dialog/components/system-preference/assets/bg2.png +0 -0
- package/lib/modules/dialog/components/system-preference/assets/fcr_png_host.png +0 -0
- package/lib/modules/dialog/components/system-preference/index.js +2 -0
- package/lib/modules/dialog/components/widget/electron.d.ts +5 -0
- package/lib/modules/dialog/components/widget/electron.js +41 -0
- package/lib/modules/dialog/components/widget/index.d.ts +6 -0
- package/lib/modules/dialog/components/widget/index.js +41 -0
- package/lib/modules/dialog/hooks/useElectron.js +2 -0
- package/lib/modules/dialog/index.js +2 -0
- package/lib/modules/dialog/store.js +3 -0
- package/lib/modules/dialog/type.d.ts +84 -0
- package/lib/modules/dialog/type.js +6 -0
- package/lib/modules/dialog/view.js +1 -2
- package/lib/modules/event-confirm/store.js +3 -0
- package/lib/modules/event-confirm/view.js +5 -2
- package/lib/modules/event-toast/store.js +2 -0
- package/lib/modules/event-toast/view.js +1 -2
- package/lib/modules/invite/enums.js +0 -1
- package/lib/modules/invite/store.js +1 -1
- package/lib/modules/invite/voip-invite.js +3 -3
- package/lib/modules/layout/components/Carousel.js +1 -2
- package/lib/modules/layout/components/Gallery.js +2 -2
- package/lib/modules/layout/components/Layout.js +7 -4
- package/lib/modules/layout/components/index.js +1 -0
- package/lib/modules/layout/member-window/index.css +22 -9
- package/lib/modules/layout/member-window/index.d.ts +1 -1
- package/lib/modules/layout/member-window/index.js +27 -26
- package/lib/modules/layout/store.js +3 -0
- package/lib/modules/layout/type.js +0 -2
- package/lib/modules/layout/video-window-datasource.js +4 -0
- package/lib/modules/live-streaming/store.js +1 -0
- package/lib/modules/notification/context.d.ts +2 -0
- package/lib/modules/notification/context.js +9 -0
- package/lib/modules/notification/interpreter-status/index.js +1 -2
- package/lib/modules/offscreen-pulling/index.js +1 -0
- package/lib/modules/participant/attendee/index.css +0 -51
- package/lib/modules/participant/attendee/index.d.ts +8 -5
- package/lib/modules/participant/attendee/index.js +64 -15
- package/lib/modules/participant/attendee/participants-more-action.d.ts +18 -0
- package/lib/modules/participant/attendee/participants-more-action.js +278 -0
- package/lib/modules/participant/components/attendee/components/interpreter-tag/index.d.ts +3 -0
- package/lib/modules/participant/components/attendee/components/interpreter-tag/index.js +48 -0
- package/lib/modules/participant/components/attendee/index.js +3 -0
- package/lib/modules/participant/components/confirm-input/index.d.ts +6 -0
- package/lib/modules/participant/components/confirm-input/index.js +49 -0
- package/lib/modules/participant/components/drop-menu/index.js +3 -0
- package/lib/modules/participant/components/drop-menu/util.d.ts +5 -0
- package/lib/modules/participant/components/drop-menu/util.js +28 -0
- package/lib/modules/participant/components/participants/components/footer/components/buttons.d.ts +6 -0
- package/lib/modules/participant/components/participants/components/footer/components/buttons.js +52 -0
- package/lib/modules/participant/components/participants/components/footer/components/drop-menu/index.css +60 -0
- package/lib/modules/participant/components/participants/components/footer/components/drop-menu/index.d.ts +2 -0
- package/lib/modules/participant/components/participants/components/footer/components/drop-menu/index.js +166 -0
- package/lib/modules/participant/components/participants/components/footer/components/drop-menu/util.d.ts +5 -0
- package/lib/modules/participant/components/participants/components/footer/components/drop-menu/util.js +28 -0
- package/lib/modules/participant/components/participants/components/footer/components/footer/index.css +13 -0
- package/lib/modules/participant/components/participants/components/footer/components/footer/index.d.ts +5 -0
- package/lib/modules/participant/components/participants/components/footer/components/footer/index.js +242 -0
- package/lib/modules/participant/components/participants/components/footer/index.d.ts +5 -0
- package/lib/modules/participant/components/participants/components/footer/index.js +47 -0
- package/lib/modules/participant/components/participants/components/merge/index.d.ts +11 -0
- package/lib/modules/participant/components/participants/components/merge/index.js +49 -0
- package/lib/modules/participant/components/participants/components/participants/components/attendee/index.css +191 -0
- package/lib/modules/participant/components/participants/components/participants/components/attendee/index.d.ts +4 -0
- package/lib/modules/participant/components/participants/components/participants/components/attendee/index.js +204 -0
- package/lib/modules/participant/components/participants/components/participants/components/participants-more/index.css +49 -0
- package/lib/modules/participant/components/participants/components/participants/components/participants-more/index.d.ts +5 -0
- package/lib/modules/participant/components/participants/components/participants/components/participants-more/index.js +219 -0
- package/lib/modules/participant/components/participants/components/participants/components/user-row/index.d.ts +5 -0
- package/lib/modules/participant/components/participants/components/participants/components/user-row/index.js +70 -0
- package/lib/modules/participant/components/participants/components/participants/index.css +104 -0
- package/lib/modules/participant/components/participants/components/participants/index.d.ts +3 -0
- package/lib/modules/participant/components/participants/components/participants/index.js +110 -0
- package/lib/modules/participant/components/participants/components/render-tab/index.d.ts +2 -0
- package/lib/modules/participant/components/participants/components/render-tab/index.js +49 -0
- package/lib/modules/participant/components/participants/components/render-user/components/attendee/components/interpreter-tag/index.d.ts +3 -0
- package/lib/modules/participant/components/participants/components/render-user/components/attendee/components/interpreter-tag/index.js +48 -0
- package/lib/modules/participant/components/participants/components/render-user/components/attendee/components/microphone-indicator/index.d.ts +6 -0
- package/lib/modules/participant/components/participants/components/render-user/components/attendee/components/microphone-indicator/index.js +28 -0
- package/lib/modules/participant/components/participants/components/render-user/components/attendee/components/user-avatar/index.d.ts +7 -0
- package/lib/modules/participant/components/participants/components/render-user/components/attendee/components/user-avatar/index.js +39 -0
- package/lib/modules/participant/components/participants/components/render-user/components/attendee/index.css +69 -0
- package/lib/modules/participant/components/participants/components/render-user/components/attendee/index.d.ts +5 -0
- package/lib/modules/participant/components/participants/components/render-user/components/attendee/index.js +135 -0
- package/lib/modules/participant/components/participants/components/render-user/components/user-action/components/audio-button/index.d.ts +7 -0
- package/lib/modules/participant/components/participants/components/render-user/components/user-action/components/audio-button/index.js +31 -0
- package/lib/modules/participant/components/participants/components/render-user/components/user-action/components/move-actions-popover/index.d.ts +12 -0
- package/lib/modules/participant/components/participants/components/render-user/components/user-action/components/move-actions-popover/index.js +82 -0
- package/lib/modules/participant/components/participants/components/render-user/components/user-action/components/move-to-mainroom-button/index.d.ts +4 -0
- package/lib/modules/participant/components/participants/components/render-user/components/user-action/components/move-to-mainroom-button/index.js +26 -0
- package/lib/modules/participant/components/participants/components/render-user/components/user-action/index.d.ts +2 -0
- package/lib/modules/participant/components/participants/components/render-user/components/user-action/index.js +75 -0
- package/lib/modules/participant/components/participants/components/render-user/index.d.ts +5 -0
- package/lib/modules/participant/components/participants/components/render-user/index.js +21 -0
- package/lib/modules/participant/components/participants/index.js +1 -0
- package/lib/modules/participant/components/participants/render-tab/index.d.ts +2 -0
- package/lib/modules/participant/components/participants/render-tab/index.js +49 -0
- package/lib/modules/participant/components/participants/render-user/index.d.ts +5 -0
- package/lib/modules/participant/components/participants/render-user/index.js +21 -0
- package/lib/modules/participant/components/participants/types.d.ts +96 -0
- package/lib/modules/participant/components/participants/types.js +37 -0
- package/lib/modules/participant/components/user-action/audio-button/index.d.ts +7 -0
- package/lib/modules/participant/components/user-action/audio-button/index.js +31 -0
- package/lib/modules/participant/components/user-action/index.js +2 -0
- package/lib/modules/participant/components/user-action/move-actions-popover/index.d.ts +12 -0
- package/lib/modules/participant/components/user-action/move-actions-popover/index.js +82 -0
- package/lib/modules/participant/components/user-action/move-to-mainroom-button/index.d.ts +4 -0
- package/lib/modules/participant/components/user-action/move-to-mainroom-button/index.js +26 -0
- package/lib/modules/participant/index.js +2 -0
- package/lib/modules/participant/member-list-data-source.js +3 -0
- package/lib/modules/participant/room-control-drop-menu/index.css +0 -37
- package/lib/modules/participant/store.js +5 -0
- package/lib/modules/pc-audio-connect/store.js +1 -0
- package/lib/modules/phone-audio-connect/components/callinfo/index.js +1 -2
- package/lib/modules/phone-audio-connect/store.js +3 -0
- package/lib/modules/phone-audio-connect/view.js +1 -2
- package/lib/modules/setting/audio-settings/audio-settings.js +1 -1
- package/lib/modules/setting/minutes-settings/minutes-settings.js +1 -2
- package/lib/modules/setting/state/index.js +4 -0
- package/lib/modules/setting/store.js +8 -4
- package/lib/modules/setting/translate-settings/translate-settings.js +1 -1
- package/lib/modules/share-screen/components/selection/index.js +1 -1
- package/lib/modules/share-screen/selection/index.css +2 -0
- package/lib/modules/share-screen/selection/index.js +83 -97
- package/lib/modules/share-screen/store.js +4 -0
- package/lib/modules/sound-effect/index.js +1 -0
- package/lib/modules/state-bar/layout-config.js +1 -2
- package/lib/modules/state-bar/live-streaming-state.js +1 -0
- package/lib/modules/state-bar/store.js +1 -0
- package/lib/modules/video-window/components/deviceState/index.d.ts +7 -0
- package/lib/modules/video-window/components/deviceState/index.js +75 -0
- package/lib/modules/video-window/components/members/index.css +51 -0
- package/lib/modules/video-window/components/members/index.d.ts +2 -0
- package/lib/modules/video-window/components/members/index.js +130 -0
- package/lib/modules/video-window/components/speaking/index.css +86 -0
- package/lib/modules/video-window/components/speaking/index.d.ts +3 -0
- package/lib/modules/video-window/components/speaking/index.js +48 -0
- package/lib/modules/video-window/components/topControl/index.css +35 -0
- package/lib/modules/video-window/components/topControl/index.d.ts +3 -0
- package/lib/modules/video-window/components/topControl/index.js +79 -0
- package/lib/modules/video-window/members/index.js +1 -2
- package/lib/modules/video-window/store.js +4 -0
- package/lib/modules/video-window/topControl/index.js +2 -0
- package/lib/modules/whiteboard/components/switch-theme/index.js +2 -0
- package/lib/modules/whiteboard/components/switch-theme/item.js +1 -2
- package/lib/modules/whiteboard/components/toolbar/components/color-picker/components/panel.js +1 -2
- package/lib/modules/whiteboard/components/toolbar/components/color-picker/index.js +1 -2
- package/lib/modules/whiteboard/components/toolbar/components/extra-tool-picker.js +1 -1
- package/lib/modules/whiteboard/components/toolbar/components/move-handle.js +2 -0
- package/lib/modules/whiteboard/components/toolbar/components/pen-picker.js +1 -2
- package/lib/modules/whiteboard/components/toolbar/components/shape-picker.js +1 -2
- package/lib/modules/whiteboard/components/toolbar/hooks/index.js +2 -0
- package/lib/modules/whiteboard/components/toolbar/index.js +4 -1
- package/lib/modules/whiteboard/index.js +4 -0
- package/lib/modules/widget/index.css +17 -0
- package/lib/modules/widget/index.d.ts +10 -0
- package/lib/modules/widget/index.js +114 -0
- package/lib/modules/widget/sdk.d.ts +30 -0
- package/lib/modules/widget/sdk.js +221 -0
- package/lib/modules/widget/store.d.ts +14 -0
- package/lib/modules/widget/store.js +28 -0
- package/lib/modules/widget/type.d.ts +155 -0
- package/lib/modules/widget/type.js +6 -0
- package/lib/modules/widget/view.d.ts +2 -0
- package/lib/modules/widget/view.js +47 -0
- package/lib/modules/widget/web-widget.d.ts +29 -0
- package/lib/modules/widget/web-widget.js +234 -0
- package/lib/providers/ability-provider.d.ts +24 -0
- package/lib/providers/ability-provider.js +36 -0
- package/lib/providers/device-privilege-provider.js +2 -0
- package/lib/providers/device-provider.js +5 -0
- package/lib/providers/device-stream-provider.js +1 -0
- package/lib/providers/dialog-provider.js +2 -0
- package/lib/providers/event-provider.js +2 -0
- package/lib/providers/interpreter-provider.js +4 -0
- package/lib/providers/message-provider.js +2 -0
- package/lib/providers/phone-audio-provider.js +3 -0
- package/lib/providers/privilege-provider.js +4 -0
- package/lib/providers/renderer-provider.js +1 -0
- package/lib/providers/room-provider.js +3 -0
- package/lib/providers/screen-share-provider.js +1 -0
- package/lib/providers/widget-provider.d.ts +44 -0
- package/lib/providers/widget-provider.js +167 -0
- package/lib/scenes/base.d.ts +10 -0
- package/lib/scenes/base.js +75 -0
- package/lib/scenes/main-scene.js +2 -0
- package/lib/schema.d.ts +114 -0
- package/lib/schema.js +77 -0
- package/lib/shared-data-source/chat-data.js +2 -0
- package/lib/shared-data-source/interpreter.js +2 -0
- package/lib/shared-data-source/layout-data.js +4 -1
- package/lib/shared-data-source/member-data.d.ts +126 -0
- package/lib/shared-data-source/member-data.js +465 -0
- package/lib/shared-data-source/setting.js +2 -0
- package/lib/shared-data-source/video-window.js +4 -0
- package/lib/shared-data-source/waiting-room.js +1 -0
- package/lib/type.js +0 -14
- package/lib/ui-node.d.ts +25 -0
- package/lib/ui-node.js +156 -0
- package/lib/ui-scene.js +2 -0
- package/lib/utilities/constant.js +0 -7
- package/lib/utilities/logger.d.ts +8 -0
- package/lib/utilities/logger.js +42 -0
- package/lib/utilities/meeting-detail.js +26 -9
- package/lib/utilities/privilege.js +2 -0
- package/lib/utilities/renderer-event.js +2 -0
- package/lib/utilities/renderer.js +1 -0
- package/lib/utilities/setting-config-storage.js +2 -0
- package/lib/utilities/tools.js +3 -0
- package/lib/utilities/validate-params.d.ts +2 -0
- package/lib/utilities/validate-params.js +16 -0
- package/lib/widget-sdk.d.ts +2 -0
- package/lib/widget-sdk.js +13 -0
- package/package.json +5 -10
- /package/lib/modules/{interpreter → Interpreter}/action/add-btn/index.css +0 -0
- /package/lib/modules/{interpreter → Interpreter}/action/add-btn/index.d.ts +0 -0
- /package/lib/modules/{interpreter → Interpreter}/action/add-btn/index.js +0 -0
- /package/lib/modules/{interpreter → Interpreter}/action/delete-btn/index.css +0 -0
- /package/lib/modules/{interpreter → Interpreter}/action/delete-btn/index.d.ts +0 -0
- /package/lib/modules/{interpreter → Interpreter}/action/delete-btn/index.js +0 -0
- /package/lib/modules/{interpreter → Interpreter}/action/edit-btn/index.css +0 -0
- /package/lib/modules/{interpreter → Interpreter}/action/edit-btn/index.d.ts +0 -0
- /package/lib/modules/{interpreter → Interpreter}/action/edit-btn/index.js +0 -0
- /package/lib/modules/{interpreter → Interpreter}/action/switch-btn/index.css +0 -0
- /package/lib/modules/{interpreter → Interpreter}/action/switch-btn/index.d.ts +0 -0
- /package/lib/modules/{interpreter → Interpreter}/action/switch-btn/index.js +0 -0
- /package/lib/modules/{interpreter → Interpreter}/add-button/index.css +0 -0
- /package/lib/modules/{interpreter → Interpreter}/add-button/index.d.ts +0 -0
- /package/lib/modules/{interpreter → Interpreter}/add-button/index.js +0 -0
- /package/lib/modules/{interpreter → Interpreter}/config.d.ts +0 -0
- /package/lib/modules/{interpreter → Interpreter}/config.js +0 -0
- /package/lib/modules/{interpreter → Interpreter}/dialog-content/index.css +0 -0
- /package/lib/modules/{interpreter → Interpreter}/dialog-content/index.d.ts +0 -0
- /package/lib/modules/{interpreter → Interpreter}/dialog-content/index.js +0 -0
- /package/lib/modules/{interpreter → Interpreter}/footer/components/interpreter-btn/index.d.ts +0 -0
- /package/lib/modules/{interpreter → Interpreter}/footer/components/interpreter-btn/index.js +0 -0
- /package/lib/modules/{interpreter → Interpreter}/footer/components/set-btn/index.d.ts +0 -0
- /package/lib/modules/{interpreter → Interpreter}/footer/components/set-btn/index.js +0 -0
- /package/lib/modules/{interpreter → Interpreter}/footer/components/tooltip-wrapper/index.d.ts +0 -0
- /package/lib/modules/{interpreter → Interpreter}/footer/components/tooltip-wrapper/index.js +0 -0
- /package/lib/modules/{interpreter → Interpreter}/footer/index.css +0 -0
- /package/lib/modules/{interpreter → Interpreter}/footer/index.d.ts +0 -0
- /package/lib/modules/{interpreter → Interpreter}/footer/index.js +0 -0
- /package/lib/modules/{interpreter → Interpreter}/index.css +0 -0
- /package/lib/modules/{interpreter → Interpreter}/index.d.ts +0 -0
- /package/lib/modules/{interpreter → Interpreter}/index.js +0 -0
- /package/lib/modules/{interpreter → Interpreter}/interpreter-list/index.css +0 -0
- /package/lib/modules/{interpreter → Interpreter}/interpreter-list/index.d.ts +0 -0
- /package/lib/modules/{interpreter → Interpreter}/interpreter-list/interpreter-item/components/pick-language/index.css +0 -0
- /package/lib/modules/{interpreter → Interpreter}/interpreter-list/interpreter-item/components/pick-language/index.d.ts +0 -0
- /package/lib/modules/{interpreter → Interpreter}/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_ar.png +0 -0
- /package/lib/modules/{interpreter → Interpreter}/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_cn.png +0 -0
- /package/lib/modules/{interpreter → Interpreter}/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_de.png +0 -0
- /package/lib/modules/{interpreter → Interpreter}/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_en.png +0 -0
- /package/lib/modules/{interpreter → Interpreter}/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_es.png +0 -0
- /package/lib/modules/{interpreter → Interpreter}/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_fr.png +0 -0
- /package/lib/modules/{interpreter → Interpreter}/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_hi.png +0 -0
- /package/lib/modules/{interpreter → Interpreter}/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_id.png +0 -0
- /package/lib/modules/{interpreter → Interpreter}/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_it.png +0 -0
- /package/lib/modules/{interpreter → Interpreter}/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_jp.png +0 -0
- /package/lib/modules/{interpreter → Interpreter}/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_ko.png +0 -0
- /package/lib/modules/{interpreter → Interpreter}/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_ms.png +0 -0
- /package/lib/modules/{interpreter → Interpreter}/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_pt.png +0 -0
- /package/lib/modules/{interpreter → Interpreter}/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_ru.png +0 -0
- /package/lib/modules/{interpreter → Interpreter}/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_th.png +0 -0
- /package/lib/modules/{interpreter → Interpreter}/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_tr.png +0 -0
- /package/lib/modules/{interpreter → Interpreter}/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_vi.png +0 -0
- /package/lib/modules/{interpreter → Interpreter}/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/index.d.ts +0 -0
- /package/lib/modules/{interpreter → Interpreter}/interpreter-list/interpreter-item/components/pick-user/index.css +0 -0
- /package/lib/modules/{interpreter → Interpreter}/interpreter-list/interpreter-item/components/pick-user/index.d.ts +0 -0
- /package/lib/modules/{interpreter → Interpreter}/interpreter-list/interpreter-item/components/pick-user/option-Item.d.ts +0 -0
- /package/lib/modules/{interpreter → Interpreter}/interpreter-list/interpreter-item/components/pick-user/option-Item.js +0 -0
- /package/lib/modules/{interpreter → Interpreter}/interpreter-list/interpreter-item/index.css +0 -0
- /package/lib/modules/{interpreter → Interpreter}/interpreter-list/interpreter-item/index.d.ts +0 -0
- /package/lib/modules/{interpreter → Interpreter}/interpreter-list/interpreter-item/index.js +0 -0
- /package/lib/modules/{interpreter → Interpreter}/loading-wrapper/index.css +0 -0
- /package/lib/modules/{interpreter → Interpreter}/loading-wrapper/index.d.ts +0 -0
- /package/lib/modules/{interpreter → Interpreter}/loading-wrapper/index.js +0 -0
- /package/lib/modules/{interpreter → Interpreter}/store.d.ts +0 -0
- /package/lib/modules/{interpreter → Interpreter}/tooltip-wrapper/index.d.ts +0 -0
- /package/lib/modules/{interpreter → Interpreter}/tooltip-wrapper/index.js +0 -0
- /package/lib/modules/{interpreter → Interpreter}/type.d.ts +0 -0
- /package/lib/modules/{interpreter → Interpreter}/type.js +0 -0
- /package/lib/modules/{interpreter → Interpreter}/utils.d.ts +0 -0
- /package/lib/modules/{interpreter → Interpreter}/view.d.ts +0 -0
- /package/lib/modules/{interpreter → Interpreter}/view.js +0 -0
- /package/lib/modules/action-bar/{interpreter → Interpreter}/index.d.ts +0 -0
- /package/lib/modules/action-bar/{interpreter → Interpreter}/index.js +0 -0
- /package/lib/modules/dialog/components/{interpreter → Interpreter}/electron.d.ts +0 -0
- /package/lib/modules/dialog/components/{interpreter → Interpreter}/electron.js +0 -0
- /package/lib/modules/dialog/components/{interpreter → Interpreter}/index.css +0 -0
- /package/lib/modules/dialog/components/{interpreter → Interpreter}/index.d.ts +0 -0
- /package/lib/modules/dialog/components/{interpreter → Interpreter}/index.js +0 -0
|
@@ -3,7 +3,6 @@
|
|
|
3
3
|
require("core-js/modules/es.symbol.js");
|
|
4
4
|
require("core-js/modules/es.array.filter.js");
|
|
5
5
|
require("core-js/modules/es.array.for-each.js");
|
|
6
|
-
require("core-js/modules/es.array.iterator.js");
|
|
7
6
|
require("core-js/modules/es.array.push.js");
|
|
8
7
|
require("core-js/modules/es.object.define-properties.js");
|
|
9
8
|
require("core-js/modules/es.object.define-property.js");
|
|
@@ -11,26 +10,19 @@ require("core-js/modules/es.object.get-own-property-descriptor.js");
|
|
|
11
10
|
require("core-js/modules/es.object.get-own-property-descriptors.js");
|
|
12
11
|
require("core-js/modules/es.object.keys.js");
|
|
13
12
|
require("core-js/modules/es.object.to-string.js");
|
|
14
|
-
require("core-js/modules/es.string.iterator.js");
|
|
15
|
-
require("core-js/modules/es.weak-map.js");
|
|
16
13
|
require("core-js/modules/esnext.async-iterator.filter.js");
|
|
17
14
|
require("core-js/modules/esnext.async-iterator.for-each.js");
|
|
18
15
|
require("core-js/modules/esnext.iterator.constructor.js");
|
|
19
16
|
require("core-js/modules/esnext.iterator.filter.js");
|
|
20
17
|
require("core-js/modules/esnext.iterator.for-each.js");
|
|
21
|
-
require("core-js/modules/esnext.weak-map.delete-all.js");
|
|
22
|
-
require("core-js/modules/esnext.weak-map.emplace.js");
|
|
23
18
|
require("core-js/modules/web.dom-collections.for-each.js");
|
|
24
|
-
require("core-js/modules/web.dom-collections.iterator.js");
|
|
25
19
|
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
26
|
-
var _typeof = require("@babel/runtime/helpers/typeof");
|
|
27
20
|
Object.defineProperty(exports, "__esModule", {
|
|
28
21
|
value: true
|
|
29
22
|
});
|
|
30
23
|
exports.RemoveAdmitWaitingRoomDialog = void 0;
|
|
31
24
|
var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
|
|
32
|
-
var
|
|
33
|
-
var _react = _interopRequireWildcard(require("react"));
|
|
25
|
+
var _react = require("react");
|
|
34
26
|
var _store = require("../../store");
|
|
35
27
|
var _reactRnd = require("react-rnd");
|
|
36
28
|
var _electron = _interopRequireDefault(require("./electron"));
|
|
@@ -38,11 +30,9 @@ var _platform = require("../../../../utilities/platform");
|
|
|
38
30
|
require("./index.css");
|
|
39
31
|
var _env = require("agora-foundation/lib/utilities/env");
|
|
40
32
|
var _jsxRuntime = require("react/jsx-runtime");
|
|
41
|
-
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(e) { return e ? t : r; })(e); }
|
|
42
|
-
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != _typeof(e) && "function" != typeof e) return { "default": e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n["default"] = e, t && t.set(e, n), n; }
|
|
43
33
|
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; }
|
|
44
|
-
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; }
|
|
45
|
-
var RemoveAdmitWaitingRoomDialog = exports.RemoveAdmitWaitingRoomDialog =
|
|
34
|
+
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; }
|
|
35
|
+
var RemoveAdmitWaitingRoomDialog = exports.RemoveAdmitWaitingRoomDialog = function RemoveAdmitWaitingRoomDialog(_ref) {
|
|
46
36
|
var children = _ref.children,
|
|
47
37
|
params = _ref.params;
|
|
48
38
|
var store = (0, _react.useContext)(_store.StoreContext);
|
|
@@ -87,4 +77,4 @@ var RemoveAdmitWaitingRoomDialog = exports.RemoveAdmitWaitingRoomDialog = (0, _m
|
|
|
87
77
|
})
|
|
88
78
|
})
|
|
89
79
|
});
|
|
90
|
-
}
|
|
80
|
+
};
|
|
Binary file
|
|
Binary file
|
|
@@ -10,6 +10,8 @@ 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");
|
|
13
15
|
require("core-js/modules/esnext.iterator.constructor.js");
|
|
14
16
|
require("core-js/modules/esnext.iterator.filter.js");
|
|
15
17
|
require("core-js/modules/esnext.iterator.for-each.js");
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
require("core-js/modules/es.object.define-property.js");
|
|
4
|
+
Object.defineProperty(exports, "__esModule", {
|
|
5
|
+
value: true
|
|
6
|
+
});
|
|
7
|
+
exports.WidgetElectronDialog = void 0;
|
|
8
|
+
require("core-js/modules/es.function.name.js");
|
|
9
|
+
var _constant = require("../../../../utilities/constant");
|
|
10
|
+
var _useElectron = require("../../hooks/useElectron");
|
|
11
|
+
var _i18n = require("agora-ui-foundation/lib/i18n");
|
|
12
|
+
var WidgetElectronDialog = exports.WidgetElectronDialog = function WidgetElectronDialog(_ref) {
|
|
13
|
+
var _params$popupSize, _params$popupSize2;
|
|
14
|
+
var children = _ref.children,
|
|
15
|
+
params = _ref.params;
|
|
16
|
+
var transI18n = (0, _i18n.useI18n)();
|
|
17
|
+
var config = {
|
|
18
|
+
fullscreen: false,
|
|
19
|
+
maximizable: false,
|
|
20
|
+
trafficLightPosition: {
|
|
21
|
+
x: 10,
|
|
22
|
+
y: 60
|
|
23
|
+
},
|
|
24
|
+
width: (_params$popupSize = params.popupSize) === null || _params$popupSize === void 0 ? void 0 : _params$popupSize.width,
|
|
25
|
+
height: (_params$popupSize2 = params.popupSize) === null || _params$popupSize2 === void 0 ? void 0 : _params$popupSize2.width,
|
|
26
|
+
// minWidth: 620,
|
|
27
|
+
// minHeight: 300,
|
|
28
|
+
// maxWidth: 1020,
|
|
29
|
+
// maxHeight: 900,
|
|
30
|
+
title: params.name,
|
|
31
|
+
resizable: false
|
|
32
|
+
};
|
|
33
|
+
(0, _useElectron.useElectronDialogByDialogId)({
|
|
34
|
+
config: config,
|
|
35
|
+
dialogKey: _constant.FcrUIDialogKey.WIDGET,
|
|
36
|
+
dialogId: params.id,
|
|
37
|
+
children: children,
|
|
38
|
+
hasCustomShadow: false
|
|
39
|
+
});
|
|
40
|
+
return null;
|
|
41
|
+
};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { PropsWithChildren } from 'react';
|
|
2
|
+
import { FcrUIWebWidgetConfig } from '../../../../type';
|
|
3
|
+
declare const WidgetDialog: ({ children, params, }: PropsWithChildren<{
|
|
4
|
+
params: FcrUIWebWidgetConfig;
|
|
5
|
+
}>) => import("react/jsx-runtime").JSX.Element;
|
|
6
|
+
export default WidgetDialog;
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
require("core-js/modules/es.object.define-property.js");
|
|
4
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
|
6
|
+
value: true
|
|
7
|
+
});
|
|
8
|
+
exports["default"] = void 0;
|
|
9
|
+
require("core-js/modules/es.function.name.js");
|
|
10
|
+
var _env = require("agora-foundation/lib/utilities/env");
|
|
11
|
+
var _electron = require("./electron");
|
|
12
|
+
var _react = require("react");
|
|
13
|
+
var _i18n = require("agora-ui-foundation/lib/i18n");
|
|
14
|
+
var _dialogContainer = _interopRequireDefault(require("../dialog-container"));
|
|
15
|
+
var _constant = require("../../../../utilities/constant");
|
|
16
|
+
var _store = require("../../store");
|
|
17
|
+
var _jsxRuntime = require("react/jsx-runtime");
|
|
18
|
+
var WidgetDialog = function WidgetDialog(_ref) {
|
|
19
|
+
var _params$popupSize, _params$popupSize2;
|
|
20
|
+
var children = _ref.children,
|
|
21
|
+
params = _ref.params;
|
|
22
|
+
var t = (0, _i18n.useI18n)();
|
|
23
|
+
var _useContext = (0, _react.useContext)(_store.StoreContext),
|
|
24
|
+
widgetDialogIds = _useContext.widgetDialogIds;
|
|
25
|
+
var container = /*#__PURE__*/(0, _jsxRuntime.jsx)(_dialogContainer["default"], {
|
|
26
|
+
title: params.name,
|
|
27
|
+
width: (_params$popupSize = params.popupSize) === null || _params$popupSize === void 0 ? void 0 : _params$popupSize.width,
|
|
28
|
+
height: (_params$popupSize2 = params.popupSize) === null || _params$popupSize2 === void 0 ? void 0 : _params$popupSize2.height,
|
|
29
|
+
dialogKey: _constant.FcrUIDialogKey.WIDGET,
|
|
30
|
+
dialogId: widgetDialogIds.get(params.id),
|
|
31
|
+
children: children
|
|
32
|
+
});
|
|
33
|
+
if ((0, _env.isElectron)()) {
|
|
34
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_electron.WidgetElectronDialog, {
|
|
35
|
+
params: params,
|
|
36
|
+
children: container
|
|
37
|
+
});
|
|
38
|
+
}
|
|
39
|
+
return container;
|
|
40
|
+
};
|
|
41
|
+
var _default = exports["default"] = WidgetDialog;
|
|
@@ -8,6 +8,7 @@ require("core-js/modules/es.object.define-property.js");
|
|
|
8
8
|
require("core-js/modules/es.object.get-own-property-descriptor.js");
|
|
9
9
|
require("core-js/modules/es.object.get-own-property-descriptors.js");
|
|
10
10
|
require("core-js/modules/es.object.keys.js");
|
|
11
|
+
require("core-js/modules/esnext.async-iterator.filter.js");
|
|
11
12
|
require("core-js/modules/esnext.iterator.filter.js");
|
|
12
13
|
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
13
14
|
Object.defineProperty(exports, "__esModule", {
|
|
@@ -20,6 +21,7 @@ require("core-js/modules/es.array.for-each.js");
|
|
|
20
21
|
require("core-js/modules/es.array.includes.js");
|
|
21
22
|
require("core-js/modules/es.object.to-string.js");
|
|
22
23
|
require("core-js/modules/es.string.includes.js");
|
|
24
|
+
require("core-js/modules/esnext.async-iterator.for-each.js");
|
|
23
25
|
require("core-js/modules/esnext.iterator.constructor.js");
|
|
24
26
|
require("core-js/modules/esnext.iterator.for-each.js");
|
|
25
27
|
require("core-js/modules/web.dom-collections.for-each.js");
|
|
@@ -10,6 +10,7 @@ require("core-js/modules/es.object.get-own-property-descriptors.js");
|
|
|
10
10
|
require("core-js/modules/es.object.keys.js");
|
|
11
11
|
require("core-js/modules/es.reflect.construct.js");
|
|
12
12
|
require("core-js/modules/es.weak-map.js");
|
|
13
|
+
require("core-js/modules/esnext.async-iterator.filter.js");
|
|
13
14
|
require("core-js/modules/esnext.iterator.filter.js");
|
|
14
15
|
require("core-js/modules/esnext.weak-map.delete-all.js");
|
|
15
16
|
require("core-js/modules/esnext.weak-map.emplace.js");
|
|
@@ -26,6 +27,7 @@ require("core-js/modules/es.function.bind.js");
|
|
|
26
27
|
require("core-js/modules/es.map.js");
|
|
27
28
|
require("core-js/modules/es.object.to-string.js");
|
|
28
29
|
require("core-js/modules/es.string.iterator.js");
|
|
30
|
+
require("core-js/modules/esnext.async-iterator.for-each.js");
|
|
29
31
|
require("core-js/modules/esnext.iterator.constructor.js");
|
|
30
32
|
require("core-js/modules/esnext.iterator.for-each.js");
|
|
31
33
|
require("core-js/modules/esnext.map.delete-all.js");
|
|
@@ -32,6 +32,9 @@ require("core-js/modules/es.object.to-string.js");
|
|
|
32
32
|
require("core-js/modules/es.string.includes.js");
|
|
33
33
|
require("core-js/modules/es.string.iterator.js");
|
|
34
34
|
require("core-js/modules/es.weak-map.js");
|
|
35
|
+
require("core-js/modules/esnext.async-iterator.filter.js");
|
|
36
|
+
require("core-js/modules/esnext.async-iterator.find.js");
|
|
37
|
+
require("core-js/modules/esnext.async-iterator.for-each.js");
|
|
35
38
|
require("core-js/modules/esnext.iterator.constructor.js");
|
|
36
39
|
require("core-js/modules/esnext.iterator.filter.js");
|
|
37
40
|
require("core-js/modules/esnext.iterator.find.js");
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { FcrUIDialogKey } from '../../utilities/constant';
|
|
3
|
+
import DialogStore from './store';
|
|
4
|
+
export type FcrUIDialogHooksProps = {
|
|
5
|
+
/**
|
|
6
|
+
* @param dialogKey - dialog 窗口的 key,为 FcrUIDialogKey 的枚举之一
|
|
7
|
+
*/
|
|
8
|
+
dialogKey: FcrUIDialogKey;
|
|
9
|
+
/**
|
|
10
|
+
* @param dialogId - dialog 窗口的 id,标识唯一窗口
|
|
11
|
+
*/
|
|
12
|
+
dialogId?: string;
|
|
13
|
+
/**
|
|
14
|
+
* @param config - electron 的 BrowserWindowConstructorOptions 配置,当自定义配置的 hasCustomShadow 开启时,其中的 width 和 height 会自动加上阴影的宽度
|
|
15
|
+
* @param height - The height value should be based on the maximum content height of the tab
|
|
16
|
+
*/
|
|
17
|
+
config: Electron.BrowserWindowConstructorOptions;
|
|
18
|
+
/**
|
|
19
|
+
* @param onClose - 当 dialog 关闭时的回调函数,函数签名为 dialog 的 store
|
|
20
|
+
* */
|
|
21
|
+
onClose?: (props: {
|
|
22
|
+
store: DialogStore;
|
|
23
|
+
browserWindow: Electron.BrowserWindow;
|
|
24
|
+
}) => void;
|
|
25
|
+
/**
|
|
26
|
+
* @param onOpened - 当 dialog 打开时的回调函数,函数签名为 dialog 的 store、browserwindow 对象和设置 bounds 的方法,此 bounds 不同于 browserwindow 的 setBounds 会为宽高自动加上阴影的设置
|
|
27
|
+
*/
|
|
28
|
+
onOpened?: (props: {
|
|
29
|
+
browserWindow: Electron.BrowserWindow;
|
|
30
|
+
newRendererWindow: Window;
|
|
31
|
+
store: DialogStore;
|
|
32
|
+
setBounds: (bounds: Partial<Electron.Rectangle>, animate?: boolean) => void;
|
|
33
|
+
nearDisplayBounds: Electron.Rectangle;
|
|
34
|
+
}) => void;
|
|
35
|
+
/**
|
|
36
|
+
* * @param onUnmounted - 当 dialog 卸载时的回调函数,函数签名为 dialog 的 store
|
|
37
|
+
*/
|
|
38
|
+
onUnmounted?: (store: DialogStore) => void;
|
|
39
|
+
/**
|
|
40
|
+
* @param children - dialog 的内容
|
|
41
|
+
*/
|
|
42
|
+
children: React.ReactNode;
|
|
43
|
+
/**
|
|
44
|
+
* @param scroll - 是否显示滚动栏,默认为 false
|
|
45
|
+
*/
|
|
46
|
+
scroll?: boolean;
|
|
47
|
+
/**
|
|
48
|
+
* @param focus - 在 dialog 窗口打开之后,调用 browserWindow 的 focus 方法, 默认为 true
|
|
49
|
+
*/
|
|
50
|
+
focus?: boolean;
|
|
51
|
+
/**
|
|
52
|
+
* @param ignoreMouseEvents - 在 dialog 窗口打开之后,设置是否忽略鼠标事件
|
|
53
|
+
*/
|
|
54
|
+
ignoreMouseEvents?: boolean | Electron.IgnoreMouseEventsOptions;
|
|
55
|
+
/**
|
|
56
|
+
* @param alwaysOnTop - 在 dialog 窗口打开之后,主动调用一次 browserWindow 的 setAlwaysOnTop(true, 'normal') 方法,默认为true
|
|
57
|
+
* @type boolean | 'normal' | 'floating' | 'torn-off-menu' | 'modal-panel' | 'main-menu' | 'status' | 'pop-up-menu' | 'screen-saver'
|
|
58
|
+
*/
|
|
59
|
+
alwaysOnTop?: boolean | 'normal' | 'floating' | 'torn-off-menu' | 'modal-panel' | 'main-menu' | 'status' | 'pop-up-menu' | 'screen-saver';
|
|
60
|
+
/**
|
|
61
|
+
* @param fullScreen - 自定义全屏设置,和 electron 的全屏设置不同,它会以主窗口的位置为基准,给新打开的窗口设置和屏幕一样的大小
|
|
62
|
+
*/
|
|
63
|
+
fullScreen?: boolean;
|
|
64
|
+
/**
|
|
65
|
+
* @param polyfills - 这个可以以一句话的形式描述 polyfills,比如:fix-toast-window-flash,并通过这个字段来判断进行特殊处理
|
|
66
|
+
*/
|
|
67
|
+
polyfills?: string[];
|
|
68
|
+
/**
|
|
69
|
+
* @param hasCustomShadow - 通过缩小 electron 容器内的容器宽度加 css 样式阴影实现,所以会让原生 electron 的拖动响应的边产生偏移,所以如果窗口是可拖动的,需要设置为 false。默认值 true。目前窗口有三种,一种是作为 toast 和 confirm 容器的窗口,这种窗口因为是全屏显示不需要阴影,一种是 participant 和 chat 窗口,这俩窗口需要拉伸操作,所以用系统阴影,不用自定义阴影。还有一种是独立的窗口,这种窗口不需要拉伸,所以用自定义阴影,配置为 true 时,窗口会给宽高加上阴影的偏移量,所以 toast 和 confirm 窗口需要设置为 false
|
|
70
|
+
* */
|
|
71
|
+
hasCustomShadow?: boolean;
|
|
72
|
+
/**
|
|
73
|
+
* @param disableShortcutClose - 是否可以用快捷键关闭窗口,默认为 false
|
|
74
|
+
*/
|
|
75
|
+
disableShortcutClose?: boolean;
|
|
76
|
+
};
|
|
77
|
+
export type FcrUIDialogComponent = React.FC<FcrDialogProps>;
|
|
78
|
+
export type FcrDialogProps = {
|
|
79
|
+
params: unknown;
|
|
80
|
+
};
|
|
81
|
+
export type FcrUIDialogInfo = {
|
|
82
|
+
key: FcrUIDialogKey;
|
|
83
|
+
component: FcrUIDialogComponent;
|
|
84
|
+
};
|
|
@@ -6,8 +6,7 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
6
6
|
});
|
|
7
7
|
exports.View = void 0;
|
|
8
8
|
require("core-js/modules/es.array.map.js");
|
|
9
|
-
require("core-js/modules/
|
|
10
|
-
require("core-js/modules/esnext.iterator.constructor.js");
|
|
9
|
+
require("core-js/modules/esnext.async-iterator.map.js");
|
|
11
10
|
require("core-js/modules/esnext.iterator.map.js");
|
|
12
11
|
var _mobxReact = require("mobx-react");
|
|
13
12
|
var _react = require("react");
|
|
@@ -16,6 +16,7 @@ require("core-js/modules/es.object.define-property.js");
|
|
|
16
16
|
require("core-js/modules/es.object.get-own-property-descriptor.js");
|
|
17
17
|
require("core-js/modules/es.object.get-own-property-descriptors.js");
|
|
18
18
|
require("core-js/modules/es.object.keys.js");
|
|
19
|
+
require("core-js/modules/esnext.async-iterator.filter.js");
|
|
19
20
|
require("core-js/modules/esnext.function.metadata.js");
|
|
20
21
|
require("core-js/modules/esnext.iterator.filter.js");
|
|
21
22
|
require("core-js/modules/esnext.symbol.metadata.js");
|
|
@@ -34,6 +35,8 @@ require("core-js/modules/es.map.js");
|
|
|
34
35
|
require("core-js/modules/es.object.to-string.js");
|
|
35
36
|
require("core-js/modules/es.string.iterator.js");
|
|
36
37
|
require("core-js/modules/es.weak-map.js");
|
|
38
|
+
require("core-js/modules/esnext.async-iterator.for-each.js");
|
|
39
|
+
require("core-js/modules/esnext.async-iterator.map.js");
|
|
37
40
|
require("core-js/modules/esnext.iterator.constructor.js");
|
|
38
41
|
require("core-js/modules/esnext.iterator.for-each.js");
|
|
39
42
|
require("core-js/modules/esnext.iterator.map.js");
|
|
@@ -9,6 +9,10 @@ require("core-js/modules/es.object.define-property.js");
|
|
|
9
9
|
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
|
+
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");
|
|
12
16
|
require("core-js/modules/esnext.iterator.filter.js");
|
|
13
17
|
require("core-js/modules/esnext.iterator.for-each.js");
|
|
14
18
|
require("core-js/modules/web.dom-collections.for-each.js");
|
|
@@ -18,8 +22,7 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
18
22
|
});
|
|
19
23
|
exports.View = void 0;
|
|
20
24
|
require("core-js/modules/es.array.map.js");
|
|
21
|
-
require("core-js/modules/
|
|
22
|
-
require("core-js/modules/esnext.iterator.constructor.js");
|
|
25
|
+
require("core-js/modules/esnext.async-iterator.map.js");
|
|
23
26
|
require("core-js/modules/esnext.iterator.map.js");
|
|
24
27
|
var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
|
|
25
28
|
var _slicedToArray2 = _interopRequireDefault(require("@babel/runtime/helpers/slicedToArray"));
|
|
@@ -33,6 +33,8 @@ require("core-js/modules/es.object.keys.js");
|
|
|
33
33
|
require("core-js/modules/es.object.to-string.js");
|
|
34
34
|
require("core-js/modules/es.string.iterator.js");
|
|
35
35
|
require("core-js/modules/es.weak-map.js");
|
|
36
|
+
require("core-js/modules/esnext.async-iterator.for-each.js");
|
|
37
|
+
require("core-js/modules/esnext.async-iterator.map.js");
|
|
36
38
|
require("core-js/modules/esnext.iterator.constructor.js");
|
|
37
39
|
require("core-js/modules/esnext.iterator.for-each.js");
|
|
38
40
|
require("core-js/modules/esnext.iterator.map.js");
|
|
@@ -9,8 +9,7 @@ exports.View = void 0;
|
|
|
9
9
|
var _toConsumableArray2 = _interopRequireDefault(require("@babel/runtime/helpers/toConsumableArray"));
|
|
10
10
|
require("core-js/modules/es.array.concat.js");
|
|
11
11
|
require("core-js/modules/es.array.map.js");
|
|
12
|
-
require("core-js/modules/
|
|
13
|
-
require("core-js/modules/esnext.iterator.constructor.js");
|
|
12
|
+
require("core-js/modules/esnext.async-iterator.map.js");
|
|
14
13
|
require("core-js/modules/esnext.iterator.map.js");
|
|
15
14
|
var _toast = require("agora-ui-foundation/lib/components/toast");
|
|
16
15
|
var _mobxReact = require("mobx-react");
|
|
@@ -24,7 +24,6 @@ var InviteStatus = exports.InviteStatus = /*#__PURE__*/function (InviteStatus) {
|
|
|
24
24
|
InviteStatus[InviteStatus["DEFAULT"] = 0] = "DEFAULT";
|
|
25
25
|
InviteStatus[InviteStatus["CALLING"] = 1] = "CALLING";
|
|
26
26
|
InviteStatus[InviteStatus["RINGING"] = 2] = "RINGING";
|
|
27
|
-
// SUCCESS,
|
|
28
27
|
InviteStatus[InviteStatus["ACCEPTED"] = 3] = "ACCEPTED";
|
|
29
28
|
InviteStatus[InviteStatus["END"] = 4] = "END";
|
|
30
29
|
InviteStatus[InviteStatus["REJECT"] = 5] = "REJECT";
|
|
@@ -43,7 +43,7 @@ require("core-js/modules/es.function.bind.js");
|
|
|
43
43
|
require("core-js/modules/es.object.to-string.js");
|
|
44
44
|
require("core-js/modules/es.string.iterator.js");
|
|
45
45
|
require("core-js/modules/es.weak-map.js");
|
|
46
|
-
require("core-js/modules/esnext.iterator.
|
|
46
|
+
require("core-js/modules/esnext.async-iterator.map.js");
|
|
47
47
|
require("core-js/modules/esnext.iterator.map.js");
|
|
48
48
|
require("core-js/modules/esnext.weak-map.delete-all.js");
|
|
49
49
|
require("core-js/modules/esnext.weak-map.emplace.js");
|
|
@@ -183,7 +183,7 @@ var VoipInvite = exports.VoipInvite = (0, _mobxReact.observer)(function () {
|
|
|
183
183
|
onClick: function onClick() {
|
|
184
184
|
return setCurrentVoipType(VoipType.H323);
|
|
185
185
|
},
|
|
186
|
-
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("
|
|
186
|
+
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("span", {
|
|
187
187
|
children: "H323"
|
|
188
188
|
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_radio.FcrRadio, {
|
|
189
189
|
styleType: "white",
|
|
@@ -197,8 +197,8 @@ var VoipInvite = exports.VoipInvite = (0, _mobxReact.observer)(function () {
|
|
|
197
197
|
onClick: function onClick() {
|
|
198
198
|
return setCurrentVoipType(VoipType.SIP);
|
|
199
199
|
},
|
|
200
|
-
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("
|
|
201
|
-
children: "
|
|
200
|
+
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("span", {
|
|
201
|
+
children: "SIP"
|
|
202
202
|
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_radio.FcrRadio, {
|
|
203
203
|
styleType: "white",
|
|
204
204
|
value: VoipType.SIP
|
|
@@ -8,8 +8,7 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
8
8
|
exports.Carousel = void 0;
|
|
9
9
|
require("core-js/modules/es.array.map.js");
|
|
10
10
|
require("core-js/modules/es.array.slice.js");
|
|
11
|
-
require("core-js/modules/
|
|
12
|
-
require("core-js/modules/esnext.iterator.constructor.js");
|
|
11
|
+
require("core-js/modules/esnext.async-iterator.map.js");
|
|
13
12
|
require("core-js/modules/esnext.iterator.map.js");
|
|
14
13
|
var _slicedToArray2 = _interopRequireDefault(require("@babel/runtime/helpers/slicedToArray"));
|
|
15
14
|
var _classnames = _interopRequireDefault(require("classnames"));
|
|
@@ -11,6 +11,7 @@ require("core-js/modules/es.array.iterator.js");
|
|
|
11
11
|
require("core-js/modules/es.date.to-string.js");
|
|
12
12
|
require("core-js/modules/es.function.name.js");
|
|
13
13
|
require("core-js/modules/es.object.define-property.js");
|
|
14
|
+
require("core-js/modules/es.object.to-string.js");
|
|
14
15
|
require("core-js/modules/es.regexp.exec.js");
|
|
15
16
|
require("core-js/modules/es.regexp.test.js");
|
|
16
17
|
require("core-js/modules/es.regexp.to-string.js");
|
|
@@ -27,8 +28,7 @@ require("core-js/modules/es.array.map.js");
|
|
|
27
28
|
require("core-js/modules/es.array.push.js");
|
|
28
29
|
require("core-js/modules/es.array.slice.js");
|
|
29
30
|
require("core-js/modules/es.array.unshift.js");
|
|
30
|
-
require("core-js/modules/
|
|
31
|
-
require("core-js/modules/esnext.iterator.constructor.js");
|
|
31
|
+
require("core-js/modules/esnext.async-iterator.map.js");
|
|
32
32
|
require("core-js/modules/esnext.iterator.map.js");
|
|
33
33
|
var _mobxReact = require("mobx-react");
|
|
34
34
|
var _react = require("react");
|
|
@@ -54,7 +54,10 @@ var Layout = exports.Layout = (0, _mobxReact.observer)(function () {
|
|
|
54
54
|
getWaterMarkContent = layoutStore.getWaterMarkContent,
|
|
55
55
|
isMulti = layoutStore.isMulti,
|
|
56
56
|
isWaterMarkEnabled = layoutStore.isWaterMarkEnabled,
|
|
57
|
-
localUser = layoutStore.localUser
|
|
57
|
+
localUser = layoutStore.localUser,
|
|
58
|
+
setAsideWidth = layoutStore.setAsideWidth,
|
|
59
|
+
toggleAside = layoutStore.toggleAside,
|
|
60
|
+
asideWidthChanged = layoutStore.asideWidthChanged;
|
|
58
61
|
var _useDelayedMeasure = (0, _hooks.useDelayedMeasure)(),
|
|
59
62
|
_useDelayedMeasure2 = (0, _slicedToArray2["default"])(_useDelayedMeasure, 2),
|
|
60
63
|
_ref = _useDelayedMeasure2[0],
|
|
@@ -77,10 +80,10 @@ var Layout = exports.Layout = (0, _mobxReact.observer)(function () {
|
|
|
77
80
|
// !aside && toggleAside(true);
|
|
78
81
|
// return clamped;
|
|
79
82
|
// });
|
|
80
|
-
|
|
83
|
+
setAsideWidth(clamped);
|
|
81
84
|
} else {
|
|
82
|
-
|
|
83
|
-
|
|
85
|
+
aside && toggleAside(false);
|
|
86
|
+
asideWidthChanged(0);
|
|
84
87
|
}
|
|
85
88
|
};
|
|
86
89
|
var onPointerUp = function onPointerUp() {
|
|
@@ -4,6 +4,7 @@ require("core-js/modules/es.array.for-each.js");
|
|
|
4
4
|
require("core-js/modules/es.object.define-property.js");
|
|
5
5
|
require("core-js/modules/es.object.keys.js");
|
|
6
6
|
require("core-js/modules/es.object.to-string.js");
|
|
7
|
+
require("core-js/modules/esnext.async-iterator.for-each.js");
|
|
7
8
|
require("core-js/modules/esnext.iterator.constructor.js");
|
|
8
9
|
require("core-js/modules/esnext.iterator.for-each.js");
|
|
9
10
|
require("core-js/modules/web.dom-collections.for-each.js");
|
|
@@ -125,7 +125,7 @@
|
|
|
125
125
|
opacity: 1;
|
|
126
126
|
}
|
|
127
127
|
.fcr-member-window-pin {
|
|
128
|
-
display:
|
|
128
|
+
display: none;
|
|
129
129
|
justify-content: center;
|
|
130
130
|
align-items: center;
|
|
131
131
|
position: absolute;
|
|
@@ -135,12 +135,13 @@
|
|
|
135
135
|
height: 26px;
|
|
136
136
|
border-radius: var(--fcr_cornerradius_xs);
|
|
137
137
|
background-color: var(--fcr_ui_scene_view_toast);
|
|
138
|
-
opacity: 0;
|
|
139
|
-
transition: opacity 0.2s;
|
|
138
|
+
/* opacity: 0; */
|
|
139
|
+
/* transition: opacity 0.2s; */
|
|
140
140
|
z-index: 3;
|
|
141
141
|
}
|
|
142
142
|
.fcr-member-window-pin-show {
|
|
143
|
-
opacity: 1;
|
|
143
|
+
/* opacity: 1; */
|
|
144
|
+
display: flex;
|
|
144
145
|
}
|
|
145
146
|
.fcr-member-board:hover .fcr-user-window-actions-top,
|
|
146
147
|
.fcr-member-window:hover .fcr-user-window-actions-top {
|
|
@@ -160,6 +161,11 @@
|
|
|
160
161
|
margin-left: 0px;
|
|
161
162
|
display: flex;
|
|
162
163
|
}
|
|
164
|
+
|
|
165
|
+
.fcr-member-window-members-sharebtn-large {
|
|
166
|
+
height: 24px;
|
|
167
|
+
margin-right: 6px;
|
|
168
|
+
}
|
|
163
169
|
/* fcr-member-window-action start */
|
|
164
170
|
|
|
165
171
|
.fcr-user-window-actions {
|
|
@@ -199,7 +205,7 @@
|
|
|
199
205
|
overflow: hidden;
|
|
200
206
|
}
|
|
201
207
|
.fcr-user-window-actions-bottom-layout-info {
|
|
202
|
-
border-radius: var(--
|
|
208
|
+
border-radius: var(--fcr_cornerradius_xs);
|
|
203
209
|
background-color: var(--fcr_ui_scene_view_toast);
|
|
204
210
|
display: inline-flex;
|
|
205
211
|
align-items: center;
|
|
@@ -218,13 +224,12 @@
|
|
|
218
224
|
}
|
|
219
225
|
.fcr-member-window-gallery .fcr-user-window-actions-bottom {
|
|
220
226
|
height: 24px;
|
|
221
|
-
border-radius: var(--fcr_cornerradius_s);
|
|
222
227
|
font-size: 12px;
|
|
223
228
|
}
|
|
224
229
|
|
|
225
230
|
.fcr-user-window-actions-tag {
|
|
226
231
|
height: 18px;
|
|
227
|
-
border-radius: var(--
|
|
232
|
+
border-radius: var(--fcr_cornerradius_xs);
|
|
228
233
|
display: inline-flex;
|
|
229
234
|
align-items: center;
|
|
230
235
|
white-space: nowrap;
|
|
@@ -232,14 +237,14 @@
|
|
|
232
237
|
|
|
233
238
|
.fcr-member-window-gallery .fcr-user-window-actions-tag {
|
|
234
239
|
height: 24px;
|
|
235
|
-
border-radius: var(--
|
|
240
|
+
border-radius: var(--fcr_cornerradius_xs);
|
|
236
241
|
}
|
|
237
242
|
|
|
238
243
|
.fcr-user-window-actions-tag-host {
|
|
239
244
|
color: var(--fcr_ui_scene_white10);
|
|
240
245
|
background: linear-gradient(90deg, #4262ff, #7c79ff);
|
|
241
246
|
padding: 0 8px;
|
|
242
|
-
margin-right: 10px;
|
|
247
|
+
/* margin-right: 10px; */
|
|
243
248
|
}
|
|
244
249
|
|
|
245
250
|
.fcr-user-window-actions-tag-host:has(svg) {
|
|
@@ -306,6 +311,10 @@
|
|
|
306
311
|
text-overflow: ellipsis;
|
|
307
312
|
}
|
|
308
313
|
|
|
314
|
+
.fcr-user-window-actions-bottom .fcr-user-window-actions-name.ml-5 {
|
|
315
|
+
margin-left: 5px;
|
|
316
|
+
}
|
|
317
|
+
|
|
309
318
|
.fcr-user-window-actions-name-isme {
|
|
310
319
|
font-weight: normal;
|
|
311
320
|
}
|
|
@@ -321,6 +330,10 @@
|
|
|
321
330
|
display: block;
|
|
322
331
|
}
|
|
323
332
|
|
|
333
|
+
.member-window-actions__more-actions {
|
|
334
|
+
padding: 0;
|
|
335
|
+
}
|
|
336
|
+
|
|
324
337
|
/* .fcr-member-window-gallery .fcr-user-window-actions-name {
|
|
325
338
|
padding: 0 4px;
|
|
326
339
|
} */
|
|
@@ -41,7 +41,7 @@ export declare const MemberWindowActions: ({ windowData, iconSize, windowSize, o
|
|
|
41
41
|
showRotation: boolean;
|
|
42
42
|
interpreterUsers: FcrInterpreterUserInfo[];
|
|
43
43
|
interpreterState: boolean;
|
|
44
|
-
handleRename: () => void;
|
|
44
|
+
handleRename: (userId: string) => void;
|
|
45
45
|
renderListLength?: number;
|
|
46
46
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
47
47
|
interface MemberBoardProps {
|