123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213 |
- import {
- type CSSProperties,
- forwardRef,
- Fragment,
- useCallback,
- useLayoutEffect,
- useRef,
- useState,
- } from 'react';
- import styled from '@emotion/styled';
- import ErrorBoundary from 'sentry/components/errorBoundary';
- import InteractionStateLayer from 'sentry/components/interactionStateLayer';
- import {IconChevron} from 'sentry/icons';
- import {t} from 'sentry/locale';
- import {space} from 'sentry/styles/space';
- import {trackAnalytics} from 'sentry/utils/analytics';
- import mergeRefs from 'sentry/utils/mergeRefs';
- import useOrganization from 'sentry/utils/useOrganization';
- import {useSyncedLocalStorageState} from 'sentry/utils/useSyncedLocalStorageState';
- import type {SectionKey} from 'sentry/views/issueDetails/streamline/context';
- import {useEventDetails} from 'sentry/views/issueDetails/streamline/context';
- export function getFoldSectionKey(key: SectionKey) {
- return `'issue-details-fold-section-collapse:${key}`;
- }
- export interface FoldSectionProps {
- children: React.ReactNode;
- sectionKey: SectionKey;
- /**
- * Title of the section, always visible
- */
- title: React.ReactNode;
- /**
- * Actions associated with the section, only visible when open
- */
- actions?: React.ReactNode;
- className?: string;
- /**
- * Should this section be initially open, gets overridden by user preferences
- */
- initialCollapse?: boolean;
- /**
- * Disable the ability for the user to collapse the section
- */
- preventCollapse?: boolean;
- style?: CSSProperties;
- }
- export const FoldSection = forwardRef<HTMLElement, FoldSectionProps>(function FoldSection(
- {
- children,
- title,
- actions,
- sectionKey,
- initialCollapse = false,
- preventCollapse = false,
- },
- forwardedRef
- ) {
- const organization = useOrganization();
- const {sectionData, navScrollMargin, dispatch} = useEventDetails();
- // Does not control open/close state. Controls what state is persisted to local storage
- const [isCollapsed, setIsCollapsed] = useSyncedLocalStorageState(
- getFoldSectionKey(sectionKey),
- initialCollapse
- );
- const hasAttemptedScroll = useRef(false);
- const scrollToSection = useCallback(
- (element: HTMLElement | null) => {
- if (!element || !navScrollMargin || hasAttemptedScroll.current) {
- return;
- }
- // Prevent scrolling to element on rerenders
- hasAttemptedScroll.current = true;
- // scroll to element if it's the current section on page load
- if (window.location.hash) {
- const [, hash] = window.location.hash.split('#');
- if (hash === sectionKey) {
- if (isCollapsed) {
- setIsCollapsed(false);
- }
- // Delay scrollIntoView to allow for layout changes to take place
- setTimeout(() => element?.scrollIntoView(), 100);
- }
- }
- },
- [sectionKey, navScrollMargin, isCollapsed, setIsCollapsed]
- );
- useLayoutEffect(() => {
- if (!sectionData.hasOwnProperty(sectionKey)) {
- dispatch({type: 'UPDATE_SECTION', key: sectionKey, config: {initialCollapse}});
- }
- }, [sectionData, dispatch, sectionKey, initialCollapse]);
- // This controls disabling the InteractionStateLayer when hovering over action items. We don't
- // want selecting an action to appear as though it'll fold/unfold the section.
- const [isLayerEnabled, setIsLayerEnabled] = useState(true);
- const toggleCollapse = useCallback(
- (e: React.MouseEvent) => {
- e.preventDefault(); // Prevent browser summary/details behaviour
- window.getSelection()?.removeAllRanges(); // Prevent text selection on expand
- trackAnalytics('issue_details.section_fold', {
- sectionKey,
- organization,
- open: !isCollapsed,
- });
- setIsCollapsed(!isCollapsed);
- },
- [organization, sectionKey, isCollapsed, setIsCollapsed]
- );
- const labelPrefix = isCollapsed ? t('View') : t('Collapse');
- const labelSuffix = typeof title === 'string' ? title + t(' Section') : t('Section');
- return (
- <Fragment>
- <Section
- ref={mergeRefs([forwardedRef, scrollToSection])}
- id={sectionKey}
- scrollMargin={navScrollMargin ?? 0}
- role="region"
- >
- <SectionExpander
- preventCollapse={preventCollapse}
- onClick={preventCollapse ? e => e.preventDefault() : toggleCollapse}
- role="button"
- aria-label={`${labelPrefix} ${labelSuffix}`}
- aria-expanded={!isCollapsed}
- >
- <InteractionStateLayer
- hasSelectedBackground={false}
- hidden={preventCollapse ? preventCollapse : !isLayerEnabled}
- />
- <TitleWithActions>
- <TitleWrapper>{title}</TitleWrapper>
- {!isCollapsed && (
- <div
- onClick={e => e.stopPropagation()}
- onMouseEnter={() => setIsLayerEnabled(false)}
- onMouseLeave={() => setIsLayerEnabled(true)}
- >
- {actions}
- </div>
- )}
- </TitleWithActions>
- <IconWrapper preventCollapse={preventCollapse}>
- <IconChevron direction={isCollapsed ? 'down' : 'up'} size="xs" />
- </IconWrapper>
- </SectionExpander>
- {isCollapsed ? null : (
- <ErrorBoundary mini>
- <Content>{children}</Content>
- </ErrorBoundary>
- )}
- </Section>
- <SectionDivider />
- </Fragment>
- );
- });
- export const SectionDivider = styled('hr')`
- border-color: ${p => p.theme.translucentBorder};
- margin: ${space(1.5)} 0;
- &:last-child {
- display: none;
- }
- `;
- export const Section = styled('section')<{scrollMargin: number}>`
- scroll-margin-top: calc(${space(1)} + ${p => p.scrollMargin ?? 0}px);
- `;
- const Content = styled('div')`
- padding: ${space(0.5)} ${space(0.75)};
- `;
- const SectionExpander = styled('div')<{preventCollapse: boolean}>`
- display: grid;
- grid-template-columns: 1fr auto;
- align-items: center;
- padding: ${space(1)} ${space(0.75)};
- border-radius: ${p => p.theme.borderRadius};
- cursor: ${p => (p.preventCollapse ? 'initial' : 'pointer')};
- position: relative;
- `;
- const TitleWrapper = styled('div')`
- font-size: ${p => p.theme.fontSizeLarge};
- font-weight: ${p => p.theme.fontWeightBold};
- user-select: none;
- `;
- const IconWrapper = styled('div')<{preventCollapse: boolean}>`
- color: ${p => p.theme.subText};
- line-height: 0;
- visibility: ${p => (p.preventCollapse ? 'hidden' : 'initial')};
- `;
- const TitleWithActions = styled('div')`
- display: grid;
- grid-template-columns: 1fr auto;
- margin-right: 8px;
- align-items: center;
- /* Usually the actions are buttons, this height allows actions appearing after opening the
- details section to not expand the summary */
- min-height: 26px;
- `;
|