import {Fragment, type ReactNode, useCallback} from 'react'; import styled from '@emotion/styled'; import omit from 'lodash/omit'; import {Breadcrumbs} from 'sentry/components/breadcrumbs'; import ButtonBar from 'sentry/components/buttonBar'; import ErrorBoundary from 'sentry/components/errorBoundary'; import FeedbackWidgetButton from 'sentry/components/feedback/widget/feedbackWidgetButton'; import * as Layout from 'sentry/components/layouts/thirds'; import {PageHeadingQuestionTooltip} from 'sentry/components/pageHeadingQuestionTooltip'; import {space} from 'sentry/styles/space'; import {browserHistory} from 'sentry/utils/browserHistory'; import {PageAlert, PageAlertProvider} from 'sentry/utils/performance/contexts/pageAlert'; import {useLocation} from 'sentry/utils/useLocation'; import {ModulePageFilterBar} from 'sentry/views/insights/common/components/modulePageFilterBar'; import {ModulesOnboarding} from 'sentry/views/insights/common/components/modulesOnboarding'; import {ReleaseComparisonSelector} from 'sentry/views/insights/common/components/releaseSelector'; import {useModuleBreadcrumbs} from 'sentry/views/insights/common/utils/useModuleBreadcrumbs'; import useCrossPlatformProject from 'sentry/views/insights/mobile/common/queries/useCrossPlatformProject'; import {PlatformSelector} from 'sentry/views/insights/mobile/screenload/components/platformSelector'; import type {ModuleName} from 'sentry/views/insights/types'; type ScreensTemplateProps = { content: ReactNode; moduleDescription: string; moduleDocLink: string; moduleName: ModuleName.MOBILE_UI | ModuleName.APP_START; title: string; additionalSelectors?: ReactNode; }; export default function ScreensTemplate({ moduleName, moduleDocLink, moduleDescription, title, additionalSelectors, content, }: ScreensTemplateProps) { const location = useLocation(); const {isProjectCrossPlatform} = useCrossPlatformProject(); const handleProjectChange = useCallback(() => { browserHistory.replace({ ...location, query: { ...omit(location.query, ['primaryRelease', 'secondaryRelease']), }, }); }, [location]); const crumbs = useModuleBreadcrumbs(moduleName); return ( {title} {isProjectCrossPlatform && } {additionalSelectors} } /> {content} ); } const Container = styled('div')` display: flex; gap: ${space(2)}; margin-bottom: ${space(2)}; flex-wrap: wrap; `;