fcr-ui-scene-mobile 3.6.4 → 3.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -310,7 +310,8 @@ var FcrParticipantStore = exports.FcrParticipantStore = /*#__PURE__*/function ()
|
|
|
310
310
|
isPin: _this.checkIsPin(user.userId),
|
|
311
311
|
streamId: ((_user$streams$find = user.streams.find(function (stream) {
|
|
312
312
|
return stream.videoSourceType === _type3.AgoraRteVideoSourceType.CAMERA && (stream.streamType === _type2.AgoraRteMediaStreamType.VIDEO || stream.streamType === _type2.AgoraRteMediaStreamType.BOTH);
|
|
313
|
-
})) === null || _user$streams$find === void 0 ? void 0 : _user$streams$find.streamId) || ''
|
|
313
|
+
})) === null || _user$streams$find === void 0 ? void 0 : _user$streams$find.streamId) || '',
|
|
314
|
+
hideAudioConnectIcon: false
|
|
314
315
|
};
|
|
315
316
|
});
|
|
316
317
|
this._roomControl = roomControl;
|
package/lib/common/type.d.ts
CHANGED
|
@@ -108,7 +108,8 @@ var allToUser = exports.allToUser = {
|
|
|
108
108
|
userName: USER_ALL,
|
|
109
109
|
userRole: _type.FcrUserRole.ROBOT,
|
|
110
110
|
connectorType: _fcrCore.FcrRoomConnectorType.NONE,
|
|
111
|
-
platform: _type.FcrPlatform.WEB_MOBILE
|
|
111
|
+
platform: _type.FcrPlatform.WEB_MOBILE,
|
|
112
|
+
avatar: ''
|
|
112
113
|
};
|
|
113
114
|
|
|
114
115
|
// 没有可选的 User
|
|
@@ -117,7 +118,8 @@ var noUser = exports.noUser = {
|
|
|
117
118
|
userName: (0, _i18n.transI18n)('fmt_chat_tips_selecthost'),
|
|
118
119
|
userRole: _type.FcrUserRole.ROBOT,
|
|
119
120
|
connectorType: _fcrCore.FcrRoomConnectorType.NONE,
|
|
120
|
-
platform: _type.FcrPlatform.WEB_MOBILE
|
|
121
|
+
platform: _type.FcrPlatform.WEB_MOBILE,
|
|
122
|
+
avatar: ''
|
|
121
123
|
};
|
|
122
124
|
var _A = /*#__PURE__*/new WeakMap();
|
|
123
125
|
var _B = /*#__PURE__*/new WeakMap();
|
package/lib/modules/chat/view.js
CHANGED
|
@@ -141,7 +141,8 @@ var View = exports.View = (0, _mobxReact.observer)(function (_ref) {
|
|
|
141
141
|
userName: t('fmt_chat_option_all'),
|
|
142
142
|
userRole: _type.FcrUserRole.ROBOT,
|
|
143
143
|
connectorType: _fcrCore.FcrRoomConnectorType.NONE,
|
|
144
|
-
platform: _type2.FcrPlatform.WEB_MOBILE
|
|
144
|
+
platform: _type2.FcrPlatform.WEB_MOBILE,
|
|
145
|
+
avatar: ''
|
|
145
146
|
});
|
|
146
147
|
}
|
|
147
148
|
remoteUsers.forEach(function (user) {
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { ParticipantUser } from
|
|
1
|
+
import { ParticipantUser } from '../../common/type';
|
|
2
2
|
export declare const test: ParticipantUser[];
|
|
@@ -8,297 +8,318 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
8
8
|
});
|
|
9
9
|
exports.test = void 0;
|
|
10
10
|
var test = exports.test = [{
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
11
|
+
userId: '11111',
|
|
12
|
+
userName: '1',
|
|
13
|
+
isHost: false,
|
|
14
|
+
isMe: false,
|
|
15
|
+
hasAudio: false,
|
|
16
|
+
hasVideo: false,
|
|
17
|
+
isScreenSharing: false,
|
|
18
|
+
audioDeviceType: 'computer-mic',
|
|
19
|
+
videoDeviceType: 'computer-cam',
|
|
20
|
+
userType: 'normal',
|
|
21
|
+
userRole: 3,
|
|
22
|
+
isSpotlight: false,
|
|
23
|
+
streamId: '2666333222',
|
|
24
|
+
hideAudioConnectIcon: false
|
|
24
25
|
}, {
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
26
|
+
userId: '222222',
|
|
27
|
+
userName: '2',
|
|
28
|
+
isHost: false,
|
|
29
|
+
isMe: false,
|
|
30
|
+
hasAudio: false,
|
|
31
|
+
hasVideo: false,
|
|
32
|
+
isScreenSharing: false,
|
|
33
|
+
audioDeviceType: 'phone-mic',
|
|
34
|
+
videoDeviceType: 'computer-cam',
|
|
35
|
+
userType: 'normal',
|
|
36
|
+
userRole: 3,
|
|
37
|
+
isSpotlight: false,
|
|
38
|
+
streamId: '2223333222',
|
|
39
|
+
hideAudioConnectIcon: false
|
|
38
40
|
}, {
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
41
|
+
userId: '33333',
|
|
42
|
+
userName: '3',
|
|
43
|
+
isHost: false,
|
|
44
|
+
isMe: false,
|
|
45
|
+
hasAudio: false,
|
|
46
|
+
hasVideo: false,
|
|
47
|
+
isScreenSharing: false,
|
|
48
|
+
audioDeviceType: 'computer-mic',
|
|
49
|
+
videoDeviceType: 'computer-cam',
|
|
50
|
+
userType: 'meeting-system',
|
|
51
|
+
userRole: 3,
|
|
52
|
+
isSpotlight: false,
|
|
53
|
+
streamId: '222222',
|
|
54
|
+
hideAudioConnectIcon: false
|
|
52
55
|
}, {
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
56
|
+
userId: '444444444',
|
|
57
|
+
userName: '4',
|
|
58
|
+
isHost: false,
|
|
59
|
+
isMe: false,
|
|
60
|
+
hasAudio: false,
|
|
61
|
+
hasVideo: false,
|
|
62
|
+
isScreenSharing: false,
|
|
63
|
+
audioDeviceType: 'phone-mic',
|
|
64
|
+
videoDeviceType: 'none',
|
|
65
|
+
userType: 'phone',
|
|
66
|
+
userRole: 3,
|
|
67
|
+
isSpotlight: false,
|
|
68
|
+
streamId: '2222222',
|
|
69
|
+
hideAudioConnectIcon: false
|
|
66
70
|
}, {
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
71
|
+
userId: '5555555',
|
|
72
|
+
userName: '5',
|
|
73
|
+
isHost: false,
|
|
74
|
+
isMe: false,
|
|
75
|
+
hasAudio: false,
|
|
76
|
+
hasVideo: false,
|
|
77
|
+
isScreenSharing: false,
|
|
78
|
+
audioDeviceType: 'computer-mic',
|
|
79
|
+
videoDeviceType: 'computer-cam',
|
|
80
|
+
userType: 'normal',
|
|
81
|
+
userRole: 3,
|
|
82
|
+
isSpotlight: false,
|
|
83
|
+
streamId: '2222222222',
|
|
84
|
+
hideAudioConnectIcon: false
|
|
80
85
|
}, {
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
86
|
+
userId: '66666',
|
|
87
|
+
userName: '6',
|
|
88
|
+
isHost: false,
|
|
89
|
+
isMe: false,
|
|
90
|
+
hasAudio: false,
|
|
91
|
+
hasVideo: false,
|
|
92
|
+
isScreenSharing: false,
|
|
93
|
+
audioDeviceType: 'computer-mic',
|
|
94
|
+
videoDeviceType: 'computer-cam',
|
|
95
|
+
userType: 'normal',
|
|
96
|
+
userRole: 3,
|
|
97
|
+
isSpotlight: false,
|
|
98
|
+
streamId: '2222222222',
|
|
99
|
+
hideAudioConnectIcon: false
|
|
94
100
|
}, {
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
101
|
+
userId: '777777',
|
|
102
|
+
userName: '7',
|
|
103
|
+
isHost: false,
|
|
104
|
+
isMe: false,
|
|
105
|
+
hasAudio: false,
|
|
106
|
+
hasVideo: false,
|
|
107
|
+
isScreenSharing: false,
|
|
108
|
+
audioDeviceType: 'computer-mic',
|
|
109
|
+
videoDeviceType: 'computer-cam',
|
|
110
|
+
userType: 'normal',
|
|
111
|
+
userRole: 3,
|
|
112
|
+
isSpotlight: false,
|
|
113
|
+
streamId: '2222221222222',
|
|
114
|
+
hideAudioConnectIcon: false
|
|
108
115
|
}, {
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
116
|
+
userId: '888888',
|
|
117
|
+
userName: '8',
|
|
118
|
+
isHost: false,
|
|
119
|
+
isMe: false,
|
|
120
|
+
hasAudio: false,
|
|
121
|
+
hasVideo: false,
|
|
122
|
+
isScreenSharing: false,
|
|
123
|
+
audioDeviceType: 'computer-mic',
|
|
124
|
+
videoDeviceType: 'computer-cam',
|
|
125
|
+
userType: 'normal',
|
|
126
|
+
userRole: 3,
|
|
127
|
+
isSpotlight: false,
|
|
128
|
+
streamId: '2222222222222222',
|
|
129
|
+
hideAudioConnectIcon: false
|
|
122
130
|
}, {
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
131
|
+
userId: '999999',
|
|
132
|
+
userName: '9',
|
|
133
|
+
isHost: false,
|
|
134
|
+
isMe: false,
|
|
135
|
+
hasAudio: false,
|
|
136
|
+
hasVideo: false,
|
|
137
|
+
isScreenSharing: false,
|
|
138
|
+
audioDeviceType: 'computer-mic',
|
|
139
|
+
videoDeviceType: 'computer-cam',
|
|
140
|
+
userType: 'normal',
|
|
141
|
+
userRole: 3,
|
|
142
|
+
isSpotlight: false,
|
|
143
|
+
streamId: '22211122222222222',
|
|
144
|
+
hideAudioConnectIcon: false
|
|
136
145
|
}, {
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
146
|
+
userId: '101010',
|
|
147
|
+
userName: '10',
|
|
148
|
+
isHost: false,
|
|
149
|
+
isMe: false,
|
|
150
|
+
hasAudio: false,
|
|
151
|
+
hasVideo: false,
|
|
152
|
+
isScreenSharing: false,
|
|
153
|
+
audioDeviceType: 'computer-mic',
|
|
154
|
+
videoDeviceType: 'computer-cam',
|
|
155
|
+
userType: 'normal',
|
|
156
|
+
userRole: 3,
|
|
157
|
+
isSpotlight: false,
|
|
158
|
+
streamId: '222111222222222222',
|
|
159
|
+
hideAudioConnectIcon: false
|
|
150
160
|
}, {
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
161
|
+
userId: '909090908765',
|
|
162
|
+
userName: '11',
|
|
163
|
+
isHost: false,
|
|
164
|
+
isMe: false,
|
|
165
|
+
hasAudio: false,
|
|
166
|
+
hasVideo: false,
|
|
167
|
+
isScreenSharing: false,
|
|
168
|
+
audioDeviceType: 'computer-mic',
|
|
169
|
+
videoDeviceType: 'computer-cam',
|
|
170
|
+
userType: 'normal',
|
|
171
|
+
userRole: 3,
|
|
172
|
+
isSpotlight: false,
|
|
173
|
+
streamId: '098098080',
|
|
174
|
+
hideAudioConnectIcon: false
|
|
164
175
|
}, {
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
176
|
+
userId: '121212',
|
|
177
|
+
userName: '12',
|
|
178
|
+
isHost: false,
|
|
179
|
+
isMe: false,
|
|
180
|
+
hasAudio: false,
|
|
181
|
+
hasVideo: false,
|
|
182
|
+
isScreenSharing: false,
|
|
183
|
+
audioDeviceType: 'computer-mic',
|
|
184
|
+
videoDeviceType: 'computer-cam',
|
|
185
|
+
userType: 'normal',
|
|
186
|
+
userRole: 3,
|
|
187
|
+
isSpotlight: false,
|
|
188
|
+
streamId: '222111222222222223',
|
|
189
|
+
hideAudioConnectIcon: false
|
|
178
190
|
}, {
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
191
|
+
userId: '131313',
|
|
192
|
+
userName: '13',
|
|
193
|
+
isHost: false,
|
|
194
|
+
isMe: false,
|
|
195
|
+
hasAudio: false,
|
|
196
|
+
hasVideo: false,
|
|
197
|
+
isScreenSharing: false,
|
|
198
|
+
audioDeviceType: 'computer-mic',
|
|
199
|
+
videoDeviceType: 'computer-cam',
|
|
200
|
+
userType: 'normal',
|
|
201
|
+
userRole: 3,
|
|
202
|
+
isSpotlight: false,
|
|
203
|
+
streamId: '222111222222222224',
|
|
204
|
+
hideAudioConnectIcon: false
|
|
192
205
|
}, {
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
+
userId: '141414',
|
|
207
|
+
userName: '14',
|
|
208
|
+
isHost: false,
|
|
209
|
+
isMe: false,
|
|
210
|
+
hasAudio: false,
|
|
211
|
+
hasVideo: false,
|
|
212
|
+
isScreenSharing: false,
|
|
213
|
+
audioDeviceType: 'computer-mic',
|
|
214
|
+
videoDeviceType: 'computer-cam',
|
|
215
|
+
userType: 'normal',
|
|
216
|
+
userRole: 3,
|
|
217
|
+
isSpotlight: false,
|
|
218
|
+
streamId: '222111222222222225',
|
|
219
|
+
hideAudioConnectIcon: false
|
|
206
220
|
}, {
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
221
|
+
userId: '151515',
|
|
222
|
+
userName: '15',
|
|
223
|
+
isHost: false,
|
|
224
|
+
isMe: false,
|
|
225
|
+
hasAudio: false,
|
|
226
|
+
hasVideo: false,
|
|
227
|
+
isScreenSharing: false,
|
|
228
|
+
audioDeviceType: 'computer-mic',
|
|
229
|
+
videoDeviceType: 'computer-cam',
|
|
230
|
+
userType: 'normal',
|
|
231
|
+
userRole: 3,
|
|
232
|
+
isSpotlight: false,
|
|
233
|
+
streamId: '222111222222222226',
|
|
234
|
+
hideAudioConnectIcon: false
|
|
220
235
|
}, {
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
236
|
+
userId: '161616',
|
|
237
|
+
userName: '16',
|
|
238
|
+
isHost: false,
|
|
239
|
+
isMe: false,
|
|
240
|
+
hasAudio: false,
|
|
241
|
+
hasVideo: false,
|
|
242
|
+
isScreenSharing: false,
|
|
243
|
+
audioDeviceType: 'computer-mic',
|
|
244
|
+
videoDeviceType: 'computer-cam',
|
|
245
|
+
userType: 'normal',
|
|
246
|
+
userRole: 3,
|
|
247
|
+
isSpotlight: false,
|
|
248
|
+
streamId: '222111222222222227',
|
|
249
|
+
hideAudioConnectIcon: false
|
|
234
250
|
}, {
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
251
|
+
userId: '171717',
|
|
252
|
+
userName: '17',
|
|
253
|
+
isHost: false,
|
|
254
|
+
isMe: false,
|
|
255
|
+
hasAudio: false,
|
|
256
|
+
hasVideo: false,
|
|
257
|
+
isScreenSharing: false,
|
|
258
|
+
audioDeviceType: 'computer-mic',
|
|
259
|
+
videoDeviceType: 'computer-cam',
|
|
260
|
+
userType: 'normal',
|
|
261
|
+
userRole: 3,
|
|
262
|
+
isSpotlight: false,
|
|
263
|
+
streamId: '222111222222222228',
|
|
264
|
+
hideAudioConnectIcon: false
|
|
248
265
|
}, {
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
266
|
+
userId: '181818',
|
|
267
|
+
userName: '18',
|
|
268
|
+
isHost: false,
|
|
269
|
+
isMe: false,
|
|
270
|
+
hasAudio: false,
|
|
271
|
+
hasVideo: false,
|
|
272
|
+
isScreenSharing: false,
|
|
273
|
+
audioDeviceType: 'computer-mic',
|
|
274
|
+
videoDeviceType: 'computer-cam',
|
|
275
|
+
userType: 'normal',
|
|
276
|
+
userRole: 3,
|
|
277
|
+
isSpotlight: false,
|
|
278
|
+
streamId: '222111222222222229',
|
|
279
|
+
hideAudioConnectIcon: false
|
|
262
280
|
}, {
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
281
|
+
userId: '191919',
|
|
282
|
+
userName: '19',
|
|
283
|
+
isHost: false,
|
|
284
|
+
isMe: false,
|
|
285
|
+
hasAudio: false,
|
|
286
|
+
hasVideo: false,
|
|
287
|
+
isScreenSharing: false,
|
|
288
|
+
audioDeviceType: 'computer-mic',
|
|
289
|
+
videoDeviceType: 'computer-cam',
|
|
290
|
+
userType: 'normal',
|
|
291
|
+
userRole: 3,
|
|
292
|
+
isSpotlight: false,
|
|
293
|
+
streamId: '222111222222222230',
|
|
294
|
+
hideAudioConnectIcon: false
|
|
276
295
|
}, {
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
296
|
+
userId: '202020',
|
|
297
|
+
userName: '20',
|
|
298
|
+
isHost: false,
|
|
299
|
+
isMe: false,
|
|
300
|
+
hasAudio: false,
|
|
301
|
+
hasVideo: false,
|
|
302
|
+
isScreenSharing: false,
|
|
303
|
+
audioDeviceType: 'computer-mic',
|
|
304
|
+
videoDeviceType: 'computer-cam',
|
|
305
|
+
userType: 'normal',
|
|
306
|
+
userRole: 3,
|
|
307
|
+
isSpotlight: false,
|
|
308
|
+
streamId: '222111222222222231',
|
|
309
|
+
hideAudioConnectIcon: false
|
|
290
310
|
}, {
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
311
|
+
userId: '212121',
|
|
312
|
+
userName: '21',
|
|
313
|
+
isHost: false,
|
|
314
|
+
isMe: false,
|
|
315
|
+
hasAudio: false,
|
|
316
|
+
hasVideo: false,
|
|
317
|
+
isScreenSharing: false,
|
|
318
|
+
audioDeviceType: 'computer-mic',
|
|
319
|
+
videoDeviceType: 'computer-cam',
|
|
320
|
+
userType: 'normal',
|
|
321
|
+
userRole: 3,
|
|
322
|
+
isSpotlight: false,
|
|
323
|
+
streamId: '222111222222222232',
|
|
324
|
+
hideAudioConnectIcon: false
|
|
304
325
|
}];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fcr-ui-scene-mobile",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.7.0",
|
|
4
4
|
"main": "lib/index.js",
|
|
5
5
|
"repository": "ssh://git@git.agoralab.co/aduc/fcr-ui-scene-mobile.git",
|
|
6
6
|
"author": "agora.io",
|
|
@@ -14,19 +14,18 @@
|
|
|
14
14
|
"dependencies": {
|
|
15
15
|
"@react-spring/web": "^9.7.3",
|
|
16
16
|
"@use-gesture/react": "^10.3.1",
|
|
17
|
-
"agora-foundation": "~3.
|
|
18
|
-
"agora-ui-foundation": "~3.
|
|
17
|
+
"agora-foundation": "~3.7.0",
|
|
18
|
+
"agora-ui-foundation": "~3.7.0",
|
|
19
19
|
"classnames": "^2.5.1",
|
|
20
20
|
"core-js": "^3.33.3",
|
|
21
21
|
"dayjs": "^1.10.4",
|
|
22
|
-
"fcr-core": "~3.
|
|
22
|
+
"fcr-core": "~3.7.0",
|
|
23
23
|
"js-md5": "^0.8.3",
|
|
24
24
|
"jszip": "^3.10.1",
|
|
25
25
|
"lodash": "^4.17.21",
|
|
26
26
|
"mobx": "^6.12.3",
|
|
27
27
|
"mobx-react": "^9.1.1",
|
|
28
28
|
"mobx-utils": "^6.0.8",
|
|
29
|
-
"pidusage": "^3.0.2",
|
|
30
29
|
"react": "^17.0.2",
|
|
31
30
|
"react-dom": "^17.0.2",
|
|
32
31
|
"react-error-boundary": "^5.0.0",
|
|
@@ -50,7 +49,7 @@
|
|
|
50
49
|
"@types/react-dom": "^17.0.11",
|
|
51
50
|
"@types/react-virtualized": "^9.21.30",
|
|
52
51
|
"@types/tinycolor2": "^1.4.6",
|
|
53
|
-
"agora-toolchain": "~3.
|
|
52
|
+
"agora-toolchain": "~3.7.0",
|
|
54
53
|
"core-js": "^3.33.3",
|
|
55
54
|
"husky": "^9.0.11",
|
|
56
55
|
"lint-staged": "^15.2.2",
|