2015-12-10 13:30:25 +00:00
|
|
|
export default {
|
2015-01-27 12:03:26 +00:00
|
|
|
NICKNAME_CHANGED: "UI.nickname_changed",
|
|
|
|
SELECTED_ENDPOINT: "UI.selected_endpoint",
|
2015-07-29 19:39:09 +00:00
|
|
|
PINNED_ENDPOINT: "UI.pinned_endpoint",
|
2015-12-01 12:53:01 +00:00
|
|
|
/**
|
|
|
|
* Notifies that local user created text message.
|
|
|
|
*/
|
|
|
|
MESSAGE_CREATED: "UI.message_created",
|
2015-12-01 13:41:58 +00:00
|
|
|
/**
|
|
|
|
* Notifies that local user changed language.
|
|
|
|
*/
|
|
|
|
LANG_CHANGED: "UI.lang_changed",
|
|
|
|
/**
|
|
|
|
* Notifies that local user changed email.
|
|
|
|
*/
|
|
|
|
EMAIL_CHANGED: "UI.email_changed",
|
|
|
|
/**
|
|
|
|
* Notifies that "start muted" settings changed.
|
|
|
|
*/
|
|
|
|
START_MUTED_CHANGED: "UI.start_muted_changed",
|
2015-12-03 13:11:01 +00:00
|
|
|
AUDIO_MUTED: "UI.audio_muted",
|
|
|
|
VIDEO_MUTED: "UI.video_muted",
|
2015-12-09 13:09:12 +00:00
|
|
|
ETHERPAD_CLICKED: "UI.etherpad_clicked",
|
2016-03-22 20:04:52 +00:00
|
|
|
SHARED_VIDEO_CLICKED: "UI.start_shared_video",
|
2016-03-18 20:00:55 +00:00
|
|
|
/**
|
|
|
|
* Updates shared video with params: url, state, time(optional)
|
|
|
|
* Where url is the video link, state is stop/start/pause and time is the
|
|
|
|
* current video playing time.
|
|
|
|
*/
|
2016-03-22 19:57:36 +00:00
|
|
|
UPDATE_SHARED_VIDEO: "UI.update_shared_video",
|
2015-12-09 17:10:49 +00:00
|
|
|
ROOM_LOCK_CLICKED: "UI.room_lock_clicked",
|
|
|
|
USER_INVITED: "UI.user_invited",
|
2015-12-14 12:26:50 +00:00
|
|
|
USER_KICKED: "UI.user_kicked",
|
2015-12-31 22:02:03 +00:00
|
|
|
REMOTE_AUDIO_MUTED: "UI.remote_audio_muted",
|
2015-12-10 13:30:25 +00:00
|
|
|
FULLSCREEN_TOGGLE: "UI.fullscreen_toggle",
|
|
|
|
AUTH_CLICKED: "UI.auth_clicked",
|
|
|
|
TOGGLE_CHAT: "UI.toggle_chat",
|
|
|
|
TOGGLE_SETTINGS: "UI.toggle_settings",
|
2015-12-10 16:36:03 +00:00
|
|
|
TOGGLE_CONTACT_LIST: "UI.toggle_contact_list",
|
2016-03-11 10:54:06 +00:00
|
|
|
/**
|
|
|
|
* Notifies that a command to toggle the film strip has been issued. The
|
|
|
|
* event may optionally specify a {Boolean} (primitive) value to assign to
|
|
|
|
* the visibility of the film strip (i.e. the event may act as a setter).
|
|
|
|
* The very toggling of the film strip may or may not occurred at the time
|
|
|
|
* of the receipt of the event depending on the position of the receiving
|
|
|
|
* event listener in relation to the event listener which carries out the
|
|
|
|
* command to toggle the film strip.
|
|
|
|
*
|
|
|
|
* @see {TOGGLED_FILM_STRIP}
|
|
|
|
*/
|
2015-12-10 16:36:03 +00:00
|
|
|
TOGGLE_FILM_STRIP: "UI.toggle_film_strip",
|
2016-03-11 10:55:29 +00:00
|
|
|
/**
|
|
|
|
* Notifies that the film strip was (actually) toggled. The event supplies
|
|
|
|
* a {Boolean} (primitive) value indicating the visibility of the film
|
|
|
|
* strip after the toggling (at the time of the event emission).
|
|
|
|
*
|
|
|
|
* @see {TOGGLE_FILM_STRIP}
|
|
|
|
*/
|
2016-03-24 01:43:29 +00:00
|
|
|
TOGGLED_FILM_STRIP: "UI.toggled_film_strip",
|
2015-12-30 13:28:56 +00:00
|
|
|
TOGGLE_SCREENSHARING: "UI.toggle_screensharing",
|
2016-03-24 01:43:29 +00:00
|
|
|
TOGGLED_SHARED_DOCUMENT: "UI.toggled_shared_document",
|
2015-12-14 15:40:30 +00:00
|
|
|
CONTACT_CLICKED: "UI.contact_clicked",
|
2015-12-10 15:48:56 +00:00
|
|
|
HANGUP: "UI.hangup",
|
|
|
|
LOGOUT: "UI.logout",
|
2015-12-11 14:48:16 +00:00
|
|
|
RECORDING_TOGGLE: "UI.recording_toggle",
|
2016-01-14 14:23:06 +00:00
|
|
|
SIP_DIAL: "UI.sip_dial",
|
2016-03-24 01:43:29 +00:00
|
|
|
SUBJECT_CHANGED: "UI.subject_changed",
|
2016-02-09 10:19:43 +00:00
|
|
|
VIDEO_DEVICE_CHANGED: "UI.video_device_changed",
|
2016-03-24 01:43:29 +00:00
|
|
|
AUDIO_DEVICE_CHANGED: "UI.audio_device_changed",
|
|
|
|
/**
|
|
|
|
* Notifies interested listeners that the follow-me feature is enabled or
|
|
|
|
* disabled.
|
|
|
|
*/
|
|
|
|
FOLLOW_ME_ENABLED: "UI.follow_me_enabled"
|
2015-01-22 16:02:37 +00:00
|
|
|
};
|