forked from jitsi/lib-jitsi-meet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
JitsiConferenceEvents.js
330 lines (278 loc) · 9.38 KB
/
JitsiConferenceEvents.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
/**
* The events for the conference.
*/
/**
* Event indicates that the current conference audio input switched between audio
* input states,i.e. with or without audio input.
*/
export const AUDIO_INPUT_STATE_CHANGE = 'conference.audio_input_state_changed';
/**
* Indicates that authentication status changed.
*/
export const AUTH_STATUS_CHANGED = 'conference.auth_status_changed';
/**
* A participant avatar has changed.
*/
export const AVATAR_CHANGED = 'conference.avatarChanged';
/**
* Fired just before the statistics module is disposed and it's the last chance
* to submit some logs to the statistics service (ex. CallStats if enabled),
* before it's disconnected.
*/
export const BEFORE_STATISTICS_DISPOSED = 'conference.beforeStatisticsDisposed';
/**
* Indicates that an error occured.
*/
export const CONFERENCE_ERROR = 'conference.error';
/**
* Indicates that conference failed.
*/
export const CONFERENCE_FAILED = 'conference.failed';
/**
* Indicates that conference has been joined. The event does NOT provide any
* parameters to its listeners.
*/
export const CONFERENCE_JOINED = 'conference.joined';
/**
* Indicates that conference has been left.
*/
export const CONFERENCE_LEFT = 'conference.left';
/**
* Indicates that the connection to the conference has been established
* XXX This is currently fired whenVthe *ICE* connection enters 'connected'
* state for the first time.
*/
export const CONNECTION_ESTABLISHED = 'conference.connectionEstablished';
/**
* Indicates that the connection to the conference has been interrupted for some
* reason.
* XXX This is currently fired when the *ICE* connection is interrupted.
*/
export const CONNECTION_INTERRUPTED = 'conference.connectionInterrupted';
/**
* Indicates that the connection to the conference has been restored.
* XXX This is currently fired when the *ICE* connection is restored.
*/
export const CONNECTION_RESTORED = 'conference.connectionRestored';
/**
* A connection to the video bridge's data channel has been established.
*/
export const DATA_CHANNEL_OPENED = 'conference.dataChannelOpened';
/**
* A user has changed it display name
*/
export const DISPLAY_NAME_CHANGED = 'conference.displayNameChanged';
/**
* The dominant speaker was changed.
*/
export const DOMINANT_SPEAKER_CHANGED = 'conference.dominantSpeaker';
/**
* UTC conference timestamp when first participant joined.
*/
export const CONFERENCE_CREATED_TIMESTAMP = 'conference.createdTimestamp';
/**
* Indicates that DTMF support changed.
*/
export const DTMF_SUPPORT_CHANGED = 'conference.dtmfSupportChanged';
/**
* Indicates that a message from another participant is received on data
* channel.
*/
export const ENDPOINT_MESSAGE_RECEIVED = 'conference.endpoint_message_received';
/**
* NOTE This is lib-jitsi-meet internal event and can be removed at any time !
*
* Event emitted when conference transits, between one to one and multiparty JVB
* conference. If the conference switches to P2P it's neither one to one nor
* a multiparty JVB conference, but P2P (the status argument of this event will
* be <tt>false</tt>).
*
* The first argument is a boolean which carries the previous value and
* the seconds argument is a boolean with the new status. The event is emitted
* only if the previous and the new values are different.
*
* @type {string}
*/
export const JVB121_STATUS = 'conference.jvb121Status';
/**
* You are kicked from the conference.
* @param {JitsiParticipant} the participant that initiated the kick.
*/
export const KICKED = 'conference.kicked';
/**
* Participant was kicked from the conference.
* @param {JitsiParticipant} the participant that initiated the kick.
* @param {JitsiParticipant} the participant that was kicked.
*/
export const PARTICIPANT_KICKED = 'conference.participant_kicked';
/**
* The Last N set is changed.
*
* @param {Array<string>|null} leavingEndpointIds the ids of all the endpoints
* which are leaving Last N
* @param {Array<string>|null} enteringEndpointIds the ids of all the endpoints
* which are entering Last N
*/
export const LAST_N_ENDPOINTS_CHANGED = 'conference.lastNEndpointsChanged';
/**
* Indicates that the room has been locked or unlocked.
*/
export const LOCK_STATE_CHANGED = 'conference.lock_state_changed';
/**
* Indicates that the region of the media server (jitsi-videobridge) that we
* are connected to changed (or was initially set).
* @type {string} the region.
*/
export const SERVER_REGION_CHANGED = 'conference.server_region_changed';
/**
* New text message was received.
*/
export const MESSAGE_RECEIVED = 'conference.messageReceived';
/**
* Event indicates that the current selected input device has no signal
*/
export const NO_AUDIO_INPUT = 'conference.no_audio_input';
/**
* Event indicates that the current microphone used by the conference is noisy.
*/
export const NOISY_MIC = 'conference.noisy_mic';
/**
* New private text message was received.
*/
export const PRIVATE_MESSAGE_RECEIVED = 'conference.privateMessageReceived';
/**
* Event fired when JVB sends notification about interrupted/restored user's
* ICE connection status or we detect local problem with the video track.
* First argument is the ID of the participant and
* the seconds is a string indicating if the connection is currently
* - active - the connection is active
* - inactive - the connection is inactive, was intentionally interrupted by
* the bridge
* - interrupted - a network problem occurred
* - restoring - the connection was inactive and is restoring now
*
* The current status value can be obtained by calling
* JitsiParticipant.getConnectionStatus().
*/
export const PARTICIPANT_CONN_STATUS_CHANGED
= 'conference.participant_conn_status_changed';
/**
* Indicates that the features of the participant has been changed.
*/
export const PARTCIPANT_FEATURES_CHANGED
= 'conference.partcipant_features_changed';
/**
* Indicates that a the value of a specific property of a specific participant
* has changed.
*/
export const PARTICIPANT_PROPERTY_CHANGED
= 'conference.participant_property_changed';
/**
* Indicates that the conference has switched between JVB and P2P connections.
* The first argument of this event is a <tt>boolean</tt> which when set to
* <tt>true</tt> means that the conference is running on the P2P connection.
*/
export const P2P_STATUS = 'conference.p2pStatus';
/**
* Indicates that phone number changed.
*/
export const PHONE_NUMBER_CHANGED = 'conference.phoneNumberChanged';
/**
* The conference properties changed.
* @type {string}
*/
export const PROPERTIES_CHANGED = 'conference.propertiesChanged';
/**
* Indicates that recording state changed.
*/
export const RECORDER_STATE_CHANGED = 'conference.recorderStateChanged';
/**
* Indicates that video SIP GW state changed.
* @param {VideoSIPGWConstants} status.
*/
export const VIDEO_SIP_GW_AVAILABILITY_CHANGED
= 'conference.videoSIPGWAvailabilityChanged';
/**
* Indicates that video SIP GW Session state changed.
* @param {options} event - {
* {string} address,
* {VideoSIPGWConstants} oldState,
* {VideoSIPGWConstants} newState,
* {string} displayName}
* }.
*/
export const VIDEO_SIP_GW_SESSION_STATE_CHANGED
= 'conference.videoSIPGWSessionStateChanged';
/**
* Indicates that start muted settings changed.
*/
export const START_MUTED_POLICY_CHANGED
= 'conference.start_muted_policy_changed';
/**
* Indicates that the local user has started muted.
*/
export const STARTED_MUTED = 'conference.started_muted';
/**
* Indicates that subject of the conference has changed.
*/
export const SUBJECT_CHANGED = 'conference.subjectChanged';
/**
* Indicates that DTMF support changed.
*/
export const SUSPEND_DETECTED = 'conference.suspendDetected';
/**
* Event indicates that local user is talking while he muted himself
*/
export const TALK_WHILE_MUTED = 'conference.talk_while_muted';
/**
* A new media track was added to the conference. The event provides the
* following parameters to its listeners:
*
* @param {JitsiTrack} track the added JitsiTrack
*/
export const TRACK_ADDED = 'conference.trackAdded';
/**
* Audio levels of a media track ( attached to the conference) was changed.
*/
export const TRACK_AUDIO_LEVEL_CHANGED = 'conference.audioLevelsChanged';
/**
* A media track ( attached to the conference) mute status was changed.
* @param {JitsiParticipant|null} the participant that initiated the mute
* if it is a remote mute.
*/
export const TRACK_MUTE_CHANGED = 'conference.trackMuteChanged';
/**
* The media track was removed from the conference. The event provides the
* following parameters to its listeners:
*
* @param {JitsiTrack} track the removed JitsiTrack
*/
export const TRACK_REMOVED = 'conference.trackRemoved';
/**
* Notifies for transcription status changes. The event provides the
* following parameters to its listeners:
*
* @param {String} status - The new status.
*/
export const TRANSCRIPTION_STATUS_CHANGED
= 'conference.transcriptionStatusChanged';
/**
* A new user joined the conference.
*/
export const USER_JOINED = 'conference.userJoined';
/**
* A user has left the conference.
*/
export const USER_LEFT = 'conference.userLeft';
/**
* User role changed.
*/
export const USER_ROLE_CHANGED = 'conference.roleChanged';
/**
* User status changed.
*/
export const USER_STATUS_CHANGED = 'conference.statusChanged';
/**
* Event indicates that the bot participant type changed.
*/
export const BOT_TYPE_CHANGED = 'conference.bot_type_changed';