Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

UIEvents.js 2.2KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. export default {
  2. NICKNAME_CHANGED: "UI.nickname_changed",
  3. SELECTED_ENDPOINT: "UI.selected_endpoint",
  4. PINNED_ENDPOINT: "UI.pinned_endpoint",
  5. /**
  6. * Notifies that local user created text message.
  7. */
  8. MESSAGE_CREATED: "UI.message_created",
  9. /**
  10. * Notifies that local user changed language.
  11. */
  12. LANG_CHANGED: "UI.lang_changed",
  13. /**
  14. * Notifies that local user changed email.
  15. */
  16. EMAIL_CHANGED: "UI.email_changed",
  17. /**
  18. * Notifies that "start muted" settings changed.
  19. */
  20. START_MUTED_CHANGED: "UI.start_muted_changed",
  21. AUDIO_MUTED: "UI.audio_muted",
  22. VIDEO_MUTED: "UI.video_muted",
  23. PREZI_CLICKED: "UI.prezi_clicked",
  24. SHARE_PREZI: "UI.share_prezi",
  25. PREZI_SLIDE_CHANGED: "UI.prezi_slide_changed",
  26. STOP_SHARING_PREZI: "UI.stop_sharing_prezi",
  27. ETHERPAD_CLICKED: "UI.etherpad_clicked",
  28. ROOM_LOCK_CLICKED: "UI.room_lock_clicked",
  29. USER_INVITED: "UI.user_invited",
  30. USER_KICKED: "UI.user_kicked",
  31. REMOTE_AUDIO_MUTED: "UI.remote_audio_muted",
  32. FULLSCREEN_TOGGLE: "UI.fullscreen_toggle",
  33. AUTH_CLICKED: "UI.auth_clicked",
  34. TOGGLE_CHAT: "UI.toggle_chat",
  35. TOGGLE_SETTINGS: "UI.toggle_settings",
  36. TOGGLE_CONTACT_LIST: "UI.toggle_contact_list",
  37. /**
  38. * Notifies that a command to toggle the film strip has been issued. The
  39. * event may optionally specify a {Boolean} (primitive) value to assign to
  40. * the visibility of the film strip (i.e. the event may act as a setter).
  41. * The very toggling of the film strip may or may not occurred at the time
  42. * of the receipt of the event depending on the position of the receiving
  43. * event listener in relation to the event listener which carries out the
  44. * command to toggle the film strip.
  45. *
  46. * @see {TOGGLED_FILM_STRIP}
  47. */
  48. TOGGLE_FILM_STRIP: "UI.toggle_film_strip",
  49. TOGGLE_SCREENSHARING: "UI.toggle_screensharing",
  50. CONTACT_CLICKED: "UI.contact_clicked",
  51. HANGUP: "UI.hangup",
  52. LOGOUT: "UI.logout",
  53. RECORDING_TOGGLE: "UI.recording_toggle",
  54. SIP_DIAL: "UI.sip_dial",
  55. SUBEJCT_CHANGED: "UI.subject_changed",
  56. VIDEO_DEVICE_CHANGED: "UI.video_device_changed",
  57. AUDIO_DEVICE_CHANGED: "UI.audio_device_changed"
  58. };