fcr-ui-scene 3.9.0-alpha → 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 +4 -2
- package/lib/creator/provider-initializer.electron.js +13 -5
- package/lib/electron/injections.d.ts +1 -0
- package/lib/electron/injections.js +4 -1
- package/lib/electron/preload.js +1 -0
- package/lib/fragments/annotation/style.css +1 -0
- package/lib/fragments/whiteboard/style.css +4 -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/chat-room-store.js +4 -2
- 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 +3 -2
- package/lib/modules/control-bar/store.js +17 -29
- package/lib/modules/control-bar/type.d.ts +0 -1
- package/lib/modules/control-bar/view.js +21 -17
- 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/providers/user-audio-volume-provider.d.ts +6 -0
- package/lib/providers/user-audio-volume-provider.js +3 -2
- 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 +4 -2
- package/lib-es/creator/provider-initializer.electron.js +11 -3
- package/lib-es/electron/injections.js +3 -0
- package/lib-es/electron/preload.js +2 -1
- package/lib-es/fragments/annotation/style.css +1 -0
- package/lib-es/fragments/whiteboard/style.css +4 -0
- 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/chat-room-store.js +4 -2
- 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 +18 -30
- package/lib-es/modules/control-bar/view.js +21 -17
- 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/providers/user-audio-volume-provider.js +3 -2
- 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
|
@@ -97,7 +97,7 @@ var _decorator = require("agora-foundation/lib/decorator");
|
|
|
97
97
|
var _logger = require("../utilities/logger");
|
|
98
98
|
var _constant = require("../utilities/constant");
|
|
99
99
|
var _FcrUISharedMemberDataSourceImpl;
|
|
100
|
-
var _initProto, _init__isLocalUserInPstn, _init__interpreterInputLanguageList, _init__localUser, _init_totalUserCount, _init_shareScreenVideoSize, _updateMemberListWithBoardStateDecs, _setIsLocalUserInPstnDecs, _handleAllUserCountUpdatedDecs, _handleUserInfoUpdatedDecs, _syncParticipantsDecs, _handleRemoteUserJoinedDecs, _handleRemoteUserLeftDecs, _handleStreamsAddedDecs, _debouncedHandleStreamsAddedDecs, _handleStreamsUpdatedDecs, _debouncedHandleStreamsUpdatedDecs, _handleStreamsRemovedDecs, _debouncedHandleStreamsRemovedDecs, _ref;
|
|
100
|
+
var _initProto, _init__isLocalUserInPstn, _init__isLocalUserInVolte, _init__interpreterInputLanguageList, _init__localUser, _init_totalUserCount, _init_shareScreenVideoSize, _updateMemberListWithBoardStateDecs, _setIsLocalUserInPstnDecs, _setIsLocalUserInVolteDecs, _handleAllUserCountUpdatedDecs, _handleUserInfoUpdatedDecs, _syncParticipantsDecs, _handleRemoteUserJoinedDecs, _handleRemoteUserLeftDecs, _handleStreamsAddedDecs, _debouncedHandleStreamsAddedDecs, _handleStreamsUpdatedDecs, _debouncedHandleStreamsUpdatedDecs, _handleStreamsRemovedDecs, _debouncedHandleStreamsRemovedDecs, _ref;
|
|
101
101
|
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; }
|
|
102
102
|
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; }
|
|
103
103
|
function _classPrivateFieldInitSpec(e, t, a) { _checkPrivateRedeclaration(e, t), t.set(e, a); }
|
|
@@ -115,7 +115,8 @@ var _B = /*#__PURE__*/new WeakMap();
|
|
|
115
115
|
var _C = /*#__PURE__*/new WeakMap();
|
|
116
116
|
var _D = /*#__PURE__*/new WeakMap();
|
|
117
117
|
var _E = /*#__PURE__*/new WeakMap();
|
|
118
|
-
|
|
118
|
+
var _F = /*#__PURE__*/new WeakMap();
|
|
119
|
+
_ref = (_updateMemberListWithBoardStateDecs = [_mobx.action, _mobx.action.bound], _setIsLocalUserInPstnDecs = [_mobx.action, _mobx.action.bound], _setIsLocalUserInVolteDecs = [_mobx.action, _mobx.action.bound], _handleAllUserCountUpdatedDecs = [_mobx.action, _mobx.action.bound], _handleUserInfoUpdatedDecs = [_mobx.action, _mobx.action.bound], _syncParticipantsDecs = (0, _decorator.debounced)(800), _handleRemoteUserJoinedDecs = [_mobx.action, _mobx.action.bound], _handleRemoteUserLeftDecs = [_mobx.action, _mobx.action.bound], _handleStreamsAddedDecs = [_mobx.action, _mobx.action.bound], _debouncedHandleStreamsAddedDecs = (0, _decorator.debounced)(50), _handleStreamsUpdatedDecs = [_mobx.action, _mobx.action.bound], _debouncedHandleStreamsUpdatedDecs = (0, _decorator.debounced)(50), _handleStreamsRemovedDecs = [_mobx.action, _mobx.action.bound], _debouncedHandleStreamsRemovedDecs = (0, _decorator.debounced)(50), "logger");
|
|
119
120
|
var FcrUISharedMemberDataSourceImpl = exports.FcrUISharedMemberDataSourceImpl = /*#__PURE__*/function () {
|
|
120
121
|
function FcrUISharedMemberDataSourceImpl(_mainRoomUserControl, _streamControl, _sharedScreenShareSharedDataSource, _eventProvider, _whiteBoardControl) {
|
|
121
122
|
var _this = this;
|
|
@@ -126,8 +127,9 @@ var FcrUISharedMemberDataSourceImpl = exports.FcrUISharedMemberDataSourceImpl =
|
|
|
126
127
|
(0, _defineProperty2["default"])(this, "_dataSource", new _memberListDataSource.FcrUIMemberListDataSourceImpl());
|
|
127
128
|
(0, _defineProperty2["default"])(this, "_disposers", []);
|
|
128
129
|
_classPrivateFieldInitSpec(this, _A, _init__isLocalUserInPstn(this, false));
|
|
129
|
-
_classPrivateFieldInitSpec(this, _B,
|
|
130
|
-
_classPrivateFieldInitSpec(this, _C,
|
|
130
|
+
_classPrivateFieldInitSpec(this, _B, _init__isLocalUserInVolte(this, false));
|
|
131
|
+
_classPrivateFieldInitSpec(this, _C, _init__interpreterInputLanguageList(this, []));
|
|
132
|
+
_classPrivateFieldInitSpec(this, _D, _init__localUser(this));
|
|
131
133
|
(0, _defineProperty2["default"])(this, "_userObserver", {
|
|
132
134
|
onRemoteUsersJoined: this._handleRemoteUserJoined,
|
|
133
135
|
onRemoteUsersLeft: this._handleRemoteUserLeft,
|
|
@@ -142,8 +144,8 @@ var FcrUISharedMemberDataSourceImpl = exports.FcrUISharedMemberDataSourceImpl =
|
|
|
142
144
|
(0, _defineProperty2["default"])(this, "_eventProviderObserver", {
|
|
143
145
|
onEvent: this._handleOnEvent
|
|
144
146
|
});
|
|
145
|
-
_classPrivateFieldInitSpec(this,
|
|
146
|
-
_classPrivateFieldInitSpec(this,
|
|
147
|
+
_classPrivateFieldInitSpec(this, _E, _init_totalUserCount(this, 1));
|
|
148
|
+
_classPrivateFieldInitSpec(this, _F, _init_shareScreenVideoSize(this, null));
|
|
147
149
|
this._mainRoomUserControl = _mainRoomUserControl;
|
|
148
150
|
this._streamControl = _streamControl;
|
|
149
151
|
this._sharedScreenShareSharedDataSource = _sharedScreenShareSharedDataSource;
|
|
@@ -172,7 +174,7 @@ var FcrUISharedMemberDataSourceImpl = exports.FcrUISharedMemberDataSourceImpl =
|
|
|
172
174
|
_classPrivateFieldSet(_A, this, v);
|
|
173
175
|
}
|
|
174
176
|
}, {
|
|
175
|
-
key: "
|
|
177
|
+
key: "_isLocalUserInVolte",
|
|
176
178
|
get: function get() {
|
|
177
179
|
return _classPrivateFieldGet(_B, this);
|
|
178
180
|
},
|
|
@@ -180,7 +182,7 @@ var FcrUISharedMemberDataSourceImpl = exports.FcrUISharedMemberDataSourceImpl =
|
|
|
180
182
|
_classPrivateFieldSet(_B, this, v);
|
|
181
183
|
}
|
|
182
184
|
}, {
|
|
183
|
-
key: "
|
|
185
|
+
key: "_interpreterInputLanguageList",
|
|
184
186
|
get: function get() {
|
|
185
187
|
return _classPrivateFieldGet(_C, this);
|
|
186
188
|
},
|
|
@@ -188,7 +190,7 @@ var FcrUISharedMemberDataSourceImpl = exports.FcrUISharedMemberDataSourceImpl =
|
|
|
188
190
|
_classPrivateFieldSet(_C, this, v);
|
|
189
191
|
}
|
|
190
192
|
}, {
|
|
191
|
-
key: "
|
|
193
|
+
key: "_localUser",
|
|
192
194
|
get: function get() {
|
|
193
195
|
return _classPrivateFieldGet(_D, this);
|
|
194
196
|
},
|
|
@@ -196,13 +198,21 @@ var FcrUISharedMemberDataSourceImpl = exports.FcrUISharedMemberDataSourceImpl =
|
|
|
196
198
|
_classPrivateFieldSet(_D, this, v);
|
|
197
199
|
}
|
|
198
200
|
}, {
|
|
199
|
-
key: "
|
|
201
|
+
key: "totalUserCount",
|
|
200
202
|
get: function get() {
|
|
201
203
|
return _classPrivateFieldGet(_E, this);
|
|
202
204
|
},
|
|
203
205
|
set: function set(v) {
|
|
204
206
|
_classPrivateFieldSet(_E, this, v);
|
|
205
207
|
}
|
|
208
|
+
}, {
|
|
209
|
+
key: "shareScreenVideoSize",
|
|
210
|
+
get: function get() {
|
|
211
|
+
return _classPrivateFieldGet(_F, this);
|
|
212
|
+
},
|
|
213
|
+
set: function set(v) {
|
|
214
|
+
_classPrivateFieldSet(_F, this, v);
|
|
215
|
+
}
|
|
206
216
|
}, {
|
|
207
217
|
key: "localUserId",
|
|
208
218
|
get: function get() {
|
|
@@ -213,6 +223,11 @@ var FcrUISharedMemberDataSourceImpl = exports.FcrUISharedMemberDataSourceImpl =
|
|
|
213
223
|
get: function get() {
|
|
214
224
|
return this._isLocalUserInPstn;
|
|
215
225
|
}
|
|
226
|
+
}, {
|
|
227
|
+
key: "hasOwnVolteStream",
|
|
228
|
+
get: function get() {
|
|
229
|
+
return this._isLocalUserInVolte;
|
|
230
|
+
}
|
|
216
231
|
}, {
|
|
217
232
|
key: "interpreterInputLanguageList",
|
|
218
233
|
get: function get() {
|
|
@@ -313,6 +328,16 @@ var FcrUISharedMemberDataSourceImpl = exports.FcrUISharedMemberDataSourceImpl =
|
|
|
313
328
|
});
|
|
314
329
|
this._isLocalUserInPstn = !!pstnStream;
|
|
315
330
|
}
|
|
331
|
+
}, {
|
|
332
|
+
key: "_setIsLocalUserInVolte",
|
|
333
|
+
value: function _setIsLocalUserInVolte() {
|
|
334
|
+
var streams = this._streamControl.getStreamsByUserId(this.localUserId);
|
|
335
|
+
var volteStream = streams.find(function (_ref3) {
|
|
336
|
+
var connectorType = _ref3.connectorType;
|
|
337
|
+
return connectorType === _fcrCore.FcrRoomConnectorType.VOLTE;
|
|
338
|
+
});
|
|
339
|
+
this._isLocalUserInVolte = !!volteStream;
|
|
340
|
+
}
|
|
316
341
|
}, {
|
|
317
342
|
key: "_handleAllUserCountUpdated",
|
|
318
343
|
value: function _handleAllUserCountUpdated(_roomId, count) {
|
|
@@ -407,6 +432,7 @@ var FcrUISharedMemberDataSourceImpl = exports.FcrUISharedMemberDataSourceImpl =
|
|
|
407
432
|
_this7._dataSource.updateWithStreamAdd(modifiedStream);
|
|
408
433
|
});
|
|
409
434
|
_this7._setIsLocalUserInPstn();
|
|
435
|
+
_this7._setIsLocalUserInVolte();
|
|
410
436
|
});
|
|
411
437
|
}
|
|
412
438
|
}, {
|
|
@@ -429,6 +455,7 @@ var FcrUISharedMemberDataSourceImpl = exports.FcrUISharedMemberDataSourceImpl =
|
|
|
429
455
|
_this8._dataSource.updateStreamInfo(modifiedStream);
|
|
430
456
|
});
|
|
431
457
|
_this8._setIsLocalUserInPstn();
|
|
458
|
+
_this8._setIsLocalUserInVolte();
|
|
432
459
|
});
|
|
433
460
|
}
|
|
434
461
|
}, {
|
|
@@ -447,17 +474,19 @@ var FcrUISharedMemberDataSourceImpl = exports.FcrUISharedMemberDataSourceImpl =
|
|
|
447
474
|
_this9._dataSource.updateWithStreamRemove(modifiedStream);
|
|
448
475
|
});
|
|
449
476
|
_this9._setIsLocalUserInPstn();
|
|
477
|
+
_this9._setIsLocalUserInVolte();
|
|
450
478
|
});
|
|
451
479
|
}
|
|
452
480
|
}]);
|
|
453
481
|
}();
|
|
454
482
|
_FcrUISharedMemberDataSourceImpl = FcrUISharedMemberDataSourceImpl;
|
|
455
|
-
var _applyDecs$e = _applyDecs(_FcrUISharedMemberDataSourceImpl, [[_mobx.observable, 1, "_isLocalUserInPstn"], [_mobx.observable, 1, "_interpreterInputLanguageList"], [_mobx.observable, 1, "_localUser"], [_mobx.observable, 1, "totalUserCount"], [_mobx.observable, 1, "shareScreenVideoSize"], [_mobx.computed, 3, "hasOwnPstnStream"], [_mobx.computed, 3, "interpreterInputLanguageList"], [_mobx.computed, 3, "isLocalUserHost"], [_mobx.computed, 3, "remoteMembers"], [_mobx.computed, 3, "remoteMembersUserInfosList"], [_mobx.computed, 3, "memberUserInfoList"], [_decorator.bound, 2, "_handleOnEvent"], [_updateMemberListWithBoardStateDecs, 18, "updateMemberListWithBoardState"], [_setIsLocalUserInPstnDecs, 18, "_setIsLocalUserInPstn"], [_handleAllUserCountUpdatedDecs, 18, "_handleAllUserCountUpdated"], [_handleUserInfoUpdatedDecs, 18, "_handleUserInfoUpdated"], [_syncParticipantsDecs, 2, "_syncParticipants"], [_handleRemoteUserJoinedDecs, 18, "_handleRemoteUserJoined"], [_handleRemoteUserLeftDecs, 18, "_handleRemoteUserLeft"], [_handleStreamsAddedDecs, 18, "_handleStreamsAdded"], [_debouncedHandleStreamsAddedDecs, 2, "_debouncedHandleStreamsAdded"], [_handleStreamsUpdatedDecs, 18, "_handleStreamsUpdated"], [_debouncedHandleStreamsUpdatedDecs, 2, "_debouncedHandleStreamsUpdated"], [_handleStreamsRemovedDecs, 18, "_handleStreamsRemoved"], [_debouncedHandleStreamsRemovedDecs, 2, "_debouncedHandleStreamsRemoved"]], []).e;
|
|
456
|
-
var _applyDecs$e2 = (0, _slicedToArray2["default"])(_applyDecs$e,
|
|
483
|
+
var _applyDecs$e = _applyDecs(_FcrUISharedMemberDataSourceImpl, [[_mobx.observable, 1, "_isLocalUserInPstn"], [_mobx.observable, 1, "_isLocalUserInVolte"], [_mobx.observable, 1, "_interpreterInputLanguageList"], [_mobx.observable, 1, "_localUser"], [_mobx.observable, 1, "totalUserCount"], [_mobx.observable, 1, "shareScreenVideoSize"], [_mobx.computed, 3, "hasOwnPstnStream"], [_mobx.computed, 3, "hasOwnVolteStream"], [_mobx.computed, 3, "interpreterInputLanguageList"], [_mobx.computed, 3, "isLocalUserHost"], [_mobx.computed, 3, "remoteMembers"], [_mobx.computed, 3, "remoteMembersUserInfosList"], [_mobx.computed, 3, "memberUserInfoList"], [_decorator.bound, 2, "_handleOnEvent"], [_updateMemberListWithBoardStateDecs, 18, "updateMemberListWithBoardState"], [_setIsLocalUserInPstnDecs, 18, "_setIsLocalUserInPstn"], [_setIsLocalUserInVolteDecs, 18, "_setIsLocalUserInVolte"], [_handleAllUserCountUpdatedDecs, 18, "_handleAllUserCountUpdated"], [_handleUserInfoUpdatedDecs, 18, "_handleUserInfoUpdated"], [_syncParticipantsDecs, 2, "_syncParticipants"], [_handleRemoteUserJoinedDecs, 18, "_handleRemoteUserJoined"], [_handleRemoteUserLeftDecs, 18, "_handleRemoteUserLeft"], [_handleStreamsAddedDecs, 18, "_handleStreamsAdded"], [_debouncedHandleStreamsAddedDecs, 2, "_debouncedHandleStreamsAdded"], [_handleStreamsUpdatedDecs, 18, "_handleStreamsUpdated"], [_debouncedHandleStreamsUpdatedDecs, 2, "_debouncedHandleStreamsUpdated"], [_handleStreamsRemovedDecs, 18, "_handleStreamsRemoved"], [_debouncedHandleStreamsRemovedDecs, 2, "_debouncedHandleStreamsRemoved"]], []).e;
|
|
484
|
+
var _applyDecs$e2 = (0, _slicedToArray2["default"])(_applyDecs$e, 7);
|
|
457
485
|
_init__isLocalUserInPstn = _applyDecs$e2[0];
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
486
|
+
_init__isLocalUserInVolte = _applyDecs$e2[1];
|
|
487
|
+
_init__interpreterInputLanguageList = _applyDecs$e2[2];
|
|
488
|
+
_init__localUser = _applyDecs$e2[3];
|
|
489
|
+
_init_totalUserCount = _applyDecs$e2[4];
|
|
490
|
+
_init_shareScreenVideoSize = _applyDecs$e2[5];
|
|
491
|
+
_initProto = _applyDecs$e2[6];
|
|
463
492
|
_applyDecs$e;
|
|
@@ -80,7 +80,7 @@ var _mobx = require("mobx");
|
|
|
80
80
|
var _type2 = require("fcr-core/lib/type");
|
|
81
81
|
var _fcrCore = require("fcr-core");
|
|
82
82
|
var _FcrUIVideoWindowDataImpl, _FcrUIVideoWindowDataSourceImpl;
|
|
83
|
-
var _initProto, _init__boardUserInfo, _init__videoStream, _init__audioStream, _init__spotlightEnabled, _init__isSpeakerSpotlight, _init__boardCanEdit, _init__isFirstCameraOpen, _init_isPin, _init_hasScreenSharing, _init_hasBoardSharing, _init_hasLoopbackSharing, _setVideoStreamDecs, _setVideoStreamOwnerInfoDecs, _setAudioStreamDecs, _setAudioStreamOwnerInfoDecs, _setPinDecs, _setSpotlightEnabledDecs, _setHasBoardSharingDecs, _setBoardUserInfoDecs, _setSpeakerSpotlightDecs, _setHasScreenSharingDecs, _setHasLoopbackSharingDecs, _setBoardCanEditDecs, _getVideoStreamDecs, _ref, _initProto2, _init_spotlightEnabled, _init_layoutType, _init_manualLayout, _init_pinLimitedCount, _init_mainListLimitedCount, _init_foldListLimitedCount, _init_mainList, _init_foldList, _init_spotlightStreamId, _setSpotlightEnabledDecs2, _setLayoutDecs, _onSpotlightRemovedDecs, _resetListDecs, _addBoardDecs, _updateBoardDecs, _removeBoardDecs, _mergePstnStreamOrInsertNewDataDecs, _addDecs, _updateDecs, _deleteDecs, _addPinDecs, _removePinDecs, _setSpeakerSpotlightDecs2, _toggleMainStreamDecs, _insertBeginningByPriorityDecs, _insertEndByPriorityDecs, _findInsertBeginningIndexDecs, _findInsertEndIndexDecs, _insertBoardDecs, _insertNewDataDecs,
|
|
83
|
+
var _initProto, _init__boardUserInfo, _init__videoStream, _init__audioStream, _init__spotlightEnabled, _init__isSpeakerSpotlight, _init__boardCanEdit, _init__isFirstCameraOpen, _init_isPin, _init_hasScreenSharing, _init_hasBoardSharing, _init_hasLoopbackSharing, _setVideoStreamDecs, _setVideoStreamOwnerInfoDecs, _setAudioStreamDecs, _setAudioStreamOwnerInfoDecs, _setPinDecs, _setSpotlightEnabledDecs, _setHasBoardSharingDecs, _setBoardUserInfoDecs, _setSpeakerSpotlightDecs, _setHasScreenSharingDecs, _setHasLoopbackSharingDecs, _setBoardCanEditDecs, _getVideoStreamDecs, _ref, _initProto2, _init_spotlightEnabled, _init_layoutType, _init_manualLayout, _init_pinLimitedCount, _init_mainListLimitedCount, _init_foldListLimitedCount, _init_mainList, _init_foldList, _init_spotlightStreamId, _setSpotlightEnabledDecs2, _setLayoutDecs, _onSpotlightRemovedDecs, _resetListDecs, _addBoardDecs, _updateBoardDecs, _removeBoardDecs, _mergePstnStreamOrInsertNewDataDecs, _addDecs, _updateDecs, _deleteDecs, _addPinDecs, _removePinDecs, _setSpeakerSpotlightDecs2, _toggleMainStreamDecs, _insertBeginningByPriorityDecs, _insertEndByPriorityDecs, _findInsertBeginningIndexDecs, _findInsertEndIndexDecs, _insertBoardDecs, _insertNewDataDecs, _ref6;
|
|
84
84
|
function _createForOfIteratorHelper(r, e) { var t = "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"]; if (!t) { if (Array.isArray(r) || (t = _unsupportedIterableToArray(r)) || e && r && "number" == typeof r.length) { t && (r = t); var _n = 0, F = function F() {}; return { s: F, n: function n() { return _n >= r.length ? { done: !0 } : { done: !1, value: r[_n++] }; }, e: function e(r) { throw r; }, f: F }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } var o, a = !0, u = !1; return { s: function s() { t = t.call(r); }, n: function n() { var r = t.next(); return a = r.done, r; }, e: function e(r) { u = !0, o = r; }, f: function f() { try { a || null == t["return"] || t["return"](); } finally { if (u) throw o; } } }; }
|
|
85
85
|
function _unsupportedIterableToArray(r, a) { if (r) { if ("string" == typeof r) return _arrayLikeToArray(r, a); var t = {}.toString.call(r).slice(8, -1); return "Object" === t && r.constructor && (t = r.constructor.name), "Map" === t || "Set" === t ? Array.from(r) : "Arguments" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0; } }
|
|
86
86
|
function _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length); for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e]; return n; }
|
|
@@ -305,6 +305,10 @@ var FcrUIVideoWindowDataImpl = exports.FcrUIVideoWindowDataImpl = /*#__PURE__*/f
|
|
|
305
305
|
var _ref4 = this._audioStream || {},
|
|
306
306
|
audioSourceState = _ref4.audioSourceState;
|
|
307
307
|
return audioSourceState === _fcrCore.FcrMediaSourceState.OPEN;
|
|
308
|
+
} else if (this.videoStreamConnectorType === _fcrCore.FcrRoomConnectorType.VOLTE) {
|
|
309
|
+
var _ref5 = this._videoStream || {},
|
|
310
|
+
_audioSourceState = _ref5.audioSourceState;
|
|
311
|
+
return _audioSourceState === _fcrCore.FcrMediaSourceState.OPEN;
|
|
308
312
|
} else {
|
|
309
313
|
return false;
|
|
310
314
|
}
|
|
@@ -361,7 +365,7 @@ var FcrUIVideoWindowDataImpl = exports.FcrUIVideoWindowDataImpl = /*#__PURE__*/f
|
|
|
361
365
|
var _this$_videoStream1;
|
|
362
366
|
// 如果是pstn没有头像
|
|
363
367
|
// 其他用户取videoStream的owner的avatar
|
|
364
|
-
if (this.audioStreamConnectorType === _fcrCore.FcrRoomConnectorType.PSTN) {
|
|
368
|
+
if (this.audioStreamConnectorType === _fcrCore.FcrRoomConnectorType.PSTN || this.audioStreamConnectorType === _fcrCore.FcrRoomConnectorType.VOLTE) {
|
|
365
369
|
return '';
|
|
366
370
|
}
|
|
367
371
|
return ((_this$_videoStream1 = this._videoStream) === null || _this$_videoStream1 === void 0 ? void 0 : _this$_videoStream1.owner.avatar) || '';
|
|
@@ -546,11 +550,11 @@ var _F2 = /*#__PURE__*/new WeakMap();
|
|
|
546
550
|
var _G2 = /*#__PURE__*/new WeakMap();
|
|
547
551
|
var _H2 = /*#__PURE__*/new WeakMap();
|
|
548
552
|
var _I2 = /*#__PURE__*/new WeakMap();
|
|
549
|
-
|
|
553
|
+
_ref6 = (_setSpotlightEnabledDecs2 = [_mobx.action, _mobx.action.bound], _setLayoutDecs = [_mobx.action, _mobx.action.bound], _onSpotlightRemovedDecs = [_mobx.action, _mobx.action.bound], _resetListDecs = [_mobx.action, _mobx.action.bound], _addBoardDecs = [_mobx.action, _mobx.action.bound], _updateBoardDecs = [_mobx.action, _mobx.action.bound], _removeBoardDecs = [_mobx.action, _mobx.action.bound], _mergePstnStreamOrInsertNewDataDecs = [_mobx.action, _mobx.action.bound], _addDecs = [_mobx.action, _mobx.action.bound], _updateDecs = [_mobx.action, _mobx.action.bound], _deleteDecs = [_mobx.action, _mobx.action.bound], _addPinDecs = [_mobx.action, _mobx.action.bound], _removePinDecs = [_mobx.action, _mobx.action.bound], _setSpeakerSpotlightDecs2 = [_mobx.action, _mobx.action.bound], _toggleMainStreamDecs = [_mobx.action, _mobx.action.bound], _insertBeginningByPriorityDecs = [_mobx.action, _mobx.action.bound], _insertEndByPriorityDecs = [_mobx.action, _mobx.action.bound], _findInsertBeginningIndexDecs = [_mobx.action, _mobx.action.bound], _findInsertEndIndexDecs = [_mobx.action, _mobx.action.bound], _insertBoardDecs = [_mobx.action, _mobx.action.bound], _insertNewDataDecs = [_mobx.action, _mobx.action.bound], "_observer");
|
|
550
554
|
var FcrUIVideoWindowDataSourceImpl = exports.FcrUIVideoWindowDataSourceImpl = /*#__PURE__*/function () {
|
|
551
555
|
function FcrUIVideoWindowDataSourceImpl(_sharedSettingDataSource) {
|
|
552
556
|
(0, _classCallCheck2["default"])(this, FcrUIVideoWindowDataSourceImpl);
|
|
553
|
-
(0, _defineProperty2["default"])(this,
|
|
557
|
+
(0, _defineProperty2["default"])(this, _ref6, (_initProto2(this), new _observable.AgoraObservable()));
|
|
554
558
|
(0, _defineProperty2["default"])(this, "_spotlightPool", new FcrUISpeakerSpotlightPool());
|
|
555
559
|
_classPrivateFieldInitSpec(this, _A2, _init_spotlightEnabled(this, true));
|
|
556
560
|
_classPrivateFieldInitSpec(this, _B2, _init_layoutType(this, _type.FcrUIVideoWindowLayoutType.Gallery));
|
|
@@ -8,7 +8,6 @@ export declare const enUs: {
|
|
|
8
8
|
fmt_participants_button_muteAll: string;
|
|
9
9
|
fmt_participants_button_unmuteAll: string;
|
|
10
10
|
fmt_participants_button_meetingManagement: string;
|
|
11
|
-
fmt_participants_button_meetingPermission: string;
|
|
12
11
|
fmt_participants_button_invite: string;
|
|
13
12
|
fmt_participants_member_button_mute: string;
|
|
14
13
|
fmt_participants_member_button_unmute: string;
|
|
@@ -1057,6 +1056,10 @@ export declare const enUs: {
|
|
|
1057
1056
|
fmt_record_record_stop_confirm: string;
|
|
1058
1057
|
fmt_record_toast_record_paused: string;
|
|
1059
1058
|
fmt_record_toast_record_resumed: string;
|
|
1059
|
+
fmt_invitepage_label_by_invitation: string;
|
|
1060
|
+
fmt_invitepage_label_meeting_connector: string;
|
|
1061
|
+
fmt_invitepage_label_invite_link: string;
|
|
1062
|
+
fmt_invitepage_label_meeting_details: string;
|
|
1060
1063
|
fmt_pstn_label_accessmethod: string;
|
|
1061
1064
|
fmt_pstn_options_PCaudioconnet: string;
|
|
1062
1065
|
fmt_pstn_options_phoneaudioconnet: string;
|
|
@@ -1122,6 +1125,7 @@ export declare const enUs: {
|
|
|
1122
1125
|
fmt_SIP323_copywrite_phonenumber: string;
|
|
1123
1126
|
fmt_SIP323_options_detailedinfor: string;
|
|
1124
1127
|
fmt_SIP323_tips_alreadycopied: string;
|
|
1128
|
+
fmt_SIP_tips_enter_correct_number: string;
|
|
1125
1129
|
fmt_localrecord_labels_record: string;
|
|
1126
1130
|
fmt_localrecord_labels_savingto: string;
|
|
1127
1131
|
fmt_localrecord_button_savingto: string;
|
|
@@ -2043,4 +2047,244 @@ export declare const enUs: {
|
|
|
2043
2047
|
fmt_echo_window_button_disconnect: string;
|
|
2044
2048
|
fmt_mute_toast_yr_on_mute: string;
|
|
2045
2049
|
fmt_meeting_setting_options_enable_recording: string;
|
|
2050
|
+
fmt_premeeting_subheading_scenario: string;
|
|
2051
|
+
fmt_premeeting_scenario_setting_button_meeting: string;
|
|
2052
|
+
fmt_premeeting_scenario_setting_button_webinar: string;
|
|
2053
|
+
fmt_premeeting_setting_lock_meeting: string;
|
|
2054
|
+
fmt_premeeting_role_setting_role: string;
|
|
2055
|
+
fmt_premeeting_role_setting_role_host: string;
|
|
2056
|
+
fmt_premeeting_role_setting_role_co_host: string;
|
|
2057
|
+
fmt_premeeting_role_setting_role_guest: string;
|
|
2058
|
+
fmt_premeeting_role_setting_role_audience: string;
|
|
2059
|
+
fmt_premeeting_setting_allow_guests_unmute: string;
|
|
2060
|
+
fmt_premeeting_setting_allow_guests_turn_on_video: string;
|
|
2061
|
+
fmt_premeeting_setting_allow_guests_rename: string;
|
|
2062
|
+
fmt_premeeting_setting_label_allow_audience_raisehands: string;
|
|
2063
|
+
fmt_premeeting_setting_allow_audience_view_participants_number: string;
|
|
2064
|
+
fmt_premeeting_setting_allow_audience_rename: string;
|
|
2065
|
+
fmt_security_setting_label_allow_audience_raisehands: string;
|
|
2066
|
+
fmt_security_setting_label_allow_audience_viewparticipants: string;
|
|
2067
|
+
fmt_security_setting_label_allow_audience_rename: string;
|
|
2068
|
+
fmt_security_setting_label_allow_audience_viewparticipants_off: string;
|
|
2069
|
+
fmt_security_setting_mute_guests_entry: string;
|
|
2070
|
+
fmt_security_setting_guests_video_entry_off: string;
|
|
2071
|
+
fmt_security_setting_allow_guests_unmute: string;
|
|
2072
|
+
fmt_security_setting_allow_guests_turn_on_video: string;
|
|
2073
|
+
fmt_security_setting_allow_guests_share_screen_whiteboard: string;
|
|
2074
|
+
fmt_security_setting_allow_guests_interactive_annotations: string;
|
|
2075
|
+
fmt_security_setting_allow_guests_rename: string;
|
|
2076
|
+
fmt_premeeting_participant_list: string;
|
|
2077
|
+
fmt_premeeting_participant_list_guest: string;
|
|
2078
|
+
fmt_premeeting_participant_list_audience: string;
|
|
2079
|
+
fmt_premeeting_participant_list_raising: string;
|
|
2080
|
+
fmt_premeeting_participant_list_guest_demote_audience: string;
|
|
2081
|
+
fmt_premeeting_participant_list_guest_revoke_cohost: string;
|
|
2082
|
+
fmt_premeeting_participant_list_guest_demote_tip: string;
|
|
2083
|
+
fmt_premeeting_participant_list_guest_revoke_tip: string;
|
|
2084
|
+
fmt_premeeting_participant_list_guest_disable_chatting_tip: string;
|
|
2085
|
+
fmt_premeeting_participant_list_guest_block_messages: string;
|
|
2086
|
+
fmt_premeeting_participant_list_guest_block_messages_tip: string;
|
|
2087
|
+
fmt_premeeting_participant_upgraded_guest_tip: string;
|
|
2088
|
+
fmt_premeeting_participant_upgraded_host: string;
|
|
2089
|
+
fmt_premeeting_participant_upgraded_host_choose: string;
|
|
2090
|
+
fmt_premeeting_participant_upgraded_host_on: string;
|
|
2091
|
+
fmt_premeeting_participant_upgraded_host_on_cancel: string;
|
|
2092
|
+
fmt_premeeting_participant_upgraded_co_host: string;
|
|
2093
|
+
fmt_premeeting_participant_upgraded_co_host_tip: string;
|
|
2094
|
+
fmt_premeeting_participant_upgraded_co_host_on: string;
|
|
2095
|
+
fmt_premeeting_participant_upgraded_co_host_on_cancel: string;
|
|
2096
|
+
fmt_premeeting_participant_upgraded_co_host_limit: string;
|
|
2097
|
+
fmt_premeeting_participant_set_guest: string;
|
|
2098
|
+
fmt_premeeting_participant_upgraded_guest_limit: string;
|
|
2099
|
+
fmt_premeeting_participant_set_co_host_tip: string;
|
|
2100
|
+
fmt_premeeting_participant_set_guest_tip: string;
|
|
2101
|
+
fmt_premeeting_participant_set_audience_tip: string;
|
|
2102
|
+
fmt_premeeting_participant_cannot_set_audience_tip: string;
|
|
2103
|
+
fmt_premeeting_participant_set_co_host_tip_myself: string;
|
|
2104
|
+
fmt_premeeting_participant_set_guest_tip_myself: string;
|
|
2105
|
+
fmt_premeeting_participant_set_audience_tip_myself: string;
|
|
2106
|
+
fmt_premeeting_participant_xx_now_host: string;
|
|
2107
|
+
fmt_premeeting_participant_xx_now_co_host: string;
|
|
2108
|
+
fmt_premeeting_participant_now_co_host_yourself: string;
|
|
2109
|
+
fmt_premeeting_participant_xx_now_guest: string;
|
|
2110
|
+
fmt_premeeting_participant_now_host_tip: string;
|
|
2111
|
+
fmt_premeeting_participant_set_guest_tip_u: string;
|
|
2112
|
+
fmt_premeeting_participant_now_guest_tip_u: string;
|
|
2113
|
+
fmt_premeeting_participant_now_guest_tip_u_ok: string;
|
|
2114
|
+
fmt_premeeting_participant_now_cohost_tip_u: string;
|
|
2115
|
+
fmt_premeeting_participant_now_host_tip_u: string;
|
|
2116
|
+
fmt_premeeting_participant_revoke_host_tip_u: string;
|
|
2117
|
+
fmt_premeeting_participant_revoke_cohost_tip_u: string;
|
|
2118
|
+
fmt_premeeting_participant_now_audience_tip_u: string;
|
|
2119
|
+
fmt_premeeting_participant_list_revoke_host_role: string;
|
|
2120
|
+
fmt_premeeting_participant_list_modify_nickname: string;
|
|
2121
|
+
fmt_premeeting_participant_remove_title: string;
|
|
2122
|
+
fmt_premeeting_participant_confirm_removal_tip: string;
|
|
2123
|
+
fmt_premeeting_participant_not_rejoin_on: string;
|
|
2124
|
+
fmt_premeeting_participant_remove_button: string;
|
|
2125
|
+
fmt_premeeting_participant_creator_cannot_removed: string;
|
|
2126
|
+
fmt_premeeting_participant_prohibited_join_tip: string;
|
|
2127
|
+
fmt_premeeting_participant_disable_chatting_title: string;
|
|
2128
|
+
fmt_premeeting_participant_disable_chatting_tip: string;
|
|
2129
|
+
fmt_premeeting_block_sb_messages_tip: string;
|
|
2130
|
+
fmt_premeeting_participant_chat_permission_restored: string;
|
|
2131
|
+
fmt_security_setting_lower_hand: string;
|
|
2132
|
+
fmt_security_setting_set_spotlight_video: string;
|
|
2133
|
+
fmt_security_setting_cancel_spotlight_follow: string;
|
|
2134
|
+
fmt_security_setting_allow_local_recording: string;
|
|
2135
|
+
fmt_security_setting_move_waiting_room: string;
|
|
2136
|
+
fmt_security_setting_pricate_chat_host: string;
|
|
2137
|
+
fmt_security_setting_pin: string;
|
|
2138
|
+
fmt_participants_setting_raise_hand: string;
|
|
2139
|
+
fmt_participants_setting_raise_hand_tips: string;
|
|
2140
|
+
fmt_participants_setting_lower_hand: string;
|
|
2141
|
+
fmt_participants_setting_lower_hand_tips: string;
|
|
2142
|
+
fmt_participants_setting_raise_hand_counts_tips: string;
|
|
2143
|
+
fmt_participants_setting_raise_hand_disabled_red_tips: string;
|
|
2144
|
+
fmt_participants_setting_raise_hand_disabled_tips: string;
|
|
2145
|
+
fmt_participants_setting_hands_lowered_tips: string;
|
|
2146
|
+
fmt_participants_setting_raise_hand_number_limit_tips: string;
|
|
2147
|
+
fmt_participants_setting_danmaku_raise_hand_counts_tips: string;
|
|
2148
|
+
fmt_participants_list_raise_hand_counts_tips: string;
|
|
2149
|
+
fmt_participants_list_privilege_allow_chatting: string;
|
|
2150
|
+
fmt_participants_list_privilege_private_chat: string;
|
|
2151
|
+
fmt_participants_list_modify_in_meeting_nickname: string;
|
|
2152
|
+
fmt_chat_setting_guest_chat_scope: string;
|
|
2153
|
+
fmt_chat_setting_guest_chat_allow_public_private: string;
|
|
2154
|
+
fmt_chat_setting_guest_chat_allow_public: string;
|
|
2155
|
+
fmt_chat_setting_guest_chat_allow_host_only: string;
|
|
2156
|
+
fmt_chat_setting_guest_chat_disable: string;
|
|
2157
|
+
fmt_chat_setting_audience_chat_scope: string;
|
|
2158
|
+
fmt_chat_setting_audience_chat_allow_public: string;
|
|
2159
|
+
fmt_chat_setting_audience_chat_allow_host_only: string;
|
|
2160
|
+
fmt_chat_setting_audience_chat_disable: string;
|
|
2161
|
+
fmt_audio_settings_select_audio_button: string;
|
|
2162
|
+
fmt_audio_settings_disconnect_audio_icon: string;
|
|
2163
|
+
fmt_audio_settings_select_audio_icon: string;
|
|
2164
|
+
fmt_audio_settings_connect_audio_tips: string;
|
|
2165
|
+
fmt_audio_settings_select_phone_audio: string;
|
|
2166
|
+
fmt_audio_settings_select_phone_audio_cancel: string;
|
|
2167
|
+
fmt_audio_settings_select_speaker: string;
|
|
2168
|
+
fmt_audio_settings_select_receiver: string;
|
|
2169
|
+
fmt_audio_settings_select_mute: string;
|
|
2170
|
+
fmt_audio_settings_select_cancel: string;
|
|
2171
|
+
fmt_bottom_bar_audience_raise_hand: string;
|
|
2172
|
+
fmt_bottom_bar_audience_raise_hand_tip: string;
|
|
2173
|
+
fmt_bottom_bar_audience_lower_hand: string;
|
|
2174
|
+
fmt_v_chat_words_select_copy: string;
|
|
2175
|
+
fmt_v_chat_words_select_multi_select: string;
|
|
2176
|
+
fmt_v_chat_words_select_private_chat: string;
|
|
2177
|
+
fmt_v_chat_words_select_allow_chatting: string;
|
|
2178
|
+
fmt_v_chat_words_select_disable_chatting: string;
|
|
2179
|
+
fmt_v_chat_words_setting_mute_chat_tip: string;
|
|
2180
|
+
fmt_v_chat_words_setting_enable_chat_tip: string;
|
|
2181
|
+
fmt_v_webinar_chat_settings: string;
|
|
2182
|
+
fmt_v_webinar_chat_setting_guest_chat_scope: string;
|
|
2183
|
+
fmt_v_webinar_chat_setting_guest_chat_allow_public_private: string;
|
|
2184
|
+
fmt_v_webinar_chat_setting_guest_chat_allow_public: string;
|
|
2185
|
+
fmt_v_webinar_chat_setting_guest_chat_allow_host_only: string;
|
|
2186
|
+
fmt_v_webinar_chat_setting_guest_chat_disable: string;
|
|
2187
|
+
fmt_v_webinar_chat_setting_audience_chat_scope: string;
|
|
2188
|
+
fmt_v_webinar_chat_setting_audience_chat_allow_public: string;
|
|
2189
|
+
fmt_v_webinar_chat_setting_audience_chat_allow_host_only: string;
|
|
2190
|
+
fmt_v_webinar_chat_setting_audience_chat_disable: string;
|
|
2191
|
+
fmt_v_webinar_chat_setting_show_message_bubbles: string;
|
|
2192
|
+
fmt_v_app_private_chat_setting_send_to: string;
|
|
2193
|
+
fmt_v_app_private_chat_setting_footer_allow_free: string;
|
|
2194
|
+
fmt_v_app_private_chat_setting_footer_allow_private_host: string;
|
|
2195
|
+
fmt_v_app_private_waiting_room_subtitle: string;
|
|
2196
|
+
fmt_v_app_private_chat_privately_xx: string;
|
|
2197
|
+
fmt_v_app_private_chat_prohibited_tip: string;
|
|
2198
|
+
fmt_v_app_private_retract_host_permissions: string;
|
|
2199
|
+
fmt_v_app_private_group_chat_prohibited_tip: string;
|
|
2200
|
+
fmt_v_app_private_xx_left_meeting: string;
|
|
2201
|
+
fmt_v_app_private_connecting_meeting: string;
|
|
2202
|
+
fmt_v_app_private_select_another_chat_recipient_tip: string;
|
|
2203
|
+
fmt_v_private_chat_private_chat: string;
|
|
2204
|
+
fmt_v_private_chat_select_host_tip: string;
|
|
2205
|
+
fmt_v_private_chat_select_user_tip: string;
|
|
2206
|
+
fmt_v_private_chat_select_again_tip: string;
|
|
2207
|
+
fmt_v_multiple_selection_private_chat: string;
|
|
2208
|
+
fmt_v_multiple_selection_multiple_selection: string;
|
|
2209
|
+
fmt_v_multiple_selection_copy: string;
|
|
2210
|
+
fmt_v_multiple_selection_maximum_copy_tip: string;
|
|
2211
|
+
fmt_v_chat_disable_chatting_title: string;
|
|
2212
|
+
fmt_v_chat_disable_chatting_tip: string;
|
|
2213
|
+
fmt_v_chat_block_sb_messages_tip: string;
|
|
2214
|
+
fmt_v_chat_block_sb_messages_tip_cancel: string;
|
|
2215
|
+
fmt_v_chat_block_sb_messages_tip_ok: string;
|
|
2216
|
+
fmt_v_chat_block_you_muted_tip: string;
|
|
2217
|
+
fmt_v_chat_chat_permission_restored: string;
|
|
2218
|
+
fmt_v_app_new_private_chat_private_chat: string;
|
|
2219
|
+
fmt_v_app_new_private_chat_select_host_tip: string;
|
|
2220
|
+
fmt_v_app_new_private_chat_select_user_tip: string;
|
|
2221
|
+
fmt_v_app_new_private_chat_select_again_tip: string;
|
|
2222
|
+
fmt_v_app_new_private_chat_select_copy: string;
|
|
2223
|
+
fmt_v_app_new_private_chat_select_multi_select: string;
|
|
2224
|
+
fmt_v_app_new_private_chat_select_private_chat: string;
|
|
2225
|
+
fmt_v_private_chat_word_count_exceed_tip: string;
|
|
2226
|
+
fmt_v_private_chat_select_another_chat_recipient_tip: string;
|
|
2227
|
+
fmt_v_app_multiple_selection_private_chat: string;
|
|
2228
|
+
fmt_v_app_multiple_selection_multiple_selection: string;
|
|
2229
|
+
fmt_v_app_multiple_selection_copy: string;
|
|
2230
|
+
fmt_v_app_multiple_selection_copy_clipboard: string;
|
|
2231
|
+
fmt_v_app_multiple_selection_maximum_copy_tip: string;
|
|
2232
|
+
fmt_v_app_multiple_selection_copied_tip: string;
|
|
2233
|
+
fmt_v_security_web_webinar_security_settings: string;
|
|
2234
|
+
fmt_v_security_web_webinar_security_lock_room: string;
|
|
2235
|
+
fmt_v_security_web_webinar_security_watermark: string;
|
|
2236
|
+
fmt_v_security_web_webinar_security_single_row: string;
|
|
2237
|
+
fmt_v_security_web_webinar_security_multiple_rows: string;
|
|
2238
|
+
fmt_v_security_web_webinar_security_allow_guests_attendees_rename: string;
|
|
2239
|
+
fmt_v_security_web_webinar_security_allow_guests: string;
|
|
2240
|
+
fmt_v_security_web_webinar_security_chat_subheading: string;
|
|
2241
|
+
fmt_v_security_web_webinar_security_guest_chat_scope: string;
|
|
2242
|
+
fmt_v_security_web_webinar_security_allow_public_private_chat: string;
|
|
2243
|
+
fmt_v_security_web_webinar_security_allow_public_chat: string;
|
|
2244
|
+
fmt_v_security_web_webinar_security_private_chat_host_only: string;
|
|
2245
|
+
fmt_v_security_web_webinar_security_disable_chat: string;
|
|
2246
|
+
fmt_v_security_web_webinar_security_screen_sharing: string;
|
|
2247
|
+
fmt_v_security_web_webinar_security_interactive_annotation: string;
|
|
2248
|
+
fmt_v_security_web_webinar_security_unmute_themselves: string;
|
|
2249
|
+
fmt_v_security_web_webinar_security_turn_on_video: string;
|
|
2250
|
+
fmt_v_security_web_webinar_security_rename_themselves: string;
|
|
2251
|
+
fmt_v_security_web_webinar_security_live_transcription_on_off: string;
|
|
2252
|
+
fmt_v_security_web_webinar_security_use_subtitle: string;
|
|
2253
|
+
fmt_v_security_web_webinar_security_change_language: string;
|
|
2254
|
+
fmt_v_security_web_webinar_security_allow_attendees: string;
|
|
2255
|
+
fmt_v_security_web_webinar_security_chat_select: string;
|
|
2256
|
+
fmt_v_security_web_webinar_security_attendee_chat_scope: string;
|
|
2257
|
+
fmt_v_security_web_webinar_security_attendee_chat_public: string;
|
|
2258
|
+
fmt_v_security_web_webinar_security_attendee_chat_host: string;
|
|
2259
|
+
fmt_v_security_web_webinar_security_attendee_disable_chat: string;
|
|
2260
|
+
fmt_v_security_web_webinar_security_raise_hand: string;
|
|
2261
|
+
fmt_v_security_web_webinar_security_view_total_number: string;
|
|
2262
|
+
fmt_premeeting_participant_upgraded_host_app: string;
|
|
2263
|
+
fmt_premeeting_participant_upgraded_host_choose_app: string;
|
|
2264
|
+
fmt_premeeting_participant_upgraded_host_on_app: string;
|
|
2265
|
+
fmt_premeeting_participant_upgraded_host_on_app_cancel: string;
|
|
2266
|
+
fmt_premeeting_participant_upgraded_co_host_app: string;
|
|
2267
|
+
fmt_premeeting_participant_upgraded_co_host_tip_app: string;
|
|
2268
|
+
fmt_premeeting_participant_upgraded_co_host_on_app: string;
|
|
2269
|
+
fmt_premeeting_participant_upgraded_co_host_on_app_cancel: string;
|
|
2270
|
+
fmt_premeeting_participant_upgraded_co_host_limit_app: string;
|
|
2271
|
+
fmt_premeeting_participant_upgraded_guest_limit_app: string;
|
|
2272
|
+
fmt_premeeting_participant_revoke_co_host_tip_app: string;
|
|
2273
|
+
fmt_premeeting_participant_set_co_host_tip_app: string;
|
|
2274
|
+
fmt_premeeting_participant_set_guest_tip_app: string;
|
|
2275
|
+
fmt_premeeting_participant_set_audience_tip_app: string;
|
|
2276
|
+
fmt_premeeting_participant_cannot_set_audience_tip_app: string;
|
|
2277
|
+
fmt_premeeting_participant_set_co_host_tip_myself_app: string;
|
|
2278
|
+
fmt_premeeting_participant_set_guest_tip_myself_app: string;
|
|
2279
|
+
fmt_premeeting_participant_set_audience_tip_myself_app: string;
|
|
2280
|
+
fmt_premeeting_participant_xx_now_host_app: string;
|
|
2281
|
+
fmt_premeeting_participant_you_now_host_app: string;
|
|
2282
|
+
fmt_premeeting_participant_xx_now_host_app_other: string;
|
|
2283
|
+
fmt_premeeting_participant_xx_now_co_host_app: string;
|
|
2284
|
+
fmt_premeeting_participant_now_co_host_yourself_app: string;
|
|
2285
|
+
fmt_premeeting_participant_xx_now_guest_app: string;
|
|
2286
|
+
fmt_premeeting_participant_set_guest_tip_u_app: string;
|
|
2287
|
+
fmt_premeeting_participant_now_guest_tip_u_app: string;
|
|
2288
|
+
fmt_premeeting_participant_now_guest_tip_u_ok_app: string;
|
|
2289
|
+
fmt_participants_button_meetingPermission: string;
|
|
2046
2290
|
};
|