organizationGeneralSettings.tsx 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. import type {JsonFormObject} from 'sentry/components/forms/types';
  2. import ExternalLink from 'sentry/components/links/externalLink';
  3. import {t, tct} from 'sentry/locale';
  4. import ConfigStore from 'sentry/stores/configStore';
  5. import type {BaseRole} from 'sentry/types/organization';
  6. import slugify from 'sentry/utils/slugify';
  7. // Export route to make these forms searchable by label/help
  8. export const route = '/settings/:orgId/';
  9. const formGroups: JsonFormObject[] = [
  10. {
  11. // Form "section"/"panel"
  12. title: t('General'),
  13. fields: [
  14. {
  15. name: 'slug',
  16. type: 'string',
  17. required: true,
  18. label: t('Organization Slug'),
  19. help: t('A unique ID used to identify this organization'),
  20. transformInput: slugify,
  21. saveOnBlur: false,
  22. saveMessageAlertType: 'info',
  23. saveMessage: t(
  24. 'You will be redirected to the new organization slug after saving'
  25. ),
  26. },
  27. {
  28. name: 'name',
  29. type: 'string',
  30. required: true,
  31. label: t('Display Name'),
  32. help: t('A human-friendly name for the organization'),
  33. },
  34. {
  35. name: 'isEarlyAdopter',
  36. type: 'boolean',
  37. label: t('Early Adopter'),
  38. help: tct("Opt-in to [link:new features] before they're released to the public", {
  39. link: (
  40. <ExternalLink href="https://docs.sentry.io/product/accounts/early-adopter/" />
  41. ),
  42. }),
  43. visible: () => !ConfigStore.get('isSelfHostedErrorsOnly'),
  44. },
  45. {
  46. name: 'aiSuggestedSolution',
  47. type: 'boolean',
  48. label: t('AI Suggested Solution'),
  49. help: tct(
  50. 'Opt-in to [link:ai suggested solution] to get AI help on how to solve an issue.',
  51. {
  52. link: (
  53. <ExternalLink href="https://docs.sentry.io/product/issues/issue-details/ai-suggested-solution/" />
  54. ),
  55. }
  56. ),
  57. visible: ({features}) =>
  58. !ConfigStore.get('isSelfHostedErrorsOnly') && !features.has('autofix'),
  59. },
  60. {
  61. name: 'uptimeAutodetection',
  62. type: 'boolean',
  63. label: t('Automatically Configure Uptime Alerts'),
  64. help: t('Detect most-used URLs for uptime monitoring.'),
  65. // TOOD(epurkhiser): Currently there's no need for users to change this
  66. // setting as it will just be confusing. In the future when
  67. // autodetection is used for suggested URLs it will make more sense to
  68. // for users to have the option to disable this.
  69. visible: false,
  70. },
  71. ],
  72. },
  73. {
  74. title: 'Membership',
  75. fields: [
  76. {
  77. name: 'defaultRole',
  78. type: 'select',
  79. label: t('Default Role'),
  80. // seems weird to have choices in initial form data
  81. choices: ({initialData} = {}) =>
  82. initialData?.orgRoleList?.map((r: BaseRole) => [r.id, r.name]) ?? [],
  83. help: t('The default role new members will receive'),
  84. disabled: ({access}) => !access.has('org:admin'),
  85. },
  86. {
  87. name: 'openMembership',
  88. type: 'boolean',
  89. label: t('Open Team Membership'),
  90. help: t('Allow organization members to freely join any team'),
  91. },
  92. {
  93. name: 'allowMemberInvite',
  94. type: 'boolean',
  95. label: t('Let Members Invite Others'),
  96. help: t(
  97. 'Allow organization members to invite other members via email without needing org owner or manager approval.'
  98. ),
  99. visible: ({features}) => features.has('members-invite-teammates'),
  100. },
  101. {
  102. name: 'allowMemberProjectCreation',
  103. type: 'boolean',
  104. label: t('Let Members Create Projects'),
  105. help: t('Allow organization members to create and configure new projects.'),
  106. disabled: ({features, access}) =>
  107. !access.has('org:write') || !features.has('team-roles'),
  108. disabledReason: ({features}) =>
  109. !features.has('team-roles')
  110. ? t('You must be on a business plan to toggle this feature.')
  111. : undefined,
  112. },
  113. {
  114. name: 'eventsMemberAdmin',
  115. type: 'boolean',
  116. label: t('Let Members Delete Events'),
  117. help: t(
  118. 'Allow members to delete events (including the delete & discard action) by granting them the `event:admin` scope.'
  119. ),
  120. },
  121. {
  122. name: 'alertsMemberWrite',
  123. type: 'boolean',
  124. label: t('Let Members Create and Edit Alerts'),
  125. help: t(
  126. 'Allow members to create, edit, and delete alert rules by granting them the `alerts:write` scope.'
  127. ),
  128. },
  129. {
  130. name: 'attachmentsRole',
  131. type: 'select',
  132. choices: ({initialData = {}}) =>
  133. initialData?.orgRoleList?.map((r: BaseRole) => [r.id, r.name]) ?? [],
  134. label: t('Attachments Access'),
  135. help: t(
  136. 'Role required to download event attachments, such as native crash reports or log files.'
  137. ),
  138. visible: ({features}) => features.has('event-attachments'),
  139. },
  140. {
  141. name: 'debugFilesRole',
  142. type: 'select',
  143. choices: ({initialData = {}}) =>
  144. initialData?.orgRoleList?.map((r: BaseRole) => [r.id, r.name]) ?? [],
  145. label: t('Debug Files Access'),
  146. help: t(
  147. 'Role required to download debug information files, proguard mappings and source maps.'
  148. ),
  149. },
  150. ],
  151. },
  152. ];
  153. export default formGroups;