fcr-ui-scene 3.3.1 → 3.4.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/icon.png +0 -0
- package/lib/common/device-store.d.ts +21 -11
- package/lib/common/device-store.js +236 -151
- package/lib/common/device-stream-store.d.ts +22 -4
- package/lib/common/device-stream-store.js +297 -113
- package/lib/common/event-store.d.ts +19 -10
- package/lib/common/event-store.js +28 -10
- package/lib/common/remote-renderer.d.ts +15 -0
- package/lib/common/remote-renderer.js +138 -0
- package/lib/common/room-store.d.ts +21 -18
- package/lib/common/room-store.js +54 -47
- package/lib/common/security-store.d.ts +35 -27
- package/lib/common/security-store.js +221 -383
- package/lib/creator.d.ts +3 -1
- package/lib/creator.js +13 -1
- package/lib/electron/app.js +43 -0
- package/lib/electron/bootstrap-sdk.js +2 -1
- package/lib/electron/injections.d.ts +6 -4
- package/lib/electron/injections.js +138 -113
- package/lib/electron/logger.js +3 -1
- package/lib/electron/main.js +13 -1
- package/lib/electron/plugins/devtool-shortcut.d.ts +2 -0
- package/lib/electron/plugins/devtool-shortcut.js +19 -0
- package/lib/electron/preload.js +5 -3
- package/lib/fragments/control-bar/cloud-recording-buttons.js +1 -1
- package/lib/fragments/control-bar/control-bar-store.d.ts +11 -1
- package/lib/fragments/control-bar/control-bar-store.js +196 -111
- package/lib/fragments/control-bar/index.js +6 -0
- package/lib/fragments/control-bar/more-actions/index.js +1 -1
- package/lib/fragments/control-bar/security-content/index.css +65 -0
- package/lib/fragments/control-bar/security-content/index.js +66 -2
- package/lib/fragments/control-bar/share-state-nav/index.js +1 -1
- package/lib/fragments/control-bar/view.js +15 -6
- 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 +4 -2
- 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/transfer-position-icon/index.d.ts +11 -0
- package/lib/fragments/toolbar/components/transfer-position-icon/index.js +46 -0
- 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/hooks/meeting-time.d.ts +1 -1
- package/lib/modules/Interpreter/action/add-btn/index.css +4 -0
- package/lib/modules/Interpreter/action/add-btn/index.d.ts +11 -0
- package/lib/modules/Interpreter/action/add-btn/index.js +43 -0
- package/lib/modules/Interpreter/action/delete-btn/index.css +14 -0
- package/lib/modules/Interpreter/action/delete-btn/index.d.ts +6 -0
- package/lib/modules/Interpreter/action/delete-btn/index.js +38 -0
- package/lib/modules/Interpreter/action/edit-btn/index.css +3 -0
- package/lib/modules/Interpreter/action/edit-btn/index.d.ts +5 -0
- package/lib/modules/Interpreter/action/edit-btn/index.js +49 -0
- package/lib/modules/Interpreter/action/switch-btn/index.d.ts +5 -0
- package/lib/modules/Interpreter/action/switch-btn/index.js +52 -0
- package/lib/modules/Interpreter/add-button/index.js +6 -4
- package/lib/modules/Interpreter/constant.d.ts +23 -12
- package/lib/modules/Interpreter/constant.js +53 -13
- package/lib/modules/Interpreter/dialog-content/index.js +2 -2
- package/lib/modules/Interpreter/footer/components/interpreter-btn/index.js +10 -13
- package/lib/modules/Interpreter/footer/components/set-btn/index.js +8 -5
- package/lib/modules/Interpreter/footer/components/tooltip-wrapper/index.js +3 -1
- package/lib/modules/Interpreter/footer/index.css +5 -5
- package/lib/modules/Interpreter/footer/index.d.ts +4 -1
- package/lib/modules/Interpreter/footer/index.js +8 -17
- package/lib/modules/Interpreter/index.css +10 -3
- package/lib/modules/Interpreter/index.d.ts +3 -1
- package/lib/modules/Interpreter/index.js +11 -5
- package/lib/modules/Interpreter/interpreter-list/index.css +1 -18
- package/lib/modules/Interpreter/interpreter-list/index.d.ts +4 -1
- package/lib/modules/Interpreter/interpreter-list/index.js +13 -32
- package/lib/modules/Interpreter/interpreter-list/interpreter-item/components/pick-language/index.css +24 -3
- package/lib/modules/Interpreter/interpreter-list/interpreter-item/components/pick-language/index.d.ts +3 -0
- package/lib/modules/Interpreter/interpreter-list/interpreter-item/components/pick-language/index.js +51 -13
- package/lib/modules/Interpreter/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_ar.png +0 -0
- package/lib/modules/Interpreter/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_cn.png +0 -0
- package/lib/modules/Interpreter/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_de.png +0 -0
- package/lib/modules/Interpreter/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_en.png +0 -0
- package/lib/modules/Interpreter/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_es.png +0 -0
- package/lib/modules/Interpreter/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_fr.png +0 -0
- package/lib/modules/Interpreter/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_hi.png +0 -0
- package/lib/modules/Interpreter/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_id.png +0 -0
- package/lib/modules/Interpreter/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_it.png +0 -0
- package/lib/modules/Interpreter/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_jp.png +0 -0
- package/lib/modules/Interpreter/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_ko.png +0 -0
- package/lib/modules/Interpreter/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_ms.png +0 -0
- package/lib/modules/Interpreter/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_pt.png +0 -0
- package/lib/modules/Interpreter/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_ru.png +0 -0
- package/lib/modules/Interpreter/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_th.png +0 -0
- package/lib/modules/Interpreter/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_tr.png +0 -0
- package/lib/modules/Interpreter/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_vi.png +0 -0
- package/lib/modules/Interpreter/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/index.d.ts +9 -4
- package/lib/modules/Interpreter/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/index.js +98 -39
- package/lib/modules/Interpreter/interpreter-list/interpreter-item/components/pick-user/index.css +12 -5
- package/lib/modules/Interpreter/interpreter-list/interpreter-item/components/pick-user/index.d.ts +1 -1
- package/lib/modules/Interpreter/interpreter-list/interpreter-item/components/pick-user/index.js +76 -40
- package/lib/modules/Interpreter/interpreter-list/interpreter-item/index.css +3 -5
- package/lib/modules/Interpreter/interpreter-list/interpreter-item/index.d.ts +1 -1
- package/lib/modules/Interpreter/interpreter-list/interpreter-item/index.js +7 -24
- package/lib/modules/Interpreter/store.d.ts +48 -26
- package/lib/modules/Interpreter/store.js +919 -669
- package/lib/modules/Interpreter/tooltip-wrapper/index.d.ts +6 -0
- package/lib/modules/Interpreter/tooltip-wrapper/index.js +30 -0
- package/lib/modules/Interpreter/view.js +48 -11
- package/lib/modules/action-bar/Interpreter/index.d.ts +1 -1
- package/lib/modules/action-bar/Interpreter/index.js +7 -10
- package/lib/modules/action-bar/action-bar-collapes-items.d.ts +4 -1
- package/lib/modules/action-bar/action-bar-collapes-items.js +32 -15
- package/lib/modules/action-bar/apps/app-item/index.css +35 -0
- package/lib/modules/action-bar/apps/app-item/index.d.ts +12 -0
- package/{dist/electron/bootstrap-dev.js → lib/modules/action-bar/apps/app-item/index.js} +38 -28
- package/lib/modules/action-bar/apps/appitems.d.ts +4 -1
- package/lib/modules/action-bar/apps/appitems.js +30 -25
- package/lib/modules/action-bar/apps/index.css +5 -3
- package/lib/modules/action-bar/apps/index.js +13 -14
- package/lib/modules/action-bar/apps/useAppItemOptions.d.ts +9 -0
- package/lib/modules/action-bar/apps/useAppItemOptions.js +29 -0
- package/lib/modules/action-bar/apps/useBeautyBackground.d.ts +10 -0
- package/lib/modules/action-bar/apps/useBeautyBackground.js +34 -0
- package/lib/modules/action-bar/apps/useInterpreter.d.ts +14 -0
- package/lib/modules/action-bar/apps/useInterpreter.js +35 -0
- package/lib/modules/action-bar/apps/useLiveStreaming.d.ts +16 -0
- package/lib/modules/action-bar/apps/useLiveStreaming.js +41 -0
- package/lib/modules/action-bar/chat/index.js +3 -3
- package/lib/modules/action-bar/device/index.js +22 -24
- package/lib/modules/action-bar/index.css +30 -3
- package/lib/modules/action-bar/index.d.ts +8 -2
- package/lib/modules/action-bar/index.dev.js +6 -3
- package/lib/modules/action-bar/index.js +25 -61
- package/lib/modules/action-bar/leave/assign-host.d.ts +1 -1
- package/lib/modules/action-bar/leave/index.css +10 -0
- package/lib/modules/action-bar/leave/index.js +66 -39
- package/lib/modules/action-bar/leave/leave-meeting.d.ts +3 -2
- package/lib/modules/action-bar/leave/leave-meeting.js +13 -4
- package/lib/modules/action-bar/live-streaming/index.js +3 -3
- package/lib/modules/action-bar/more/index.js +9 -6
- package/lib/modules/action-bar/more/poppover-content.js +33 -12
- package/lib/modules/action-bar/participants/index.js +2 -2
- package/lib/modules/action-bar/record/index.js +4 -4
- package/lib/modules/action-bar/screen-share/index.js +4 -4
- package/lib/modules/action-bar/screen-share/submenu.js +4 -4
- package/lib/modules/action-bar/security/drop-menu.js +49 -11
- package/lib/modules/action-bar/security/index.js +11 -6
- package/lib/modules/action-bar/settings/index.js +4 -4
- package/lib/modules/action-bar/smaller.js +4 -4
- package/lib/modules/action-bar/store.d.ts +54 -11
- package/lib/modules/action-bar/store.js +390 -164
- package/lib/modules/action-bar/switch-input-language-room/index.d.ts +1 -2
- package/lib/modules/action-bar/switch-input-language-room/index.js +134 -43
- package/lib/modules/action-bar/switch-output-language-room/drop-menu.js +3 -3
- package/lib/modules/action-bar/switch-output-language-room/guide-tooltip/index.d.ts +7 -1
- package/lib/modules/action-bar/switch-output-language-room/guide-tooltip/index.js +32 -19
- package/lib/modules/action-bar/switch-output-language-room/index.js +134 -69
- package/lib/modules/action-bar/switch-output-language-room/notification-bar/components/interpreter/index.css +12 -8
- package/lib/modules/action-bar/switch-output-language-room/notification-bar/components/interpreter/index.js +13 -7
- package/lib/modules/action-bar/switch-output-language-room/notification-bar/components/virtual-image/index.css +52 -4
- package/lib/modules/action-bar/switch-output-language-room/notification-bar/components/virtual-image/index.d.ts +1 -0
- package/lib/modules/action-bar/switch-output-language-room/notification-bar/components/virtual-image/index.js +12 -10
- package/lib/modules/action-bar/switch-output-language-room/notification-bar/dome.png +0 -0
- package/lib/modules/action-bar/switch-output-language-room/notification-bar/index.css +6 -3
- package/lib/modules/action-bar/switch-output-language-room/notification-bar/index.js +30 -13
- package/lib/modules/action-bar/view.js +25 -11
- package/lib/modules/audio-stream/index.d.ts +32 -9
- package/lib/modules/audio-stream/index.js +258 -57
- package/lib/modules/chat/chat-bar/index.css +1 -0
- package/lib/modules/chat/chat-bar/index.d.ts +3 -3
- package/lib/modules/chat/chat-bar/index.js +14 -16
- package/lib/modules/chat/chat-select/index.css +7 -0
- package/lib/modules/chat/chat-select/index.d.ts +1 -1
- package/lib/modules/chat/chat-select/index.js +18 -4
- package/lib/modules/chat/chat.js +14 -26
- package/lib/modules/chat/index.d.ts +5 -3
- package/lib/modules/chat/index.dev.js +7 -3
- package/lib/modules/chat/index.js +16 -9
- package/lib/modules/chat/message-list.js +8 -3
- package/lib/modules/chat/store.d.ts +12 -6
- package/lib/modules/chat/store.js +109 -69
- package/lib/modules/components/device-control/components/audio-menu/index.d.ts +6 -0
- package/lib/modules/components/device-control/components/audio-menu/index.js +156 -0
- package/lib/modules/components/device-control/components/carmera/index.d.ts +3 -0
- package/lib/modules/components/device-control/components/carmera/index.js +111 -0
- package/lib/modules/components/device-control/components/microphone/index.d.ts +7 -0
- package/lib/modules/components/device-control/components/microphone/index.js +170 -0
- package/lib/modules/components/device-control/components/none-menu/index.d.ts +4 -0
- package/lib/modules/components/device-control/components/none-menu/index.js +68 -0
- package/lib/modules/components/device-control/components/phone-menu/index.d.ts +4 -0
- package/lib/modules/components/device-control/components/phone-menu/index.js +61 -0
- package/lib/modules/components/device-control/components/video-menu/index.d.ts +5 -0
- package/lib/modules/components/device-control/components/video-menu/index.js +111 -0
- package/lib/modules/components/device-control/hooks/index.d.ts +9 -0
- package/lib/modules/components/device-control/hooks/index.js +42 -0
- package/lib/modules/components/device-control/index.css +163 -0
- package/lib/modules/components/device-control/index.d.ts +3 -0
- package/lib/modules/components/device-control/index.js +21 -0
- package/lib/modules/components/device-control/store.d.ts +42 -0
- package/lib/modules/components/device-control/store.js +256 -0
- package/lib/modules/components/device-control/type.d.ts +6 -0
- package/lib/modules/components/device-control/type.js +13 -0
- package/lib/modules/components/security-menu/index.css +35 -0
- package/lib/modules/components/security-menu/index.d.ts +5 -0
- package/lib/modules/components/security-menu/index.js +315 -0
- package/lib/modules/components/toast/index.css +12 -0
- package/lib/modules/components/toast/index.d.ts +10 -0
- package/lib/modules/components/toast/index.js +66 -0
- package/lib/modules/components/toast/store.d.ts +17 -0
- package/lib/modules/components/toast/store.js +149 -0
- package/lib/modules/components/toast/view.d.ts +2 -0
- package/lib/modules/components/toast/view.js +35 -0
- package/lib/modules/connection-gateway/components/computer/index.js +6 -6
- package/lib/modules/connection-gateway/components/phone/components/callinfo/index.css +1 -1
- package/lib/modules/connection-gateway/components/phone/components/callinfo/index.d.ts +1 -1
- package/lib/modules/connection-gateway/components/phone/index.js +3 -2
- package/lib/modules/connection-gateway/components/tabs/index.js +2 -1
- package/lib/modules/connection-gateway/index.d.ts +1 -1
- package/lib/modules/connection-gateway/index.js +1 -1
- package/lib/modules/connection-gateway/store.d.ts +8 -12
- package/lib/modules/connection-gateway/store.js +87 -111
- package/lib/modules/control-bar/components/cloud-recording-buttons.d.ts +1 -0
- package/lib/modules/control-bar/components/cloud-recording-buttons.js +67 -0
- package/lib/modules/control-bar/components/meeting-details/index.css +133 -0
- package/lib/modules/control-bar/components/meeting-details/index.d.ts +2 -0
- package/lib/modules/control-bar/components/meeting-details/index.js +251 -0
- package/lib/modules/control-bar/components/more-actions/index.css +72 -0
- package/lib/modules/control-bar/components/more-actions/index.d.ts +7 -0
- package/lib/modules/control-bar/components/more-actions/index.js +182 -0
- package/lib/modules/control-bar/components/share-state-nav/index.css +74 -0
- package/lib/modules/control-bar/components/share-state-nav/index.d.ts +10 -0
- package/lib/modules/control-bar/components/share-state-nav/index.js +116 -0
- package/lib/modules/control-bar/components/stop-live-streaming/index.d.ts +1 -0
- package/lib/modules/control-bar/components/stop-live-streaming/index.js +36 -0
- package/lib/modules/control-bar/components/stop-live-streaming/stop-button.d.ts +6 -0
- package/lib/modules/control-bar/components/stop-live-streaming/stop-button.js +35 -0
- package/lib/modules/control-bar/components/transfer-position-icon/index.d.ts +11 -0
- package/lib/modules/control-bar/components/transfer-position-icon/index.js +46 -0
- package/lib/modules/control-bar/index.css +341 -0
- package/lib/modules/control-bar/index.d.ts +29 -0
- package/lib/modules/control-bar/index.js +111 -0
- package/lib/modules/control-bar/store.d.ts +111 -0
- package/lib/modules/control-bar/store.js +881 -0
- package/lib/modules/control-bar/type.d.ts +10 -0
- package/lib/modules/control-bar/type.js +18 -0
- package/lib/modules/control-bar/view.d.ts +1 -0
- package/lib/modules/control-bar/view.js +351 -0
- package/lib/modules/device-pretest/assets/virtual-backdound-resources.d.ts +9 -0
- package/lib/modules/device-pretest/assets/virtual-backdound-resources.js +7 -1
- package/lib/modules/device-pretest/audio-preview/speaker-control.js +2 -2
- package/lib/modules/device-pretest/index.js +2 -2
- package/lib/modules/device-pretest/settings/beauty.d.ts +1 -1
- package/lib/modules/device-pretest/settings/video-settings-basic.js +2 -2
- package/lib/modules/device-pretest/store.d.ts +2 -1
- package/lib/modules/device-pretest/store.js +7 -7
- package/lib/modules/dialog/components/Interpreter/electron.js +35 -54
- package/lib/modules/dialog/components/Interpreter/index.js +8 -7
- package/lib/modules/dialog/components/chat/electron.d.ts +1 -1
- package/lib/modules/dialog/components/chat/electron.js +17 -44
- package/lib/modules/dialog/components/chat/index.js +3 -3
- package/lib/modules/dialog/components/confirm/electron.d.ts +1 -1
- package/lib/modules/dialog/components/confirm/electron.js +38 -70
- package/lib/modules/dialog/components/confirm/index.d.ts +1 -9
- package/lib/modules/dialog/components/confirm/index.js +31 -77
- package/lib/modules/dialog/components/connection-gateway/electron.d.ts +4 -1
- package/lib/modules/dialog/components/connection-gateway/electron.js +30 -40
- package/lib/modules/dialog/components/connection-gateway/index.d.ts +6 -1
- package/lib/modules/dialog/components/connection-gateway/index.js +11 -6
- package/lib/modules/dialog/components/control-bar/index.d.ts +7 -0
- package/lib/modules/dialog/components/control-bar/index.js +42 -0
- package/lib/modules/dialog/components/device-setting/electron.js +37 -56
- package/lib/modules/dialog/components/device-setting/index.js +4 -3
- package/lib/modules/dialog/components/invite/index.d.ts +3 -0
- package/lib/modules/dialog/components/invite/index.js +68 -0
- package/lib/modules/dialog/components/live-streaming/index.d.ts +4 -0
- package/lib/modules/dialog/components/live-streaming/index.js +88 -0
- package/lib/modules/dialog/components/operation-waiting-room/electron.js +28 -75
- package/lib/modules/dialog/components/operation-waiting-room/index.js +4 -4
- package/lib/modules/dialog/components/participant/electron.js +25 -74
- package/lib/modules/dialog/components/participant/index.js +6 -3
- package/lib/modules/dialog/components/remove-admit-waiting-room/electron.d.ts +8 -1
- package/lib/modules/dialog/components/remove-admit-waiting-room/electron.js +22 -75
- package/lib/modules/dialog/components/remove-admit-waiting-room/index.js +3 -3
- package/lib/modules/dialog/components/share-screen-selection/index.js +10 -28
- package/lib/modules/dialog/components/switch-language-channels/electron.js +4 -4
- package/lib/modules/dialog/components/switch-language-channels/index.js +3 -3
- package/lib/modules/dialog/components/system-preference/bg1.png +0 -0
- package/lib/modules/dialog/components/system-preference/bg2.png +0 -0
- package/lib/modules/dialog/components/system-preference/electron.d.ts +5 -0
- package/lib/modules/dialog/components/system-preference/electron.js +42 -0
- package/lib/modules/dialog/components/system-preference/index.css +49 -0
- package/lib/modules/dialog/components/system-preference/index.d.ts +5 -0
- package/lib/modules/dialog/components/system-preference/index.js +150 -0
- package/lib/modules/dialog/components/toast/index.d.ts +3 -0
- package/lib/modules/dialog/components/toast/index.js +62 -0
- package/lib/modules/dialog/components/whiteboard/index.js +2 -2
- package/lib/modules/dialog/dialogs.d.ts +1 -5
- package/lib/modules/dialog/dialogs.js +23 -177
- package/lib/modules/dialog/hooks/useElectron.d.ts +26 -0
- package/lib/modules/dialog/hooks/useElectron.js +109 -0
- package/lib/modules/dialog/index.css +7 -2
- package/lib/modules/dialog/index.d.ts +6 -6
- package/lib/modules/dialog/index.js +9 -18
- package/lib/modules/dialog/store.d.ts +16 -18
- package/lib/modules/dialog/store.js +114 -164
- package/lib/modules/dialog/view.js +2 -2
- package/lib/modules/event-confirm/index.css +12 -0
- package/lib/modules/event-confirm/index.d.ts +10 -0
- package/lib/modules/event-confirm/index.js +55 -0
- package/lib/modules/event-confirm/store.d.ts +18 -0
- package/lib/modules/event-confirm/store.js +172 -0
- package/lib/modules/event-confirm/view.d.ts +2 -0
- package/lib/modules/event-confirm/view.js +156 -0
- package/lib/modules/event-toast/index.css +16 -0
- package/lib/modules/event-toast/index.d.ts +1 -1
- package/lib/modules/event-toast/index.js +19 -3
- package/lib/modules/event-toast/store.d.ts +13 -0
- package/lib/modules/event-toast/store.js +114 -17
- package/lib/modules/event-toast/view.d.ts +4 -1
- package/lib/modules/event-toast/view.js +28 -4
- package/lib/modules/invite/index.d.ts +1 -1
- package/lib/modules/invite/index.js +13 -3
- package/lib/modules/invite/pstn-invite.js +6 -9
- package/lib/modules/invite/store.d.ts +24 -25
- package/lib/modules/invite/store.js +148 -147
- package/lib/modules/invite/view.js +2 -2
- package/lib/modules/invite/voip-invite.js +2 -3
- package/lib/modules/layout/components/Aside.js +3 -3
- package/lib/modules/layout/components/Carousel.js +15 -9
- package/lib/modules/layout/components/Gallery.js +25 -17
- package/lib/modules/layout/components/Layout.js +11 -6
- package/lib/modules/layout/components/index.css +11 -4
- package/lib/modules/layout/index.css +1 -0
- package/lib/modules/layout/index.d.ts +4 -2
- package/lib/modules/layout/index.dev.js +20 -10
- package/lib/modules/layout/index.js +24 -18
- package/lib/modules/layout/member-window/index.css +95 -10
- package/lib/modules/layout/member-window/index.d.ts +10 -3
- package/lib/modules/layout/member-window/index.js +205 -112
- package/lib/modules/layout/store.d.ts +20 -7
- package/lib/modules/layout/store.js +137 -65
- package/lib/modules/layout/type.d.ts +2 -2
- package/lib/modules/layout/video-window-datasource.d.ts +5 -3
- package/lib/modules/layout/video-window-datasource.js +61 -26
- package/lib/modules/live-streaming/index.d.ts +1 -2
- package/lib/modules/live-streaming/index.js +13 -29
- package/lib/modules/live-streaming/store.d.ts +3 -7
- package/lib/modules/live-streaming/store.js +7 -73
- package/lib/modules/live-streaming/view.js +3 -3
- package/lib/modules/notification/index.css +2 -1
- package/lib/modules/notification/index.js +13 -3
- package/lib/modules/notification/interpreter-status/index.css +5 -1
- package/lib/modules/notification/interpreter-status/index.js +4 -1
- package/lib/modules/notification/store.d.ts +1 -0
- package/lib/modules/notification/store.js +4 -2
- package/lib/modules/notification/view.js +2 -2
- package/lib/modules/offscreen-pulling/index.d.ts +19 -0
- package/lib/modules/offscreen-pulling/index.js +127 -0
- package/lib/modules/participant/attendee/index.css +3 -0
- package/lib/modules/participant/attendee/index.d.ts +14 -3
- package/lib/modules/participant/attendee/index.js +87 -33
- 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/drop-menu/index.css +59 -0
- package/lib/modules/participant/components/drop-menu/index.d.ts +2 -0
- package/lib/modules/participant/components/drop-menu/index.js +189 -0
- package/lib/modules/participant/components/footer/buttons.d.ts +7 -0
- package/lib/modules/participant/components/footer/buttons.js +53 -0
- package/lib/modules/participant/components/footer/index.d.ts +4 -0
- package/lib/modules/participant/components/footer/index.js +37 -0
- package/lib/modules/participant/components/merge/index.d.ts +11 -0
- package/lib/modules/participant/components/merge/index.js +49 -0
- package/lib/modules/participant/components/mute-all/index.d.ts +9 -0
- package/lib/modules/participant/components/mute-all/index.js +78 -0
- package/lib/modules/participant/components/participants/index.d.ts +2 -0
- package/lib/modules/participant/components/participants/index.js +201 -0
- package/lib/modules/participant/components/rename/index.d.ts +4 -0
- package/lib/modules/participant/components/rename/index.js +45 -0
- package/lib/modules/participant/index.css +6 -0
- package/lib/modules/participant/index.d.ts +8 -6
- package/lib/modules/participant/index.dev.js +10 -4
- package/lib/modules/participant/index.js +13 -33
- package/lib/modules/participant/member-list-data-source.d.ts +1 -1
- package/lib/modules/participant/member-list-data-source.js +3 -3
- package/lib/modules/participant/store.d.ts +38 -27
- package/lib/modules/participant/store.js +456 -292
- package/lib/modules/participant/type.d.ts +1 -1
- package/lib/modules/participant/view.d.ts +0 -9
- package/lib/modules/participant/view.js +8 -346
- package/lib/modules/setting/audio-settings/audio-settings.js +10 -10
- package/lib/modules/setting/dialog-wrapper.js +2 -2
- package/lib/modules/setting/general-settings/general-settings.js +2 -2
- package/lib/modules/setting/index.d.ts +3 -2
- package/lib/modules/setting/index.dev.js +1 -1
- package/lib/modules/setting/index.js +7 -3
- package/lib/modules/setting/minutes-settings/minutes-settings.js +2 -2
- package/lib/modules/setting/state/index.js +3 -3
- package/lib/modules/setting/storage-settings/storage-settings.js +2 -2
- package/lib/modules/setting/store.d.ts +16 -13
- package/lib/modules/setting/store.js +83 -53
- package/lib/modules/setting/translate-settings/translate-settings.js +2 -2
- package/lib/modules/setting/video-settings/video-settings-basic.js +2 -2
- package/lib/modules/setting/video-settings/video-settings.js +2 -11
- package/lib/modules/setting/view.js +1 -2
- package/lib/modules/share-screen/index.d.ts +1 -5
- package/lib/modules/share-screen/index.dev.js +8 -16
- package/lib/modules/share-screen/index.js +2 -99
- package/lib/modules/share-screen/selection/index.js +51 -40
- package/lib/modules/share-screen/share-state-bar/index.js +1 -1
- package/lib/modules/share-screen/store.d.ts +13 -47
- package/lib/modules/share-screen/store.js +470 -924
- package/lib/modules/share-screen/view.js +6 -19
- package/lib/modules/sound-effect/index.d.ts +54 -0
- package/lib/modules/sound-effect/index.js +295 -0
- package/lib/modules/sound-effect/sound-effect-player.d.ts +12 -0
- package/lib/modules/sound-effect/sound-effect-player.js +57 -0
- package/lib/modules/state-bar/index.css +3 -0
- package/lib/modules/state-bar/index.d.ts +8 -4
- package/lib/modules/state-bar/index.js +37 -23
- package/lib/modules/state-bar/layout-config.js +6 -7
- package/lib/modules/state-bar/live-streaming-state.js +10 -15
- package/lib/modules/state-bar/meeting-detail.css +32 -13
- package/lib/modules/state-bar/meeting-details.js +118 -58
- package/lib/modules/state-bar/meeting-network-state.js +4 -4
- package/lib/modules/state-bar/meeting-time.js +2 -2
- package/lib/modules/state-bar/network-quality.js +2 -2
- package/lib/modules/state-bar/recording.js +2 -3
- package/lib/modules/state-bar/store.d.ts +9 -6
- package/lib/modules/state-bar/store.js +45 -41
- package/lib/modules/state-bar/view.js +41 -28
- package/lib/modules/video-window/deviceState/index.d.ts +2 -1
- package/lib/modules/video-window/deviceState/index.js +8 -8
- package/lib/modules/video-window/index.d.ts +2 -1
- package/lib/modules/video-window/index.js +23 -16
- package/lib/modules/video-window/members/index.js +14 -8
- package/lib/modules/video-window/speaking/index.js +2 -2
- package/lib/modules/video-window/store.d.ts +13 -5
- package/lib/modules/video-window/store.js +73 -20
- package/lib/modules/video-window/topControl/index.js +2 -2
- package/lib/modules/video-window/type.d.ts +0 -5
- package/lib/modules/video-window/type.js +1 -7
- package/lib/modules/video-window/view.js +2 -2
- package/lib/modules/waiting-room-layout/index.css +17 -3
- package/lib/modules/waiting-room-layout/index.js +13 -3
- package/lib/modules/waiting-room-layout/store.d.ts +5 -2
- package/lib/modules/waiting-room-layout/store.js +12 -5
- package/lib/modules/waiting-room-layout/view.js +43 -33
- package/lib/modules/whiteboard/app.js +2 -2
- package/lib/modules/whiteboard/components/control-bar/index.js +4 -6
- package/lib/modules/whiteboard/components/control-bar/store.d.ts +2 -2
- package/lib/modules/whiteboard/components/control-bar/store.js +1 -1
- package/lib/modules/whiteboard/components/loading/index.js +2 -2
- package/lib/modules/whiteboard/components/multi-window/index.js +2 -2
- package/lib/modules/whiteboard/components/progress/electron.js +3 -3
- package/lib/modules/whiteboard/components/switch-theme/index.css +1 -0
- package/lib/modules/whiteboard/components/switch-theme/index.js +19 -9
- package/lib/modules/whiteboard/components/toolbar/components/eraser-picker.js +1 -1
- package/lib/modules/whiteboard/components/toolbar/hooks/index.js +1 -1
- package/lib/modules/whiteboard/components/toolbar/store.d.ts +1 -1
- package/lib/modules/whiteboard/context.d.ts +1 -1
- package/lib/modules/whiteboard/context.js +2 -2
- package/lib/modules/whiteboard/index.d.ts +5 -10
- package/lib/modules/whiteboard/index.js +32 -74
- package/lib/modules/whiteboard/type.d.ts +1 -1
- package/lib/plugins/browser-runtime-plugin.js +24 -3
- package/lib/plugins/electron-rtc-plugin.js +3 -3
- package/lib/plugins/module-dev-plugin.d.ts +1 -1
- package/lib/plugins/module-dev-plugin.js +3 -3
- package/lib/plugins/rtm-plugin.js +3 -3
- package/lib/plugins/web-rtc-plugin.js +3 -3
- package/lib/runtime.d.ts +14 -4
- package/lib/translations/enUS.d.ts +267 -2
- package/lib/translations/enUS.js +373 -103
- package/lib/translations/zhCN.d.ts +267 -3
- package/lib/translations/zhCN.js +299 -30
- package/lib/type.d.ts +13 -4
- package/lib/type.js +4 -4
- package/lib/ui-manager.d.ts +8 -9
- package/lib/ui-manager.js +602 -655
- package/lib/ui-scene.d.ts +3 -3
- package/lib/ui-scene.js +9 -22
- package/lib/utilities/constant.d.ts +44 -155
- package/lib/utilities/constant.js +42 -129
- package/lib/utilities/extract.d.ts +1 -1
- package/lib/utilities/parameters.d.ts +4 -0
- package/lib/utilities/parameters.js +19 -1
- package/lib/utilities/renderer.d.ts +2 -1
- package/lib/utilities/renderer.js +6 -3
- package/lib/utilities/screen-capture-permission.d.ts +1 -0
- package/lib/utilities/screen-capture-permission.js +16 -0
- package/lib/utilities/screen.js +32 -23
- package/lib/utilities/tools.d.ts +10 -1
- package/lib/utilities/tools.js +69 -4
- package/lib/utilities/ui-resources.d.ts +1 -0
- package/lib/utilities/ui-resources.js +5 -2
- package/lib/utilities/video-track-render-context.d.ts +2 -2
- package/package.json +7 -7
- package/public/assets/loading.gif +0 -0
- package/public/index.html +43 -4
- package/dist/electron/app.js +0 -148
- package/dist/electron/bootstrap-sdk.js +0 -56
- package/dist/electron/default-options.js +0 -25
- package/dist/electron/env.js +0 -13
- package/dist/electron/index.js +0 -20
- package/dist/electron/injections.js +0 -702
- package/dist/electron/logger.js +0 -66
- package/dist/electron/main.js +0 -67
- package/dist/electron/plugins/meeting-state.js +0 -39
- package/dist/electron/plugins/screenshot.js +0 -49
- package/dist/electron/preload.js +0 -36
- package/dist/electron/tools.js +0 -66
- package/dist/electron/window.js +0 -124
|
@@ -22,9 +22,8 @@ var _typeof = require("@babel/runtime/helpers/typeof");
|
|
|
22
22
|
Object.defineProperty(exports, "__esModule", {
|
|
23
23
|
value: true
|
|
24
24
|
});
|
|
25
|
-
exports["default"] = exports.allToUser = exports.USER_NONE = exports.USER_ALL = exports.ChatRoomStore = void 0;
|
|
25
|
+
exports["default"] = exports.allToUser = exports.USER_NONE = exports.USER_ALL = exports.StoreContext = exports.ChatRoomStore = void 0;
|
|
26
26
|
exports.isManager = isManager;
|
|
27
|
-
exports.noUser = void 0;
|
|
28
27
|
exports.sortUsers = sortUsers;
|
|
29
28
|
var _regenerator = _interopRequireDefault(require("@babel/runtime/regenerator"));
|
|
30
29
|
require("core-js/modules/es.array.filter.js");
|
|
@@ -78,20 +77,22 @@ var _slicedToArray2 = _interopRequireDefault(require("@babel/runtime/helpers/sli
|
|
|
78
77
|
var _classCallCheck2 = _interopRequireDefault(require("@babel/runtime/helpers/classCallCheck"));
|
|
79
78
|
var _createClass2 = _interopRequireDefault(require("@babel/runtime/helpers/createClass"));
|
|
80
79
|
var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
|
|
81
|
-
var
|
|
80
|
+
var _fcrCore = require("fcr-core");
|
|
82
81
|
var _logger = require("agora-foundation/lib/logger");
|
|
83
82
|
var _mobx = require("mobx");
|
|
84
|
-
var _type = require("
|
|
83
|
+
var _type = require("fcr-core/lib/type");
|
|
85
84
|
var _helper = require("agora-ui-foundation/lib/components/avatar/helper");
|
|
86
85
|
var _decorator = require("agora-foundation/lib/decorator");
|
|
86
|
+
var _securityStore = require("../../common/security-store");
|
|
87
87
|
var _reactVirtualized = require("react-virtualized");
|
|
88
88
|
var _constant = require("../../utilities/constant");
|
|
89
89
|
var _i18n = require("agora-ui-foundation/lib/i18n");
|
|
90
|
-
var _type2 = require("
|
|
91
|
-
var _type3 = require("
|
|
90
|
+
var _type2 = require("fcr-core/lib/room-control/chatroom-control/type");
|
|
91
|
+
var _type3 = require("fcr-core/lib/room-control/type");
|
|
92
92
|
var _observable = require("agora-foundation/lib/utilities/observable");
|
|
93
|
+
var _react = require("react");
|
|
93
94
|
var _ChatStore, _ChatRoomStore;
|
|
94
|
-
var _initProto, _init_chatRoomStores, _init_activeTabIndex, _handleReceiveMessageDecs, _handlerActiveTabDecs, _handleEventDecs, _ref, _initProto2, _init__userInfo, _init_messageList, _init_readMsgIndex, _init_readIdx, _init_viewIdx, _init_historyUnreadCount, _init_hasHistoryMsg, _init_newMsgsUnReadCnt, _init_privateTargetUser, _init_chatLevel, _init_currentUserMap, _init_textMsg, _init_privateTargetList, _init_chatRoomState, _init_hasNewMsg, _init_userCount, _init_unReadMsgCount, _setLastScrollTopDecs, _setMessageListDecs, _sendMessageDecs, _setUnReadMsgCountDecs, _setHasNewMsgDecs, _handleTextMessageReceivedDecs, _getUserCountDecs, _onRemoteUserUpdateDecs, _refreshUserListDecs, _handleNewMsgDecs, _updateReadMsgIndexDecs, _initReadInfoDecs, _updateHistoryUnreadCntDecs, _updateHasHistoryMsgDecs, _updateScrollInfoDecs, _updateViewIdxDecs, _updateReadIdxDecs, _updateFirstMsgIdDecs, _updateHistoryUnReadCountDecs, _updateListDecs, _updateMostRecentHeightDecs, _updateMostRecentWidthDecs, _patchHandleMsgDecs, _forceNotifyMsgsDecs, _resetComponentCacheDecs, _resetTargetUserDecs, _initChatLevelDecs, _setTargetUserDecs, _updateChatLevelDecs, _updateChatTextMsgDecs, _filterChatMemberDecs, _hasSendMessagePermissionDecs, _permitPrivateChatDecs, _handleToastDecs, _handleConnectionUpdatedDecs, _ref3;
|
|
95
|
+
var _initProto, _init_chatRoomStores, _init_activeTabIndex, _init_roomType, _handleReceiveMessageDecs, _handlerActiveTabDecs, _handleEventDecs, _ref, _initProto2, _init__userInfo, _init_messageList, _init_readMsgIndex, _init_readIdx, _init_viewIdx, _init_historyUnreadCount, _init_hasHistoryMsg, _init_newMsgsUnReadCnt, _init_privateTargetUser, _init_chatLevel, _init_currentUserMap, _init_textMsg, _init_privateTargetList, _init_chatRoomState, _init_hasNewMsg, _init_userCount, _init_unReadMsgCount, _setLastScrollTopDecs, _setMessageListDecs, _sendMessageDecs, _setUnReadMsgCountDecs, _setHasNewMsgDecs, _handleTextMessageReceivedDecs, _getUserCountDecs, _onRemoteUserUpdateDecs, _refreshUserListDecs, _handleNewMsgDecs, _updateReadMsgIndexDecs, _initReadInfoDecs, _updateHistoryUnreadCntDecs, _updateHasHistoryMsgDecs, _updateScrollInfoDecs, _updateViewIdxDecs, _updateReadIdxDecs, _updateFirstMsgIdDecs, _updateHistoryUnReadCountDecs, _updateListDecs, _updateMostRecentHeightDecs, _updateMostRecentWidthDecs, _patchHandleMsgDecs, _forceNotifyMsgsDecs, _resetComponentCacheDecs, _resetTargetUserDecs, _initChatLevelDecs, _setTargetUserDecs, _updateChatLevelDecs, _updateChatTextMsgDecs, _filterChatMemberDecs, _hasSendMessagePermissionDecs, _permitPrivateChatDecs, _handleToastDecs, _handleConnectionUpdatedDecs, _initChatRoomConnectionStateDecs, _ref3;
|
|
95
96
|
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; }
|
|
96
97
|
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; }
|
|
97
98
|
function _classPrivateFieldInitSpec(e, t, a) { _checkPrivateRedeclaration(e, t), t.set(e, a); }
|
|
@@ -111,27 +112,23 @@ var allToUser = exports.allToUser = {
|
|
|
111
112
|
userId: USER_ALL,
|
|
112
113
|
userName: USER_ALL,
|
|
113
114
|
userRole: _type.FcrUserRole.ROBOT,
|
|
114
|
-
connectorType:
|
|
115
|
-
};
|
|
116
|
-
|
|
117
|
-
// 没有可选的 User
|
|
118
|
-
var noUser = exports.noUser = {
|
|
119
|
-
userId: USER_NONE,
|
|
120
|
-
userName: (0, _i18n.transI18n)('fmt_chat_tips_selecthost'),
|
|
121
|
-
userRole: _type.FcrUserRole.ROBOT,
|
|
122
|
-
connectorType: _agoraEduCore.FcrRoomConnectorType.NONE
|
|
115
|
+
connectorType: _fcrCore.FcrRoomConnectorType.NONE
|
|
123
116
|
};
|
|
124
117
|
var _A = /*#__PURE__*/new WeakMap();
|
|
125
118
|
var _B = /*#__PURE__*/new WeakMap();
|
|
119
|
+
var _C = /*#__PURE__*/new WeakMap();
|
|
126
120
|
_ref = (_handleReceiveMessageDecs = [_mobx.action, _mobx.action.bound], _handlerActiveTabDecs = [_mobx.action, _mobx.action.bound], _handleEventDecs = [_mobx.action, _mobx.action.bound], "_observable");
|
|
127
121
|
var ChatStore = exports["default"] = /*#__PURE__*/function () {
|
|
128
122
|
function ChatStore(_ref2) {
|
|
129
|
-
var
|
|
123
|
+
var _this = this,
|
|
124
|
+
_roomControl$getRoomI,
|
|
125
|
+
_roomControl$getRoomI2;
|
|
130
126
|
var chatRoomControl = _ref2.chatRoomControl,
|
|
131
127
|
userControl = _ref2.userControl,
|
|
132
128
|
uiEventStore = _ref2.uiEventStore,
|
|
133
129
|
securityStore = _ref2.securityStore,
|
|
134
|
-
roomControl = _ref2.roomControl
|
|
130
|
+
roomControl = _ref2.roomControl,
|
|
131
|
+
roomStore = _ref2.roomStore;
|
|
135
132
|
(0, _classCallCheck2["default"])(this, ChatStore);
|
|
136
133
|
(0, _defineProperty2["default"])(this, _ref, (_initProto(this), new _observable.AgoraObservable()));
|
|
137
134
|
(0, _defineProperty2["default"])(this, "_chatVisible", false);
|
|
@@ -143,8 +140,25 @@ var ChatStore = exports["default"] = /*#__PURE__*/function () {
|
|
|
143
140
|
});
|
|
144
141
|
_classPrivateFieldInitSpec(this, _A, _init_chatRoomStores(this, {}));
|
|
145
142
|
_classPrivateFieldInitSpec(this, _B, _init_activeTabIndex(this, _constant.RoomType.MAIN_ROOM));
|
|
143
|
+
_classPrivateFieldInitSpec(this, _C, _init_roomType(this, _type3.FcrRoomType.Mainroom));
|
|
146
144
|
this._securityStore = securityStore;
|
|
147
145
|
this._uiEventStore = uiEventStore;
|
|
146
|
+
roomStore.addObserver({
|
|
147
|
+
onJoinWaitingRoom: function onJoinWaitingRoom(roomControl) {
|
|
148
|
+
var room = roomControl;
|
|
149
|
+
var securityStore = new _securityStore.FcrSecurityStore(room.getPrivilegeControl(), room.getUserControl(), room.getStreamControl(), room.getRoomSessionControl(), _this._uiEventStore);
|
|
150
|
+
var userControl = room.getUserControl();
|
|
151
|
+
var chatRoomControl = room.getChatRoomControl();
|
|
152
|
+
_this.chatRoomStores[_constant.RoomType.WAITING_ROOM] = new ChatRoomStore({
|
|
153
|
+
chatRoomControl: chatRoomControl,
|
|
154
|
+
userControl: userControl,
|
|
155
|
+
uiEventStore: _this._uiEventStore,
|
|
156
|
+
securityStore: securityStore,
|
|
157
|
+
type: _constant.RoomType.WAITING_ROOM,
|
|
158
|
+
chatStoreObservable: _this._observable
|
|
159
|
+
});
|
|
160
|
+
}
|
|
161
|
+
});
|
|
148
162
|
uiEventStore.addObserver(this._eventObserver);
|
|
149
163
|
this._observable.addObserver(this._chatStoreObserver);
|
|
150
164
|
var isMainroom = ((_roomControl$getRoomI = roomControl.getRoomInfo()) === null || _roomControl$getRoomI === void 0 ? void 0 : _roomControl$getRoomI.roomType) === _type3.FcrRoomType.Mainroom;
|
|
@@ -158,6 +172,7 @@ var ChatStore = exports["default"] = /*#__PURE__*/function () {
|
|
|
158
172
|
type: type,
|
|
159
173
|
chatStoreObservable: this._observable
|
|
160
174
|
});
|
|
175
|
+
this.roomType = (_roomControl$getRoomI2 = roomControl.getRoomInfo()) === null || _roomControl$getRoomI2 === void 0 ? void 0 : _roomControl$getRoomI2.roomType;
|
|
161
176
|
}
|
|
162
177
|
return (0, _createClass2["default"])(ChatStore, [{
|
|
163
178
|
key: "chatRoomStores",
|
|
@@ -175,6 +190,14 @@ var ChatStore = exports["default"] = /*#__PURE__*/function () {
|
|
|
175
190
|
set: function set(v) {
|
|
176
191
|
_classPrivateFieldSet(_B, this, v);
|
|
177
192
|
}
|
|
193
|
+
}, {
|
|
194
|
+
key: "roomType",
|
|
195
|
+
get: function get() {
|
|
196
|
+
return _classPrivateFieldGet(_C, this);
|
|
197
|
+
},
|
|
198
|
+
set: function set(v) {
|
|
199
|
+
_classPrivateFieldSet(_C, this, v);
|
|
200
|
+
}
|
|
178
201
|
}, {
|
|
179
202
|
key: "hasWaitingRoomPermission",
|
|
180
203
|
value: function hasWaitingRoomPermission() {
|
|
@@ -205,19 +228,6 @@ var ChatStore = exports["default"] = /*#__PURE__*/function () {
|
|
|
205
228
|
}, {
|
|
206
229
|
key: "_handleEvent",
|
|
207
230
|
value: function _handleEvent(action, payload) {
|
|
208
|
-
if (action === _constant.UIAction.WAITING_ROOM_CREATED) {
|
|
209
|
-
var room = payload.room;
|
|
210
|
-
var userControl = room.getUserControl();
|
|
211
|
-
var chatRoomControl = room.getChatRoomControl();
|
|
212
|
-
this.chatRoomStores[_constant.RoomType.WAITING_ROOM] = new ChatRoomStore({
|
|
213
|
-
chatRoomControl: chatRoomControl,
|
|
214
|
-
userControl: userControl,
|
|
215
|
-
uiEventStore: this._uiEventStore,
|
|
216
|
-
securityStore: payload.securityStore,
|
|
217
|
-
type: _constant.RoomType.WAITING_ROOM,
|
|
218
|
-
chatStoreObservable: this._observable
|
|
219
|
-
});
|
|
220
|
-
}
|
|
221
231
|
if (action === _constant.UIAction.RECEIVE_NEW_CHAT_MESSAGES_FOR_RED) {
|
|
222
232
|
if (this.activeTabIndex !== payload) {
|
|
223
233
|
var _this$chatRoomStores;
|
|
@@ -243,17 +253,21 @@ var ChatStore = exports["default"] = /*#__PURE__*/function () {
|
|
|
243
253
|
delete this.chatRoomStores[_constant.RoomType.WAITING_ROOM];
|
|
244
254
|
this.handlerActiveTab(_constant.RoomType.MAIN_ROOM);
|
|
245
255
|
}
|
|
256
|
+
if (action === _constant.UIAction.TOGGLE_CHAT_ROOM_TAB) {
|
|
257
|
+
this.handlerActiveTab(payload);
|
|
258
|
+
}
|
|
246
259
|
}
|
|
247
260
|
}]);
|
|
248
261
|
}();
|
|
249
262
|
_ChatStore = ChatStore;
|
|
250
|
-
var _applyDecs$e = (0, _slicedToArray2["default"])(_applyDecs(_ChatStore, [[_mobx.observable, 1, "chatRoomStores"], [_mobx.observable, 1, "activeTabIndex"], [_decorator.bound, 2, "hasWaitingRoomPermission"], [_handleReceiveMessageDecs, 18, "_handleReceiveMessage"], [_handlerActiveTabDecs, 18, "handlerActiveTab"], [_handleEventDecs, 18, "_handleEvent"]], []).e,
|
|
263
|
+
var _applyDecs$e = (0, _slicedToArray2["default"])(_applyDecs(_ChatStore, [[_mobx.observable, 1, "chatRoomStores"], [_mobx.observable, 1, "activeTabIndex"], [_mobx.observable, 1, "roomType"], [_decorator.bound, 2, "hasWaitingRoomPermission"], [_handleReceiveMessageDecs, 18, "_handleReceiveMessage"], [_handlerActiveTabDecs, 18, "handlerActiveTab"], [_handleEventDecs, 18, "_handleEvent"]], []).e, 4);
|
|
251
264
|
_init_chatRoomStores = _applyDecs$e[0];
|
|
252
265
|
_init_activeTabIndex = _applyDecs$e[1];
|
|
253
|
-
|
|
266
|
+
_init_roomType = _applyDecs$e[2];
|
|
267
|
+
_initProto = _applyDecs$e[3];
|
|
254
268
|
var _A2 = /*#__PURE__*/new WeakMap();
|
|
255
269
|
var _B2 = /*#__PURE__*/new WeakMap();
|
|
256
|
-
var
|
|
270
|
+
var _C2 = /*#__PURE__*/new WeakMap();
|
|
257
271
|
var _D = /*#__PURE__*/new WeakMap();
|
|
258
272
|
var _E = /*#__PURE__*/new WeakMap();
|
|
259
273
|
var _F = /*#__PURE__*/new WeakMap();
|
|
@@ -268,11 +282,11 @@ var _N = /*#__PURE__*/new WeakMap();
|
|
|
268
282
|
var _O = /*#__PURE__*/new WeakMap();
|
|
269
283
|
var _P = /*#__PURE__*/new WeakMap();
|
|
270
284
|
var _Q = /*#__PURE__*/new WeakMap();
|
|
271
|
-
_ref3 = (_setLastScrollTopDecs = [_mobx.action, _mobx.action.bound], _setMessageListDecs = [_mobx.action, _mobx.action.bound], _sendMessageDecs = [_mobx.action, _mobx.action.bound], _setUnReadMsgCountDecs = [_mobx.action, _mobx.action.bound], _setHasNewMsgDecs = [_mobx.action, _mobx.action.bound], _handleTextMessageReceivedDecs = [_mobx.action, _mobx.action.bound], _getUserCountDecs = [_mobx.action, _mobx.action.bound], _onRemoteUserUpdateDecs = [_mobx.action, _mobx.action.bound], _refreshUserListDecs = [_mobx.action, _mobx.action.bound], _handleNewMsgDecs = [_mobx.action, _mobx.action.bound], _updateReadMsgIndexDecs = [_mobx.action, _mobx.action.bound], _initReadInfoDecs = [_mobx.action, _mobx.action.bound], _updateHistoryUnreadCntDecs = [_mobx.action, _mobx.action.bound], _updateHasHistoryMsgDecs = [_mobx.action, _mobx.action.bound], _updateScrollInfoDecs = [_mobx.action, _mobx.action.bound], _updateViewIdxDecs = [_mobx.action, _mobx.action.bound], _updateReadIdxDecs = [_mobx.action, _mobx.action.bound], _updateFirstMsgIdDecs = [_mobx.action, _mobx.action.bound], _updateHistoryUnReadCountDecs = [_mobx.action, _mobx.action.bound], _updateListDecs = [_mobx.action, _mobx.action.bound], _updateMostRecentHeightDecs = [_mobx.action, _mobx.action.bound], _updateMostRecentWidthDecs = [_mobx.action, _mobx.action.bound], _patchHandleMsgDecs = [_mobx.action, _mobx.action.bound], _forceNotifyMsgsDecs = [_mobx.action, _mobx.action.bound], _resetComponentCacheDecs = [_mobx.action, _mobx.action.bound], _resetTargetUserDecs = [_mobx.action, _mobx.action.bound], _initChatLevelDecs = [_mobx.action, _mobx.action.bound], _setTargetUserDecs = [_mobx.action, _mobx.action.bound], _updateChatLevelDecs = [_mobx.action, _mobx.action.bound], _updateChatTextMsgDecs = [_mobx.action, _mobx.action.bound], _filterChatMemberDecs = [_mobx.action, _mobx.action.bound], _hasSendMessagePermissionDecs = [_mobx.action, _mobx.action.bound], _permitPrivateChatDecs = [_mobx.action, _mobx.action.bound], _handleToastDecs = [_mobx.action, _mobx.action.bound], _handleConnectionUpdatedDecs = [_mobx.action, _mobx.action.bound], "needCbBottomCount");
|
|
285
|
+
_ref3 = (_setLastScrollTopDecs = [_mobx.action, _mobx.action.bound], _setMessageListDecs = [_mobx.action, _mobx.action.bound], _sendMessageDecs = [_mobx.action, _mobx.action.bound], _setUnReadMsgCountDecs = [_mobx.action, _mobx.action.bound], _setHasNewMsgDecs = [_mobx.action, _mobx.action.bound], _handleTextMessageReceivedDecs = [_mobx.action, _mobx.action.bound], _getUserCountDecs = [_mobx.action, _mobx.action.bound], _onRemoteUserUpdateDecs = [_mobx.action, _mobx.action.bound], _refreshUserListDecs = [_mobx.action, _mobx.action.bound], _handleNewMsgDecs = [_mobx.action, _mobx.action.bound], _updateReadMsgIndexDecs = [_mobx.action, _mobx.action.bound], _initReadInfoDecs = [_mobx.action, _mobx.action.bound], _updateHistoryUnreadCntDecs = [_mobx.action, _mobx.action.bound], _updateHasHistoryMsgDecs = [_mobx.action, _mobx.action.bound], _updateScrollInfoDecs = [_mobx.action, _mobx.action.bound], _updateViewIdxDecs = [_mobx.action, _mobx.action.bound], _updateReadIdxDecs = [_mobx.action, _mobx.action.bound], _updateFirstMsgIdDecs = [_mobx.action, _mobx.action.bound], _updateHistoryUnReadCountDecs = [_mobx.action, _mobx.action.bound], _updateListDecs = [_mobx.action, _mobx.action.bound], _updateMostRecentHeightDecs = [_mobx.action, _mobx.action.bound], _updateMostRecentWidthDecs = [_mobx.action, _mobx.action.bound], _patchHandleMsgDecs = [_mobx.action, _mobx.action.bound], _forceNotifyMsgsDecs = [_mobx.action, _mobx.action.bound], _resetComponentCacheDecs = [_mobx.action, _mobx.action.bound], _resetTargetUserDecs = [_mobx.action, _mobx.action.bound], _initChatLevelDecs = [_mobx.action, _mobx.action.bound], _setTargetUserDecs = [_mobx.action, _mobx.action.bound], _updateChatLevelDecs = [_mobx.action, _mobx.action.bound], _updateChatTextMsgDecs = [_mobx.action, _mobx.action.bound], _filterChatMemberDecs = [_mobx.action, _mobx.action.bound], _hasSendMessagePermissionDecs = [_mobx.action, _mobx.action.bound], _permitPrivateChatDecs = [_mobx.action, _mobx.action.bound], _handleToastDecs = [_mobx.action, _mobx.action.bound], _handleConnectionUpdatedDecs = [_mobx.action, _mobx.action.bound], _initChatRoomConnectionStateDecs = [_mobx.action, _mobx.action.bound], "needCbBottomCount");
|
|
272
286
|
var ChatRoomStore = exports.ChatRoomStore = /*#__PURE__*/function () {
|
|
273
287
|
function ChatRoomStore(_ref4) {
|
|
274
288
|
var _this$_chatRoomContro,
|
|
275
|
-
|
|
289
|
+
_this2 = this;
|
|
276
290
|
var chatRoomControl = _ref4.chatRoomControl,
|
|
277
291
|
userControl = _ref4.userControl,
|
|
278
292
|
uiEventStore = _ref4.uiEventStore,
|
|
@@ -297,9 +311,15 @@ var ChatRoomStore = exports.ChatRoomStore = /*#__PURE__*/function () {
|
|
|
297
311
|
(0, _defineProperty2["default"])(this, "_maxMsgCount", 500);
|
|
298
312
|
(0, _defineProperty2["default"])(this, "_originalMessages", []);
|
|
299
313
|
(0, _defineProperty2["default"])(this, "_disposers", []);
|
|
314
|
+
(0, _defineProperty2["default"])(this, "_noUser", {
|
|
315
|
+
userId: USER_NONE,
|
|
316
|
+
userName: (0, _i18n.transI18n)('fmt_chat_tips_selecthost'),
|
|
317
|
+
userRole: _type.FcrUserRole.ROBOT,
|
|
318
|
+
connectorType: _fcrCore.FcrRoomConnectorType.NONE
|
|
319
|
+
});
|
|
300
320
|
_classPrivateFieldInitSpec(this, _A2, _init__userInfo(this));
|
|
301
321
|
_classPrivateFieldInitSpec(this, _B2, _init_messageList(this, []));
|
|
302
|
-
_classPrivateFieldInitSpec(this,
|
|
322
|
+
_classPrivateFieldInitSpec(this, _C2, _init_readMsgIndex(this, {
|
|
303
323
|
index: -1,
|
|
304
324
|
msgId: ''
|
|
305
325
|
}));
|
|
@@ -338,6 +358,7 @@ var ChatRoomStore = exports.ChatRoomStore = /*#__PURE__*/function () {
|
|
|
338
358
|
// TODO: 需要查询房间历史消息, 一期预留
|
|
339
359
|
this.messageList = [];
|
|
340
360
|
this._chatRoomControl = chatRoomControl;
|
|
361
|
+
this._initChatRoomConnectionState(chatRoomControl.getConnectionState());
|
|
341
362
|
this._userControl = userControl;
|
|
342
363
|
this.userCount = this.getUserCount();
|
|
343
364
|
this._userInfo = userControl.getLocalUser();
|
|
@@ -349,7 +370,9 @@ var ChatRoomStore = exports.ChatRoomStore = /*#__PURE__*/function () {
|
|
|
349
370
|
this._uiEventStore.addObserver({
|
|
350
371
|
onEvent: function onEvent(action, payload) {
|
|
351
372
|
if (action === _constant.UIAction.CHAT_UPDATE_TARGET) {
|
|
352
|
-
|
|
373
|
+
if (payload.roomType === _this2._type) {
|
|
374
|
+
_this2.setTargetUser(payload.user);
|
|
375
|
+
}
|
|
353
376
|
}
|
|
354
377
|
if (action === _constant.UIAction.CHAT_RESET_TARGET) {
|
|
355
378
|
// this.resetTargetUser();
|
|
@@ -379,10 +402,10 @@ var ChatRoomStore = exports.ChatRoomStore = /*#__PURE__*/function () {
|
|
|
379
402
|
}, {
|
|
380
403
|
key: "readMsgIndex",
|
|
381
404
|
get: function get() {
|
|
382
|
-
return _classPrivateFieldGet(
|
|
405
|
+
return _classPrivateFieldGet(_C2, this);
|
|
383
406
|
},
|
|
384
407
|
set: function set(v) {
|
|
385
|
-
_classPrivateFieldSet(
|
|
408
|
+
_classPrivateFieldSet(_C2, this, v);
|
|
386
409
|
}
|
|
387
410
|
}, {
|
|
388
411
|
key: "readIdx",
|
|
@@ -743,6 +766,11 @@ var ChatRoomStore = exports.ChatRoomStore = /*#__PURE__*/function () {
|
|
|
743
766
|
get: function get() {
|
|
744
767
|
return this._securityStore.hasPermissionToSendPrivateMessage(_type.FcrUserRole.HOST) || this._securityStore.hasPermissionToSendPrivateMessage(_type.FcrUserRole.COHOST);
|
|
745
768
|
}
|
|
769
|
+
}, {
|
|
770
|
+
key: "hasSendAllPermission",
|
|
771
|
+
get: function get() {
|
|
772
|
+
return this._securityStore.hasSendAllChatPermission();
|
|
773
|
+
}
|
|
746
774
|
}, {
|
|
747
775
|
key: "isHost",
|
|
748
776
|
get: function get() {
|
|
@@ -763,43 +791,49 @@ var ChatRoomStore = exports.ChatRoomStore = /*#__PURE__*/function () {
|
|
|
763
791
|
}, {
|
|
764
792
|
key: "_addReactions",
|
|
765
793
|
value: function _addReactions() {
|
|
766
|
-
var
|
|
794
|
+
var _this3 = this;
|
|
767
795
|
this._disposers.push((0, _mobx.reaction)(function () {
|
|
768
|
-
return
|
|
796
|
+
return _this3.chatLevel;
|
|
769
797
|
}, function (state) {
|
|
770
|
-
if (!
|
|
771
|
-
|
|
798
|
+
if (!_this3.localIsManager && _this3.privateTargetUser.userId === USER_ALL && (state === 'no_one' || state === 'private_to_manager')) {
|
|
799
|
+
_this3.setTargetUser(_this3._noUser);
|
|
772
800
|
}
|
|
773
|
-
if (!
|
|
774
|
-
|
|
801
|
+
if (!_this3.localIsManager && _this3.privateTargetUser.userId === USER_NONE && (state === 'everyone' || state === 'public')) {
|
|
802
|
+
_this3.setTargetUser(allToUser);
|
|
775
803
|
}
|
|
776
804
|
}), (0, _mobx.reaction)(function () {
|
|
777
|
-
return
|
|
805
|
+
return _this3.disallowedAllChat;
|
|
778
806
|
}, function (state) {
|
|
779
807
|
if (state) {
|
|
780
|
-
|
|
781
|
-
|
|
808
|
+
_this3.handleChatPermissionUpdate('no_one');
|
|
809
|
+
_this3.updateChatLevel('no_one');
|
|
782
810
|
}
|
|
783
811
|
}), (0, _mobx.reaction)(function () {
|
|
784
|
-
return
|
|
812
|
+
return _this3.disallowedPublicChatAndDisallowedPrivateChatToParticipant;
|
|
785
813
|
}, function (state) {
|
|
786
814
|
if (state) {
|
|
787
|
-
|
|
788
|
-
|
|
815
|
+
_this3.handleChatPermissionUpdate('private_to_manager');
|
|
816
|
+
_this3.updateChatLevel('private_to_manager');
|
|
789
817
|
}
|
|
790
818
|
}), (0, _mobx.reaction)(function () {
|
|
791
|
-
return
|
|
819
|
+
return _this3.allowedPublicChatAndDisallowedPrivateChat;
|
|
792
820
|
}, function (state) {
|
|
793
821
|
if (state) {
|
|
794
|
-
|
|
795
|
-
|
|
822
|
+
_this3.handleChatPermissionUpdate('public');
|
|
823
|
+
_this3.updateChatLevel('public');
|
|
796
824
|
}
|
|
797
825
|
}), (0, _mobx.reaction)(function () {
|
|
798
|
-
return
|
|
826
|
+
return _this3.allowedAllChat;
|
|
799
827
|
}, function (state) {
|
|
800
828
|
if (state) {
|
|
801
|
-
|
|
802
|
-
|
|
829
|
+
_this3.handleChatPermissionUpdate('everyone');
|
|
830
|
+
_this3.updateChatLevel('everyone');
|
|
831
|
+
}
|
|
832
|
+
}), (0, _mobx.reaction)(function () {
|
|
833
|
+
return _this3.hasChatPermission;
|
|
834
|
+
}, function (state) {
|
|
835
|
+
if (state) {
|
|
836
|
+
_this3.setTargetUser(allToUser);
|
|
803
837
|
}
|
|
804
838
|
}));
|
|
805
839
|
}
|
|
@@ -867,7 +901,7 @@ var ChatRoomStore = exports.ChatRoomStore = /*#__PURE__*/function () {
|
|
|
867
901
|
}, {
|
|
868
902
|
key: "patchHandleMsg",
|
|
869
903
|
value: function patchHandleMsg() {
|
|
870
|
-
var
|
|
904
|
+
var _this4 = this;
|
|
871
905
|
var isBottom = this.clientHeight === 0 || this.clientHeight >= this.scrollHeight || Math.abs(this.scrollHeight - this.clientHeight - this.scrollTop) < 1;
|
|
872
906
|
if (!isBottom) {
|
|
873
907
|
this.newMsgsUnReadCnt = this._originalMessages.length;
|
|
@@ -876,7 +910,7 @@ var ChatRoomStore = exports.ChatRoomStore = /*#__PURE__*/function () {
|
|
|
876
910
|
var notifyMsgs = this._originalMessages.splice(0, this.newMsgsUnReadCnt || 10);
|
|
877
911
|
// 通知列表中前10条消息
|
|
878
912
|
notifyMsgs.forEach(function (msg) {
|
|
879
|
-
|
|
913
|
+
_this4._handleTextMessageReceived(msg);
|
|
880
914
|
});
|
|
881
915
|
notifyMsgs.length > 0 && this._chatStoreObservable.notifyObservers('onReceiveMessage', notifyMsgs, this._type);
|
|
882
916
|
|
|
@@ -913,7 +947,7 @@ var ChatRoomStore = exports.ChatRoomStore = /*#__PURE__*/function () {
|
|
|
913
947
|
if (this.chatLevel === 'public' || this.chatLevel === 'everyone') {
|
|
914
948
|
this.privateTargetUser = allToUser;
|
|
915
949
|
} else if (this.chatLevel === 'private_to_manager' && !this.localIsManager) {
|
|
916
|
-
this.privateTargetUser =
|
|
950
|
+
this.privateTargetUser = this._noUser;
|
|
917
951
|
}
|
|
918
952
|
}
|
|
919
953
|
}, {
|
|
@@ -937,21 +971,21 @@ var ChatRoomStore = exports.ChatRoomStore = /*#__PURE__*/function () {
|
|
|
937
971
|
}, {
|
|
938
972
|
key: "targetUserIsOnline",
|
|
939
973
|
get: function get() {
|
|
940
|
-
var
|
|
974
|
+
var _this5 = this;
|
|
941
975
|
if (this.privateTargetUser.userId === USER_ALL || this.privateTargetUser.userId === USER_NONE) {
|
|
942
976
|
return true;
|
|
943
977
|
}
|
|
944
978
|
return this.remoteUsers.some(function (remoteUser) {
|
|
945
|
-
return remoteUser.userId ===
|
|
979
|
+
return remoteUser.userId === _this5.privateTargetUser.userId;
|
|
946
980
|
});
|
|
947
981
|
}
|
|
948
982
|
}, {
|
|
949
983
|
key: "remoteUsers",
|
|
950
984
|
get: function get() {
|
|
951
|
-
var
|
|
985
|
+
var _this6 = this;
|
|
952
986
|
var list = Array.from(this.currentUserMap.values());
|
|
953
987
|
return list.filter(function (user) {
|
|
954
|
-
return user.userId !==
|
|
988
|
+
return user.userId !== _this6._userInfo.userId;
|
|
955
989
|
});
|
|
956
990
|
}
|
|
957
991
|
}, {
|
|
@@ -996,9 +1030,9 @@ var ChatRoomStore = exports.ChatRoomStore = /*#__PURE__*/function () {
|
|
|
996
1030
|
}, {
|
|
997
1031
|
key: "filterChatMember",
|
|
998
1032
|
value: function filterChatMember(list) {
|
|
999
|
-
var
|
|
1033
|
+
var _this7 = this;
|
|
1000
1034
|
var res = list.filter(function (user) {
|
|
1001
|
-
return
|
|
1035
|
+
return _this7._securityStore.hasPermissionToSendPrivateMessage(user.userRole) || user.userId === USER_ALL;
|
|
1002
1036
|
});
|
|
1003
1037
|
if (res.length && _constant.RoomType.WAITING_ROOM === this._type && !this.localIsManager) {
|
|
1004
1038
|
this.setTargetUser(res[0]);
|
|
@@ -1060,10 +1094,15 @@ var ChatRoomStore = exports.ChatRoomStore = /*#__PURE__*/function () {
|
|
|
1060
1094
|
value: function _handleConnectionUpdated(_, state) {
|
|
1061
1095
|
this.chatRoomState = state;
|
|
1062
1096
|
}
|
|
1097
|
+
}, {
|
|
1098
|
+
key: "_initChatRoomConnectionState",
|
|
1099
|
+
value: function _initChatRoomConnectionState(state) {
|
|
1100
|
+
this.chatRoomState = state;
|
|
1101
|
+
}
|
|
1063
1102
|
}]);
|
|
1064
1103
|
}();
|
|
1065
1104
|
_ChatRoomStore = ChatRoomStore;
|
|
1066
|
-
var _applyDecs$e2 = (0, _slicedToArray2["default"])(_applyDecs(_ChatRoomStore, [[_mobx.observable, 1, "_userInfo"], [_mobx.observable, 1, "messageList"], [_mobx.observable, 1, "readMsgIndex"], [_mobx.observable, 1, "readIdx"], [_mobx.observable, 1, "viewIdx"], [_mobx.observable, 1, "historyUnreadCount"], [_mobx.observable, 1, "hasHistoryMsg"], [_mobx.observable, 1, "newMsgsUnReadCnt"], [_mobx.observable, 1, "privateTargetUser"], [_mobx.observable, 1, "chatLevel"], [_mobx.observable, 1, "currentUserMap"], [_mobx.observable, 1, "textMsg"], [_mobx.observable, 1, "privateTargetList"], [_mobx.observable, 1, "chatRoomState"], [_mobx.observable, 1, "hasNewMsg"], [_mobx.observable, 1, "userCount"], [_mobx.observable, 1, "unReadMsgCount"], [_setLastScrollTopDecs, 18, "setLastScrollTop"], [_setMessageListDecs, 18, "setMessageList"], [_sendMessageDecs, 18, "sendMessage"], [_setUnReadMsgCountDecs, 18, "setUnReadMsgCount"], [_setHasNewMsgDecs, 18, "setHasNewMsg"], [_handleTextMessageReceivedDecs, 18, "_handleTextMessageReceived"], [_getUserCountDecs, 18, "getUserCount"], [_onRemoteUserUpdateDecs, 18, "_onRemoteUserUpdate"], [_refreshUserListDecs, 18, "_refreshUserList"], [_handleNewMsgDecs, 18, "handleNewMsg"], [_updateReadMsgIndexDecs, 18, "updateReadMsgIndex"], [_mobx.computed, 3, "isHost"], [_mobx.computed, 3, "isCohost"], [_mobx.computed, 3, "localIsManager"], [_initReadInfoDecs, 18, "initReadInfo"], [_updateHistoryUnreadCntDecs, 18, "updateHistoryUnreadCnt"], [_updateHasHistoryMsgDecs, 18, "updateHasHistoryMsg"], [_updateScrollInfoDecs, 18, "updateScrollInfo"], [_updateViewIdxDecs, 18, "updateViewIdx"], [_updateReadIdxDecs, 18, "updateReadIdx"], [_updateFirstMsgIdDecs, 18, "updateFirstMsgId"], [_updateHistoryUnReadCountDecs, 18, "updateHistoryUnReadCount"], [_updateListDecs, 18, "updateList"], [_updateMostRecentHeightDecs, 18, "updateMostRecentHeight"], [_updateMostRecentWidthDecs, 18, "updateMostRecentWidth"], [_patchHandleMsgDecs, 18, "patchHandleMsg"], [_forceNotifyMsgsDecs, 18, "forceNotifyMsgs"], [_resetComponentCacheDecs, 18, "resetComponentCache"], [_resetTargetUserDecs, 18, "resetTargetUser"], [_initChatLevelDecs, 18, "initChatLevel"], [_setTargetUserDecs, 18, "setTargetUser"], [_mobx.computed, 3, "targetUserIsOnline"], [_mobx.computed, 3, "remoteUsers"], [_decorator.bound, 2, "handleChatPermissionUpdate"], [_updateChatLevelDecs, 18, "updateChatLevel"], [_updateChatTextMsgDecs, 18, "updateChatTextMsg"], [_filterChatMemberDecs, 18, "filterChatMember"], [_hasSendMessagePermissionDecs, 18, "hasSendMessagePermission"], [_permitPrivateChatDecs, 18, "permitPrivateChat"], [_handleToastDecs, 18, "handleToast"], [_mobx.computed, 3, "isHostOrCoHost"], [_decorator.bound, 2, "setAllowChat"], [_decorator.bound, 2, "setAllowChatWithPayload"], [_handleConnectionUpdatedDecs, 18, "_handleConnectionUpdated"]], []).e, 18);
|
|
1105
|
+
var _applyDecs$e2 = (0, _slicedToArray2["default"])(_applyDecs(_ChatRoomStore, [[_mobx.observable, 1, "_userInfo"], [_mobx.observable, 1, "messageList"], [_mobx.observable, 1, "readMsgIndex"], [_mobx.observable, 1, "readIdx"], [_mobx.observable, 1, "viewIdx"], [_mobx.observable, 1, "historyUnreadCount"], [_mobx.observable, 1, "hasHistoryMsg"], [_mobx.observable, 1, "newMsgsUnReadCnt"], [_mobx.observable, 1, "privateTargetUser"], [_mobx.observable, 1, "chatLevel"], [_mobx.observable, 1, "currentUserMap"], [_mobx.observable, 1, "textMsg"], [_mobx.observable, 1, "privateTargetList"], [_mobx.observable, 1, "chatRoomState"], [_mobx.observable, 1, "hasNewMsg"], [_mobx.observable, 1, "userCount"], [_mobx.observable, 1, "unReadMsgCount"], [_setLastScrollTopDecs, 18, "setLastScrollTop"], [_setMessageListDecs, 18, "setMessageList"], [_sendMessageDecs, 18, "sendMessage"], [_setUnReadMsgCountDecs, 18, "setUnReadMsgCount"], [_setHasNewMsgDecs, 18, "setHasNewMsg"], [_handleTextMessageReceivedDecs, 18, "_handleTextMessageReceived"], [_getUserCountDecs, 18, "getUserCount"], [_onRemoteUserUpdateDecs, 18, "_onRemoteUserUpdate"], [_refreshUserListDecs, 18, "_refreshUserList"], [_handleNewMsgDecs, 18, "handleNewMsg"], [_updateReadMsgIndexDecs, 18, "updateReadMsgIndex"], [_mobx.computed, 3, "hasSendAllPermission"], [_mobx.computed, 3, "isHost"], [_mobx.computed, 3, "isCohost"], [_mobx.computed, 3, "localIsManager"], [_initReadInfoDecs, 18, "initReadInfo"], [_updateHistoryUnreadCntDecs, 18, "updateHistoryUnreadCnt"], [_updateHasHistoryMsgDecs, 18, "updateHasHistoryMsg"], [_updateScrollInfoDecs, 18, "updateScrollInfo"], [_updateViewIdxDecs, 18, "updateViewIdx"], [_updateReadIdxDecs, 18, "updateReadIdx"], [_updateFirstMsgIdDecs, 18, "updateFirstMsgId"], [_updateHistoryUnReadCountDecs, 18, "updateHistoryUnReadCount"], [_updateListDecs, 18, "updateList"], [_updateMostRecentHeightDecs, 18, "updateMostRecentHeight"], [_updateMostRecentWidthDecs, 18, "updateMostRecentWidth"], [_patchHandleMsgDecs, 18, "patchHandleMsg"], [_forceNotifyMsgsDecs, 18, "forceNotifyMsgs"], [_resetComponentCacheDecs, 18, "resetComponentCache"], [_resetTargetUserDecs, 18, "resetTargetUser"], [_initChatLevelDecs, 18, "initChatLevel"], [_setTargetUserDecs, 18, "setTargetUser"], [_mobx.computed, 3, "targetUserIsOnline"], [_mobx.computed, 3, "remoteUsers"], [_decorator.bound, 2, "handleChatPermissionUpdate"], [_updateChatLevelDecs, 18, "updateChatLevel"], [_updateChatTextMsgDecs, 18, "updateChatTextMsg"], [_filterChatMemberDecs, 18, "filterChatMember"], [_hasSendMessagePermissionDecs, 18, "hasSendMessagePermission"], [_permitPrivateChatDecs, 18, "permitPrivateChat"], [_handleToastDecs, 18, "handleToast"], [_mobx.computed, 3, "isHostOrCoHost"], [_decorator.bound, 2, "setAllowChat"], [_decorator.bound, 2, "setAllowChatWithPayload"], [_handleConnectionUpdatedDecs, 18, "_handleConnectionUpdated"], [_initChatRoomConnectionStateDecs, 18, "_initChatRoomConnectionState"]], []).e, 18);
|
|
1067
1106
|
_init__userInfo = _applyDecs$e2[0];
|
|
1068
1107
|
_init_messageList = _applyDecs$e2[1];
|
|
1069
1108
|
_init_readMsgIndex = _applyDecs$e2[2];
|
|
@@ -1099,4 +1138,5 @@ function sortUsers(users) {
|
|
|
1099
1138
|
}
|
|
1100
1139
|
return a.userName.localeCompare(b.userName);
|
|
1101
1140
|
});
|
|
1102
|
-
}
|
|
1141
|
+
}
|
|
1142
|
+
var StoreContext = exports.StoreContext = /*#__PURE__*/(0, _react.createContext)(null);
|
|
@@ -0,0 +1,156 @@
|
|
|
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["default"] = void 0;
|
|
8
|
+
require("core-js/modules/es.array.map.js");
|
|
9
|
+
require("core-js/modules/esnext.async-iterator.map.js");
|
|
10
|
+
require("core-js/modules/esnext.iterator.map.js");
|
|
11
|
+
var _radio = require("agora-ui-foundation/lib/components/radio");
|
|
12
|
+
var _i18n = require("agora-ui-foundation/lib/i18n");
|
|
13
|
+
var _mobxReact = require("mobx-react");
|
|
14
|
+
var _react = require("react");
|
|
15
|
+
var _type = require("agora-ui-foundation/lib/components/icon/type");
|
|
16
|
+
var _icon = require("agora-ui-foundation/lib/components/icon");
|
|
17
|
+
var _store = require("../../../../setting/store");
|
|
18
|
+
var _store2 = require("../../store");
|
|
19
|
+
require("../../index.css");
|
|
20
|
+
var _deviceStore = require("../../../../../common/device-store");
|
|
21
|
+
var _jsxRuntime = require("react/jsx-runtime");
|
|
22
|
+
var AudioMenu = (0, _mobxReact.observer)(function (_ref) {
|
|
23
|
+
var onConnectClick = _ref.onConnectClick,
|
|
24
|
+
setPopoverOpened = _ref.setPopoverOpened;
|
|
25
|
+
var transI18n = (0, _i18n.useI18n)();
|
|
26
|
+
var _useContext = (0, _react.useContext)(_store2.DeviceControlStoreContext),
|
|
27
|
+
microphoneId = _useContext.microphoneId,
|
|
28
|
+
microphoneList = _useContext.microphoneList,
|
|
29
|
+
speakerId = _useContext.speakerId,
|
|
30
|
+
speakerList = _useContext.speakerList,
|
|
31
|
+
setMicrophoneId = _useContext.setMicrophoneId,
|
|
32
|
+
setSpeakerId = _useContext.setSpeakerId,
|
|
33
|
+
openDeviceSettingDialog = _useContext.openDeviceSettingDialog,
|
|
34
|
+
openConnection = _useContext.openConnection,
|
|
35
|
+
connectType = _useContext.connectType,
|
|
36
|
+
stopAudioByComputer = _useContext.stopAudioByComputer;
|
|
37
|
+
var microphoneOptions = microphoneList.map(function (device) {
|
|
38
|
+
return {
|
|
39
|
+
text: device.deviceName,
|
|
40
|
+
value: device.deviceId
|
|
41
|
+
};
|
|
42
|
+
});
|
|
43
|
+
var speakerOptions = speakerList.map(function (device) {
|
|
44
|
+
return {
|
|
45
|
+
text: device.deviceName,
|
|
46
|
+
value: device.deviceId
|
|
47
|
+
};
|
|
48
|
+
});
|
|
49
|
+
var openDeviceSetting = function openDeviceSetting() {
|
|
50
|
+
setPopoverOpened(false);
|
|
51
|
+
openDeviceSettingDialog({
|
|
52
|
+
activeTab: _store.DeviceSettingTab.AUDIO
|
|
53
|
+
});
|
|
54
|
+
};
|
|
55
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsxs)("div", {
|
|
56
|
+
className: "fcr-device-popover-content",
|
|
57
|
+
onClick: function onClick(e) {
|
|
58
|
+
e.stopPropagation();
|
|
59
|
+
},
|
|
60
|
+
children: [/*#__PURE__*/(0, _jsxRuntime.jsxs)("div", {
|
|
61
|
+
className: "fcr-device-popover-content-device-list",
|
|
62
|
+
children: [/*#__PURE__*/(0, _jsxRuntime.jsxs)("div", {
|
|
63
|
+
className: "fcr-device-popover-content-device",
|
|
64
|
+
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
65
|
+
className: "fcr-device-popover-content-device-label",
|
|
66
|
+
children: transI18n('fmt_device_label_audio_list_selectMicrophone')
|
|
67
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsxs)("div", {
|
|
68
|
+
className: "fcr-device-popover-content-device-options",
|
|
69
|
+
children: [microphoneOptions.length === 0 && /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
70
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_radio.FcrRadio, {
|
|
71
|
+
name: "No device",
|
|
72
|
+
styleType: "transparent",
|
|
73
|
+
checked: true,
|
|
74
|
+
label: transI18n('fmt_toolbar_tips_nodevice')
|
|
75
|
+
})
|
|
76
|
+
}), microphoneOptions.map(function (device) {
|
|
77
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
78
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_radio.FcrRadio, {
|
|
79
|
+
name: "mic",
|
|
80
|
+
styleType: "transparent",
|
|
81
|
+
checked: microphoneId === device.value,
|
|
82
|
+
label: device.text,
|
|
83
|
+
onChange: function onChange(v) {
|
|
84
|
+
return v && setMicrophoneId(device.value);
|
|
85
|
+
}
|
|
86
|
+
})
|
|
87
|
+
}, device.value);
|
|
88
|
+
})]
|
|
89
|
+
})]
|
|
90
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsxs)("div", {
|
|
91
|
+
className: "fcr-device-popover-content-device",
|
|
92
|
+
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
93
|
+
className: "fcr-device-popover-content-device-label",
|
|
94
|
+
children: transI18n('fmt_device_label_audio_list_selectSpeaker')
|
|
95
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsxs)("div", {
|
|
96
|
+
className: "fcr-device-popover-content-device-options",
|
|
97
|
+
children: [speakerOptions.length === 0 && /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
98
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_radio.FcrRadio, {
|
|
99
|
+
name: "No device",
|
|
100
|
+
styleType: "transparent",
|
|
101
|
+
checked: true,
|
|
102
|
+
label: transI18n('fmt_toolbar_tips_nodevice')
|
|
103
|
+
})
|
|
104
|
+
}), speakerOptions.map(function (device) {
|
|
105
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
106
|
+
onClick: function onClick() {},
|
|
107
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_radio.FcrRadio, {
|
|
108
|
+
name: "speaker",
|
|
109
|
+
styleType: "transparent",
|
|
110
|
+
checked: speakerId === device.value,
|
|
111
|
+
label: device.text,
|
|
112
|
+
onChange: function onChange(v) {
|
|
113
|
+
return v && setSpeakerId(device.value);
|
|
114
|
+
}
|
|
115
|
+
})
|
|
116
|
+
}, device.value);
|
|
117
|
+
})]
|
|
118
|
+
})]
|
|
119
|
+
})]
|
|
120
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsxs)("div", {
|
|
121
|
+
className: "fcr-device-popover-content-more",
|
|
122
|
+
children: [connectType === _deviceStore.ConnectType.COMPUTER && /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
123
|
+
className: "fcr-device-popover-content-more-item fcr-device-popover-content-more-item--danger",
|
|
124
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("span", {
|
|
125
|
+
onClick: function onClick() {
|
|
126
|
+
onConnectClick();
|
|
127
|
+
stopAudioByComputer();
|
|
128
|
+
},
|
|
129
|
+
children: transI18n('fmt_device_label_audio_list_leaveComputerAudio')
|
|
130
|
+
})
|
|
131
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
132
|
+
className: "fcr-device-popover-content-more-item",
|
|
133
|
+
onClick: function onClick() {
|
|
134
|
+
onConnectClick();
|
|
135
|
+
openConnection('phone');
|
|
136
|
+
},
|
|
137
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("span", {
|
|
138
|
+
children: transI18n('fmt_device_label_audio_list_switchToPhoneCall')
|
|
139
|
+
})
|
|
140
|
+
})]
|
|
141
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
142
|
+
className: "fcr-device-popover-content-more",
|
|
143
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsxs)("div", {
|
|
144
|
+
className: "fcr-device-popover-content-more-item contain-icon",
|
|
145
|
+
onClick: openDeviceSetting,
|
|
146
|
+
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_icon.FcrIcon, {
|
|
147
|
+
type: _type.FcrIconType.FCR_SETTING,
|
|
148
|
+
size: 24
|
|
149
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsx)("span", {
|
|
150
|
+
children: transI18n('fmt_device_label_audio_list_moreAudioSettings')
|
|
151
|
+
})]
|
|
152
|
+
})
|
|
153
|
+
})]
|
|
154
|
+
});
|
|
155
|
+
});
|
|
156
|
+
var _default = exports["default"] = AudioMenu;
|