12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- import {forwardRef} from 'react';
- import {
- EventDataSection,
- type EventDataSectionProps,
- } from 'sentry/components/events/eventDataSection';
- import type {SectionKey} from 'sentry/views/issueDetails/streamline/context';
- import {
- FoldSection,
- type FoldSectionProps,
- } from 'sentry/views/issueDetails/streamline/foldSection';
- import {useHasStreamlinedUI} from 'sentry/views/issueDetails/utils';
- /**
- * This section is meant to provide a shared component while the streamline UI
- * for issue details is being developed. Once GA'd, all occurances should be replaced
- * with just <FoldSection />
- */
- export const InterimSection = forwardRef<
- HTMLElement,
- EventDataSectionProps & Pick<FoldSectionProps, 'initialCollapse'>
- >(function InterimSection(
- {children, title, type, actions = null, initialCollapse, ...props},
- ref
- ) {
- const hasStreamlinedUI = useHasStreamlinedUI();
- return hasStreamlinedUI ? (
- <FoldSection
- sectionKey={type as SectionKey}
- title={title}
- actions={actions}
- ref={ref}
- initialCollapse={initialCollapse}
- >
- {children}
- </FoldSection>
- ) : (
- <EventDataSection title={title} actions={actions} type={type} {...props}>
- {children}
- </EventDataSection>
- );
- });
|