您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

constants.ts 2.0KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  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. 'noisesuppression',
  44. 'sharedvideo',
  45. 'shortcuts',
  46. 'stats',
  47. 'tileview',
  48. 'toggle-camera',
  49. 'videoquality',
  50. 'whiteboard'
  51. ];
  52. /**
  53. * The toolbar buttons to show on premeeting screens.
  54. */
  55. export const PREMEETING_BUTTONS = [ 'microphone', 'camera', 'select-background', 'invite', 'settings' ];
  56. /**
  57. * The toolbar buttons to show on 3rdParty prejoin screen.
  58. */
  59. export const THIRD_PARTY_PREJOIN_BUTTONS = [ 'microphone', 'camera', 'select-background' ];
  60. /**
  61. * The toolbar buttons to show when in visitors mode.
  62. */
  63. export const VISITORS_MODE_BUTTONS = [ 'chat', 'hangup', 'raisehand', 'settings', 'tileview' ];
  64. /**
  65. * The set of feature flags.
  66. *
  67. * @enum {string}
  68. */
  69. export const FEATURE_FLAGS = {
  70. SSRC_REWRITING: 'ssrcRewritingEnabled'
  71. };
  72. /**
  73. * The URL at which the terms (of service/use) are available to the user.
  74. */
  75. export const DEFAULT_TERMS_URL = 'https://jitsi.org/meet/terms';
  76. /**
  77. * The URL at which the privacy policy is available to the user.
  78. */
  79. export const DEFAULT_PRIVACY_URL = 'https://jitsi.org/meet/privacy';
  80. /**
  81. * The URL at which the help centre is available to the user.
  82. */
  83. export const DEFAULT_HELP_CENTRE_URL = 'https://web-cdn.jitsi.net/faq/meet-faq.html';