You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

constants.js 1.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. /**
  2. * The prefix of the {@code localStorage} key into which {@link storeConfig}
  3. * stores and from which {@link restoreConfig} restores.
  4. *
  5. * @protected
  6. * @type string
  7. */
  8. export const _CONFIG_STORE_PREFIX = 'config.js';
  9. /**
  10. * The list of all possible UI buttons.
  11. *
  12. * @protected
  13. * @type Array<string>
  14. */
  15. export const TOOLBAR_BUTTONS = [
  16. 'camera',
  17. 'chat',
  18. 'closedcaptions',
  19. 'desktop',
  20. 'download',
  21. 'embedmeeting',
  22. 'etherpad',
  23. 'feedback',
  24. 'filmstrip',
  25. 'fullscreen',
  26. 'hangup',
  27. 'help',
  28. 'highlight',
  29. 'invite',
  30. 'linktosalesforce',
  31. 'livestreaming',
  32. 'microphone',
  33. 'mute-everyone',
  34. 'mute-video-everyone',
  35. 'participants-pane',
  36. 'profile',
  37. 'raisehand',
  38. 'recording',
  39. 'security',
  40. 'select-background',
  41. 'settings',
  42. 'shareaudio',
  43. 'sharedvideo',
  44. 'shortcuts',
  45. 'stats',
  46. 'tileview',
  47. 'toggle-camera',
  48. 'videoquality'
  49. ];
  50. /**
  51. * The toolbar buttons to show on premeeting screens.
  52. */
  53. export const PREMEETING_BUTTONS = [ 'microphone', 'camera', 'select-background', 'invite', 'settings' ];
  54. /**
  55. * The toolbar buttons to show on 3rdParty prejoin screen.
  56. */
  57. export const THIRD_PARTY_PREJOIN_BUTTONS = [ 'microphone', 'camera', 'select-background' ];
  58. /**
  59. * The set of feature flags.
  60. *
  61. * @enum {string}
  62. */
  63. export const FEATURE_FLAGS = {
  64. MULTIPLE_VIDEO_STREAMS_SUPPORT: 'sendMultipleVideoStreams',
  65. SOURCE_NAME_SIGNALING: 'sourceNameSignaling'
  66. };