fcr-ui-scene 3.9.0 → 3.9.1-alpha
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/creator/provider-initializer.browser.js +2 -1
- package/lib/creator/provider-initializer.electron.js +11 -4
- package/lib/electron/injections.d.ts +1 -0
- package/lib/electron/injections.js +4 -1
- package/lib/electron/preload.js +1 -0
- package/lib/modules/action-bar/main-scene/store.base.d.ts +1 -0
- package/lib/modules/action-bar/main-scene/store.base.js +5 -0
- package/lib/modules/audio-stream/index.d.ts +2 -0
- package/lib/modules/audio-stream/index.js +33 -1
- package/lib/modules/chat/index.js +1 -1
- package/lib/modules/chat/store.d.ts +1 -1
- package/lib/modules/chat/store.js +4 -2
- package/lib/modules/components/device-control/store.base.d.ts +1 -0
- package/lib/modules/components/device-control/store.base.js +22 -3
- package/lib/modules/components/leave-meeting/index.js +3 -2
- package/lib/modules/components/leave-meeting/main-scene/store.d.ts +1 -0
- package/lib/modules/components/leave-meeting/main-scene/store.js +6 -1
- package/lib/modules/components/leave-meeting/store.base.d.ts +1 -0
- package/lib/modules/components/leave-meeting/store.base.js +1 -1
- package/lib/modules/components/leave-meeting/waiting-scene/store.d.ts +1 -0
- package/lib/modules/components/leave-meeting/waiting-scene/store.js +6 -1
- package/lib/modules/components/member-window/components/member-actions/components/icon-status.js +7 -10
- package/lib/modules/components/member-window/components/member-actions/components/more-actions.js +2 -2
- package/lib/modules/components/member-window/components/member-actions/index.js +0 -7
- package/lib/modules/components/member-window/components/member-actions/store.js +1 -1
- package/lib/modules/components/member-window/index.js +1 -1
- package/lib/modules/components/tab-frame/index.css +12 -1
- package/lib/modules/components/tab-frame/index.js +4 -1
- package/lib/modules/control-bar/components/share-state-nav/index.js +1 -3
- package/lib/modules/control-bar/mouse-event-bridge.d.ts +23 -0
- package/lib/modules/control-bar/mouse-event-bridge.js +87 -0
- package/lib/modules/control-bar/store.d.ts +1 -1
- package/lib/modules/control-bar/store.js +10 -27
- package/lib/modules/control-bar/type.d.ts +0 -1
- package/lib/modules/control-bar/view.js +9 -16
- package/lib/modules/dialog/dialogs/connection-gateway/tabs.js +3 -2
- package/lib/modules/dialog/dialogs/invite/index.js +6 -24
- package/lib/modules/invite/components/copy-info.css +72 -0
- package/lib/modules/invite/components/copy-info.d.ts +3 -0
- package/lib/modules/invite/components/copy-info.js +144 -0
- package/lib/modules/invite/components/pstn-invite.js +3 -15
- package/lib/modules/invite/components/voip-invite.js +10 -1
- package/lib/modules/invite/enums.d.ts +3 -1
- package/lib/modules/invite/enums.js +2 -0
- package/lib/modules/invite/store.d.ts +4 -1
- package/lib/modules/invite/store.js +37 -13
- package/lib/modules/invite/view.js +41 -20
- package/lib/modules/layout/store.base.d.ts +2 -1
- package/lib/modules/layout/store.base.js +20 -23
- package/lib/modules/participant/components/confirm-input/index.css +67 -1
- package/lib/modules/participant/components/confirm-input/index.js +16 -13
- package/lib/modules/participant/components/participants/components/render-user/components/attendee/index.css +4 -0
- package/lib/modules/participant/store.base.d.ts +1 -0
- package/lib/modules/participant/store.base.js +34 -7
- package/lib/modules/pc-audio-connect/main-scene/store.d.ts +2 -0
- package/lib/modules/pc-audio-connect/main-scene/store.js +12 -2
- package/lib/modules/pc-audio-connect/view.js +4 -2
- package/lib/modules/phone-audio-connect/store.d.ts +6 -4
- package/lib/modules/phone-audio-connect/store.js +12 -1
- package/lib/modules/phone-audio-connect/view.js +6 -4
- package/lib/modules/secondary-window/index.js +2 -2
- package/lib/modules/secondary-window/store.d.ts +3 -0
- package/lib/modules/secondary-window/store.js +16 -1
- package/lib/modules/secondary-window/view.js +96 -72
- package/lib/modules/toast-manager/type.d.ts +2 -1
- package/lib/modules/toast-manager/type.js +4 -1
- package/lib/plugins/module-dev-plugin.js +4 -4
- package/lib/providers/ability-provider.d.ts +15 -0
- package/lib/providers/ability-provider.js +13 -1
- package/lib/providers/mouse-detect/provider.d.ts +2 -0
- package/lib/providers/mouse-detect/provider.empty.d.ts +14 -0
- package/lib/providers/mouse-detect/provider.empty.js +47 -0
- package/lib/providers/mouse-detect/provider.js +13 -4
- package/lib/providers/mouse-detect/type.d.ts +2 -0
- package/lib/providers/phone-audio-provider.d.ts +31 -5
- package/lib/providers/phone-audio-provider.js +83 -22
- package/lib/runtime.d.ts +1 -0
- package/lib/scenes/main-scene.js +2 -1
- package/lib/shared-data/chat-data.d.ts +19 -0
- package/lib/shared-data/chat-data.js +54 -7
- package/lib/shared-data/member-data.d.ts +9 -1
- package/lib/shared-data/member-data.js +46 -17
- package/lib/shared-data/video-window.js +8 -4
- package/lib/translations/enUS.d.ts +245 -1
- package/lib/translations/enUS.js +247 -3
- package/lib/translations/zhCN.d.ts +245 -1
- package/lib/translations/zhCN.js +246 -2
- package/lib/utilities/os.d.ts +1 -0
- package/lib/utilities/os.js +15 -0
- package/lib/utilities/renderer.d.ts +1 -0
- package/lib/utilities/renderer.js +7 -1
- package/lib-es/creator/provider-initializer.browser.js +2 -1
- package/lib-es/creator/provider-initializer.electron.js +9 -2
- package/lib-es/electron/injections.js +3 -0
- package/lib-es/electron/preload.js +2 -1
- package/lib-es/modules/action-bar/main-scene/store.base.js +5 -0
- package/lib-es/modules/audio-stream/index.js +33 -1
- package/lib-es/modules/chat/index.js +1 -1
- package/lib-es/modules/chat/store.js +4 -2
- package/lib-es/modules/components/device-control/store.base.js +22 -3
- package/lib-es/modules/components/leave-meeting/index.js +3 -2
- package/lib-es/modules/components/leave-meeting/main-scene/store.js +6 -1
- package/lib-es/modules/components/leave-meeting/store.base.js +1 -1
- package/lib-es/modules/components/leave-meeting/waiting-scene/store.js +6 -1
- package/lib-es/modules/components/member-window/components/member-actions/components/icon-status.js +7 -10
- package/lib-es/modules/components/member-window/components/member-actions/components/more-actions.js +2 -2
- package/lib-es/modules/components/member-window/components/member-actions/index.js +0 -7
- package/lib-es/modules/components/member-window/components/member-actions/store.js +1 -1
- package/lib-es/modules/components/member-window/index.js +1 -1
- package/lib-es/modules/components/tab-frame/index.css +12 -1
- package/lib-es/modules/components/tab-frame/index.js +4 -1
- package/lib-es/modules/control-bar/components/share-state-nav/index.js +1 -3
- package/lib-es/modules/control-bar/mouse-event-bridge.js +79 -0
- package/lib-es/modules/control-bar/store.js +11 -28
- package/lib-es/modules/control-bar/view.js +9 -16
- package/lib-es/modules/dialog/dialogs/connection-gateway/tabs.js +3 -2
- package/lib-es/modules/dialog/dialogs/invite/index.js +6 -24
- package/lib-es/modules/invite/components/copy-info.css +72 -0
- package/lib-es/modules/invite/components/copy-info.js +137 -0
- package/lib-es/modules/invite/components/pstn-invite.js +3 -15
- package/lib-es/modules/invite/components/voip-invite.js +10 -1
- package/lib-es/modules/invite/enums.js +2 -0
- package/lib-es/modules/invite/store.js +38 -14
- package/lib-es/modules/invite/view.js +43 -22
- package/lib-es/modules/layout/store.base.js +20 -23
- package/lib-es/modules/participant/components/confirm-input/index.css +67 -1
- package/lib-es/modules/participant/components/confirm-input/index.js +16 -13
- package/lib-es/modules/participant/components/participants/components/render-user/components/attendee/index.css +4 -0
- package/lib-es/modules/participant/store.base.js +34 -7
- package/lib-es/modules/pc-audio-connect/main-scene/store.js +12 -2
- package/lib-es/modules/pc-audio-connect/view.js +4 -2
- package/lib-es/modules/phone-audio-connect/store.js +12 -1
- package/lib-es/modules/phone-audio-connect/view.js +6 -4
- package/lib-es/modules/secondary-window/index.js +2 -2
- package/lib-es/modules/secondary-window/store.js +16 -1
- package/lib-es/modules/secondary-window/view.js +97 -73
- package/lib-es/modules/toast-manager/type.js +4 -1
- package/lib-es/plugins/module-dev-plugin.js +4 -4
- package/lib-es/providers/ability-provider.js +13 -1
- package/lib-es/providers/mouse-detect/provider.empty.js +39 -0
- package/lib-es/providers/mouse-detect/provider.js +13 -4
- package/lib-es/providers/phone-audio-provider.js +109 -48
- package/lib-es/scenes/main-scene.js +3 -2
- package/lib-es/shared-data/chat-data.js +55 -8
- package/lib-es/shared-data/member-data.js +46 -17
- package/lib-es/shared-data/video-window.js +8 -4
- package/lib-es/translations/enUS.js +247 -3
- package/lib-es/translations/zhCN.js +246 -2
- package/lib-es/utilities/os.js +8 -0
- package/lib-es/utilities/renderer.js +7 -1
- package/lib-es/utilities/shared-storage.js +2 -2
- package/package.json +6 -6
- package/lib/modules/connection-gateway/components/computer/index.css +0 -12
- package/lib/modules/connection-gateway/components/computer/index.d.ts +0 -3
- package/lib/modules/connection-gateway/components/computer/index.js +0 -66
- package/lib/modules/connection-gateway/components/phone/components/callinfo/index.css +0 -36
- package/lib/modules/connection-gateway/components/phone/components/callinfo/index.d.ts +0 -10
- package/lib/modules/connection-gateway/components/phone/components/callinfo/index.js +0 -78
- package/lib/modules/connection-gateway/components/phone/components/calling/index.css +0 -72
- package/lib/modules/connection-gateway/components/phone/components/calling/index.d.ts +0 -7
- package/lib/modules/connection-gateway/components/phone/components/calling/index.js +0 -58
- package/lib/modules/connection-gateway/components/phone/components/remeber/index.css +0 -10
- package/lib/modules/connection-gateway/components/phone/components/remeber/index.d.ts +0 -5
- package/lib/modules/connection-gateway/components/phone/components/remeber/index.js +0 -24
- package/lib/modules/connection-gateway/components/phone/components/useing/index.css +0 -46
- package/lib/modules/connection-gateway/components/phone/components/useing/index.d.ts +0 -3
- package/lib/modules/connection-gateway/components/phone/components/useing/index.js +0 -36
- package/lib/modules/connection-gateway/components/phone/index.css +0 -49
- package/lib/modules/connection-gateway/components/phone/index.d.ts +0 -3
- package/lib/modules/connection-gateway/components/phone/index.js +0 -185
- package/lib/modules/connection-gateway/enums.d.ts +0 -4
- package/lib/modules/connection-gateway/enums.js +0 -12
- package/lib/modules/connection-gateway/index.css +0 -6
- package/lib/modules/connection-gateway/index.d.ts +0 -10
- package/lib/modules/connection-gateway/index.js +0 -78
- package/lib/modules/connection-gateway/store.d.ts +0 -68
- package/lib/modules/connection-gateway/store.js +0 -713
- package/lib/modules/connection-gateway/types.d.ts +0 -8
- package/lib/modules/connection-gateway/types.js +0 -6
- package/lib/modules/connection-gateway/view.d.ts +0 -1
- package/lib/modules/connection-gateway/view.js +0 -39
- package/lib-es/modules/connection-gateway/components/computer/index.css +0 -12
- package/lib-es/modules/connection-gateway/components/computer/index.js +0 -59
- package/lib-es/modules/connection-gateway/components/phone/components/callinfo/index.css +0 -36
- package/lib-es/modules/connection-gateway/components/phone/components/callinfo/index.js +0 -71
- package/lib-es/modules/connection-gateway/components/phone/components/calling/index.css +0 -72
- package/lib-es/modules/connection-gateway/components/phone/components/calling/index.js +0 -51
- package/lib-es/modules/connection-gateway/components/phone/components/remeber/index.css +0 -10
- package/lib-es/modules/connection-gateway/components/phone/components/remeber/index.js +0 -17
- package/lib-es/modules/connection-gateway/components/phone/components/useing/index.css +0 -46
- package/lib-es/modules/connection-gateway/components/phone/components/useing/index.js +0 -29
- package/lib-es/modules/connection-gateway/components/phone/index.css +0 -49
- package/lib-es/modules/connection-gateway/components/phone/index.js +0 -177
- package/lib-es/modules/connection-gateway/enums.js +0 -5
- package/lib-es/modules/connection-gateway/index.css +0 -6
- package/lib-es/modules/connection-gateway/index.js +0 -60
- package/lib-es/modules/connection-gateway/store.js +0 -707
- package/lib-es/modules/connection-gateway/types.js +0 -1
- package/lib-es/modules/connection-gateway/view.js +0 -31
|
@@ -9,7 +9,6 @@ export var zhCn = {
|
|
|
9
9
|
fmt_participants_button_muteAll: '全员静音',
|
|
10
10
|
fmt_participants_button_unmuteAll: '解除全员静音',
|
|
11
11
|
fmt_participants_button_meetingManagement: '会议管理',
|
|
12
|
-
fmt_participants_button_meetingPermission: '会议权限',
|
|
13
12
|
fmt_participants_button_invite: '邀请',
|
|
14
13
|
fmt_participants_member_button_mute: '静音',
|
|
15
14
|
fmt_participants_member_button_unmute: '解除静音',
|
|
@@ -1075,6 +1074,10 @@ export var zhCn = {
|
|
|
1075
1074
|
fmt_record_record_stop_confirm: '确定停止录制',
|
|
1076
1075
|
fmt_record_toast_record_paused: '云录制已暂停',
|
|
1077
1076
|
fmt_record_toast_record_resumed: '云录制已恢复',
|
|
1077
|
+
fmt_invitepage_label_by_invitation: '复制信息',
|
|
1078
|
+
fmt_invitepage_label_meeting_connector: '会议连接器',
|
|
1079
|
+
fmt_invitepage_label_invite_link: '会议链接',
|
|
1080
|
+
fmt_invitepage_label_meeting_details: '会议信息',
|
|
1078
1081
|
fmt_pstn_label_accessmethod: '选择音频接入方式',
|
|
1079
1082
|
fmt_pstn_options_PCaudioconnet: '连接到电脑音频',
|
|
1080
1083
|
fmt_pstn_options_phoneaudioconnet: '连接到电话音频',
|
|
@@ -1140,6 +1143,7 @@ export var zhCn = {
|
|
|
1140
1143
|
fmt_SIP323_copywrite_phonenumber: '手机号码(必填)',
|
|
1141
1144
|
fmt_SIP323_options_detailedinfor: '复制详细会议信息',
|
|
1142
1145
|
fmt_SIP323_tips_alreadycopied: '已复制在粘贴板',
|
|
1146
|
+
fmt_SIP_tips_enter_correct_number: '请输入正确的会议连接器号码',
|
|
1143
1147
|
fmt_localrecord_labels_record: '录制',
|
|
1144
1148
|
fmt_localrecord_labels_savingto: '本地录制保存在',
|
|
1145
1149
|
fmt_localrecord_button_savingto: '更改',
|
|
@@ -2079,5 +2083,245 @@ export var zhCn = {
|
|
|
2079
2083
|
fmt_echo_window_button_cancel: '取消',
|
|
2080
2084
|
fmt_echo_window_button_disconnect: '断开音频',
|
|
2081
2085
|
fmt_mute_toast_yr_on_mute: '您已静音,请开启麦克风',
|
|
2082
|
-
fmt_meeting_setting_options_enable_recording: '允许使用云端录制'
|
|
2086
|
+
fmt_meeting_setting_options_enable_recording: '允许使用云端录制',
|
|
2087
|
+
fmt_premeeting_subheading_scenario: '业务场景',
|
|
2088
|
+
fmt_premeeting_scenario_setting_button_meeting: '视频会议',
|
|
2089
|
+
fmt_premeeting_scenario_setting_button_webinar: '网络研讨会',
|
|
2090
|
+
fmt_premeeting_setting_lock_meeting: '锁定会议',
|
|
2091
|
+
fmt_premeeting_role_setting_role: '角色',
|
|
2092
|
+
fmt_premeeting_role_setting_role_host: '主持人',
|
|
2093
|
+
fmt_premeeting_role_setting_role_co_host: '联席主持人',
|
|
2094
|
+
fmt_premeeting_role_setting_role_guest: '参会者/嘉宾',
|
|
2095
|
+
fmt_premeeting_role_setting_role_audience: '观众',
|
|
2096
|
+
fmt_premeeting_setting_allow_guests_unmute: '允许嘉宾自我解除静音',
|
|
2097
|
+
fmt_premeeting_setting_allow_guests_turn_on_video: '允许嘉宾开启视频',
|
|
2098
|
+
fmt_premeeting_setting_allow_guests_rename: '允许嘉宾改名',
|
|
2099
|
+
fmt_premeeting_setting_label_allow_audience_raisehands: '允许观众举手',
|
|
2100
|
+
fmt_premeeting_setting_allow_audience_view_participants_number: '允许观众查看参会总人数',
|
|
2101
|
+
fmt_premeeting_setting_allow_audience_rename: '允许观众改名',
|
|
2102
|
+
fmt_security_setting_label_allow_audience_raisehands: '允许观众举手',
|
|
2103
|
+
fmt_security_setting_label_allow_audience_viewparticipants: '允许观众查看参会总人数',
|
|
2104
|
+
fmt_security_setting_label_allow_audience_rename: '允许观众自己改名',
|
|
2105
|
+
fmt_security_setting_label_allow_audience_viewparticipants_off: '与其他xx名观众',
|
|
2106
|
+
fmt_security_setting_mute_guests_entry: '嘉宾入会时静音',
|
|
2107
|
+
fmt_security_setting_guests_video_entry_off: '嘉宾入会时关闭视频',
|
|
2108
|
+
fmt_security_setting_allow_guests_unmute: '允许嘉宾自我解除静音',
|
|
2109
|
+
fmt_security_setting_allow_guests_turn_on_video: '允许嘉宾开启视频',
|
|
2110
|
+
fmt_security_setting_allow_guests_share_screen_whiteboard: '允许嘉宾共享屏幕和白板',
|
|
2111
|
+
fmt_security_setting_allow_guests_interactive_annotations: '允许嘉宾互动批注',
|
|
2112
|
+
fmt_security_setting_allow_guests_rename: '允许嘉宾自我改名',
|
|
2113
|
+
fmt_premeeting_participant_list: '参会者',
|
|
2114
|
+
fmt_premeeting_participant_list_guest: '嘉宾',
|
|
2115
|
+
fmt_premeeting_participant_list_audience: '观众',
|
|
2116
|
+
fmt_premeeting_participant_list_raising: 'xx位观众正在举手',
|
|
2117
|
+
fmt_premeeting_participant_list_guest_demote_audience: '降级为观众',
|
|
2118
|
+
fmt_premeeting_participant_list_guest_revoke_cohost: '撤销联席主持人',
|
|
2119
|
+
fmt_premeeting_participant_list_guest_demote_tip: '已成功将xx降级为观众',
|
|
2120
|
+
fmt_premeeting_participant_list_guest_revoke_tip: '主持人已将您设置为观众',
|
|
2121
|
+
fmt_premeeting_participant_list_guest_disable_chatting_tip: '是否禁止xx聊天',
|
|
2122
|
+
fmt_premeeting_participant_list_guest_block_messages: '是否屏蔽xx已发送的所有聊天消息?操作后其他用户将无法查看。',
|
|
2123
|
+
fmt_premeeting_participant_list_guest_block_messages_tip: '您已被禁言',
|
|
2124
|
+
fmt_premeeting_participant_upgraded_guest_tip: '已成功将“xxx"升级为嘉宾',
|
|
2125
|
+
fmt_premeeting_participant_upgraded_host: '设为“主持人”',
|
|
2126
|
+
fmt_premeeting_participant_upgraded_host_choose: '是否将“xxx"设为会议的主持人?',
|
|
2127
|
+
fmt_premeeting_participant_upgraded_host_on: '设为主持',
|
|
2128
|
+
fmt_premeeting_participant_upgraded_host_on_cancel: '取消',
|
|
2129
|
+
fmt_premeeting_participant_upgraded_co_host: '设为“联席主持”',
|
|
2130
|
+
fmt_premeeting_participant_upgraded_co_host_tip: '是否将“xxx"设为会议的联席主持?',
|
|
2131
|
+
fmt_premeeting_participant_upgraded_co_host_on: '设为联席主持',
|
|
2132
|
+
fmt_premeeting_participant_upgraded_co_host_on_cancel: '取消',
|
|
2133
|
+
fmt_premeeting_participant_upgraded_co_host_limit: '用户角色已满,无法设置为联席主持人',
|
|
2134
|
+
fmt_premeeting_participant_set_guest: '设为嘉宾',
|
|
2135
|
+
fmt_premeeting_participant_upgraded_guest_limit: '用户角色已满,无法设置为嘉宾',
|
|
2136
|
+
fmt_premeeting_participant_set_co_host_tip: '已成功将“xx"设置为联席',
|
|
2137
|
+
fmt_premeeting_participant_set_guest_tip: '已成功将“xx"降级为嘉宾',
|
|
2138
|
+
fmt_premeeting_participant_set_audience_tip: '已成功将“xx"降级为观众',
|
|
2139
|
+
fmt_premeeting_participant_cannot_set_audience_tip: '无法将ta降级为观众',
|
|
2140
|
+
fmt_premeeting_participant_set_co_host_tip_myself: '主持人已将您设置为联席',
|
|
2141
|
+
fmt_premeeting_participant_set_guest_tip_myself: '主持人已将您降级为嘉宾',
|
|
2142
|
+
fmt_premeeting_participant_set_audience_tip_myself: '主持人已将您降级为观众',
|
|
2143
|
+
fmt_premeeting_participant_xx_now_host: 'xx现在成为主持人',
|
|
2144
|
+
fmt_premeeting_participant_xx_now_co_host: 'xx设置为联席',
|
|
2145
|
+
fmt_premeeting_participant_now_co_host_yourself: '您已成为联席',
|
|
2146
|
+
fmt_premeeting_participant_xx_now_guest: 'xx设置为嘉宾',
|
|
2147
|
+
fmt_premeeting_participant_now_host_tip: '"xxx"现在成为主持人',
|
|
2148
|
+
fmt_premeeting_participant_set_guest_tip_u: '主持人已将您设为嘉宾',
|
|
2149
|
+
fmt_premeeting_participant_now_guest_tip_u: '你是本次会议的嘉宾,可以开启麦克风、摄像头、使用共享屏幕分享,可以通过公共聊天等功能和观众互动。',
|
|
2150
|
+
fmt_premeeting_participant_now_guest_tip_u_ok: '知道了',
|
|
2151
|
+
fmt_premeeting_participant_now_cohost_tip_u: '你被设为联席主持人',
|
|
2152
|
+
fmt_premeeting_participant_now_host_tip_u: '你被设为主持人',
|
|
2153
|
+
fmt_premeeting_participant_revoke_host_tip_u: '你的主持人身份被收回',
|
|
2154
|
+
fmt_premeeting_participant_revoke_cohost_tip_u: '你的联席主持身份被撤销',
|
|
2155
|
+
fmt_premeeting_participant_now_audience_tip_u: '主持人已将你设置为观众',
|
|
2156
|
+
fmt_premeeting_participant_list_revoke_host_role: '收回主持人',
|
|
2157
|
+
fmt_premeeting_participant_list_modify_nickname: '修改会中昵称',
|
|
2158
|
+
fmt_premeeting_participant_remove_title: '移出会议',
|
|
2159
|
+
fmt_premeeting_participant_confirm_removal_tip: '确定将“xxx"移出会议?',
|
|
2160
|
+
fmt_premeeting_participant_not_rejoin_on: '不允许用户再次加入该会议',
|
|
2161
|
+
fmt_premeeting_participant_remove_button: '移出会议',
|
|
2162
|
+
fmt_premeeting_participant_creator_cannot_removed: '不可以移出会议创建者',
|
|
2163
|
+
fmt_premeeting_participant_prohibited_join_tip: '本场会议禁止你入会',
|
|
2164
|
+
fmt_premeeting_participant_disable_chatting_title: '禁止聊天',
|
|
2165
|
+
fmt_premeeting_participant_disable_chatting_tip: '是否禁止“xxx"聊天',
|
|
2166
|
+
fmt_premeeting_block_sb_messages_tip: '是否屏蔽"xxx"已发送的所有聊天消息?操作后其他用户将无法查看。',
|
|
2167
|
+
fmt_premeeting_participant_chat_permission_restored: '已对他解除禁言',
|
|
2168
|
+
fmt_security_setting_lower_hand: '手放下',
|
|
2169
|
+
fmt_security_setting_set_spotlight_video: '设为焦点视频',
|
|
2170
|
+
fmt_security_setting_cancel_spotlight_follow: '取消焦点跟随',
|
|
2171
|
+
fmt_security_setting_allow_local_recording: '允许本地录制视频',
|
|
2172
|
+
fmt_security_setting_move_waiting_room: '移到等候室',
|
|
2173
|
+
fmt_security_setting_pricate_chat_host: '私聊',
|
|
2174
|
+
fmt_security_setting_pin: '固定视窗到第一位',
|
|
2175
|
+
fmt_participants_setting_raise_hand: '举手',
|
|
2176
|
+
fmt_participants_setting_raise_hand_tips: '您已举手,请等待主持人操作',
|
|
2177
|
+
fmt_participants_setting_lower_hand: '放下手',
|
|
2178
|
+
fmt_participants_setting_lower_hand_tips: '您已将手放下',
|
|
2179
|
+
fmt_participants_setting_raise_hand_counts_tips: 'xx和其它x人正在举手',
|
|
2180
|
+
fmt_participants_setting_raise_hand_disabled_red_tips: '主持人已关闭举手功能',
|
|
2181
|
+
fmt_participants_setting_raise_hand_disabled_tips: '主持人已关闭举手功能',
|
|
2182
|
+
fmt_participants_setting_hands_lowered_tips: '您的举手被放下',
|
|
2183
|
+
fmt_participants_setting_raise_hand_number_limit_tips: '举手已达上限,请稍后再试',
|
|
2184
|
+
fmt_participants_setting_danmaku_raise_hand_counts_tips: 'xx和其它x人正在举手',
|
|
2185
|
+
fmt_participants_list_raise_hand_counts_tips: 'x人正在举手',
|
|
2186
|
+
fmt_participants_list_privilege_allow_chatting: '允许聊天',
|
|
2187
|
+
fmt_participants_list_privilege_private_chat: '私聊',
|
|
2188
|
+
fmt_participants_list_modify_in_meeting_nickname: '修改会中昵称',
|
|
2189
|
+
fmt_chat_setting_guest_chat_scope: '嘉宾聊天范围',
|
|
2190
|
+
fmt_chat_setting_guest_chat_allow_public_private: '允许公聊和嘉宾之间私聊',
|
|
2191
|
+
fmt_chat_setting_guest_chat_allow_public: '允许公开聊天',
|
|
2192
|
+
fmt_chat_setting_guest_chat_allow_host_only: '仅允许私聊主持人',
|
|
2193
|
+
fmt_chat_setting_guest_chat_disable: '禁止聊天',
|
|
2194
|
+
fmt_chat_setting_audience_chat_scope: '观众聊天范围',
|
|
2195
|
+
fmt_chat_setting_audience_chat_allow_public: '允许公开聊天',
|
|
2196
|
+
fmt_chat_setting_audience_chat_allow_host_only: '仅允许私聊主持人',
|
|
2197
|
+
fmt_chat_setting_audience_chat_disable: '禁止聊天',
|
|
2198
|
+
fmt_audio_settings_select_audio_button: '选择音频',
|
|
2199
|
+
fmt_audio_settings_disconnect_audio_icon: '断开音频',
|
|
2200
|
+
fmt_audio_settings_select_audio_icon: '选择音频',
|
|
2201
|
+
fmt_audio_settings_connect_audio_tips: '为了听见其他用户的声音,请连接音频加入会议',
|
|
2202
|
+
fmt_audio_settings_select_phone_audio: '使用手机音频',
|
|
2203
|
+
fmt_audio_settings_select_phone_audio_cancel: '取消',
|
|
2204
|
+
fmt_audio_settings_select_speaker: '扬声器',
|
|
2205
|
+
fmt_audio_settings_select_receiver: '听筒',
|
|
2206
|
+
fmt_audio_settings_select_mute: '静音',
|
|
2207
|
+
fmt_audio_settings_select_cancel: '取消',
|
|
2208
|
+
fmt_bottom_bar_audience_raise_hand: '举手',
|
|
2209
|
+
fmt_bottom_bar_audience_raise_hand_tip: '您已举手,请等待主持人操作',
|
|
2210
|
+
fmt_bottom_bar_audience_lower_hand: '手放下',
|
|
2211
|
+
fmt_v_chat_words_select_copy: '复制',
|
|
2212
|
+
fmt_v_chat_words_select_multi_select: '多选',
|
|
2213
|
+
fmt_v_chat_words_select_private_chat: '私聊',
|
|
2214
|
+
fmt_v_chat_words_select_allow_chatting: '允许聊天',
|
|
2215
|
+
fmt_v_chat_words_select_disable_chatting: '禁止聊天',
|
|
2216
|
+
fmt_v_chat_words_setting_mute_chat_tip: '你开启了聊天室禁言',
|
|
2217
|
+
fmt_v_chat_words_setting_enable_chat_tip: '你启用了聊天室',
|
|
2218
|
+
fmt_v_webinar_chat_settings: '聊天设置',
|
|
2219
|
+
fmt_v_webinar_chat_setting_guest_chat_scope: '嘉宾聊天范围',
|
|
2220
|
+
fmt_v_webinar_chat_setting_guest_chat_allow_public_private: '允许公聊和嘉宾之间私聊',
|
|
2221
|
+
fmt_v_webinar_chat_setting_guest_chat_allow_public: '允许公开聊天',
|
|
2222
|
+
fmt_v_webinar_chat_setting_guest_chat_allow_host_only: '仅允许私聊主持人',
|
|
2223
|
+
fmt_v_webinar_chat_setting_guest_chat_disable: '禁止聊天',
|
|
2224
|
+
fmt_v_webinar_chat_setting_audience_chat_scope: '观众聊天范围',
|
|
2225
|
+
fmt_v_webinar_chat_setting_audience_chat_allow_public: '允许公开聊天',
|
|
2226
|
+
fmt_v_webinar_chat_setting_audience_chat_allow_host_only: '仅允许私聊主持人',
|
|
2227
|
+
fmt_v_webinar_chat_setting_audience_chat_disable: '禁止聊天',
|
|
2228
|
+
fmt_v_webinar_chat_setting_show_message_bubbles: '展示聊天气泡',
|
|
2229
|
+
fmt_v_app_private_chat_setting_send_to: '发送至',
|
|
2230
|
+
fmt_v_app_private_chat_setting_footer_allow_free: '允许自由聊天',
|
|
2231
|
+
fmt_v_app_private_chat_setting_footer_allow_private_host: '仅允许私聊主持人和联席主持人',
|
|
2232
|
+
fmt_v_app_private_waiting_room_subtitle: '等候室',
|
|
2233
|
+
fmt_v_app_private_chat_privately_xx: '你可以和xx私聊',
|
|
2234
|
+
fmt_v_app_private_chat_prohibited_tip: '主持人禁止私聊',
|
|
2235
|
+
fmt_v_app_private_retract_host_permissions: '收起主持人权限',
|
|
2236
|
+
fmt_v_app_private_group_chat_prohibited_tip: '主持人禁止群聊',
|
|
2237
|
+
fmt_v_app_private_xx_left_meeting: 'xx刚离开会议',
|
|
2238
|
+
fmt_v_app_private_connecting_meeting: '连接中',
|
|
2239
|
+
fmt_v_app_private_select_another_chat_recipient_tip: 'xx可能已离会无法接受消息,请重新选择聊天对象',
|
|
2240
|
+
fmt_v_private_chat_private_chat: '私聊',
|
|
2241
|
+
fmt_v_private_chat_select_host_tip: '请选择主持人或联席主持',
|
|
2242
|
+
fmt_v_private_chat_select_user_tip: '请选择要聊天的用户',
|
|
2243
|
+
fmt_v_private_chat_select_again_tip: '主持人已经更改权限,请重新选择',
|
|
2244
|
+
fmt_v_multiple_selection_private_chat: '私聊',
|
|
2245
|
+
fmt_v_multiple_selection_multiple_selection: '多选',
|
|
2246
|
+
fmt_v_multiple_selection_copy: '复制',
|
|
2247
|
+
fmt_v_multiple_selection_maximum_copy_tip: '上限50条',
|
|
2248
|
+
fmt_v_chat_disable_chatting_title: '禁止聊天',
|
|
2249
|
+
fmt_v_chat_disable_chatting_tip: '是否禁止“xxx"聊天',
|
|
2250
|
+
fmt_v_chat_block_sb_messages_tip: '是否屏蔽"xxx"已发送的所有聊天消息?操作后其他用户将无法查看。',
|
|
2251
|
+
fmt_v_chat_block_sb_messages_tip_cancel: '取消',
|
|
2252
|
+
fmt_v_chat_block_sb_messages_tip_ok: '确定',
|
|
2253
|
+
fmt_v_chat_block_you_muted_tip: '你已被禁言',
|
|
2254
|
+
fmt_v_chat_chat_permission_restored: '已对他解除禁言',
|
|
2255
|
+
fmt_v_app_new_private_chat_private_chat: '私聊',
|
|
2256
|
+
fmt_v_app_new_private_chat_select_host_tip: '请选择主持人或联席主持',
|
|
2257
|
+
fmt_v_app_new_private_chat_select_user_tip: '请选择要聊天的用户',
|
|
2258
|
+
fmt_v_app_new_private_chat_select_again_tip: '主持人已经更改权限,请重新选择',
|
|
2259
|
+
fmt_v_app_new_private_chat_select_copy: '复制',
|
|
2260
|
+
fmt_v_app_new_private_chat_select_multi_select: '多选',
|
|
2261
|
+
fmt_v_app_new_private_chat_select_private_chat: '私聊',
|
|
2262
|
+
fmt_v_private_chat_word_count_exceed_tip: '超出字数限制,请先删除再发送',
|
|
2263
|
+
fmt_v_private_chat_select_another_chat_recipient_tip: 'xx可能已离会无法接受消息,请重新选择聊天对象',
|
|
2264
|
+
fmt_v_app_multiple_selection_private_chat: '私聊',
|
|
2265
|
+
fmt_v_app_multiple_selection_multiple_selection: '多选',
|
|
2266
|
+
fmt_v_app_multiple_selection_copy: '复制',
|
|
2267
|
+
fmt_v_app_multiple_selection_copy_clipboard: '复制到剪贴板',
|
|
2268
|
+
fmt_v_app_multiple_selection_maximum_copy_tip: '复制到剪贴板(上限50条)',
|
|
2269
|
+
fmt_v_app_multiple_selection_copied_tip: '已复制到剪贴板',
|
|
2270
|
+
fmt_v_security_web_webinar_security_settings: '会议安全设置',
|
|
2271
|
+
fmt_v_security_web_webinar_security_lock_room: '锁定会议室',
|
|
2272
|
+
fmt_v_security_web_webinar_security_watermark: '水印',
|
|
2273
|
+
fmt_v_security_web_webinar_security_single_row: '单行',
|
|
2274
|
+
fmt_v_security_web_webinar_security_multiple_rows: '多行',
|
|
2275
|
+
fmt_v_security_web_webinar_security_allow_guests_attendees_rename: '允许嘉宾和观众改名',
|
|
2276
|
+
fmt_v_security_web_webinar_security_allow_guests: '允许嘉宾',
|
|
2277
|
+
fmt_v_security_web_webinar_security_chat_subheading: '聊天',
|
|
2278
|
+
fmt_v_security_web_webinar_security_guest_chat_scope: '嘉宾聊天范围',
|
|
2279
|
+
fmt_v_security_web_webinar_security_allow_public_private_chat: '允许公聊和嘉宾之间私聊',
|
|
2280
|
+
fmt_v_security_web_webinar_security_allow_public_chat: '允许公开聊天',
|
|
2281
|
+
fmt_v_security_web_webinar_security_private_chat_host_only: '仅私聊主持人',
|
|
2282
|
+
fmt_v_security_web_webinar_security_disable_chat: '禁止聊天',
|
|
2283
|
+
fmt_v_security_web_webinar_security_screen_sharing: '共享屏幕',
|
|
2284
|
+
fmt_v_security_web_webinar_security_interactive_annotation: '成员互动标注',
|
|
2285
|
+
fmt_v_security_web_webinar_security_unmute_themselves: '自我解除静音',
|
|
2286
|
+
fmt_v_security_web_webinar_security_turn_on_video: '开启视频',
|
|
2287
|
+
fmt_v_security_web_webinar_security_rename_themselves: '自己改名',
|
|
2288
|
+
fmt_v_security_web_webinar_security_live_transcription_on_off: '开启和关闭实时转写',
|
|
2289
|
+
fmt_v_security_web_webinar_security_use_subtitle: '使用字幕功能',
|
|
2290
|
+
fmt_v_security_web_webinar_security_change_language: '修改声源语言',
|
|
2291
|
+
fmt_v_security_web_webinar_security_allow_attendees: '允许观众',
|
|
2292
|
+
fmt_v_security_web_webinar_security_chat_select: '聊天',
|
|
2293
|
+
fmt_v_security_web_webinar_security_attendee_chat_scope: '观众聊天范围',
|
|
2294
|
+
fmt_v_security_web_webinar_security_attendee_chat_public: '仅公开聊天',
|
|
2295
|
+
fmt_v_security_web_webinar_security_attendee_chat_host: '仅私聊主持人',
|
|
2296
|
+
fmt_v_security_web_webinar_security_attendee_disable_chat: '禁止聊天',
|
|
2297
|
+
fmt_v_security_web_webinar_security_raise_hand: '举手',
|
|
2298
|
+
fmt_v_security_web_webinar_security_view_total_number: '查看参会总人数',
|
|
2299
|
+
fmt_premeeting_participant_upgraded_host_app: '设为“主持人”',
|
|
2300
|
+
fmt_premeeting_participant_upgraded_host_choose_app: '是否将“xxx"设为会议的主持人?',
|
|
2301
|
+
fmt_premeeting_participant_upgraded_host_on_app: '设为主持',
|
|
2302
|
+
fmt_premeeting_participant_upgraded_host_on_app_cancel: '取消',
|
|
2303
|
+
fmt_premeeting_participant_upgraded_co_host_app: '设为“联席主持”',
|
|
2304
|
+
fmt_premeeting_participant_upgraded_co_host_tip_app: '是否将“xxx"设为会议的联席主持?',
|
|
2305
|
+
fmt_premeeting_participant_upgraded_co_host_on_app: '设为联席主持',
|
|
2306
|
+
fmt_premeeting_participant_upgraded_co_host_on_app_cancel: '取消',
|
|
2307
|
+
fmt_premeeting_participant_upgraded_co_host_limit_app: '用户角色已满,无法设置为联席主持人',
|
|
2308
|
+
fmt_premeeting_participant_upgraded_guest_limit_app: '用户角色已满,无法设置为嘉宾',
|
|
2309
|
+
fmt_premeeting_participant_revoke_co_host_tip_app: '已撤销xx的联席主持人身份',
|
|
2310
|
+
fmt_premeeting_participant_set_co_host_tip_app: '已成功将“xx"设置为联席',
|
|
2311
|
+
fmt_premeeting_participant_set_guest_tip_app: '已成功将“xx"降级为嘉宾',
|
|
2312
|
+
fmt_premeeting_participant_set_audience_tip_app: '已成功将“xx"降级为观众',
|
|
2313
|
+
fmt_premeeting_participant_cannot_set_audience_tip_app: '无法将ta降级为观众',
|
|
2314
|
+
fmt_premeeting_participant_set_co_host_tip_myself_app: '主持人已将您设置为联席',
|
|
2315
|
+
fmt_premeeting_participant_set_guest_tip_myself_app: '主持人已将您降级为嘉宾',
|
|
2316
|
+
fmt_premeeting_participant_set_audience_tip_myself_app: '主持人已将您降级为观众',
|
|
2317
|
+
fmt_premeeting_participant_xx_now_host_app: 'xx现在成为主持人',
|
|
2318
|
+
fmt_premeeting_participant_you_now_host_app: '您被设置为主持人',
|
|
2319
|
+
fmt_premeeting_participant_xx_now_host_app_other: 'xx现在成为主持人',
|
|
2320
|
+
fmt_premeeting_participant_xx_now_co_host_app: 'xx设置为联席',
|
|
2321
|
+
fmt_premeeting_participant_now_co_host_yourself_app: '您已成为联席',
|
|
2322
|
+
fmt_premeeting_participant_xx_now_guest_app: 'xx设置为嘉宾',
|
|
2323
|
+
fmt_premeeting_participant_set_guest_tip_u_app: '主持人已将您设为嘉宾',
|
|
2324
|
+
fmt_premeeting_participant_now_guest_tip_u_app: '你是本次会议的嘉宾,可以开启麦克风、摄像头、使用共享屏幕分享,可以通过公共聊天等功能和观众互动。',
|
|
2325
|
+
fmt_premeeting_participant_now_guest_tip_u_ok_app: '知道了',
|
|
2326
|
+
fmt_participants_button_meetingPermission: '会议权限'
|
|
2083
2327
|
};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import "core-js/modules/es.number.constructor.js";
|
|
2
|
+
import "core-js/modules/es.number.is-nan.js";
|
|
3
|
+
export var parseMacOSMajorVersion = function parseMacOSMajorVersion(systemVersion) {
|
|
4
|
+
if (!systemVersion) return null;
|
|
5
|
+
var major = Number(String(systemVersion).split('.')[0]);
|
|
6
|
+
if (Number.isNaN(major)) return null;
|
|
7
|
+
return major >= 20 ? major - 9 : major;
|
|
8
|
+
};
|
|
@@ -396,6 +396,12 @@ export var FcrUIRendererWrapper = /*#__PURE__*/function () {
|
|
|
396
396
|
this._checkRuntime();
|
|
397
397
|
return runtime.getSystemMemorySize();
|
|
398
398
|
}
|
|
399
|
+
}, {
|
|
400
|
+
key: "getSystemVersion",
|
|
401
|
+
value: function getSystemVersion() {
|
|
402
|
+
this._checkRuntime();
|
|
403
|
+
return runtime.getSystemVersion();
|
|
404
|
+
}
|
|
399
405
|
}, {
|
|
400
406
|
key: "setFragmentOptions",
|
|
401
407
|
value: function setFragmentOptions(entryPath, windowOptions, webPreferences) {
|
|
@@ -430,7 +436,7 @@ export var FcrUIRendererWrapper = /*#__PURE__*/function () {
|
|
|
430
436
|
}]);
|
|
431
437
|
}();
|
|
432
438
|
_FcrUIRendererWrapper = FcrUIRendererWrapper;
|
|
433
|
-
var _applyDecs$e = _applyDecs(_FcrUIRendererWrapper, [[trace, 2, "addEventListener"], [trace, 2, "removeEventListener"], [trace, 2, "removeAllEventListener"], [trace, 2, "sendEvent"], [trace, 2, "openLinkInDefaultBrowser"], [trace, 2, "getMediaSourcesIdByTitle"], [trace, 2, "open"], [trace, 2, "close"], [trace, 2, "handleWillClose"], [trace, 2, "setInMeetingState"], [trace, 2, "setMainWindowDisplaySupport"], [trace, 2, "release"], [trace, 2, "initialize"], [trace, 2, "restartApp"], [trace, 2, "quitApp"], [trace, 2, "getDisplayMatching"], [trace, 2, "setUserSettingData"], [trace, 2, "getUserSettingData"], [trace, 2, "getAllDisplays"], [trace, 2, "checkMediaPermission"], [trace, 2, "openSystemPreferences"], [trace, 2, "captureScreen"], [trace, 2, "getDisplayNearestPoint"], [trace, 2, "fileToBlob"], [trace, 2, "downloadAndExtractResourceFileFromZip"], [trace, 2, "downloadResourceFile"], [trace, 2, "loadBuiltinResources"], [trace, 2, "openDirectory"], [trace, 2, "showItemInFolder"], [trace, 2, "openRendererWindow"], [trace, 2, "getBaseUrl"], [trace, 2, "getWindowInfoList"], [trace, 2, "getNetworkType"], [trace, 2, "getSystemCpuInfo"], [trace, 2, "getSystemMemorySize"], [trace, 2, "setFragmentOptions"], [trace, 2, "getCurrentBrowserWindow"], [trace, 2, "createWindowProxy"], [trace, 2, "getBrowserWindowById"]], []).e;
|
|
439
|
+
var _applyDecs$e = _applyDecs(_FcrUIRendererWrapper, [[trace, 2, "addEventListener"], [trace, 2, "removeEventListener"], [trace, 2, "removeAllEventListener"], [trace, 2, "sendEvent"], [trace, 2, "openLinkInDefaultBrowser"], [trace, 2, "getMediaSourcesIdByTitle"], [trace, 2, "open"], [trace, 2, "close"], [trace, 2, "handleWillClose"], [trace, 2, "setInMeetingState"], [trace, 2, "setMainWindowDisplaySupport"], [trace, 2, "release"], [trace, 2, "initialize"], [trace, 2, "restartApp"], [trace, 2, "quitApp"], [trace, 2, "getDisplayMatching"], [trace, 2, "setUserSettingData"], [trace, 2, "getUserSettingData"], [trace, 2, "getAllDisplays"], [trace, 2, "checkMediaPermission"], [trace, 2, "openSystemPreferences"], [trace, 2, "captureScreen"], [trace, 2, "getDisplayNearestPoint"], [trace, 2, "fileToBlob"], [trace, 2, "downloadAndExtractResourceFileFromZip"], [trace, 2, "downloadResourceFile"], [trace, 2, "loadBuiltinResources"], [trace, 2, "openDirectory"], [trace, 2, "showItemInFolder"], [trace, 2, "openRendererWindow"], [trace, 2, "getBaseUrl"], [trace, 2, "getWindowInfoList"], [trace, 2, "getNetworkType"], [trace, 2, "getSystemCpuInfo"], [trace, 2, "getSystemMemorySize"], [trace, 2, "getSystemVersion"], [trace, 2, "setFragmentOptions"], [trace, 2, "getCurrentBrowserWindow"], [trace, 2, "createWindowProxy"], [trace, 2, "getBrowserWindowById"]], []).e;
|
|
434
440
|
var _applyDecs$e2 = _slicedToArray(_applyDecs$e, 1);
|
|
435
441
|
_initProto = _applyDecs$e2[0];
|
|
436
442
|
_applyDecs$e;
|
|
@@ -3,7 +3,6 @@ function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbol
|
|
|
3
3
|
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) { _defineProperty(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; }
|
|
4
4
|
import "core-js/modules/es.date.to-json.js";
|
|
5
5
|
import "core-js/modules/es.json.stringify.js";
|
|
6
|
-
import "core-js/modules/es.object.keys.js";
|
|
7
6
|
import "core-js/modules/es.symbol.js";
|
|
8
7
|
import "core-js/modules/es.array.filter.js";
|
|
9
8
|
import "core-js/modules/es.array.for-each.js";
|
|
@@ -12,12 +11,13 @@ import "core-js/modules/es.object.define-properties.js";
|
|
|
12
11
|
import "core-js/modules/es.object.define-property.js";
|
|
13
12
|
import "core-js/modules/es.object.get-own-property-descriptor.js";
|
|
14
13
|
import "core-js/modules/es.object.get-own-property-descriptors.js";
|
|
14
|
+
import "core-js/modules/es.object.keys.js";
|
|
15
15
|
import "core-js/modules/es.object.to-string.js";
|
|
16
16
|
import "core-js/modules/esnext.iterator.constructor.js";
|
|
17
17
|
import "core-js/modules/esnext.iterator.filter.js";
|
|
18
18
|
import "core-js/modules/esnext.iterator.for-each.js";
|
|
19
|
-
import "core-js/modules/esnext.json.parse.js";
|
|
20
19
|
import "core-js/modules/web.dom-collections.for-each.js";
|
|
20
|
+
import "core-js/modules/esnext.json.parse.js";
|
|
21
21
|
/**
|
|
22
22
|
* This file is for managing shared storage utilities.
|
|
23
23
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fcr-ui-scene",
|
|
3
|
-
"version": "3.9.
|
|
3
|
+
"version": "3.9.1-alpha",
|
|
4
4
|
"main": "lib/index.js",
|
|
5
5
|
"repository": "ssh://git@git.agoralab.co/aduc/fcr-ui-scene-desktop.git",
|
|
6
6
|
"author": "agora.io",
|
|
@@ -31,14 +31,14 @@
|
|
|
31
31
|
"@react-spring/web": "^9.7.3",
|
|
32
32
|
"@use-gesture/react": "^10.3.1",
|
|
33
33
|
"agora-electron-sdk": "4.3.2-build.167-rc.2",
|
|
34
|
-
"agora-foundation": "3.9.
|
|
35
|
-
"agora-ui-foundation": "3.9.
|
|
34
|
+
"agora-foundation": "^3.9.1-alpha",
|
|
35
|
+
"agora-ui-foundation": "^3.9.1-alpha",
|
|
36
36
|
"classnames": "^2.5.1",
|
|
37
37
|
"core-js": "^3.33.3",
|
|
38
38
|
"dayjs": "^1.10.4",
|
|
39
39
|
"electron-screenshots": "^0.5.26",
|
|
40
|
-
"fcr-core": "3.9.
|
|
41
|
-
"fcr-ui-widget-sdk": "3.9.
|
|
40
|
+
"fcr-core": "^3.9.1-alpha",
|
|
41
|
+
"fcr-ui-widget-sdk": "^3.9.1-alpha",
|
|
42
42
|
"js-md5": "^0.8.3",
|
|
43
43
|
"jszip": "^3.10.1",
|
|
44
44
|
"lodash": "^4.17.21",
|
|
@@ -69,7 +69,7 @@
|
|
|
69
69
|
"@types/react-dom": "^17.0.11",
|
|
70
70
|
"@types/react-virtualized": "^9.21.30",
|
|
71
71
|
"@types/tinycolor2": "^1.4.6",
|
|
72
|
-
"agora-toolchain": "3.9.
|
|
72
|
+
"agora-toolchain": "^3.9.1-alpha",
|
|
73
73
|
"core-js": "^3.33.3",
|
|
74
74
|
"electron": "22.3.27",
|
|
75
75
|
"husky": "^9.0.11",
|
|
@@ -1,66 +0,0 @@
|
|
|
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
|
-
var _button = require("agora-ui-foundation/lib/components/button");
|
|
9
|
-
var _tooltip = require("agora-ui-foundation/lib/components/tooltip");
|
|
10
|
-
var _mobxReact = require("mobx-react");
|
|
11
|
-
var _react = require("react");
|
|
12
|
-
var _store = require("../../store");
|
|
13
|
-
require("./index.css");
|
|
14
|
-
var _i18n = require("agora-ui-foundation/lib/i18n");
|
|
15
|
-
var _type = require("../../../../type");
|
|
16
|
-
var _jsxRuntime = require("react/jsx-runtime");
|
|
17
|
-
var ConnectFromComputer = (0, _mobxReact.observer)(function () {
|
|
18
|
-
var _useContext = (0, _react.useContext)(_store.StoreContext),
|
|
19
|
-
openAudioSettings = _useContext.openAudioSettings,
|
|
20
|
-
hasPstnStream = _useContext.hasPstnStream,
|
|
21
|
-
connectInfo = _useContext.connectInfo,
|
|
22
|
-
outgoingCall = _useContext.outgoingCall,
|
|
23
|
-
hasOwnPstnStream = _useContext.hasOwnPstnStream,
|
|
24
|
-
hasNeedMergedStream = _useContext.hasNeedMergedStream,
|
|
25
|
-
joinAudioByComputer = _useContext.joinAudioByComputer,
|
|
26
|
-
stopAudioByComputer = _useContext.stopAudioByComputer,
|
|
27
|
-
connectType = _useContext.connectType;
|
|
28
|
-
var transI18n = (0, _i18n.useI18n)();
|
|
29
|
-
return /*#__PURE__*/(0, _jsxRuntime.jsxs)("div", {
|
|
30
|
-
className: "connector-computer",
|
|
31
|
-
children: [connectType === _type.FcrUIConnectType.NONE && /*#__PURE__*/(0, _jsxRuntime.jsx)(_button.FcrButton, {
|
|
32
|
-
size: "XS",
|
|
33
|
-
block: true,
|
|
34
|
-
className: "var(--fcrcornerradiusround) fcr_ui_scene_ramp_brand6",
|
|
35
|
-
onClick: joinAudioByComputer,
|
|
36
|
-
children: transI18n('fmt_pstn_label_accessmethodPC')
|
|
37
|
-
}), hasPstnStream && !outgoingCall && !hasOwnPstnStream && hasNeedMergedStream && /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
38
|
-
className: "connector-phone-alert",
|
|
39
|
-
children: transI18n('fmt_pstn_label_alreadyin', {
|
|
40
|
-
reason1: connectInfo === null || connectInfo === void 0 ? void 0 : connectInfo.phoneUserId
|
|
41
|
-
})
|
|
42
|
-
}), connectType === _type.FcrUIConnectType.COMPUTER && /*#__PURE__*/(0, _jsxRuntime.jsx)(_button.FcrButton, {
|
|
43
|
-
size: "XS",
|
|
44
|
-
styleType: "danger",
|
|
45
|
-
block: true,
|
|
46
|
-
className: "var(--fcrcornerradiusround)",
|
|
47
|
-
onClick: stopAudioByComputer,
|
|
48
|
-
children: transI18n('fmt_pstn_button_PCaudiostop')
|
|
49
|
-
}), connectType === _type.FcrUIConnectType.PHONE && hasOwnPstnStream && /*#__PURE__*/(0, _jsxRuntime.jsx)(_tooltip.FcrToolTip, {
|
|
50
|
-
content: transI18n('fmt_pstn_tips_alreadyphone'),
|
|
51
|
-
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_button.FcrButton, {
|
|
52
|
-
size: "XS",
|
|
53
|
-
block: true,
|
|
54
|
-
type: "secondary-bordered",
|
|
55
|
-
children: transI18n('fmt_pstn_status_unconnectted')
|
|
56
|
-
})
|
|
57
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_button.FcrButton, {
|
|
58
|
-
size: "XS",
|
|
59
|
-
block: true,
|
|
60
|
-
type: "link",
|
|
61
|
-
onClick: openAudioSettings,
|
|
62
|
-
children: transI18n('fmt_pstn_button_devicetest')
|
|
63
|
-
})]
|
|
64
|
-
});
|
|
65
|
-
});
|
|
66
|
-
var _default = exports["default"] = ConnectFromComputer;
|
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
.connector-phone-call_info {
|
|
2
|
-
color: var(--fcr_ui_scene_icontext1);
|
|
3
|
-
margin-top: 8px;
|
|
4
|
-
}
|
|
5
|
-
|
|
6
|
-
.connector-phone-call_info.disabled {
|
|
7
|
-
color: var(--fcr_ui_scene_icontext3);
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
.connector-phone-call_info .connector-phone-call_info-item:first-child {
|
|
11
|
-
margin-bottom: 11px;
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
.connector-phone-call_info-item {
|
|
15
|
-
height: 32px;
|
|
16
|
-
display: flex;
|
|
17
|
-
align-items: center;
|
|
18
|
-
font-size: 14px;
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
.connector-phone-call_info .fcr-select {
|
|
22
|
-
width: 180px;
|
|
23
|
-
border-color: var(--fcr_web_ui_scene_line4);
|
|
24
|
-
background: var(--fcr_ui_scene_input2);
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
.connector-phone-call_info-label {
|
|
28
|
-
width: 97px;
|
|
29
|
-
display: block;
|
|
30
|
-
text-align: right;
|
|
31
|
-
margin-right: 12px;
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
.connector-phone-call_info.disabled .fcr-select .fcr-select__selected {
|
|
35
|
-
color: var(--fcr_ui_scene_icontext3);
|
|
36
|
-
}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { FcrRoomConnectorPhoneInfo } from 'fcr-core/lib/room-control/room-connector-control/type';
|
|
2
|
-
import './index.css';
|
|
3
|
-
import { ConnectorRegion } from '../../../../enums';
|
|
4
|
-
declare function ConnectionInfo(props: {
|
|
5
|
-
disabled?: boolean;
|
|
6
|
-
onChange: (value: string) => void;
|
|
7
|
-
value: ConnectorRegion;
|
|
8
|
-
info: FcrRoomConnectorPhoneInfo;
|
|
9
|
-
}): import("react/jsx-runtime").JSX.Element;
|
|
10
|
-
export default ConnectionInfo;
|
|
@@ -1,78 +0,0 @@
|
|
|
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/es.array.slice.js");
|
|
10
|
-
require("core-js/modules/es.object.to-string.js");
|
|
11
|
-
require("core-js/modules/esnext.iterator.constructor.js");
|
|
12
|
-
require("core-js/modules/esnext.iterator.map.js");
|
|
13
|
-
var _select = require("agora-ui-foundation/lib/components/select");
|
|
14
|
-
require("./index.css");
|
|
15
|
-
var _i18n = require("agora-ui-foundation/lib/i18n");
|
|
16
|
-
var _jsxRuntime = require("react/jsx-runtime");
|
|
17
|
-
function ConnectionInfo(props) {
|
|
18
|
-
var _info$phoneNumberList;
|
|
19
|
-
var disabled = props.disabled,
|
|
20
|
-
value = props.value,
|
|
21
|
-
onChange = props.onChange,
|
|
22
|
-
info = props.info;
|
|
23
|
-
var transI18n = (0, _i18n.useI18n)();
|
|
24
|
-
return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
25
|
-
className: "connector-phone_inner",
|
|
26
|
-
children: /*#__PURE__*/(0, _jsxRuntime.jsxs)("ul", {
|
|
27
|
-
className: "connector-phone-call_info ".concat(disabled && 'disabled'),
|
|
28
|
-
children: [/*#__PURE__*/(0, _jsxRuntime.jsxs)("li", {
|
|
29
|
-
className: "connector-phone-call_info-item",
|
|
30
|
-
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("label", {
|
|
31
|
-
className: "connector-phone-call_info-label",
|
|
32
|
-
children: transI18n('fmt_pstn_label_countryregion')
|
|
33
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
34
|
-
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_select.FcrSelect, {
|
|
35
|
-
disabled: disabled,
|
|
36
|
-
size: "small",
|
|
37
|
-
value: String(value),
|
|
38
|
-
options: [{
|
|
39
|
-
text: transI18n('fmt_PSTN_status_china'),
|
|
40
|
-
value: '1'
|
|
41
|
-
}, {
|
|
42
|
-
text: transI18n('fmt_PSTN_status_usa'),
|
|
43
|
-
value: '2'
|
|
44
|
-
}],
|
|
45
|
-
onChange: onChange
|
|
46
|
-
})
|
|
47
|
-
})]
|
|
48
|
-
}), info === null || info === void 0 || (_info$phoneNumberList = info.phoneNumberList) === null || _info$phoneNumberList === void 0 ? void 0 : _info$phoneNumberList.map(function (phoneNumber, index) {
|
|
49
|
-
return /*#__PURE__*/(0, _jsxRuntime.jsxs)("li", {
|
|
50
|
-
className: "connector-phone-call_info-item",
|
|
51
|
-
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("label", {
|
|
52
|
-
className: "connector-phone-call_info-label",
|
|
53
|
-
children: index === 0 ? transI18n('fmt_pstn_label_dial') : ''
|
|
54
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsxs)("div", {
|
|
55
|
-
children: ["+86 (", phoneNumber[0], ") ", phoneNumber.slice(1)]
|
|
56
|
-
})]
|
|
57
|
-
}, phoneNumber);
|
|
58
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsxs)("li", {
|
|
59
|
-
className: "connector-phone-call_info-item",
|
|
60
|
-
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("label", {
|
|
61
|
-
className: "connector-phone-call_info-label",
|
|
62
|
-
children: transI18n('fmt_pstn_label_meetingid')
|
|
63
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
64
|
-
children: (info === null || info === void 0 ? void 0 : info.phoneRoomId) || '-'
|
|
65
|
-
})]
|
|
66
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsxs)("li", {
|
|
67
|
-
className: "connector-phone-call_info-item",
|
|
68
|
-
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("label", {
|
|
69
|
-
className: "connector-phone-call_info-label",
|
|
70
|
-
children: transI18n('fmt_pstn_label_participantid')
|
|
71
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsxs)("div", {
|
|
72
|
-
children: ["#", (info === null || info === void 0 ? void 0 : info.phoneUserId) || '-', "#"]
|
|
73
|
-
})]
|
|
74
|
-
})]
|
|
75
|
-
})
|
|
76
|
-
});
|
|
77
|
-
}
|
|
78
|
-
var _default = exports["default"] = ConnectionInfo;
|