hooks.tsx 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712
  1. import type {ChildrenRenderFn} from 'sentry/components/acl/feature';
  2. import type {Guide} from 'sentry/components/assistant/types';
  3. import type {ButtonProps} from 'sentry/components/button';
  4. import type {FormPanelProps} from 'sentry/components/forms/formPanel';
  5. import type {JsonFormObject} from 'sentry/components/forms/types';
  6. import type {
  7. ProductSelectionProps,
  8. ProductSolution,
  9. } from 'sentry/components/onboarding/productSelection';
  10. import type SidebarItem from 'sentry/components/sidebar/sidebarItem';
  11. import type DateRange from 'sentry/components/timeRangeSelector/dateRange';
  12. import type SelectorItems from 'sentry/components/timeRangeSelector/selectorItems';
  13. import type {SVGIconProps} from 'sentry/icons/svgIcon';
  14. import type {UseExperiment} from 'sentry/utils/useExperiment';
  15. import type {TitleableModuleNames} from 'sentry/views/insights/common/components/modulePageProviders';
  16. import type {StatusToggleButtonProps} from 'sentry/views/monitors/components/statusToggleButton';
  17. import type {OrganizationStatsProps} from 'sentry/views/organizationStats';
  18. import type {RouteAnalyticsContext} from 'sentry/views/routeAnalyticsContextProvider';
  19. import type {NavigationItem, NavigationSection} from 'sentry/views/settings/types';
  20. import type {ExperimentKey} from './experiments';
  21. import type {Integration, IntegrationProvider} from './integrations';
  22. import type {
  23. Route,
  24. RouteComponentProps,
  25. RouteContextInterface,
  26. } from './legacyReactRouter';
  27. import type {Member, Organization} from './organization';
  28. import type {Project} from './project';
  29. import type {User} from './user';
  30. // XXX(epurkhiser): A Note about `_`.
  31. //
  32. // We add the `_: any` type int our hooks list to stop
  33. // typescript from doing too much type tightening. We should absolutely revisit
  34. // this in the future because all callbacks _should_ be allowed to be
  35. // functions, but doing so causes some unexpected issues and makes typescript
  36. // not happy. We still get a huge advantage of typing just by having each hook
  37. // type here however.
  38. /**
  39. * The Hooks type mapping is the master interface for all external Hooks into
  40. * the sentry frontend application.
  41. */
  42. export interface Hooks
  43. extends RouteHooks,
  44. ComponentHooks,
  45. CustomizationHooks,
  46. AnalyticsHooks,
  47. FeatureDisabledHooks,
  48. InterfaceChromeHooks,
  49. OnboardingHooks,
  50. SettingsHooks,
  51. FeatureSpecificHooks,
  52. ReactHooks,
  53. CallbackHooks {
  54. _: any;
  55. }
  56. export type HookName = keyof Hooks;
  57. /**
  58. * Route hooks.
  59. */
  60. export type RouteHooks = {
  61. 'routes:legacy-organization-redirects': RoutesHook;
  62. 'routes:root': RoutesHook;
  63. 'routes:settings': RoutesHook;
  64. };
  65. /**
  66. * Component specific hooks for DateRange and SelectorItems
  67. * These components have plan specific overrides in getsentry
  68. */
  69. type AutofixSetupConsentStepProps = {hasConsented: boolean};
  70. type DateRangeProps = React.ComponentProps<typeof DateRange>;
  71. type SelectorItemsProps = React.ComponentProps<typeof SelectorItems>;
  72. type DisabledMemberViewProps = RouteComponentProps<{orgId: string}, {}>;
  73. type MemberListHeaderProps = {
  74. members: Member[];
  75. organization: Organization;
  76. };
  77. type DisabledCustomSymbolSources = {
  78. children: React.ReactNode;
  79. organization: Organization;
  80. };
  81. type DisabledMemberTooltipProps = {children: React.ReactNode};
  82. type DashboardHeadersProps = {organization: Organization};
  83. type MetricsSamplesListProps = {children: React.ReactNode; organization: Organization};
  84. type ReplayFeedbackButton = {children: React.ReactNode};
  85. type ReplayListPageHeaderProps = {children?: React.ReactNode};
  86. type ReplayOnboardingAlertProps = {children: React.ReactNode};
  87. type ReplayOnboardingCTAProps = {children: React.ReactNode; organization: Organization};
  88. type ProductUnavailableCTAProps = {organization: Organization};
  89. type ProfilingBetaAlertBannerProps = {
  90. organization: Organization;
  91. };
  92. type ProfilingUpgradePlanButtonProps = ButtonProps & {
  93. children: React.ReactNode;
  94. fallback: React.ReactNode;
  95. organization: Organization;
  96. };
  97. type ProfilingAM1OrMMXUpgradeProps = {
  98. fallback: React.ReactNode;
  99. organization: Organization;
  100. };
  101. type CronsBillingBannerProps = {
  102. organization: Organization;
  103. };
  104. type OrganizationHeaderProps = {
  105. organization: Organization;
  106. };
  107. type ProductSelectionAvailabilityProps = Omit<
  108. ProductSelectionProps,
  109. 'disabledProducts' | 'productsPerPlatform'
  110. >;
  111. type FirstPartyIntegrationAlertProps = {
  112. integrations: Integration[];
  113. hideCTA?: boolean;
  114. wrapWithContainer?: boolean;
  115. };
  116. type FirstPartyIntegrationAdditionalCTAProps = {
  117. integrations: Integration[];
  118. };
  119. type AttemptCloseAttemptProps = {
  120. handleRemoveAccount: () => void;
  121. organizationSlugs: string[];
  122. };
  123. type CodecovLinkProps = {
  124. organization: Organization;
  125. };
  126. // on-create-project-product-selection
  127. type CreateProjectProductSelectionChangedCallback = (options: {
  128. defaultProducts: ProductSolution[];
  129. organization: Organization;
  130. selectedProducts: ProductSolution[];
  131. }) => void;
  132. type GuideUpdateCallback = (nextGuide: Guide | null, opts: {dismissed?: boolean}) => void;
  133. type MonitorCreatedCallback = (organization: Organization) => void;
  134. type CronsOnboardingPanelProps = {children: React.ReactNode};
  135. type SentryLogoProps = SVGIconProps & {
  136. pride?: boolean;
  137. };
  138. export type ParntershipAgreementType = 'standard' | 'partner_presence';
  139. export type PartnershipAgreementProps = {
  140. agreements: Array<ParntershipAgreementType>;
  141. partnerDisplayName: string;
  142. onSubmitSuccess?: () => void;
  143. organizationSlug?: string;
  144. };
  145. export type MembershipSettingsProps = {
  146. forms: JsonFormObject[];
  147. jsonFormSettings: Omit<
  148. FormPanelProps,
  149. 'highlighted' | 'fields' | 'additionalFieldProps'
  150. >;
  151. };
  152. /**
  153. * Component wrapping hooks
  154. */
  155. export type ComponentHooks = {
  156. 'component:autofix-setup-step-consent': () => React.ComponentType<AutofixSetupConsentStepProps> | null;
  157. 'component:codecov-integration-settings-link': () => React.ComponentType<CodecovLinkProps>;
  158. 'component:confirm-account-close': () => React.ComponentType<AttemptCloseAttemptProps>;
  159. 'component:crons-list-page-header': () => React.ComponentType<CronsBillingBannerProps>;
  160. 'component:crons-onboarding-panel': () => React.ComponentType<CronsOnboardingPanelProps>;
  161. 'component:dashboards-header': () => React.ComponentType<DashboardHeadersProps>;
  162. 'component:data-consent-banner': () => React.ComponentType<{source: string}> | null;
  163. 'component:data-consent-org-creation-checkbox': () => React.ComponentType<{}> | null;
  164. 'component:data-consent-priority-learn-more': () => React.ComponentType<{}> | null;
  165. 'component:ddm-metrics-samples-list': () => React.ComponentType<MetricsSamplesListProps>;
  166. 'component:disabled-custom-symbol-sources': () => React.ComponentType<DisabledCustomSymbolSources>;
  167. 'component:disabled-member': () => React.ComponentType<DisabledMemberViewProps>;
  168. 'component:disabled-member-tooltip': () => React.ComponentType<DisabledMemberTooltipProps>;
  169. 'component:enhanced-org-stats': () => React.ComponentType<OrganizationStatsProps>;
  170. 'component:first-party-integration-additional-cta': () => React.ComponentType<FirstPartyIntegrationAdditionalCTAProps>;
  171. 'component:first-party-integration-alert': () => React.ComponentType<FirstPartyIntegrationAlertProps>;
  172. 'component:header-date-range': () => React.ComponentType<DateRangeProps>;
  173. 'component:header-selector-items': () => React.ComponentType<SelectorItemsProps>;
  174. 'component:insights-date-range-query-limit-footer': () => React.ComponentType<{}>;
  175. 'component:insights-upsell-page': () => React.ComponentType<InsightsUpsellHook>;
  176. 'component:member-list-header': () => React.ComponentType<MemberListHeaderProps>;
  177. 'component:monitor-status-toggle': () => React.ComponentType<StatusToggleButtonProps>;
  178. 'component:org-stats-banner': () => React.ComponentType<DashboardHeadersProps>;
  179. 'component:organization-header': () => React.ComponentType<OrganizationHeaderProps>;
  180. 'component:organization-membership-settings': () => React.ComponentType<MembershipSettingsProps>;
  181. 'component:partnership-agreement': React.ComponentType<PartnershipAgreementProps>;
  182. 'component:product-selection-availability': () => React.ComponentType<ProductSelectionAvailabilityProps>;
  183. 'component:product-unavailable-cta': () => React.ComponentType<ProductUnavailableCTAProps>;
  184. 'component:profiling-am1-or-mmx-upgrade': () => React.ComponentType<ProfilingAM1OrMMXUpgradeProps>;
  185. 'component:profiling-billing-banner': () => React.ComponentType<ProfilingBetaAlertBannerProps>;
  186. 'component:profiling-upgrade-plan-button': () => React.ComponentType<ProfilingUpgradePlanButtonProps>;
  187. 'component:replay-feedback-button': () => React.ComponentType<ReplayFeedbackButton>;
  188. 'component:replay-list-page-header': () => React.ComponentType<ReplayListPageHeaderProps> | null;
  189. 'component:replay-onboarding-alert': () => React.ComponentType<ReplayOnboardingAlertProps>;
  190. 'component:replay-onboarding-cta': () => React.ComponentType<ReplayOnboardingCTAProps>;
  191. 'component:replay-settings-alert': () => React.ComponentType<{}> | null;
  192. 'component:sentry-logo': () => React.ComponentType<SentryLogoProps>;
  193. 'component:superuser-access-category': React.ComponentType<any>;
  194. 'component:superuser-warning': React.ComponentType<any>;
  195. 'component:superuser-warning-excluded': SuperuserWarningExcluded;
  196. };
  197. /**
  198. * Customization hooks are advanced hooks that return render-prop style
  199. * components the allow for specific customizations of components.
  200. *
  201. * These are very similar to the component wrapping hooks
  202. */
  203. export type CustomizationHooks = {
  204. 'integrations:feature-gates': IntegrationsFeatureGatesHook;
  205. 'member-invite-button:customization': InviteButtonCustomizationHook;
  206. 'member-invite-modal:customization': InviteModalCustomizationHook;
  207. 'sidebar:navigation-item': SidebarNavigationItemHook;
  208. };
  209. /**
  210. * Analytics / tracking / and operational metrics backend hooks.
  211. */
  212. export type AnalyticsHooks = {
  213. 'analytics:init-user': AnalyticsInitUser;
  214. 'analytics:log-experiment': AnalyticsLogExperiment;
  215. 'analytics:raw-track-event': AnalyticsRawTrackEvent;
  216. 'metrics:event': MetricsEvent;
  217. };
  218. /**
  219. * feature-disabled:<feature-flag> hooks return components that will be
  220. * rendered in place for Feature components when the feature is not enabled.
  221. */
  222. export type FeatureDisabledHooks = {
  223. 'feature-disabled:alert-wizard-performance': FeatureDisabledHook;
  224. 'feature-disabled:alerts-page': FeatureDisabledHook;
  225. 'feature-disabled:codecov-integration-setting': FeatureDisabledHook;
  226. 'feature-disabled:create-metrics-alert-tooltip': FeatureDisabledHook;
  227. 'feature-disabled:custom-inbound-filters': FeatureDisabledHook;
  228. 'feature-disabled:dashboards-edit': FeatureDisabledHook;
  229. 'feature-disabled:dashboards-page': FeatureDisabledHook;
  230. 'feature-disabled:dashboards-sidebar-item': FeatureDisabledHook;
  231. 'feature-disabled:data-forwarding': FeatureDisabledHook;
  232. 'feature-disabled:discard-groups': FeatureDisabledHook;
  233. 'feature-disabled:discover-page': FeatureDisabledHook;
  234. 'feature-disabled:discover-saved-query-create': FeatureDisabledHook;
  235. 'feature-disabled:discover-sidebar-item': FeatureDisabledHook;
  236. 'feature-disabled:discover2-page': FeatureDisabledHook;
  237. 'feature-disabled:discover2-sidebar-item': FeatureDisabledHook;
  238. 'feature-disabled:events-page': FeatureDisabledHook;
  239. 'feature-disabled:events-sidebar-item': FeatureDisabledHook;
  240. 'feature-disabled:grid-editable-actions': FeatureDisabledHook;
  241. 'feature-disabled:incidents-sidebar-item': FeatureDisabledHook;
  242. 'feature-disabled:open-discover': FeatureDisabledHook;
  243. 'feature-disabled:open-in-discover': FeatureDisabledHook;
  244. 'feature-disabled:performance-new-project': FeatureDisabledHook;
  245. 'feature-disabled:performance-page': FeatureDisabledHook;
  246. 'feature-disabled:performance-quick-trace': FeatureDisabledHook;
  247. 'feature-disabled:performance-sidebar-item': FeatureDisabledHook;
  248. 'feature-disabled:profiling-page': FeatureDisabledHook;
  249. 'feature-disabled:profiling-sidebar-item': FeatureDisabledHook;
  250. 'feature-disabled:project-performance-score-card': FeatureDisabledHook;
  251. 'feature-disabled:project-selector-all-projects': FeatureDisabledHook;
  252. 'feature-disabled:project-selector-checkbox': FeatureDisabledHook;
  253. 'feature-disabled:rate-limits': FeatureDisabledHook;
  254. 'feature-disabled:relay': FeatureDisabledHook;
  255. 'feature-disabled:replay-sidebar-item': FeatureDisabledHook;
  256. 'feature-disabled:sso-basic': FeatureDisabledHook;
  257. 'feature-disabled:sso-saml2': FeatureDisabledHook;
  258. 'feature-disabled:starfish-view': FeatureDisabledHook;
  259. 'feature-disabled:trace-view-link': FeatureDisabledHook;
  260. };
  261. /**
  262. * Interface chrome hooks.
  263. */
  264. export type InterfaceChromeHooks = {
  265. footer: GenericComponentHook;
  266. 'help-modal:footer': HelpModalFooterHook;
  267. 'sidebar:bottom-items': SidebarBottomItemsHook;
  268. 'sidebar:help-menu': GenericOrganizationComponentHook;
  269. 'sidebar:item-label': SidebarItemLabelHook;
  270. 'sidebar:organization-dropdown-menu': GenericOrganizationComponentHook;
  271. 'sidebar:organization-dropdown-menu-bottom': GenericOrganizationComponentHook;
  272. };
  273. /**
  274. * Onboarding experience hooks
  275. */
  276. export type OnboardingHooks = {
  277. 'onboarding-wizard:skip-help': () => React.ComponentType<{}>;
  278. 'onboarding:block-hide-sidebar': () => boolean;
  279. 'onboarding:targeted-onboarding-header': (opts: {source: string}) => React.ReactNode;
  280. };
  281. /**
  282. * Settings navigation hooks.
  283. */
  284. export type SettingsHooks = {
  285. 'settings:api-navigation-config': SettingsItemsHook;
  286. 'settings:organization-navigation': OrganizationSettingsHook;
  287. 'settings:organization-navigation-config': SettingsConfigHook;
  288. };
  289. /**
  290. * Feature Specific Hooks
  291. */
  292. export interface FeatureSpecificHooks extends SpendVisibilityHooks {}
  293. /**
  294. * Hooks related to Spend Visibitlity
  295. * (i.e. Per-Project Spike Protection + Spend Allocations)
  296. */
  297. export type SpendVisibilityHooks = {
  298. 'spend-visibility:spike-protection-project-settings': GenericProjectComponentHook;
  299. };
  300. /**
  301. * Hooks that are actually React Hooks as well
  302. */
  303. export type ReactHooks = {
  304. 'react-hook:route-activated': (
  305. props: RouteContextInterface
  306. ) => React.ContextType<typeof RouteAnalyticsContext>;
  307. 'react-hook:use-button-tracking': (props: ButtonProps) => () => void;
  308. 'react-hook:use-experiment': UseExperiment;
  309. };
  310. /**
  311. * Callback hooks.
  312. * These hooks just call a function that has no return value
  313. * and perform some sort of callback logic
  314. */
  315. type CallbackHooks = {
  316. 'callback:on-create-project-product-selection': CreateProjectProductSelectionChangedCallback;
  317. 'callback:on-guide-update': GuideUpdateCallback;
  318. 'callback:on-monitor-created': MonitorCreatedCallback;
  319. };
  320. /**
  321. * Renders a React node with no props
  322. */
  323. type GenericComponentHook = () => React.ReactNode;
  324. /**
  325. * A route hook provides an injection point for a list of routes.
  326. */
  327. type RoutesHook = () => Route[];
  328. /**
  329. * Receives an organization object and should return a React node.
  330. */
  331. type GenericOrganizationComponentHook = (opts: {
  332. organization: Organization;
  333. }) => React.ReactNode;
  334. /**
  335. * Receives a project object and should return a React node.
  336. */
  337. type GenericProjectComponentHook = (opts: {project: Project}) => React.ReactNode;
  338. /**
  339. * A FeatureDisabledHook returns a react element when a feature is not enabled.
  340. */
  341. type FeatureDisabledHook = (opts: {
  342. /**
  343. * Children can either be a node, or a function that accepts a renderDisabled prop containing
  344. * a function/component to render when the feature is not enabled.
  345. */
  346. children: React.ReactNode | ChildrenRenderFn;
  347. /**
  348. * The list of features that are controlled by this hook.
  349. */
  350. features: string[];
  351. /**
  352. * Weather the feature is or is not enabled.
  353. */
  354. hasFeature: boolean;
  355. /**
  356. * The organization that is associated to this feature.
  357. */
  358. organization: Organization;
  359. /**
  360. * The project that is associated to this feature.
  361. */
  362. project?: Project;
  363. }) => React.ReactNode;
  364. /**
  365. * Called to check if the superuser warning should be excluded for the given organization.
  366. */
  367. type SuperuserWarningExcluded = (organization: Organization | null) => boolean;
  368. /**
  369. * Called when the app is mounted.
  370. */
  371. type AnalyticsInitUser = (user: User) => void;
  372. /**
  373. * Trigger analytics tracking in the hook store.
  374. */
  375. type AnalyticsRawTrackEvent = (
  376. data: {
  377. /**
  378. * Arbitrary data to track
  379. */
  380. [key: string]: any;
  381. /**
  382. * The Reload event key.
  383. */
  384. eventKey: string;
  385. /**
  386. * The Amplitude event name. Set to null if event should not go to Amplitude.
  387. */
  388. eventName: string | null;
  389. /**
  390. * Organization to pass in. If full org object not available, pass in just the Id.
  391. * If no org, pass in null.
  392. */
  393. organization: Organization | string | null;
  394. },
  395. options?: {
  396. /**
  397. * An arbitrary function to map the parameters to new parameters
  398. */
  399. mapValuesFn?: (params: Record<string, any>) => Record<string, any>;
  400. /**
  401. * If true, starts an analytics session. This session can be used
  402. * to construct funnels. The start of the funnel should have
  403. * startSession set to true.
  404. */
  405. startSession?: boolean;
  406. /**
  407. * Optional unix timestamp
  408. */
  409. time?: number;
  410. }
  411. ) => void;
  412. /**
  413. * Trigger experiment observed logging.
  414. */
  415. type AnalyticsLogExperiment = (opts: {
  416. /**
  417. * The experiment key
  418. */
  419. key: ExperimentKey;
  420. /**
  421. * The organization. Must be provided for organization experiments.
  422. */
  423. organization?: Organization;
  424. }) => void;
  425. /**
  426. * Trigger recording a metric in the hook store.
  427. */
  428. type MetricsEvent = (
  429. /**
  430. * Metric name
  431. */
  432. name: string,
  433. /**
  434. * Value to record for this metric
  435. */
  436. value: number,
  437. /**
  438. * An additional tags object
  439. */
  440. tags?: object
  441. ) => void;
  442. /**
  443. * Provides additional navigation components
  444. */
  445. type OrganizationSettingsHook = (organization: Organization) => React.ReactElement;
  446. /**
  447. * Provides additional setting configurations
  448. */
  449. type SettingsConfigHook = (organization: Organization) => NavigationSection;
  450. /**
  451. * Provides additional setting navigation items
  452. */
  453. type SettingsItemsHook = (organization?: Organization) => NavigationItem[];
  454. /**
  455. * Each sidebar label is wrapped with this hook, to allow sidebar item
  456. * augmentation.
  457. */
  458. type SidebarItemLabelHook = () => React.ComponentType<{
  459. /**
  460. * The item label being wrapped
  461. */
  462. children: React.ReactNode;
  463. /**
  464. * The key of the item label currently being rendered. If no id is provided
  465. * the hook will have no effect.
  466. */
  467. id?: string;
  468. }>;
  469. type SidebarProps = Pick<
  470. React.ComponentProps<typeof SidebarItem>,
  471. 'orientation' | 'collapsed' | 'hasPanel'
  472. >;
  473. /**
  474. * Returns an additional list of sidebar items.
  475. */
  476. type SidebarBottomItemsHook = (
  477. opts: SidebarProps & {organization: Organization}
  478. ) => React.ReactNode;
  479. /**
  480. * Provides augmentation of the help modal footer
  481. */
  482. type HelpModalFooterHook = (opts: {
  483. closeModal: () => void;
  484. organization: Organization;
  485. }) => React.ReactNode;
  486. /**
  487. * The DecoratedIntegrationFeature differs from the IntegrationFeature as it is
  488. * expected to have been transformed into marked up content.
  489. */
  490. type DecoratedIntegrationFeature = {
  491. /**
  492. * Marked up description
  493. */
  494. description: React.ReactNode;
  495. featureGate: string;
  496. };
  497. type IntegrationFeatureGroup = {
  498. /**
  499. * The list of features within this group
  500. */
  501. features: DecoratedIntegrationFeature[];
  502. /**
  503. * Weather the group has all of the features enabled within this group
  504. * or not.
  505. */
  506. hasFeatures: boolean;
  507. };
  508. type FeatureGateSharedProps = {
  509. /**
  510. * The list of features, typically this is provided by the backend.
  511. */
  512. features: DecoratedIntegrationFeature[];
  513. /**
  514. * Organization of the integration we're querying feature gate details for.
  515. */
  516. organization: Organization;
  517. };
  518. type IntegrationFeaturesProps = FeatureGateSharedProps & {
  519. /**
  520. * The children function which will be provided with gating details.
  521. */
  522. children: (opts: {
  523. /**
  524. * Is the integration disabled for installation because of feature gating?
  525. */
  526. disabled: boolean;
  527. /**
  528. * The translated reason that the integration is disabled.
  529. */
  530. disabledReason: React.ReactNode;
  531. /**
  532. * Features grouped based on specific gating criteria (for example, in
  533. * sentry.io this is features grouped by plans).
  534. */
  535. gatedFeatureGroups: IntegrationFeatureGroup[];
  536. /**
  537. * This is the list of features which have *not* been gated in any way.
  538. */
  539. ungatedFeatures: DecoratedIntegrationFeature[];
  540. }) => React.ReactElement;
  541. };
  542. type IntegrationFeatureListProps = FeatureGateSharedProps & {
  543. provider: Pick<IntegrationProvider, 'key'>;
  544. };
  545. /**
  546. * The integration features gate hook provides components to customize
  547. * integration feature lists.
  548. */
  549. type IntegrationsFeatureGatesHook = () => {
  550. /**
  551. * This component renders the list of integration features.
  552. */
  553. FeatureList: React.ComponentType<IntegrationFeatureListProps>;
  554. /**
  555. * This is a render-prop style component that given a set of integration
  556. * features will call the children function with gating details about the
  557. * features.
  558. */
  559. IntegrationFeatures: React.ComponentType<IntegrationFeaturesProps>;
  560. };
  561. /**
  562. * Invite Button customization allows for a render-props component to replace
  563. * or intercept props of the button element.
  564. */
  565. type InviteButtonCustomizationHook = () => React.ComponentType<{
  566. children: (opts: {
  567. /**
  568. * Whether the Invite Members button is active or not
  569. */
  570. disabled: boolean;
  571. onTriggerModal: () => void;
  572. /**
  573. * Whether to display a message that new members must be registered via SSO
  574. */
  575. isSsoRequired?: boolean;
  576. }) => React.ReactElement;
  577. onTriggerModal: () => void;
  578. organization: Organization;
  579. }>;
  580. /**
  581. * Sidebar navigation item customization allows passing render props to disable
  582. * the link, wrap it in an upsell modal, and give it some additional content
  583. * (e.g., a Business Icon) to render.
  584. *
  585. * TODO: We can use this to replace the sidebar label hook `sidebar:item-label`,
  586. * too, since this is a more generic version.
  587. */
  588. type SidebarNavigationItemHook = () => React.ComponentType<{
  589. children: (opts: {
  590. Wrapper: React.FunctionComponent<{children: React.ReactElement}>;
  591. additionalContent: React.ReactElement | null;
  592. disabled: boolean;
  593. }) => React.ReactElement;
  594. id: string;
  595. }>;
  596. /**
  597. * Insights upsell hook takes in a insights module name
  598. * and renders either the applicable upsell page or the children inside the hook.
  599. */
  600. type InsightsUpsellHook = {
  601. children: React.ReactNode;
  602. moduleName: TitleableModuleNames;
  603. fullPage?: boolean;
  604. };
  605. /**
  606. * Invite Modal customization allows for a render-prop component to add
  607. * additional react elements into the modal, and add invite-send middleware.
  608. */
  609. type InviteModalCustomizationHook = () => React.ComponentType<{
  610. children: (opts: {
  611. /**
  612. * Indicates that the modal's send invites button should be enabled and
  613. * invites may currently be sent.
  614. */
  615. canSend: boolean;
  616. /**
  617. * Trigger sending invites
  618. */
  619. sendInvites: () => void;
  620. /**
  621. * Additional react elements to render in the header of the modal, just
  622. * under the description.
  623. */
  624. headerInfo?: React.ReactNode;
  625. }) => React.ReactElement;
  626. /**
  627. * When the children's sendInvites renderProp is called, this will also be
  628. * triggered.
  629. */
  630. onSendInvites: () => void;
  631. /**
  632. * The organization that members will be invited to.
  633. */
  634. organization: Organization;
  635. /**
  636. * Indicates if clicking 'send invites' will immediately send invites, or
  637. * would just create invite requests.
  638. */
  639. willInvite: boolean;
  640. }>;